@connectedxm/client 3.0.8 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.ts +113 -230
  2. package/dist/index.js +320 -923
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1104,11 +1104,9 @@ interface BaseContent {
1104
1104
  duration: string | null;
1105
1105
  channel: BaseChannel;
1106
1106
  published: string | null;
1107
- visible: boolean;
1108
1107
  }
1109
1108
  interface Content extends BaseContent {
1110
1109
  body: string | null;
1111
- editor: string | null;
1112
1110
  externalUrl: string | null;
1113
1111
  appleUrl: string | null;
1114
1112
  spotifyUrl: string | null;
@@ -2266,6 +2264,7 @@ declare const ERR_TIER_REQUIRED = 457;
2266
2264
  declare const ERR_SUBSCRIPTION_REQUIRED = 458;
2267
2265
  declare const ERR_INTEGRATION_PERMISSION_DENIED = 459;
2268
2266
  declare const ERR_KNOWN_ERROR = 460;
2267
+ declare const ERR_PRIVATE_CHANNEL = 461;
2269
2268
  declare const CUSTOM_ERROR_CODES: number[];
2270
2269
  declare const GetErrorMessage: (error: any, fallback?: string) => string;
2271
2270
 
@@ -2695,103 +2694,6 @@ interface GetChannelContentGuestsParams extends InfiniteQueryParams {
2695
2694
  declare const GetChannelContentGuests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelContentGuestsParams) => Promise<ConnectedXMResponse<ContentGuest[]>>;
2696
2695
  declare const useGetChannelContentGuests: (channelId: string, contentId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentGuests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ContentGuest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2697
2696
 
2698
- declare const MANAGED_CHANNEL_COLLECTION_QUERY_KEY: (channelId: string, collectionId: string) => QueryKey;
2699
- declare const SET_MANAGED_CHANNEL_COLLECTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MANAGED_CHANNEL_COLLECTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetManagedChannelCollection>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2700
- interface GetManagedChannelCollectionParams extends SingleQueryParams {
2701
- channelId: string;
2702
- collectionId: string;
2703
- }
2704
- declare const GetManagedChannelCollection: ({ channelId, collectionId, clientApiParams, }: GetManagedChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
2705
- declare const useGetManagedChannelCollection: (channelId?: string, collectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetManagedChannelCollection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2706
-
2707
- declare const MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY: (channelId: string, collectionId: string) => QueryKey;
2708
- interface GetManagedChannelCollectionContentsParams extends InfiniteQueryParams {
2709
- channelId: string;
2710
- collectionId: string;
2711
- }
2712
- declare const GetManagedChannelCollectionContents: ({ channelId, collectionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelCollectionContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
2713
- declare const useGetManagedChannelCollectionContents: (channelId: string, collectionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelCollectionContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2714
-
2715
- declare const MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY: (channelId: string) => QueryKey;
2716
- declare const SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetManagedChannelCollections>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
2717
- interface GetManagedChannelCollectionsParams extends InfiniteQueryParams {
2718
- channelId: string;
2719
- }
2720
- declare const GetManagedChannelCollections: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelCollectionsParams) => Promise<ConnectedXMResponse<ChannelCollection[]>>;
2721
- declare const useGetManagedChannelCollections: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelCollections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelCollection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2722
-
2723
- declare const MANAGED_CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
2724
- declare const SET_MANAGED_CHANNEL_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MANAGED_CHANNEL_CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetManagedChannelContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2725
- interface GetManagedChannelContentParams extends SingleQueryParams {
2726
- channelId: string;
2727
- contentId: string;
2728
- }
2729
- declare const GetManagedChannelContent: ({ contentId, channelId, clientApiParams, }: GetManagedChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
2730
- declare const useGetManagedChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetManagedChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2731
-
2732
- declare const MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
2733
- declare const SET_MANAGED_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetManagedChannelContentActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
2734
- interface GetManagedChannelContentActivitiesParams extends InfiniteQueryParams {
2735
- channelId: string;
2736
- contentId: string;
2737
- }
2738
- declare const GetManagedChannelContentActivities: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelContentActivitiesParams) => Promise<ConnectedXMResponse<Activity[]>>;
2739
- declare const useGetManagedChannelContentActivities: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelContentActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2740
-
2741
- declare const MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
2742
- interface GetManagedChannelContentInterestsParams extends InfiniteQueryParams {
2743
- channelId: string;
2744
- contentId: string;
2745
- }
2746
- declare const GetManagedChannelContentInterests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelContentInterestsParams) => Promise<ConnectedXMResponse<Interest[]>>;
2747
- declare const useGetManagedChannelContentInterests: (channelId: string, contentId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelContentInterests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Interest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2748
-
2749
- declare const MANAGED_CHANNEL_CONTENTS_QUERY_KEY: (channelId: string) => QueryKey;
2750
- declare const SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MANAGED_CHANNEL_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetManagedChannelContents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
2751
- interface GetManagedChannelContentsParams extends InfiniteQueryParams {
2752
- channelId: string;
2753
- }
2754
- declare const GetManagedChannelContents: ({ pageParam, pageSize, orderBy, search, channelId, clientApiParams, }: GetManagedChannelContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
2755
- declare const useGetManagedChannelContents: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2756
-
2757
- declare const MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
2758
- interface GetManagedChannelContentGuestsParams extends InfiniteQueryParams {
2759
- channelId: string;
2760
- contentId: string;
2761
- }
2762
- declare const GetManagedChannelContentGuests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelContentGuestsParams) => Promise<ConnectedXMResponse<ContentGuest[]>>;
2763
- declare const useGetManagedChannelContentGuests: (channelId: string, contentId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelContentGuests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ContentGuest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2764
-
2765
- declare const MANAGED_CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
2766
- declare const SET_MANAGED_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MANAGED_CHANNEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetManagedChannel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2767
- interface GetManagedChannelParams extends SingleQueryParams {
2768
- channelId: string;
2769
- }
2770
- declare const GetManagedChannel: ({ channelId, clientApiParams, }: GetManagedChannelParams) => Promise<ConnectedXMResponse<Channel>>;
2771
- declare const useGetManagedChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetManagedChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2772
-
2773
- declare const MANAGED_CHANNELS_QUERY_KEY: () => QueryKey;
2774
- declare const SET_MANAGED_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MANAGED_CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetManagedChannels>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
2775
- interface GetManagedChannelsParams extends InfiniteQueryParams {
2776
- }
2777
- declare const GetManagedChannels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
2778
- declare const useGetManagedChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2779
-
2780
- declare const MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY: (channelId: string) => QueryKey;
2781
- declare const SET_MANAGED_CHANNEL_SUBSCRIBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetManagedChannelSubscribers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
2782
- interface GetManagedChannelSubscribersParams extends InfiniteQueryParams {
2783
- channelId: string;
2784
- }
2785
- declare const GetManagedChannelSubscribers: ({ pageParam, pageSize, orderBy, search, channelId, clientApiParams, }: GetManagedChannelSubscribersParams) => Promise<ConnectedXMResponse<ChannelSubscriber[]>>;
2786
- declare const useGetManagedChannelSubscribers: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelSubscribers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelSubscriber[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2787
-
2788
- declare const MANAGED_CHANNEL_INTERESTS_QUERY_KEY: (channelId: string) => QueryKey;
2789
- interface GetManagedChannelInterestsParams extends InfiniteQueryParams {
2790
- channelId: string;
2791
- }
2792
- declare const GetManagedChannelInterests: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelInterestsParams) => Promise<ConnectedXMResponse<Interest[]>>;
2793
- declare const useGetManagedChannelInterests: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetManagedChannelInterests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Interest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2794
-
2795
2697
  declare const CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
2796
2698
  declare const SET_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2797
2699
  interface GetChannelParams extends SingleQueryParams {
@@ -2807,6 +2709,14 @@ interface GetChannelsParams extends InfiniteQueryParams {
2807
2709
  declare const GetChannels: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
2808
2710
  declare const useGetChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2809
2711
 
2712
+ declare const CHANNEL_SUBSCRIBERS_QUERY_KEY: (channelId: string) => QueryKey;
2713
+ declare const SET_CHANNEL_SUBSCRIBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_SUBSCRIBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelSubscribers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
2714
+ interface GetChannelSubscribersParams extends InfiniteQueryParams {
2715
+ channelId: string;
2716
+ }
2717
+ declare const GetChannelSubscribers: ({ pageParam, pageSize, orderBy, search, channelId, clientApiParams, }: GetChannelSubscribersParams) => Promise<ConnectedXMResponse<ChannelSubscriber[]>>;
2718
+ declare const useGetChannelSubscribers: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelSubscribers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelSubscriber[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2719
+
2810
2720
  declare const SUBSCRIBED_CHANNELS_QUERY_KEY: () => QueryKey;
2811
2721
  interface GetSubscribedChannelsParams extends InfiniteQueryParams {
2812
2722
  }
@@ -2820,20 +2730,6 @@ interface GetChannelInterestsParams extends InfiniteQueryParams {
2820
2730
  declare const GetChannelInterests: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelInterestsParams) => Promise<ConnectedXMResponse<Interest[]>>;
2821
2731
  declare const useGetChannelInterests: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelInterests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Interest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2822
2732
 
2823
- declare const CONTENT_QUERY_KEY: (contentId: string) => QueryKey;
2824
- declare const SET_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2825
- interface GetContentParams extends SingleQueryParams {
2826
- contentId: string;
2827
- }
2828
- declare const GetContent: ({ contentId, clientApiParams, }: GetContentParams) => Promise<ConnectedXMResponse<Content>>;
2829
- declare const useGetContent: (contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2830
-
2831
- declare const CONTENT_INTERESTS_QUERY_KEY: () => QueryKey;
2832
- interface GetContentInterestsParams extends InfiniteQueryParams {
2833
- }
2834
- declare const GetContentInterests: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetContentInterestsParams) => Promise<ConnectedXMResponse<Interest[]>>;
2835
- declare const useGetContentInterests: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentInterests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Interest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2836
-
2837
2733
  declare const CONTENTS_QUERY_KEY: (type?: "video" | "audio" | "article", featured?: boolean, interest?: string, past?: boolean) => QueryKey;
2838
2734
  declare const SET_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
2839
2735
  interface GetContentsParams extends InfiniteQueryParams {
@@ -4046,43 +3942,6 @@ interface DeleteDraftBookingParams extends MutationParams {
4046
3942
  declare const DeleteDraftBooking: ({ bookingId, clientApiParams, queryClient, }: DeleteDraftBookingParams) => Promise<ConnectedXMResponse<null>>;
4047
3943
  declare const useDeleteDraftBooking: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteDraftBooking>>, Omit<DeleteDraftBookingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteDraftBookingParams, "queryClient" | "clientApiParams">, unknown>;
4048
3944
 
4049
- interface LikeContentParams extends MutationParams {
4050
- channelId: string;
4051
- contentId: string;
4052
- }
4053
- declare const LikeContent: ({ channelId, contentId, clientApiParams, queryClient, }: LikeContentParams) => Promise<ConnectedXMResponse<Content>>;
4054
- declare const useLikeContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeContent>>, Omit<LikeContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<LikeContentParams, "queryClient" | "clientApiParams">, unknown>;
4055
-
4056
- interface UnlikeContentParams extends MutationParams {
4057
- channelId: string;
4058
- contentId: string;
4059
- }
4060
- declare const UnlikeContent: ({ channelId, contentId, clientApiParams, queryClient, }: UnlikeContentParams) => Promise<ConnectedXMResponse<Content>>;
4061
- declare const useUnlikeContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeContent>>, Omit<UnlikeContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<UnlikeContentParams, "queryClient" | "clientApiParams">, unknown>;
4062
-
4063
- interface CreateChannelSubscriberParams extends MutationParams {
4064
- channelId: string;
4065
- }
4066
- declare const CreateChannelSubscriber: ({ channelId, clientApiParams, queryClient, }: CreateChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
4067
- declare const useCreateChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelSubscriber>>, Omit<CreateChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ChannelSubscriber>, any>, Omit<CreateChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
4068
-
4069
- interface DeleteChannelSubscriberParams extends MutationParams {
4070
- channelId: string;
4071
- }
4072
- declare const DeleteChannelSubscriber: ({ channelId, clientApiParams, queryClient, }: DeleteChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
4073
- declare const useDeleteChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelSubscriber>>, Omit<DeleteChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ChannelSubscriber>, any>, Omit<DeleteChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
4074
-
4075
- interface UpdateChannelSubscriberParams extends MutationParams {
4076
- channelId: string;
4077
- channelSubscriber: UpdateChannelSubscriber;
4078
- }
4079
- interface UpdateChannelSubscriber {
4080
- contentEmailNotification?: boolean;
4081
- contentPushNotification?: boolean;
4082
- }
4083
- declare const UpdateChannelSubscriber: ({ channelId, channelSubscriber, clientApiParams, }: UpdateChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
4084
- declare const useUpdateChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelSubscriber>>, Omit<UpdateChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ChannelSubscriber>, any>, Omit<UpdateChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
4085
-
4086
3945
  interface AddChannelCollectionContentParams extends MutationParams {
4087
3946
  channelId: string;
4088
3947
  collectionId: string;
@@ -4101,14 +3960,14 @@ interface RemoveChannelCollectionContentParams extends MutationParams {
4101
3960
  declare const RemoveChannelCollectionContent: ({ channelId, collectionId, contentId, clientApiParams, queryClient, }: RemoveChannelCollectionContentParams) => Promise<ConnectedXMResponse<null>>;
4102
3961
  declare const useRemoveChannelCollectionContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveChannelCollectionContent>>, Omit<RemoveChannelCollectionContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveChannelCollectionContentParams, "queryClient" | "clientApiParams">, unknown>;
4103
3962
 
4104
- interface CreateChannelCollectionParams extends MutationParams {
4105
- channelId: string;
4106
- collection: CreateChannelCollection;
4107
- }
4108
- interface CreateChannelCollection {
3963
+ interface CreateChannelCollectionPayload {
4109
3964
  name: string;
4110
3965
  description?: string;
4111
3966
  }
3967
+ interface CreateChannelCollectionParams extends MutationParams {
3968
+ channelId: string;
3969
+ collection: CreateChannelCollectionPayload;
3970
+ }
4112
3971
  declare const CreateChannelCollection: ({ channelId, collection, clientApiParams, queryClient, }: CreateChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
4113
3972
  declare const useCreateChannelCollection: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelCollection>>, Omit<CreateChannelCollectionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<ChannelCollection>, any>, Omit<CreateChannelCollectionParams, "queryClient" | "clientApiParams">, unknown>;
4114
3973
 
@@ -4119,25 +3978,19 @@ interface DeleteChannelCollectionParams extends MutationParams {
4119
3978
  declare const DeleteChannelCollection: ({ channelId, collectionId, clientApiParams, queryClient, }: DeleteChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
4120
3979
  declare const useDeleteChannelCollection: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelCollection>>, Omit<DeleteChannelCollectionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<ChannelCollection>, any>, Omit<DeleteChannelCollectionParams, "queryClient" | "clientApiParams">, unknown>;
4121
3980
 
3981
+ interface UpdateChannelCollectionPayload {
3982
+ name?: string;
3983
+ description?: string;
3984
+ }
4122
3985
  interface UpdateChannelCollectionParams extends MutationParams {
4123
3986
  channelId: string;
4124
- collection: UpdateChannelCollection;
3987
+ collection: UpdateChannelCollectionPayload;
4125
3988
  collectionId: string;
4126
3989
  }
4127
- interface UpdateChannelCollection {
4128
- name?: string;
4129
- description?: string;
4130
- }
4131
3990
  declare const UpdateChannelCollection: ({ channelId, collection, collectionId, clientApiParams, queryClient, }: UpdateChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
4132
3991
  declare const useUpdateChannelCollection: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelCollection>>, Omit<UpdateChannelCollectionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<ChannelCollection>, any>, Omit<UpdateChannelCollectionParams, "queryClient" | "clientApiParams">, unknown>;
4133
3992
 
4134
- interface CreateContentGuestParams extends MutationParams {
4135
- channelId: string;
4136
- contentId: string;
4137
- guest: CreateContentGuest;
4138
- imageDataUri?: string;
4139
- }
4140
- interface CreateContentGuest {
3993
+ interface CreateContentGuestPayload {
4141
3994
  accountId?: string | null;
4142
3995
  type: ContentGuestType;
4143
3996
  name: string;
@@ -4155,17 +4008,16 @@ interface CreateContentGuest {
4155
4008
  youtube: string | null;
4156
4009
  discord: string | null;
4157
4010
  }
4158
- declare const CreateContentGuest: ({ channelId, contentId, guest, imageDataUri, clientApiParams, queryClient, }: CreateContentGuestParams) => Promise<ConnectedXMResponse<ContentGuest>>;
4159
- declare const useCreateContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateContentGuest>>, Omit<CreateContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ContentGuest>, axios.AxiosError<ConnectedXMResponse<ContentGuest>, any>, Omit<CreateContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
4160
-
4161
- interface UpdateContentGuestParams extends MutationParams {
4011
+ interface CreateContentGuestParams extends MutationParams {
4162
4012
  channelId: string;
4163
4013
  contentId: string;
4164
- guest: UpdateContentGuest;
4165
- guestId: string;
4014
+ guest: CreateContentGuestPayload;
4166
4015
  imageDataUri?: string;
4167
4016
  }
4168
- interface UpdateContentGuest {
4017
+ declare const CreateContentGuest: ({ channelId, contentId, guest, imageDataUri, clientApiParams, queryClient, }: CreateContentGuestParams) => Promise<ConnectedXMResponse<ContentGuest>>;
4018
+ declare const useCreateContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateContentGuest>>, Omit<CreateContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ContentGuest>, axios.AxiosError<ConnectedXMResponse<ContentGuest>, any>, Omit<CreateContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
4019
+
4020
+ interface UpdateContentGuestPayload {
4169
4021
  accountId?: string | null;
4170
4022
  type: ContentGuestType;
4171
4023
  name: string;
@@ -4183,6 +4035,13 @@ interface UpdateContentGuest {
4183
4035
  youtube: string | null;
4184
4036
  discord: string | null;
4185
4037
  }
4038
+ interface UpdateContentGuestParams extends MutationParams {
4039
+ channelId: string;
4040
+ contentId: string;
4041
+ guest: UpdateContentGuestPayload;
4042
+ guestId: string;
4043
+ imageDataUri?: string;
4044
+ }
4186
4045
  declare const UpdateContentGuest: ({ channelId, contentId, guest, guestId, imageDataUri, clientApiParams, queryClient, }: UpdateContentGuestParams) => Promise<ConnectedXMResponse<ContentGuest>>;
4187
4046
  declare const useUpdateContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateContentGuest>>, Omit<UpdateContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ContentGuest>, axios.AxiosError<ConnectedXMResponse<ContentGuest>, any>, Omit<UpdateContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
4188
4047
 
@@ -4194,13 +4053,13 @@ interface DeleteContentGuestParams extends MutationParams {
4194
4053
  declare const DeleteContentGuest: ({ channelId, contentId, guestId, clientApiParams, queryClient, }: DeleteContentGuestParams) => Promise<ConnectedXMResponse<null>>;
4195
4054
  declare const useDeleteContentGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteContentGuest>>, Omit<DeleteContentGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteContentGuestParams, "queryClient" | "clientApiParams">, unknown>;
4196
4055
 
4056
+ interface AddContentInterestPayload {
4057
+ name: string;
4058
+ }
4197
4059
  interface AddContentInterestParams extends MutationParams {
4198
4060
  channelId: string;
4199
4061
  contentId: string;
4200
- interest: AddContentInterest;
4201
- }
4202
- interface AddContentInterest {
4203
- name: string;
4062
+ interest: AddContentInterestPayload;
4204
4063
  }
4205
4064
  declare const AddContentInterest: ({ channelId, contentId, interest, clientApiParams, }: AddContentInterestParams) => Promise<ConnectedXMResponse<Interest>>;
4206
4065
  declare const useAddContentInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddContentInterest>>, Omit<AddContentInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<Interest>, any>, Omit<AddContentInterestParams, "queryClient" | "clientApiParams">, unknown>;
@@ -4220,24 +4079,8 @@ interface DeleteContentPublishScheduleParams extends MutationParams {
4220
4079
  declare const DeleteContentPublishSchedule: ({ channelId, contentId, clientApiParams, }: DeleteContentPublishScheduleParams) => Promise<ConnectedXMResponse<Content>>;
4221
4080
  declare const useDeleteContentPublishSchedule: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteContentPublishSchedule>>, Omit<DeleteContentPublishScheduleParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<DeleteContentPublishScheduleParams, "queryClient" | "clientApiParams">, unknown>;
4222
4081
 
4223
- interface SetContentPublishScheduleParams extends MutationParams {
4224
- channelId: string;
4225
- contentId: string;
4226
- date: string;
4227
- email?: boolean;
4228
- push?: boolean;
4229
- visible?: boolean;
4230
- }
4231
- declare const SetContentPublishSchedule: ({ channelId, contentId, date, email, push, visible, clientApiParams, }: SetContentPublishScheduleParams) => Promise<ConnectedXMResponse<Content>>;
4232
- declare const useSetContentPublishSchedule: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SetContentPublishSchedule>>, Omit<SetContentPublishScheduleParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<SetContentPublishScheduleParams, "queryClient" | "clientApiParams">, unknown>;
4233
-
4234
- interface CreateChannelContentParams extends MutationParams {
4235
- channelId: string;
4236
- content: CreateChannelContent;
4237
- }
4238
- interface CreateChannelContent {
4082
+ interface CreateChannelContentPayload {
4239
4083
  title: string;
4240
- visible?: boolean;
4241
4084
  description?: string | null;
4242
4085
  duration?: string | null;
4243
4086
  body?: string | null;
@@ -4247,22 +4090,49 @@ interface CreateChannelContent {
4247
4090
  googleUrl?: string | null;
4248
4091
  youtubeUrl?: string | null;
4249
4092
  }
4093
+ interface CreateChannelContentParams extends MutationParams {
4094
+ channelId: string;
4095
+ content: CreateChannelContentPayload;
4096
+ }
4250
4097
  declare const CreateChannelContent: ({ channelId, content, clientApiParams, queryClient, }: CreateChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
4251
4098
  declare const useCreateChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelContent>>, Omit<CreateChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<CreateChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
4252
4099
 
4253
- interface UpdateChannelContentParams extends MutationParams {
4100
+ interface DeleteChannelContentParams extends MutationParams {
4254
4101
  channelId: string;
4255
4102
  contentId: string;
4256
- content: UpdateChannelContent;
4257
- imageDataUri?: string;
4258
4103
  }
4259
- interface UpdateChannelContent {
4260
- visible?: boolean;
4104
+ declare const DeleteChannelContent: ({ channelId, contentId, clientApiParams, }: DeleteChannelContentParams) => Promise<ConnectedXMResponse<null>>;
4105
+ declare const useDeleteChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelContent>>, Omit<DeleteChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
4106
+
4107
+ interface LikeContentParams extends MutationParams {
4108
+ channelId: string;
4109
+ contentId: string;
4110
+ }
4111
+ declare const LikeContent: ({ channelId, contentId, clientApiParams, queryClient, }: LikeContentParams) => Promise<ConnectedXMResponse<Content>>;
4112
+ declare const useLikeContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeContent>>, Omit<LikeContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<LikeContentParams, "queryClient" | "clientApiParams">, unknown>;
4113
+
4114
+ interface SetContentPublishScheduleParams extends MutationParams {
4115
+ channelId: string;
4116
+ contentId: string;
4117
+ date: string;
4118
+ email?: boolean;
4119
+ push?: boolean;
4120
+ }
4121
+ declare const SetContentPublishSchedule: ({ channelId, contentId, date, email, push, clientApiParams, }: SetContentPublishScheduleParams) => Promise<ConnectedXMResponse<Content>>;
4122
+ declare const useSetContentPublishSchedule: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SetContentPublishSchedule>>, Omit<SetContentPublishScheduleParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<SetContentPublishScheduleParams, "queryClient" | "clientApiParams">, unknown>;
4123
+
4124
+ interface UnlikeContentParams extends MutationParams {
4125
+ channelId: string;
4126
+ contentId: string;
4127
+ }
4128
+ declare const UnlikeContent: ({ channelId, contentId, clientApiParams, queryClient, }: UnlikeContentParams) => Promise<ConnectedXMResponse<Content>>;
4129
+ declare const useUnlikeContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeContent>>, Omit<UnlikeContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<UnlikeContentParams, "queryClient" | "clientApiParams">, unknown>;
4130
+
4131
+ interface UpdateChannelContentPayload {
4261
4132
  title?: string;
4262
4133
  description?: string | null;
4263
4134
  duration?: string | null;
4264
4135
  body?: string | null;
4265
- editor?: string | null;
4266
4136
  externalUrl?: string | null;
4267
4137
  appleUrl?: string | null;
4268
4138
  spotifyUrl?: string | null;
@@ -4274,31 +4144,21 @@ interface UpdateChannelContent {
4274
4144
  email?: boolean;
4275
4145
  push?: boolean;
4276
4146
  }
4277
- declare const UpdateChannelContent: ({ channelId, contentId, content, imageDataUri, clientApiParams, queryClient, }: UpdateChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
4278
- declare const useUpdateChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelContent>>, Omit<UpdateChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<UpdateChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
4279
-
4280
- interface DeleteChannelContentParams extends MutationParams {
4147
+ interface UpdateChannelContentParams extends MutationParams {
4281
4148
  channelId: string;
4282
4149
  contentId: string;
4150
+ content: UpdateChannelContentPayload;
4151
+ imageDataUri?: string;
4283
4152
  }
4284
- declare const DeleteChannelContent: ({ channelId, contentId, clientApiParams, }: DeleteChannelContentParams) => Promise<ConnectedXMResponse<null>>;
4285
- declare const useDeleteChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelContent>>, Omit<DeleteChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
4153
+ declare const UpdateChannelContent: ({ channelId, contentId, content, imageDataUri, clientApiParams, queryClient, }: UpdateChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
4154
+ declare const useUpdateChannelContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelContent>>, Omit<UpdateChannelContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<Content>, any>, Omit<UpdateChannelContentParams, "queryClient" | "clientApiParams">, unknown>;
4286
4155
 
4287
- interface UploadChannelContentImageParams extends MutationParams {
4288
- channelId: string;
4289
- contentId: string;
4290
- imageDataUri: string;
4291
- filename?: string;
4156
+ interface AddChannelInterestPayload {
4157
+ name: string;
4292
4158
  }
4293
- declare const UploadChannelContentImage: ({ channelId, contentId, imageDataUri, filename, clientApiParams, }: UploadChannelContentImageParams) => Promise<ConnectedXMResponse<Image>>;
4294
- declare const useUploadChannelContentImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadChannelContentImage>>, Omit<UploadChannelContentImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Image>, axios.AxiosError<ConnectedXMResponse<Image>, any>, Omit<UploadChannelContentImageParams, "queryClient" | "clientApiParams">, unknown>;
4295
-
4296
4159
  interface AddChannelInterestParams extends MutationParams {
4297
4160
  channelId: string;
4298
- interest: AddChannelInterest;
4299
- }
4300
- interface AddChannelInterest {
4301
- name: string;
4161
+ interest: AddChannelInterestPayload;
4302
4162
  }
4303
4163
  declare const AddChannelInterest: ({ channelId, interest, clientApiParams, }: AddChannelInterestParams) => Promise<ConnectedXMResponse<Interest>>;
4304
4164
  declare const useAddChannelInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddChannelInterest>>, Omit<AddChannelInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<Interest>, any>, Omit<AddChannelInterestParams, "queryClient" | "clientApiParams">, unknown>;
@@ -4310,16 +4170,39 @@ interface RemoveChannelInterestParams extends MutationParams {
4310
4170
  declare const RemoveChannelInterest: ({ channelId, interestId, clientApiParams, }: RemoveChannelInterestParams) => Promise<ConnectedXMResponse<null>>;
4311
4171
  declare const useRemoveChannelInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveChannelInterest>>, Omit<RemoveChannelInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveChannelInterestParams, "queryClient" | "clientApiParams">, unknown>;
4312
4172
 
4313
- interface CreateChannelParams extends MutationParams {
4314
- channel: CreateChannel;
4315
- imageDataUri?: any;
4173
+ interface CreateChannelSubscriberParams extends MutationParams {
4174
+ channelId: string;
4316
4175
  }
4317
- interface CreateChannel {
4176
+ declare const CreateChannelSubscriber: ({ channelId, clientApiParams, queryClient, }: CreateChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
4177
+ declare const useCreateChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannelSubscriber>>, Omit<CreateChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ChannelSubscriber>, any>, Omit<CreateChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
4178
+
4179
+ interface UpdateChannelSubscriberParams extends MutationParams {
4180
+ channelId: string;
4181
+ channelSubscriber: UpdateChannelSubscriber;
4182
+ }
4183
+ interface UpdateChannelSubscriber {
4184
+ contentEmailNotification?: boolean;
4185
+ contentPushNotification?: boolean;
4186
+ }
4187
+ declare const UpdateChannelSubscriber: ({ channelId, channelSubscriber, clientApiParams, }: UpdateChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
4188
+ declare const useUpdateChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannelSubscriber>>, Omit<UpdateChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ChannelSubscriber>, any>, Omit<UpdateChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
4189
+
4190
+ interface DeleteChannelSubscriberParams extends MutationParams {
4191
+ channelId: string;
4192
+ }
4193
+ declare const DeleteChannelSubscriber: ({ channelId, clientApiParams, queryClient, }: DeleteChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
4194
+ declare const useDeleteChannelSubscriber: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannelSubscriber>>, Omit<DeleteChannelSubscriberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<ChannelSubscriber>, any>, Omit<DeleteChannelSubscriberParams, "queryClient" | "clientApiParams">, unknown>;
4195
+
4196
+ interface CreateChannelPayload {
4318
4197
  name: string;
4319
4198
  description?: string;
4320
4199
  visible: boolean;
4321
4200
  groupId?: string;
4322
4201
  }
4202
+ interface CreateChannelParams extends MutationParams {
4203
+ channel: CreateChannelPayload;
4204
+ imageDataUri?: any;
4205
+ }
4323
4206
  declare const CreateChannel: ({ channel, imageDataUri, clientApiParams, }: CreateChannelParams) => Promise<ConnectedXMResponse<Channel>>;
4324
4207
  declare const useCreateChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateChannel>>, Omit<CreateChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<Channel>, any>, Omit<CreateChannelParams, "queryClient" | "clientApiParams">, unknown>;
4325
4208
 
@@ -4329,12 +4212,7 @@ interface DeleteChannelParams extends MutationParams {
4329
4212
  declare const DeleteChannel: ({ channelId, clientApiParams, }: DeleteChannelParams) => Promise<ConnectedXMResponse<Channel>>;
4330
4213
  declare const useDeleteChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteChannel>>, Omit<DeleteChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<Channel>, any>, Omit<DeleteChannelParams, "queryClient" | "clientApiParams">, unknown>;
4331
4214
 
4332
- interface UpdateChannelParams extends MutationParams {
4333
- channelId: string;
4334
- channel: UpdateChannel;
4335
- imageDataUri?: any;
4336
- }
4337
- interface UpdateChannel {
4215
+ interface UpdateChannelPayload {
4338
4216
  name?: string;
4339
4217
  description?: string;
4340
4218
  visible?: boolean;
@@ -4346,6 +4224,11 @@ interface UpdateChannel {
4346
4224
  googleUrl?: string | null;
4347
4225
  youtubeUrl?: string | null;
4348
4226
  }
4227
+ interface UpdateChannelParams extends MutationParams {
4228
+ channelId: string;
4229
+ channel: UpdateChannelPayload;
4230
+ imageDataUri?: any;
4231
+ }
4349
4232
  declare const UpdateChannel: ({ channelId, channel, imageDataUri, clientApiParams, queryClient, }: UpdateChannelParams) => Promise<ConnectedXMResponse<Channel>>;
4350
4233
  declare const useUpdateChannel: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateChannel>>, Omit<UpdateChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<Channel>, any>, Omit<UpdateChannelParams, "queryClient" | "clientApiParams">, unknown>;
4351
4234
 
@@ -5359,4 +5242,4 @@ interface CreateInterestParams extends MutationParams {
5359
5242
  declare const CreateInterest: ({ interest, clientApiParams, }: CreateInterestParams) => Promise<ConnectedXMResponse<Interest>>;
5360
5243
  declare const useCreateInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateInterest>>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<Interest>, any>, Omit<CreateInterestParams, "queryClient" | "clientApiParams">, unknown>;
5361
5244
 
5362
- 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_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, ALL_GROUP_EVENTS, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountShare, type AccountTier, AccountType, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, AddContentInterest, type AddContentInterestParams, AddFreePassAddOns, type AddFreePassAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionSearchValue, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseNotification, type BaseOrganization, type BasePage, type BasePass, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveyQuestionSearchValue, type BaseSurveySection, type BaseSurveySubmission, type BaseTeamMember, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_INTERESTS_QUERY_KEY, CONTENT_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, CreateChannelContent, type CreateChannelContentParams, type CreateChannelParams, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThreadMessage, type CreateThreadMessageParams, Currency, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_LEADERBOARD_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_QUESTION_VALUES_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, type EventSessionQuestionSearchValue, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetAllGroupEvents, type GetAllGroupEventsProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentInterests, type GetContentInterestsParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, GetEventActivationCompletions, type GetEventActivationCompletionsProps, GetEventActivationLeaderboards, type GetEventActivationLeaderboardsProps, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessionQuestionSearchValues, type GetEventSessionQuestionSearchValuesProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetManagedChannel, GetManagedChannelCollection, GetManagedChannelCollectionContents, type GetManagedChannelCollectionContentsParams, type GetManagedChannelCollectionParams, GetManagedChannelCollections, type GetManagedChannelCollectionsParams, GetManagedChannelContent, GetManagedChannelContentActivities, type GetManagedChannelContentActivitiesParams, GetManagedChannelContentGuests, type GetManagedChannelContentGuestsParams, GetManagedChannelContentInterests, type GetManagedChannelContentInterestsParams, type GetManagedChannelContentParams, GetManagedChannelContents, type GetManagedChannelContentsParams, GetManagedChannelInterests, type GetManagedChannelInterestsParams, type GetManagedChannelParams, GetManagedChannelSubscribers, type GetManagedChannelSubscribersParams, GetManagedChannels, type GetManagedChannelsParams, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveyQuestionSearchValues, type GetSurveyQuestionSearchValuesProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, 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, MANAGED_CHANNELS_QUERY_KEY, MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_QUERY_KEY, MANAGED_CHANNEL_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_QUERY_KEY, MANAGED_CHANNEL_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_QUERY_KEY, MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_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_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ALL_GROUP_EVENTS_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LINK_PREVIEW_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_MANAGED_CHANNELS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTION_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENT_QUERY_DATA, SET_MANAGED_CHANNEL_QUERY_DATA, SET_MANAGED_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_MANAGED_CONTENT_ACTIVITIES_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, SubmitSelfEventSessionRegistration, type SubmitSelfEventSessionRegistrationParams, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, type SurveyQuestionSearchValue, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadChannelContentImage, type UploadChannelContentImageParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UploadVideo, type UploadVideoParams, type User, VIDEO_QUERY_KEY, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePassAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannels, useGetContent, useGetContentInterests, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationLeaderboards, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessionQuestionSearchValues, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetManagedChannel, useGetManagedChannelCollection, useGetManagedChannelCollectionContents, useGetManagedChannelCollections, useGetManagedChannelContent, useGetManagedChannelContentActivities, useGetManagedChannelContentGuests, useGetManagedChannelContentInterests, useGetManagedChannelContents, useGetManagedChannelInterests, useGetManagedChannelSubscribers, useGetManagedChannels, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveyQuestionSearchValues, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSelfEventRegistration, useSubmitSelfEventSessionRegistration, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadChannelContentImage, useUploadFile, useUploadImage, useUploadVideo };
5245
+ 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_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, ALL_GROUP_EVENTS, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountShare, type AccountTier, AccountType, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddFreePassAddOns, type AddFreePassAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionSearchValue, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseNotification, type BaseOrganization, type BasePage, type BasePass, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveyQuestionSearchValue, type BaseSurveySection, type BaseSurveySubmission, type BaseTeamMember, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThreadMessage, type CreateThreadMessageParams, Currency, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_PRIVATE_CHANNEL, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_LEADERBOARD_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_QUESTION_VALUES_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, type EventSessionQuestionSearchValue, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetAllGroupEvents, type GetAllGroupEventsProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, GetEventActivationCompletions, type GetEventActivationCompletionsProps, GetEventActivationLeaderboards, type GetEventActivationLeaderboardsProps, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessionQuestionSearchValues, type GetEventSessionQuestionSearchValuesProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveyQuestionSearchValues, type GetSurveyQuestionSearchValuesProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_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_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ALL_GROUP_EVENTS_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LINK_PREVIEW_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, SubmitSelfEventSessionRegistration, type SubmitSelfEventSessionRegistrationParams, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, type SurveyQuestionSearchValue, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, UploadVideo, type UploadVideoParams, type User, VIDEO_QUERY_KEY, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePassAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationLeaderboards, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessionQuestionSearchValues, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveyQuestionSearchValues, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSelfEventRegistration, useSubmitSelfEventSessionRegistration, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useUploadVideo };