@connectedxm/client 8.2.1 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -4
- package/dist/index.d.ts +1 -133
- package/dist/index.js +5 -384
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
1
|
# ConnectedXM Client SDK
|
|
2
2
|
|
|
3
3
|
A Javascript SDK for interacting with the ConnectedXM Client API.
|
|
4
|
-
|
|
5
|
-
## Documentation
|
|
6
|
-
|
|
7
|
-
- [Event Session Registration Guide](./docs/SESSION_REGISTRATION.md) — How to implement session registration (questions → create intent → capture payment)
|
package/dist/index.d.ts
CHANGED
|
@@ -3711,29 +3711,6 @@ interface UpdateSelfChatChannelNotificationsParams extends MutationParams {
|
|
|
3711
3711
|
declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApiParams, queryClient, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
3712
3712
|
declare const useUpdateSelfChatChannelNotifications: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfChatChannelNotifications>>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3713
3713
|
|
|
3714
|
-
interface SelectSelfEventRegistrationCouponParams extends MutationParams {
|
|
3715
|
-
eventId: string;
|
|
3716
|
-
couponCode: string;
|
|
3717
|
-
passes: {
|
|
3718
|
-
id: string;
|
|
3719
|
-
ticketId: string;
|
|
3720
|
-
couponId?: string;
|
|
3721
|
-
packageId?: string;
|
|
3722
|
-
}[];
|
|
3723
|
-
packages: {
|
|
3724
|
-
id: string;
|
|
3725
|
-
packageId: string;
|
|
3726
|
-
}[];
|
|
3727
|
-
}
|
|
3728
|
-
declare const SelectSelfEventRegistrationCoupon: ({ eventId, passes, packages, couponCode, clientApiParams, queryClient, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<BaseCoupon>>;
|
|
3729
|
-
declare const useSelectSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BaseCoupon>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3730
|
-
|
|
3731
|
-
interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
|
|
3732
|
-
eventId: string;
|
|
3733
|
-
}
|
|
3734
|
-
declare const RemoveSelfEventRegistrationCoupon: ({ eventId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<null>>;
|
|
3735
|
-
declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3736
|
-
|
|
3737
3714
|
interface UpdateSelfEventRegistrationParams extends MutationParams {
|
|
3738
3715
|
eventId: string;
|
|
3739
3716
|
activityNotificationPreference?: ActivityPreference;
|
|
@@ -3752,73 +3729,6 @@ interface UpdateSelfEventRegistrationPassResponseParams extends MutationParams {
|
|
|
3752
3729
|
declare const UpdateSelfEventRegistrationPassResponse: ({ eventId, passId, questionId, response, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassResponseParams) => Promise<ConnectedXMResponse<null>>;
|
|
3753
3730
|
declare const useUpdateSelfEventRegistrationPassResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPassResponse>>, Omit<UpdateSelfEventRegistrationPassResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationPassResponseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3754
3731
|
|
|
3755
|
-
interface UpdateSelfEventRegistrationPassesParams extends MutationParams {
|
|
3756
|
-
eventId: string;
|
|
3757
|
-
passes: {
|
|
3758
|
-
id: string;
|
|
3759
|
-
ticketId: string;
|
|
3760
|
-
couponId?: string;
|
|
3761
|
-
packageId?: string;
|
|
3762
|
-
}[];
|
|
3763
|
-
packages: {
|
|
3764
|
-
id: string;
|
|
3765
|
-
packageId: string;
|
|
3766
|
-
}[];
|
|
3767
|
-
}
|
|
3768
|
-
declare const UpdateSelfEventRegistrationPasses: ({ eventId, passes, packages, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3769
|
-
declare const useUpdateSelfEventRegistrationPasses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPasses>>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3770
|
-
|
|
3771
|
-
interface UpdateSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
|
|
3772
|
-
eventId: string;
|
|
3773
|
-
passes: {
|
|
3774
|
-
id: string;
|
|
3775
|
-
passAddOns: {
|
|
3776
|
-
id: string;
|
|
3777
|
-
addOnId: string;
|
|
3778
|
-
}[];
|
|
3779
|
-
}[];
|
|
3780
|
-
}
|
|
3781
|
-
declare const UpdateSelfEventRegistrationPurchaseAddOn: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<null>>;
|
|
3782
|
-
declare const useUpdateSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPurchaseAddOn>>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3783
|
-
|
|
3784
|
-
interface UpdateSelfEventRegistrationReservationsParams extends MutationParams {
|
|
3785
|
-
eventId: string;
|
|
3786
|
-
passes: {
|
|
3787
|
-
id: string;
|
|
3788
|
-
reservation: {
|
|
3789
|
-
id: string;
|
|
3790
|
-
eventRoomTypeId: string;
|
|
3791
|
-
start?: Date | string;
|
|
3792
|
-
end?: Date | string;
|
|
3793
|
-
roomId?: string;
|
|
3794
|
-
};
|
|
3795
|
-
}[];
|
|
3796
|
-
}
|
|
3797
|
-
declare const UpdateSelfEventRegistrationReservations: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationReservationsParams) => Promise<ConnectedXMResponse<null>>;
|
|
3798
|
-
declare const useUpdateSelfEventRegistrationReservations: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationReservations>>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3799
|
-
|
|
3800
|
-
interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
|
|
3801
|
-
eventId: string;
|
|
3802
|
-
passes: {
|
|
3803
|
-
id: string;
|
|
3804
|
-
responses: {
|
|
3805
|
-
questionId: string;
|
|
3806
|
-
value: string;
|
|
3807
|
-
}[];
|
|
3808
|
-
}[];
|
|
3809
|
-
}
|
|
3810
|
-
declare const UpdateSelfEventRegistrationResponses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3811
|
-
declare const useUpdateSelfEventRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3812
|
-
|
|
3813
|
-
interface UpdateSelfEventRegistrationSearchListResponseParams extends MutationParams {
|
|
3814
|
-
eventId: string;
|
|
3815
|
-
passId: string;
|
|
3816
|
-
questionId: string;
|
|
3817
|
-
searchListValueId: string;
|
|
3818
|
-
}
|
|
3819
|
-
declare const UpdateSelfEventRegistrationSearchListResponse: ({ eventId, passId, questionId, searchListValueId, clientApiParams, queryClient, }: UpdateSelfEventRegistrationSearchListResponseParams) => Promise<ConnectedXMResponse<null>>;
|
|
3820
|
-
declare const useUpdateSelfEventRegistrationSearchListResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationSearchListResponse>>, Omit<UpdateSelfEventRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<ConnectedXMError | null>, any>, Omit<UpdateSelfEventRegistrationSearchListResponseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3821
|
-
|
|
3822
3732
|
interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
|
|
3823
3733
|
eventId: string;
|
|
3824
3734
|
passId: string;
|
|
@@ -6048,39 +5958,6 @@ declare const useGetSelfEventRegistrationPassTypes: (eventId?: string, passTypeI
|
|
|
6048
5958
|
packages: EventPackage[];
|
|
6049
5959
|
}>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6050
5960
|
|
|
6051
|
-
interface PassTypeWithAddOns extends BasePassType {
|
|
6052
|
-
addOns: EventAddOn[];
|
|
6053
|
-
}
|
|
6054
|
-
declare const SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
6055
|
-
declare const SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
6056
|
-
interface GetSelfEventRegistrationAddOnsProps extends SingleQueryParams {
|
|
6057
|
-
eventId: string;
|
|
6058
|
-
}
|
|
6059
|
-
declare const GetSelfEventRegistrationAddOns: ({ eventId, clientApiParams, }: GetSelfEventRegistrationAddOnsProps) => Promise<ConnectedXMResponse<PassTypeWithAddOns[]>>;
|
|
6060
|
-
declare const useGetSelfEventRegistrationAddOns: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassTypeWithAddOns[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6061
|
-
|
|
6062
|
-
declare const SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY: (eventId: string) => QueryKey;
|
|
6063
|
-
declare const SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationRoomTypes>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
6064
|
-
interface GetSelfEventRegistrationRoomTypesProps extends SingleQueryParams {
|
|
6065
|
-
eventId: string;
|
|
6066
|
-
}
|
|
6067
|
-
declare const GetSelfEventRegistrationRoomTypes: ({ eventId, clientApiParams, }: GetSelfEventRegistrationRoomTypesProps) => Promise<ConnectedXMResponse<EventRoomType[]>>;
|
|
6068
|
-
declare const useGetSelfEventRegistrationRoomTypes: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationRoomTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6069
|
-
|
|
6070
|
-
declare const SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
6071
|
-
declare const SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationQuestions>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
6072
|
-
interface GetSelfEventRegistrationQuestionsProps extends SingleQueryParams {
|
|
6073
|
-
eventId: string;
|
|
6074
|
-
}
|
|
6075
|
-
declare const GetSelfEventRegistrationQuestions: ({ eventId, clientApiParams, }: GetSelfEventRegistrationQuestionsProps) => Promise<ConnectedXMResponse<{
|
|
6076
|
-
passId: string;
|
|
6077
|
-
sections: RegistrationSection[];
|
|
6078
|
-
}[]>>;
|
|
6079
|
-
declare const useGetSelfEventRegistrationQuestions: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationQuestions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
|
|
6080
|
-
passId: string;
|
|
6081
|
-
sections: RegistrationSection[];
|
|
6082
|
-
}[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6083
|
-
|
|
6084
5961
|
declare const SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY: (eventId: string, ticketId: string, quantity: number, addressId: string) => unknown[];
|
|
6085
5962
|
interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
|
|
6086
5963
|
eventId: string;
|
|
@@ -6091,15 +5968,6 @@ interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
|
|
|
6091
5968
|
declare const GetSelfEventTicketCouponIntent: ({ eventId, ticketId, quantity, addressId, clientApiParams, }: GetSelfEventTicketCouponIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
6092
5969
|
declare const useGetSelfEventTicketCouponIntent: (eventId?: string, ticketId?: string, quantity?: number, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventTicketCouponIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6093
5970
|
|
|
6094
|
-
declare const SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, addressId?: string, split?: boolean) => unknown[];
|
|
6095
|
-
interface GetSelfEventRegistrationIntentProps extends SingleQueryParams {
|
|
6096
|
-
eventId: string;
|
|
6097
|
-
addressId: string;
|
|
6098
|
-
split: boolean;
|
|
6099
|
-
}
|
|
6100
|
-
declare const GetSelfEventRegistrationIntent: ({ eventId, addressId, split, clientApiParams, }: GetSelfEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
6101
|
-
declare const useGetSelfEventRegistrationIntent: (eventId?: string, addressId?: string, split?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6102
|
-
|
|
6103
5971
|
declare const SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
|
|
6104
5972
|
declare const SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
6105
5973
|
interface GetSelfEventAttendeePaymentProps extends SingleQueryParams {
|
|
@@ -6680,4 +6548,4 @@ declare const GetSupportTicketActivityLog: ({ supportTicketId, pageParam, pageSi
|
|
|
6680
6548
|
*/
|
|
6681
6549
|
declare const useGetSupportTicketActivityLog: (supportTicketId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSupportTicketActivityLog>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SupportTicketActivityLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6682
6550
|
|
|
6683
|
-
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, 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_QUESTIONS_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlock, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseBookingSpaceQuestionChoiceTranslation, type BaseBookingSpaceQuestionTranslation, 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 BaseEventSessionTime, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrgMembership, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSelf, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSession, type BaseSessionBookmark, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type Block, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingQuestionResponse, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionTranslation, BookingSpaceQuestionType, type BookingSpaceSlot, BookmarkEventAttendeePassSession, type BookmarkEventAttendeePassSessionParams, 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_EXPLORE_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSelfEventSessionAccess, type CancelSelfEventSessionAccessParams, CancelSeriesRegistration, type CancelSeriesRegistrationParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckLogin, type CheckLoginParams, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMError, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type ContentsExploreData, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateStreamChatMessage, type CreateStreamChatMessageParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteStreamChatMessage, type DeleteStreamChatMessageParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_ADDRESS_VALIDATION_REQUIRED, 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_NO_BOOKING_FOUND, ERR_NO_PASS_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTER_THROUGH_SERIES, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_EXPLORE_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_CONFIG_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_PASS_SESSIONS_INTENT_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_REGISTRATION_INTENT_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_PASS_INTENT_QUERY_KEY, EVENT_SESSION_PASS_SECTIONS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationRewardType, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventConfig, 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, type EventSessionTime, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type EventsExploreData, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_EXPLORE_QUERY_KEY, 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, GetBookingSpaceQuestions, type GetBookingSpaceQuestionsProps, 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, GetContentsExplore, type GetContentsExploreProps, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventConfig, type GetEventConfigProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, GetEventPassSessionsIntent, type GetEventPassSessionsIntentProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventRegistration, GetEventRegistrationIntent, type GetEventRegistrationIntentProps, type GetEventRegistrationProps, GetEventSessionPassIntent, type GetEventSessionPassIntentProps, GetEventSessionPassSections, type GetEventSessionPassSectionsProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, GetEventsExplore, type GetEventsExploreProps, 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, GetGroupsExplore, type GetGroupsExploreProps, 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, GetInvoicePayments, type GetInvoicePaymentsProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, GetSelfEventAttendeePayments, type GetSelfEventAttendeePaymentsProps, 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, 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, GetSelfProfile, type GetSelfProfileProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSeriesRegistration, GetSeriesRegistrationIntent, type GetSeriesRegistrationIntentProps, type GetSeriesRegistrationProps, GetSeriesRegistrationQuestions, type GetSeriesRegistrationQuestionsProps, GetStreamChatMessages, type GetStreamChatMessagesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSupportTicket, GetSupportTicketActivityLog, GetSupportTicketMessages, GetSupportTickets, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetSurveys, type GetSurveysProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, type GroupsExploreData, 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_PAYMENTS_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, JoinMeetingViaActivity, type JoinMeetingViaActivityParams, JoinMeetingViaBooking, type JoinMeetingViaBookingParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationDraft, type RegistrationDraftPackage, type RegistrationDraftPass, type RegistrationDraftReservation, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveLogin, type RemoveLoginParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_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_PAYMENTS_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_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_PROFILE_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SERIES_REGISTRATION_INTENT_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_QUESTIONS_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_PLACE_SPACE_QUESTIONS_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_EXPLORE_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_EXPLORE_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_CONFIG_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_PASS_SECTIONS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_EXPLORE_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_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_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_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_PROFILE_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_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_QUESTIONS_QUERY_DATA, SET_STREAM_CHAT_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_CHAT_MESSAGES_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, type Series, type SeriesQuestion, SeriesQuestionType, type SeriesRegistration, type Session, SessionAccess, type SessionBookmark, type SessionLocation, type SessionPrice, SessionVisibility, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamChatMessage, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivityLogSource, SupportTicketActivityLogType, type SupportTicketMessage, SupportTicketMessageSource, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, SurveyStatus, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UnbookmarkEventAttendeePassSession, type UnbookmarkEventAttendeePassSessionParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateBookingResponses, type UpdateBookingResponsesParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateEventRegistration, type UpdateEventRegistrationParams, UpdateEventSessionPassResponses, type UpdateEventSessionPassResponsesParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistration, type UpdateSelfEventRegistrationParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventRegistrationSearchListResponse, type UpdateSelfEventRegistrationSearchListResponseParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateStreamChatMessage, type UpdateStreamChatMessageParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useApplyEventRegistrationCoupon, useBlockAccount, useBlockIntegration, useBookmarkEventAttendeePassSession, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSelfEventSessionAccess, useCancelSeriesRegistration, useCapturePaymentIntent, useCheckLogin, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateStreamChatMessage, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteStreamChatMessage, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookingSpaceQuestions, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetContentsExplore, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventConfig, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventPassSessionsIntent, useGetEventRegistrants, useGetEventRegistration, useGetEventRegistrationIntent, useGetEventSessionPassIntent, useGetEventSessionPassSections, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetEventsExplore, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsExplore, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeePayments, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfProfile, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesRegistration, useGetSeriesRegistrationIntent, useGetSeriesRegistrationQuestions, useGetStreamChatMessages, useGetSubscribedChannels, useGetSubscribedContents, useGetSupportTicket, useGetSupportTicketActivityLog, useGetSupportTicketMessages, useGetSupportTickets, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetSurveys, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaActivity, useJoinMeetingViaBooking, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUnbookmarkEventAttendeePassSession, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateBookingResponses, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateEventRegistration, useUpdateEventSessionPassResponses, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistration, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventRegistrationSearchListResponse, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSeriesRegistrationResponses, useUpdateStreamChatMessage, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useUpsertLinkPreview, useVerifyLoginAccount };
|
|
6551
|
+
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, 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_QUESTIONS_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlock, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseBookingSpaceQuestionChoiceTranslation, type BaseBookingSpaceQuestionTranslation, 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 BaseEventSessionTime, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMeeting, type BaseNotification, type BaseOrgMembership, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntegration, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSelf, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSession, type BaseSessionBookmark, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type Block, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingQuestionResponse, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionTranslation, BookingSpaceQuestionType, type BookingSpaceSlot, BookmarkEventAttendeePassSession, type BookmarkEventAttendeePassSessionParams, 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_EXPLORE_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSelfEventSessionAccess, type CancelSelfEventSessionAccessParams, CancelSeriesRegistration, type CancelSeriesRegistrationParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckLogin, type CheckLoginParams, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMError, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type ContentsExploreData, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingInput, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateStreamChatMessage, type CreateStreamChatMessageParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteStreamChatMessage, type DeleteStreamChatMessageParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_ADDRESS_VALIDATION_REQUIRED, 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_NO_BOOKING_FOUND, ERR_NO_PASS_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTER_THROUGH_SERIES, ERR_REGISTRATION_UNAVAILABLE, ERR_TIER_REQUIRED, EVENTS_EXPLORE_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_CONFIG_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_PASS_SESSIONS_INTENT_QUERY_KEY, EVENT_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_REGISTRATION_INTENT_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_PASS_INTENT_QUERY_KEY, EVENT_SESSION_PASS_SECTIONS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationRewardType, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventConfig, 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, type EventSessionTime, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type EventsExploreData, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_EXPLORE_QUERY_KEY, 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, GetBookingSpaceQuestions, type GetBookingSpaceQuestionsProps, 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, GetContentsExplore, type GetContentsExploreProps, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventConfig, type GetEventConfigProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, GetEventPassSessionsIntent, type GetEventPassSessionsIntentProps, type GetEventProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventRegistration, GetEventRegistrationIntent, type GetEventRegistrationIntentProps, type GetEventRegistrationProps, GetEventSessionPassIntent, type GetEventSessionPassIntentProps, GetEventSessionPassSections, type GetEventSessionPassSectionsProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, GetEventsExplore, type GetEventsExploreProps, 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, GetGroupsExplore, type GetGroupsExploreProps, 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, GetInvoicePayments, type GetInvoicePaymentsProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, GetSelfEventAttendeePayments, type GetSelfEventAttendeePaymentsProps, 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, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, 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, GetSelfProfile, type GetSelfProfileProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSeriesRegistration, GetSeriesRegistrationIntent, type GetSeriesRegistrationIntentProps, type GetSeriesRegistrationProps, GetSeriesRegistrationQuestions, type GetSeriesRegistrationQuestionsProps, GetStreamChatMessages, type GetStreamChatMessagesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSupportTicket, GetSupportTicketActivityLog, GetSupportTicketMessages, GetSupportTickets, GetSurvey, type GetSurveyProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetSurveys, type GetSurveysProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetUsernameAvailability, type GetUsernameAvailabilityProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, type GroupsExploreData, 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_PAYMENTS_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, JoinMeetingViaActivity, type JoinMeetingViaActivityParams, JoinMeetingViaBooking, type JoinMeetingViaBookingParams, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationDraft, type RegistrationDraftPackage, type RegistrationDraftPass, type RegistrationDraftReservation, 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, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_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_PAYMENTS_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_COUPON_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_SESSIONS_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_PROFILE_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SERIES_REGISTRATION_INTENT_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_QUESTIONS_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_PLACE_SPACE_QUESTIONS_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_EXPLORE_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_EXPLORE_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_CONFIG_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_PASS_SECTIONS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_EXPLORE_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_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_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_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_PROFILE_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_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_QUESTIONS_QUERY_DATA, SET_STREAM_CHAT_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_LOG_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_CHAT_MESSAGES_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_LOG_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SURVEYS_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, type Self, type SelfRelationships, type Series, type SeriesQuestion, SeriesQuestionType, type SeriesRegistration, type Session, SessionAccess, type SessionBookmark, type SessionLocation, type SessionPrice, SessionVisibility, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamChatMessage, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivityLogSource, SupportTicketActivityLogType, type SupportTicketMessage, SupportTicketMessageSource, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, SurveyQuestionType, type SurveySection, SurveyStatus, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UnbookmarkEventAttendeePassSession, type UnbookmarkEventAttendeePassSessionParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, UpdateBookingResponses, type UpdateBookingResponsesParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateEventRegistration, type UpdateEventRegistrationParams, UpdateEventSessionPassResponses, type UpdateEventSessionPassResponsesParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistration, type UpdateSelfEventRegistrationParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateStreamChatMessage, type UpdateStreamChatMessageParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useApplyEventRegistrationCoupon, useBlockAccount, useBlockIntegration, useBookmarkEventAttendeePassSession, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSelfEventSessionAccess, useCancelSeriesRegistration, useCapturePaymentIntent, useCheckLogin, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateStreamChatMessage, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteStreamChatMessage, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookingSpaceQuestions, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetContentsExplore, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventConfig, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventPassSessionsIntent, useGetEventRegistrants, useGetEventRegistration, useGetEventRegistrationIntent, useGetEventSessionPassIntent, useGetEventSessionPassSections, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetEventsExplore, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsExplore, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetLogin, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeePayments, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationPassTypes, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfProfile, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesRegistration, useGetSeriesRegistrationIntent, useGetSeriesRegistrationQuestions, useGetStreamChatMessages, useGetSubscribedChannels, useGetSubscribedContents, useGetSupportTicket, useGetSupportTicketActivityLog, useGetSupportTicketMessages, useGetSupportTickets, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetSurveys, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaActivity, useJoinMeetingViaBooking, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUnbookmarkEventAttendeePassSession, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateBookingResponses, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateEventRegistration, useUpdateEventSessionPassResponses, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistration, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSeriesRegistrationResponses, useUpdateStreamChatMessage, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useUpsertLinkPreview, useVerifyLoginAccount };
|
package/dist/index.js
CHANGED
|
@@ -5217,117 +5217,6 @@ var useGetSelfEventRegistrationPassTypes = (eventId = "", passTypeId = "", optio
|
|
|
5217
5217
|
);
|
|
5218
5218
|
};
|
|
5219
5219
|
|
|
5220
|
-
// src/queries/self/registration/useGetSelfEventRegistrationAddOns.ts
|
|
5221
|
-
var SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY = (eventId) => [...SELF_EVENT_REGISTRATION_QUERY_KEY(eventId), "ADD_ONS"];
|
|
5222
|
-
var SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
5223
|
-
client.setQueryData(
|
|
5224
|
-
[
|
|
5225
|
-
...SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY(...keyParams),
|
|
5226
|
-
...GetBaseSingleQueryKeys(...baseKeys)
|
|
5227
|
-
],
|
|
5228
|
-
response
|
|
5229
|
-
);
|
|
5230
|
-
};
|
|
5231
|
-
var GetSelfEventRegistrationAddOns = async ({
|
|
5232
|
-
eventId,
|
|
5233
|
-
clientApiParams
|
|
5234
|
-
}) => {
|
|
5235
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
5236
|
-
const { data } = await clientApi.get(
|
|
5237
|
-
`/self/events/${eventId}/registration/addOns`,
|
|
5238
|
-
{}
|
|
5239
|
-
);
|
|
5240
|
-
return data;
|
|
5241
|
-
};
|
|
5242
|
-
var useGetSelfEventRegistrationAddOns = (eventId, options = {}) => {
|
|
5243
|
-
const { authenticated } = useConnected();
|
|
5244
|
-
return useConnectedSingleQuery_default(
|
|
5245
|
-
SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY(eventId),
|
|
5246
|
-
(params) => GetSelfEventRegistrationAddOns({
|
|
5247
|
-
eventId,
|
|
5248
|
-
...params
|
|
5249
|
-
}),
|
|
5250
|
-
{
|
|
5251
|
-
...options,
|
|
5252
|
-
enabled: !!authenticated && !!eventId && (options?.enabled ?? true)
|
|
5253
|
-
}
|
|
5254
|
-
);
|
|
5255
|
-
};
|
|
5256
|
-
|
|
5257
|
-
// src/queries/self/registration/useGetSelfEventRegistrationRoomTypes.ts
|
|
5258
|
-
var SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY = (eventId) => [...SELF_EVENT_REGISTRATION_QUERY_KEY(eventId), "ROOM_TYPES"];
|
|
5259
|
-
var SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
5260
|
-
client.setQueryData(
|
|
5261
|
-
[
|
|
5262
|
-
...SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY(...keyParams),
|
|
5263
|
-
...GetBaseSingleQueryKeys(...baseKeys)
|
|
5264
|
-
],
|
|
5265
|
-
response
|
|
5266
|
-
);
|
|
5267
|
-
};
|
|
5268
|
-
var GetSelfEventRegistrationRoomTypes = async ({
|
|
5269
|
-
eventId,
|
|
5270
|
-
clientApiParams
|
|
5271
|
-
}) => {
|
|
5272
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
5273
|
-
const { data } = await clientApi.get(
|
|
5274
|
-
`/self/events/${eventId}/registration/roomTypes`,
|
|
5275
|
-
{}
|
|
5276
|
-
);
|
|
5277
|
-
return data;
|
|
5278
|
-
};
|
|
5279
|
-
var useGetSelfEventRegistrationRoomTypes = (eventId, options = {}) => {
|
|
5280
|
-
const { authenticated } = useConnected();
|
|
5281
|
-
return useConnectedSingleQuery_default(
|
|
5282
|
-
SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY(eventId),
|
|
5283
|
-
(params) => GetSelfEventRegistrationRoomTypes({
|
|
5284
|
-
eventId,
|
|
5285
|
-
...params
|
|
5286
|
-
}),
|
|
5287
|
-
{
|
|
5288
|
-
...options,
|
|
5289
|
-
enabled: !!authenticated && !!eventId && (options?.enabled ?? true)
|
|
5290
|
-
}
|
|
5291
|
-
);
|
|
5292
|
-
};
|
|
5293
|
-
|
|
5294
|
-
// src/queries/self/registration/useGetSelfEventRegistrationQuestions.ts
|
|
5295
|
-
var SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY = (eventId) => [...SELF_EVENT_REGISTRATION_QUERY_KEY(eventId), "QUESTIONS"];
|
|
5296
|
-
var SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
5297
|
-
client.setQueryData(
|
|
5298
|
-
[
|
|
5299
|
-
...SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY(...keyParams),
|
|
5300
|
-
...GetBaseSingleQueryKeys(...baseKeys)
|
|
5301
|
-
],
|
|
5302
|
-
response
|
|
5303
|
-
);
|
|
5304
|
-
};
|
|
5305
|
-
var GetSelfEventRegistrationQuestions = async ({
|
|
5306
|
-
eventId,
|
|
5307
|
-
clientApiParams
|
|
5308
|
-
}) => {
|
|
5309
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
5310
|
-
const { data } = await clientApi.get(
|
|
5311
|
-
`/self/events/${eventId}/registration/questions`,
|
|
5312
|
-
{}
|
|
5313
|
-
);
|
|
5314
|
-
return data;
|
|
5315
|
-
};
|
|
5316
|
-
var useGetSelfEventRegistrationQuestions = (eventId, options = {}) => {
|
|
5317
|
-
const { authenticated } = useConnected();
|
|
5318
|
-
return useConnectedSingleQuery_default(
|
|
5319
|
-
SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY(eventId),
|
|
5320
|
-
(params) => GetSelfEventRegistrationQuestions({
|
|
5321
|
-
eventId,
|
|
5322
|
-
...params
|
|
5323
|
-
}),
|
|
5324
|
-
{
|
|
5325
|
-
...options,
|
|
5326
|
-
enabled: !!authenticated && !!eventId && (options?.enabled ?? true)
|
|
5327
|
-
}
|
|
5328
|
-
);
|
|
5329
|
-
};
|
|
5330
|
-
|
|
5331
5220
|
// src/queries/self/registration/useGetSelfEventTicketCouponIntent.ts
|
|
5332
5221
|
var SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY = (eventId, ticketId, quantity, addressId) => [
|
|
5333
5222
|
...SELF_EVENT_REGISTRATION_QUERY_KEY(eventId),
|
|
@@ -5382,50 +5271,6 @@ var useGetSelfEventTicketCouponIntent = (eventId = "", ticketId = "", quantity =
|
|
|
5382
5271
|
);
|
|
5383
5272
|
};
|
|
5384
5273
|
|
|
5385
|
-
// src/queries/self/registration/useGetSelfEventRegistrationIntent.ts
|
|
5386
|
-
var SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY = (eventId, addressId, split) => {
|
|
5387
|
-
const key = [...SELF_EVENT_REGISTRATION_QUERY_KEY(eventId), "INTENT"];
|
|
5388
|
-
if (addressId) {
|
|
5389
|
-
key.push(addressId);
|
|
5390
|
-
}
|
|
5391
|
-
if (split) {
|
|
5392
|
-
key.push("SPLIT");
|
|
5393
|
-
}
|
|
5394
|
-
return key;
|
|
5395
|
-
};
|
|
5396
|
-
var GetSelfEventRegistrationIntent = async ({
|
|
5397
|
-
eventId,
|
|
5398
|
-
addressId,
|
|
5399
|
-
split,
|
|
5400
|
-
clientApiParams
|
|
5401
|
-
}) => {
|
|
5402
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
5403
|
-
const { data } = await clientApi.get(
|
|
5404
|
-
`/self/events/${eventId}/registration/intent`,
|
|
5405
|
-
{
|
|
5406
|
-
params: {
|
|
5407
|
-
addressId,
|
|
5408
|
-
split: split ? "true" : "false"
|
|
5409
|
-
}
|
|
5410
|
-
}
|
|
5411
|
-
);
|
|
5412
|
-
return data;
|
|
5413
|
-
};
|
|
5414
|
-
var useGetSelfEventRegistrationIntent = (eventId = "", addressId = "", split = false, options = {}) => {
|
|
5415
|
-
const { authenticated } = useConnected();
|
|
5416
|
-
return useConnectedSingleQuery_default(
|
|
5417
|
-
SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY(eventId, addressId, split),
|
|
5418
|
-
(params) => GetSelfEventRegistrationIntent({ eventId, addressId, split, ...params }),
|
|
5419
|
-
{
|
|
5420
|
-
staleTime: Infinity,
|
|
5421
|
-
retry: false,
|
|
5422
|
-
retryOnMount: false,
|
|
5423
|
-
...options,
|
|
5424
|
-
enabled: !!authenticated && !!eventId && (options?.enabled ?? true)
|
|
5425
|
-
}
|
|
5426
|
-
);
|
|
5427
|
-
};
|
|
5428
|
-
|
|
5429
5274
|
// src/queries/self/attendee/useGetSelfEventAttendeePayment.ts
|
|
5430
5275
|
var SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY = (eventId, paymentId) => [
|
|
5431
5276
|
...SELF_EVENT_ATTENDEE_QUERY_KEY(eventId),
|
|
@@ -10497,62 +10342,6 @@ var useUpdateSelfChatChannelNotifications = (options = {}) => {
|
|
|
10497
10342
|
return useConnectedMutation_default(UpdateSelfChatChannelNotifications, options);
|
|
10498
10343
|
};
|
|
10499
10344
|
|
|
10500
|
-
// src/mutations/self/events/registration/useApplySelfEventRegistrationCoupon.ts
|
|
10501
|
-
var SelectSelfEventRegistrationCoupon = async ({
|
|
10502
|
-
eventId,
|
|
10503
|
-
passes,
|
|
10504
|
-
packages,
|
|
10505
|
-
couponCode,
|
|
10506
|
-
clientApiParams,
|
|
10507
|
-
queryClient
|
|
10508
|
-
}) => {
|
|
10509
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10510
|
-
const { data } = await clientApi.post(
|
|
10511
|
-
`/self/events/${eventId}/registration/coupon`,
|
|
10512
|
-
{ passes, packages, couponCode }
|
|
10513
|
-
);
|
|
10514
|
-
if (queryClient && data.status === "ok") {
|
|
10515
|
-
queryClient.removeQueries({
|
|
10516
|
-
queryKey: SELF_EVENT_REGISTRATION_QUERY_KEY(eventId)
|
|
10517
|
-
});
|
|
10518
|
-
queryClient.invalidateQueries({
|
|
10519
|
-
predicate: ({ queryKey }) => {
|
|
10520
|
-
return queryKey.includes("INTENT");
|
|
10521
|
-
}
|
|
10522
|
-
});
|
|
10523
|
-
}
|
|
10524
|
-
return data;
|
|
10525
|
-
};
|
|
10526
|
-
var useSelectSelfEventRegistrationCoupon = (options = {}) => {
|
|
10527
|
-
return useConnectedMutation_default(SelectSelfEventRegistrationCoupon, options);
|
|
10528
|
-
};
|
|
10529
|
-
|
|
10530
|
-
// src/mutations/self/events/registration/useRemoveSelfEventRegistrationCoupon.ts
|
|
10531
|
-
var RemoveSelfEventRegistrationCoupon = async ({
|
|
10532
|
-
eventId,
|
|
10533
|
-
clientApiParams,
|
|
10534
|
-
queryClient
|
|
10535
|
-
}) => {
|
|
10536
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10537
|
-
const { data } = await clientApi.delete(
|
|
10538
|
-
`/self/events/${eventId}/registration/coupon`
|
|
10539
|
-
);
|
|
10540
|
-
if (queryClient && data.status === "ok") {
|
|
10541
|
-
queryClient.removeQueries({
|
|
10542
|
-
queryKey: SELF_EVENT_REGISTRATION_QUERY_KEY(eventId)
|
|
10543
|
-
});
|
|
10544
|
-
queryClient.invalidateQueries({
|
|
10545
|
-
predicate: ({ queryKey }) => {
|
|
10546
|
-
return queryKey.includes("INTENT");
|
|
10547
|
-
}
|
|
10548
|
-
});
|
|
10549
|
-
}
|
|
10550
|
-
return data;
|
|
10551
|
-
};
|
|
10552
|
-
var useRemoveSelfEventRegistrationCoupon = (options = {}) => {
|
|
10553
|
-
return useConnectedMutation_default(RemoveSelfEventRegistrationCoupon, options);
|
|
10554
|
-
};
|
|
10555
|
-
|
|
10556
10345
|
// src/mutations/self/events/registration/useUpdateSelfEventRegistration.ts
|
|
10557
10346
|
var UpdateSelfEventRegistration = async ({
|
|
10558
10347
|
eventId,
|
|
@@ -10619,9 +10408,11 @@ var UpdateSelfEventRegistrationPassResponse = async ({
|
|
|
10619
10408
|
{ response }
|
|
10620
10409
|
);
|
|
10621
10410
|
if (queryClient && data.status === "ok") {
|
|
10622
|
-
queryClient.
|
|
10623
|
-
queryKey:
|
|
10624
|
-
|
|
10411
|
+
queryClient.invalidateQueries({
|
|
10412
|
+
queryKey: [
|
|
10413
|
+
...SELF_EVENT_REGISTRATION_QUERY_KEY(eventId),
|
|
10414
|
+
clientApiParams.locale
|
|
10415
|
+
]
|
|
10625
10416
|
});
|
|
10626
10417
|
}
|
|
10627
10418
|
return data;
|
|
@@ -10630,147 +10421,6 @@ var useUpdateSelfEventRegistrationPassResponse = (options = {}) => {
|
|
|
10630
10421
|
return useConnectedMutation_default(UpdateSelfEventRegistrationPassResponse, options);
|
|
10631
10422
|
};
|
|
10632
10423
|
|
|
10633
|
-
// src/mutations/self/events/registration/useUpdateSelfEventRegistrationPasses.ts
|
|
10634
|
-
var UpdateSelfEventRegistrationPasses = async ({
|
|
10635
|
-
eventId,
|
|
10636
|
-
passes,
|
|
10637
|
-
packages,
|
|
10638
|
-
clientApiParams,
|
|
10639
|
-
queryClient
|
|
10640
|
-
}) => {
|
|
10641
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10642
|
-
const { data } = await clientApi.post(
|
|
10643
|
-
`/self/events/${eventId}/registration/passes`,
|
|
10644
|
-
{ passes, packages }
|
|
10645
|
-
);
|
|
10646
|
-
if (queryClient && data.status === "ok") {
|
|
10647
|
-
queryClient.removeQueries({
|
|
10648
|
-
queryKey: SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY(eventId)
|
|
10649
|
-
});
|
|
10650
|
-
queryClient.removeQueries({
|
|
10651
|
-
queryKey: SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY(eventId)
|
|
10652
|
-
});
|
|
10653
|
-
queryClient.removeQueries({
|
|
10654
|
-
queryKey: SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY(eventId)
|
|
10655
|
-
});
|
|
10656
|
-
queryClient.removeQueries({
|
|
10657
|
-
queryKey: SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY(eventId),
|
|
10658
|
-
exact: false
|
|
10659
|
-
});
|
|
10660
|
-
}
|
|
10661
|
-
return data;
|
|
10662
|
-
};
|
|
10663
|
-
var useUpdateSelfEventRegistrationPasses = (options = {}) => {
|
|
10664
|
-
return useConnectedMutation_default(UpdateSelfEventRegistrationPasses, options);
|
|
10665
|
-
};
|
|
10666
|
-
|
|
10667
|
-
// src/mutations/self/events/registration/useUpdateSelfEventRegistrationAddOns.ts
|
|
10668
|
-
var UpdateSelfEventRegistrationPurchaseAddOn = async ({
|
|
10669
|
-
eventId,
|
|
10670
|
-
passes,
|
|
10671
|
-
clientApiParams,
|
|
10672
|
-
queryClient
|
|
10673
|
-
}) => {
|
|
10674
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10675
|
-
const { data } = await clientApi.post(
|
|
10676
|
-
`/self/events/${eventId}/registration/addOns`,
|
|
10677
|
-
passes
|
|
10678
|
-
);
|
|
10679
|
-
if (queryClient && data.status === "ok") {
|
|
10680
|
-
queryClient.removeQueries({
|
|
10681
|
-
queryKey: SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY(eventId)
|
|
10682
|
-
});
|
|
10683
|
-
queryClient.removeQueries({
|
|
10684
|
-
queryKey: SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY(eventId)
|
|
10685
|
-
});
|
|
10686
|
-
queryClient.removeQueries({
|
|
10687
|
-
queryKey: SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY(eventId),
|
|
10688
|
-
exact: false
|
|
10689
|
-
});
|
|
10690
|
-
}
|
|
10691
|
-
return data;
|
|
10692
|
-
};
|
|
10693
|
-
var useUpdateSelfEventRegistrationPurchaseAddOn = (options = {}) => {
|
|
10694
|
-
return useConnectedMutation_default(UpdateSelfEventRegistrationPurchaseAddOn, options);
|
|
10695
|
-
};
|
|
10696
|
-
|
|
10697
|
-
// src/mutations/self/events/registration/useUpdateSelfEventRegistrationReservations.ts
|
|
10698
|
-
var UpdateSelfEventRegistrationReservations = async ({
|
|
10699
|
-
eventId,
|
|
10700
|
-
passes,
|
|
10701
|
-
clientApiParams,
|
|
10702
|
-
queryClient
|
|
10703
|
-
}) => {
|
|
10704
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10705
|
-
const { data } = await clientApi.post(
|
|
10706
|
-
`/self/events/${eventId}/registration/reservations`,
|
|
10707
|
-
passes
|
|
10708
|
-
);
|
|
10709
|
-
if (queryClient && data.status === "ok") {
|
|
10710
|
-
queryClient.removeQueries({
|
|
10711
|
-
queryKey: SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY(eventId)
|
|
10712
|
-
});
|
|
10713
|
-
queryClient.removeQueries({
|
|
10714
|
-
queryKey: SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY(eventId),
|
|
10715
|
-
exact: false
|
|
10716
|
-
});
|
|
10717
|
-
}
|
|
10718
|
-
return data;
|
|
10719
|
-
};
|
|
10720
|
-
var useUpdateSelfEventRegistrationReservations = (options = {}) => {
|
|
10721
|
-
return useConnectedMutation_default(UpdateSelfEventRegistrationReservations, options);
|
|
10722
|
-
};
|
|
10723
|
-
|
|
10724
|
-
// src/mutations/self/events/registration/useUpdateSelfEventRegistrationResponses.ts
|
|
10725
|
-
var UpdateSelfEventRegistrationResponses = async ({
|
|
10726
|
-
eventId,
|
|
10727
|
-
passes,
|
|
10728
|
-
clientApiParams,
|
|
10729
|
-
queryClient
|
|
10730
|
-
}) => {
|
|
10731
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10732
|
-
const { data } = await clientApi.put(
|
|
10733
|
-
`/self/events/${eventId}/registration/questions`,
|
|
10734
|
-
passes
|
|
10735
|
-
);
|
|
10736
|
-
if (queryClient && data.status === "ok") {
|
|
10737
|
-
queryClient.removeQueries({
|
|
10738
|
-
queryKey: SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY(eventId),
|
|
10739
|
-
exact: false
|
|
10740
|
-
});
|
|
10741
|
-
}
|
|
10742
|
-
return data;
|
|
10743
|
-
};
|
|
10744
|
-
var useUpdateSelfEventRegistrationResponses = (options = {}) => {
|
|
10745
|
-
return useConnectedMutation_default(UpdateSelfEventRegistrationResponses, options);
|
|
10746
|
-
};
|
|
10747
|
-
|
|
10748
|
-
// src/mutations/self/events/registration/useUpdateSelfEventRegistrationSearchListResponse.ts
|
|
10749
|
-
var UpdateSelfEventRegistrationSearchListResponse = async ({
|
|
10750
|
-
eventId,
|
|
10751
|
-
passId,
|
|
10752
|
-
questionId,
|
|
10753
|
-
searchListValueId,
|
|
10754
|
-
clientApiParams,
|
|
10755
|
-
queryClient
|
|
10756
|
-
}) => {
|
|
10757
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10758
|
-
const { data } = await clientApi.put(
|
|
10759
|
-
`/self/events/${eventId}/registration/passes/${passId}/questions/${questionId}`,
|
|
10760
|
-
{ response: searchListValueId }
|
|
10761
|
-
);
|
|
10762
|
-
if (queryClient && data.status === "ok") {
|
|
10763
|
-
queryClient.removeQueries({
|
|
10764
|
-
queryKey: SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY(eventId),
|
|
10765
|
-
exact: false
|
|
10766
|
-
});
|
|
10767
|
-
}
|
|
10768
|
-
return data;
|
|
10769
|
-
};
|
|
10770
|
-
var useUpdateSelfEventRegistrationSearchListResponse = (options = {}) => {
|
|
10771
|
-
return useConnectedMutation_default(UpdateSelfEventRegistrationSearchListResponse, options);
|
|
10772
|
-
};
|
|
10773
|
-
|
|
10774
10424
|
// src/mutations/self/events/attendee/useUpdateSelfEventAttendeePassResponses.ts
|
|
10775
10425
|
var UpdateSelfEventAttendeePassResponses = async ({
|
|
10776
10426
|
eventId,
|
|
@@ -13612,11 +13262,7 @@ export {
|
|
|
13612
13262
|
GetSelfEventListingReport,
|
|
13613
13263
|
GetSelfEventListings,
|
|
13614
13264
|
GetSelfEventRegistration,
|
|
13615
|
-
GetSelfEventRegistrationAddOns,
|
|
13616
|
-
GetSelfEventRegistrationIntent,
|
|
13617
13265
|
GetSelfEventRegistrationPassTypes,
|
|
13618
|
-
GetSelfEventRegistrationQuestions,
|
|
13619
|
-
GetSelfEventRegistrationRoomTypes,
|
|
13620
13266
|
GetSelfEventSessions,
|
|
13621
13267
|
GetSelfEventTicketCouponIntent,
|
|
13622
13268
|
GetSelfEvents,
|
|
@@ -13738,7 +13384,6 @@ export {
|
|
|
13738
13384
|
RemoveListingCoHost,
|
|
13739
13385
|
RemoveListingSponsor,
|
|
13740
13386
|
RemoveLogin,
|
|
13741
|
-
RemoveSelfEventRegistrationCoupon,
|
|
13742
13387
|
RemoveSelfEventSession,
|
|
13743
13388
|
RemoveThreadMessageReaction,
|
|
13744
13389
|
ReportActivity,
|
|
@@ -13771,14 +13416,10 @@ export {
|
|
|
13771
13416
|
SELF_EVENT_ATTENDEE_QUERY_KEY,
|
|
13772
13417
|
SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY,
|
|
13773
13418
|
SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY,
|
|
13774
|
-
SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY,
|
|
13775
13419
|
SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY,
|
|
13776
|
-
SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY,
|
|
13777
13420
|
SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY,
|
|
13778
13421
|
SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY,
|
|
13779
13422
|
SELF_EVENT_REGISTRATION_QUERY_KEY,
|
|
13780
|
-
SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY,
|
|
13781
|
-
SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY,
|
|
13782
13423
|
SELF_EVENT_SESSIONS_QUERY_KEY,
|
|
13783
13424
|
SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY,
|
|
13784
13425
|
SELF_GROUP_ACTIVITIES_QUERY_KEY,
|
|
@@ -13903,12 +13544,9 @@ export {
|
|
|
13903
13544
|
SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA,
|
|
13904
13545
|
SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA,
|
|
13905
13546
|
SET_SELF_EVENT_ATTENDEE_QUERY_DATA,
|
|
13906
|
-
SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA,
|
|
13907
13547
|
SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA,
|
|
13908
13548
|
SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA,
|
|
13909
13549
|
SET_SELF_EVENT_REGISTRATION_QUERY_DATA,
|
|
13910
|
-
SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA,
|
|
13911
|
-
SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA,
|
|
13912
13550
|
SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA,
|
|
13913
13551
|
SET_SELF_PROFILE_QUERY_DATA,
|
|
13914
13552
|
SET_SELF_QUERY_DATA,
|
|
@@ -13948,7 +13586,6 @@ export {
|
|
|
13948
13586
|
SURVEY_SUBMISSIONS_QUERY_KEY,
|
|
13949
13587
|
SURVEY_SUBMISSION_QUERY_KEY,
|
|
13950
13588
|
SURVEY_SUBMISSION_SECTIONS_QUERY_KEY,
|
|
13951
|
-
SelectSelfEventRegistrationCoupon,
|
|
13952
13589
|
SeriesQuestionType,
|
|
13953
13590
|
SessionAccess,
|
|
13954
13591
|
SessionVisibility,
|
|
@@ -14007,11 +13644,6 @@ export {
|
|
|
14007
13644
|
UpdateSelfEventAttendeePassResponses,
|
|
14008
13645
|
UpdateSelfEventRegistration,
|
|
14009
13646
|
UpdateSelfEventRegistrationPassResponse,
|
|
14010
|
-
UpdateSelfEventRegistrationPasses,
|
|
14011
|
-
UpdateSelfEventRegistrationPurchaseAddOn,
|
|
14012
|
-
UpdateSelfEventRegistrationReservations,
|
|
14013
|
-
UpdateSelfEventRegistrationResponses,
|
|
14014
|
-
UpdateSelfEventRegistrationSearchListResponse,
|
|
14015
13647
|
UpdateSelfGroupMembership,
|
|
14016
13648
|
UpdateSelfImage,
|
|
14017
13649
|
UpdateSelfLead,
|
|
@@ -14300,11 +13932,7 @@ export {
|
|
|
14300
13932
|
useGetSelfEventListings,
|
|
14301
13933
|
useGetSelfEventListingsRegistrations,
|
|
14302
13934
|
useGetSelfEventRegistration,
|
|
14303
|
-
useGetSelfEventRegistrationAddOns,
|
|
14304
|
-
useGetSelfEventRegistrationIntent,
|
|
14305
13935
|
useGetSelfEventRegistrationPassTypes,
|
|
14306
|
-
useGetSelfEventRegistrationQuestions,
|
|
14307
|
-
useGetSelfEventRegistrationRoomTypes,
|
|
14308
13936
|
useGetSelfEventSessions,
|
|
14309
13937
|
useGetSelfEventTicketCouponIntent,
|
|
14310
13938
|
useGetSelfEvents,
|
|
@@ -14375,11 +14003,9 @@ export {
|
|
|
14375
14003
|
useRemoveListingCoHost,
|
|
14376
14004
|
useRemoveListingSponsor,
|
|
14377
14005
|
useRemoveLogin,
|
|
14378
|
-
useRemoveSelfEventRegistrationCoupon,
|
|
14379
14006
|
useRemoveSelfEventSession,
|
|
14380
14007
|
useRemoveThreadMessageReaction,
|
|
14381
14008
|
useReportActivity,
|
|
14382
|
-
useSelectSelfEventRegistrationCoupon,
|
|
14383
14009
|
useSetContentPublishSchedule,
|
|
14384
14010
|
useStartSurvey,
|
|
14385
14011
|
useSubmitSurvey,
|
|
@@ -14415,11 +14041,6 @@ export {
|
|
|
14415
14041
|
useUpdateSelfEventAttendeePassResponses,
|
|
14416
14042
|
useUpdateSelfEventRegistration,
|
|
14417
14043
|
useUpdateSelfEventRegistrationPassResponse,
|
|
14418
|
-
useUpdateSelfEventRegistrationPasses,
|
|
14419
|
-
useUpdateSelfEventRegistrationPurchaseAddOn,
|
|
14420
|
-
useUpdateSelfEventRegistrationReservations,
|
|
14421
|
-
useUpdateSelfEventRegistrationResponses,
|
|
14422
|
-
useUpdateSelfEventRegistrationSearchListResponse,
|
|
14423
14044
|
useUpdateSelfGroupMembership,
|
|
14424
14045
|
useUpdateSelfImage,
|
|
14425
14046
|
useUpdateSelfLead,
|