@connectedxm/client 0.5.29 → 0.5.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -512,6 +512,8 @@ interface BasePurchase {
512
512
  reservationEnd: string | null;
513
513
  reservationSectionLocation: BaseEventReservationSectionLocation | null;
514
514
  responses: BaseRegistrationQuestionResponse[];
515
+ couponId: string | null;
516
+ coupon: BaseCoupon | null;
515
517
  createdAt: string;
516
518
  }
517
519
  interface Purchase extends BasePurchase {
@@ -563,7 +565,8 @@ declare enum NotificationType {
563
565
  EVENT = "EVENT",
564
566
  ACTIVITY = "ACTIVITY",
565
567
  GROUP_INVITATION = "GROUP_INVITATION",
566
- GROUP_REQUEST_ACCEPTED = "GROUP_REQUEST_ACCEPTED"
568
+ GROUP_REQUEST_ACCEPTED = "GROUP_REQUEST_ACCEPTED",
569
+ CONTENT = "CONTENT"
567
570
  }
568
571
  interface BaseNotification {
569
572
  id: string;
@@ -579,6 +582,7 @@ interface Notification extends BaseNotification {
579
582
  announcement: BaseAnnouncement | null;
580
583
  group: BaseGroup | null;
581
584
  invitation: BaseGroupInvitation | null;
585
+ content: BaseContent | null;
582
586
  createdAt: string;
583
587
  updatedAt: string;
584
588
  }
@@ -597,9 +601,8 @@ interface BaseCoupon {
597
601
  discountPercent: number | null;
598
602
  quantityMin: number | null;
599
603
  quantityMax: number | null;
600
- amountMin: number | null;
601
- amountMax: number | null;
602
604
  useLimit: number | null;
605
+ purchaseLimit: number | null;
603
606
  emailDomains: string | null;
604
607
  createdAt: string;
605
608
  updatedAt: string;
@@ -609,12 +612,12 @@ declare enum CouponType {
609
612
  ticket = "ticket"
610
613
  }
611
614
  interface Coupon extends BaseCoupon {
612
- description: string;
615
+ description: string | null;
613
616
  }
614
617
  declare const isTypeCoupon: (coupon: BaseCoupon | Coupon) => coupon is Coupon;
615
618
  interface ManagedCoupon extends Coupon {
616
619
  _count: {
617
- registrations: number;
620
+ purchases: number;
618
621
  };
619
622
  }
620
623
  declare const isManagedCoupon: (coupon: BaseCoupon | Coupon | ManagedCoupon) => coupon is ManagedCoupon;
@@ -625,6 +628,14 @@ interface ManagedCouponOrder {
625
628
  coupon: BaseCoupon | null;
626
629
  account: BaseAccount;
627
630
  }
631
+ interface ManagedCouponPurchase {
632
+ id: string;
633
+ coupon: BaseCoupon;
634
+ registration: {
635
+ account: BaseAccount;
636
+ };
637
+ createdAt: string;
638
+ }
628
639
  interface BaseInstance {
629
640
  id: string;
630
641
  code: string;
@@ -874,18 +885,26 @@ interface BaseChannel {
874
885
  name: string;
875
886
  description: string | null;
876
887
  image: BaseImage;
888
+ subscriberCount: number;
889
+ creatorId: string | null;
890
+ _count: {
891
+ contents: number;
892
+ };
877
893
  }
878
894
  interface Channel extends BaseChannel {
895
+ banner: BaseImage | null;
879
896
  priority: number;
880
897
  externalUrl: string | null;
881
898
  appleUrl: string | null;
882
899
  spotifyUrl: string | null;
883
900
  googleUrl: string | null;
884
901
  youtubeUrl: string | null;
902
+ visilble: boolean;
885
903
  hosts: BaseAccount[];
904
+ group: BaseGroup | null;
886
905
  }
887
906
  declare const isTypeChannel: (channel: BaseChannel | Channel) => channel is Channel;
888
- interface BaseChannelSubscription {
907
+ interface BaseChannelSubscriber {
889
908
  channelId: string;
890
909
  accountId: string;
891
910
  contentEmailNotification: boolean;
@@ -893,7 +912,7 @@ interface BaseChannelSubscription {
893
912
  updatedAt: string;
894
913
  createdAt: string;
895
914
  }
896
- interface ChannelSubscription extends BaseChannelSubscription {
915
+ interface ChannelSubscriber extends BaseChannelSubscriber {
897
916
  channel: BaseChannel;
898
917
  account: BaseAccount;
899
918
  }
@@ -908,35 +927,38 @@ interface BaseChannelCollection {
908
927
  }
909
928
  interface ChannelCollection extends BaseChannelCollection {
910
929
  }
911
- declare enum ContentType {
912
- article = "article",
913
- podcast = "podcast",
914
- video = "video"
915
- }
916
930
  interface BaseContent {
917
931
  id: string;
918
932
  featured: boolean;
919
933
  slug: string;
920
934
  title: string | null;
921
- type: ContentType;
922
935
  description: string | null;
923
936
  imageUrl: string | null;
924
- audioUrl: string | null;
925
- videoUrl: string | null;
937
+ image: BaseImage | null;
938
+ audio: BaseFile | null;
939
+ video: BaseVideo | null;
926
940
  duration: string | null;
927
941
  channel: BaseChannel;
928
942
  published: string | null;
943
+ visible: boolean;
929
944
  }
930
945
  interface Content extends BaseContent {
931
946
  body: string | null;
947
+ editor: string | null;
932
948
  externalUrl: string | null;
933
949
  appleUrl: string | null;
934
950
  spotifyUrl: string | null;
935
951
  googleUrl: string | null;
936
952
  youtubeUrl: string | null;
937
953
  guests: BaseContentGuest[];
954
+ publishSchedule: BaseSchedule | null;
955
+ email: boolean;
956
+ push: boolean;
938
957
  createdAt: string;
939
958
  updatedAt: string;
959
+ _count: {
960
+ likes: number;
961
+ };
940
962
  }
941
963
  declare const isTypeContent: (content: BaseContent | Content) => content is Content;
942
964
  declare enum ContentGuestType {
@@ -981,8 +1003,6 @@ interface Registration extends BaseRegistration {
981
1003
  event: RegistrationEventDetails;
982
1004
  account: BaseAccount;
983
1005
  status: RegistrationStatus;
984
- couponId: string | null;
985
- coupon: BaseCoupon | null;
986
1006
  purchases: BasePurchase[];
987
1007
  payments: Payment[];
988
1008
  coupons: ManagedCoupon[];
@@ -1009,13 +1029,14 @@ interface BasePayment {
1009
1029
  id: string;
1010
1030
  type: RegistrationPaymentType;
1011
1031
  chargedAmt: number;
1012
- ticketId: string | null;
1013
- ticket: BaseTicket | null;
1014
1032
  last4: string | null;
1015
1033
  stripeId: string | null;
1016
1034
  createdAt: string;
1017
1035
  }
1018
1036
  interface Payment extends BasePayment {
1037
+ addOns: BaseEventAddOn[];
1038
+ purchases: BasePurchase[];
1039
+ coupons: BaseCoupon[];
1019
1040
  }
1020
1041
  interface BaseLead {
1021
1042
  id: string;
@@ -1601,6 +1622,14 @@ interface OrganizationOAuth {
1601
1622
  textColor: string;
1602
1623
  borderColor?: string;
1603
1624
  }
1625
+ interface BaseSchedule {
1626
+ name: string;
1627
+ date: string;
1628
+ createdAt: string;
1629
+ updatedAt: string;
1630
+ }
1631
+ interface Schedule extends BaseSchedule {
1632
+ }
1604
1633
 
1605
1634
  interface ConnectedXMClientContextState {
1606
1635
  queryClient: QueryClient;
@@ -1920,15 +1949,6 @@ interface GetChannelCollectionsParams extends InfiniteQueryParams {
1920
1949
  declare const GetChannelCollections: ({ channelId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetChannelCollectionsParams) => Promise<ConnectedXMResponse<ChannelCollection[]>>;
1921
1950
  declare const useGetChannelCollections: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelCollections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelCollection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1922
1951
 
1923
- declare const CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
1924
- declare const SET_CHANNEL_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1925
- interface GetChannelContentParams extends SingleQueryParams {
1926
- channelId: string;
1927
- contentId: string;
1928
- }
1929
- declare const GetChannelContent: ({ contentId, channelId, clientApiParams, }: GetChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
1930
- declare const useGetChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1931
-
1932
1952
  declare const CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
1933
1953
  declare const SET_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContentActivities>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
1934
1954
  interface GetChannelContentActivitiesParams extends InfiniteQueryParams {
@@ -1938,13 +1958,23 @@ interface GetChannelContentActivitiesParams extends InfiniteQueryParams {
1938
1958
  declare const GetChannelContentActivities: ({ channelId, contentId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetChannelContentActivitiesParams) => Promise<ConnectedXMResponse<Activity[]>>;
1939
1959
  declare const useGetChannelContentActivities: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1940
1960
 
1941
- declare const CHANNEL_CONTENTS_QUERY_KEY: (channelId: string) => QueryKey;
1961
+ declare const CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
1962
+ declare const SET_CHANNEL_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1963
+ interface GetChannelContentParams extends SingleQueryParams {
1964
+ channelId: string;
1965
+ contentId: string;
1966
+ }
1967
+ declare const GetChannelContent: ({ contentId, channelId, clientApiParams, }: GetChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
1968
+ declare const useGetChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1969
+
1970
+ declare const CHANNEL_CONTENTS_QUERY_KEY: (channelId: string, type?: "video" | "audio" | "article") => QueryKey;
1942
1971
  declare const SET_CHANNEL_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelContents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
1943
1972
  interface GetChannelContentsParams extends InfiniteQueryParams {
1944
1973
  channelId: string;
1974
+ type?: "video" | "audio" | "article";
1945
1975
  }
1946
- declare const GetChannelContents: ({ pageParam, pageSize, orderBy, search, channelId, queryClient, clientApiParams, locale, }: GetChannelContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1947
- declare const useGetChannelContents: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1976
+ declare const GetChannelContents: ({ channelId, type, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetChannelContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1977
+ declare const useGetChannelContents: (channelId?: string, type?: "video" | "audio" | "article", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1948
1978
 
1949
1979
  declare const CHANNEL_CONTENT_INTERESTS_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
1950
1980
  interface GetChannelContentInterestsParams extends InfiniteQueryParams {
@@ -1954,6 +1984,111 @@ interface GetChannelContentInterestsParams extends InfiniteQueryParams {
1954
1984
  declare const GetChannelContentInterests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelContentInterestsParams) => Promise<ConnectedXMResponse<Interest[]>>;
1955
1985
  declare const useGetChannelContentInterests: (channelId: string, contentId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentInterests>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Interest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1956
1986
 
1987
+ declare const CHANNEL_CONTENT_GUESTS_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
1988
+ interface GetChannelContentGuestsParams extends InfiniteQueryParams {
1989
+ channelId: string;
1990
+ contentId: string;
1991
+ }
1992
+ declare const GetChannelContentGuests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelContentGuestsParams) => Promise<ConnectedXMResponse<ContentGuest[]>>;
1993
+ 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>>;
1994
+
1995
+ declare const MANAGED_CHANNEL_COLLECTION_QUERY_KEY: (channelId: string, collectionId: string) => QueryKey;
1996
+ 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;
1997
+ interface GetManagedChannelCollectionParams extends SingleQueryParams {
1998
+ channelId: string;
1999
+ collectionId: string;
2000
+ }
2001
+ declare const GetManagedChannelCollection: ({ channelId, collectionId, clientApiParams, }: GetManagedChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
2002
+ declare const useGetManagedChannelCollection: (channelId?: string, collectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetManagedChannelCollection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelCollection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2003
+
2004
+ declare const MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY: (channelId: string, collectionId: string) => QueryKey;
2005
+ interface GetManagedChannelCollectionContentsParams extends InfiniteQueryParams {
2006
+ channelId: string;
2007
+ collectionId: string;
2008
+ }
2009
+ declare const GetManagedChannelCollectionContents: ({ channelId, collectionId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetManagedChannelCollectionContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
2010
+ 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>>;
2011
+
2012
+ declare const MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY: (channelId: string) => QueryKey;
2013
+ 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;
2014
+ interface GetManagedChannelCollectionsParams extends InfiniteQueryParams {
2015
+ channelId: string;
2016
+ }
2017
+ declare const GetManagedChannelCollections: ({ channelId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetManagedChannelCollectionsParams) => Promise<ConnectedXMResponse<ChannelCollection[]>>;
2018
+ 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>>;
2019
+
2020
+ declare const MANAGED_CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
2021
+ 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;
2022
+ interface GetManagedChannelContentParams extends SingleQueryParams {
2023
+ channelId: string;
2024
+ contentId: string;
2025
+ }
2026
+ declare const GetManagedChannelContent: ({ contentId, channelId, clientApiParams, }: GetManagedChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
2027
+ declare const useGetManagedChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetManagedChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2028
+
2029
+ declare const MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
2030
+ 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;
2031
+ interface GetManagedChannelContentActivitiesParams extends InfiniteQueryParams {
2032
+ channelId: string;
2033
+ contentId: string;
2034
+ }
2035
+ declare const GetManagedChannelContentActivities: ({ channelId, contentId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetManagedChannelContentActivitiesParams) => Promise<ConnectedXMResponse<Activity[]>>;
2036
+ 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>>;
2037
+
2038
+ declare const MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
2039
+ interface GetManagedChannelContentInterestsParams extends InfiniteQueryParams {
2040
+ channelId: string;
2041
+ contentId: string;
2042
+ }
2043
+ declare const GetManagedChannelContentInterests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelContentInterestsParams) => Promise<ConnectedXMResponse<Interest[]>>;
2044
+ 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>>;
2045
+
2046
+ declare const MANAGED_CHANNEL_CONTENTS_QUERY_KEY: (channelId: string) => QueryKey;
2047
+ 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;
2048
+ interface GetManagedChannelContentsParams extends InfiniteQueryParams {
2049
+ channelId: string;
2050
+ }
2051
+ declare const GetManagedChannelContents: ({ pageParam, pageSize, orderBy, search, channelId, queryClient, clientApiParams, locale, }: GetManagedChannelContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
2052
+ 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>>;
2053
+
2054
+ declare const MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY: (channelId: string, contentId: string) => QueryKey;
2055
+ interface GetManagedChannelContentGuestsParams extends InfiniteQueryParams {
2056
+ channelId: string;
2057
+ contentId: string;
2058
+ }
2059
+ declare const GetManagedChannelContentGuests: ({ channelId, contentId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelContentGuestsParams) => Promise<ConnectedXMResponse<ContentGuest[]>>;
2060
+ 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>>;
2061
+
2062
+ declare const MANAGED_CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
2063
+ 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;
2064
+ interface GetManagedChannelParams extends SingleQueryParams {
2065
+ channelId: string;
2066
+ }
2067
+ declare const GetManagedChannel: ({ channelId, clientApiParams, }: GetManagedChannelParams) => Promise<ConnectedXMResponse<Channel>>;
2068
+ declare const useGetManagedChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetManagedChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2069
+
2070
+ declare const MANAGED_CHANNELS_QUERY_KEY: () => QueryKey;
2071
+ 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;
2072
+ interface GetManagedChannelsParams extends InfiniteQueryParams {
2073
+ }
2074
+ declare const GetManagedChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetManagedChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
2075
+ 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>>;
2076
+
2077
+ declare const MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY: (channelId: string) => QueryKey;
2078
+ 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;
2079
+ interface GetManagedChannelSubscribersParams extends InfiniteQueryParams {
2080
+ channelId: string;
2081
+ }
2082
+ declare const GetManagedChannelSubscribers: ({ pageParam, pageSize, orderBy, search, channelId, clientApiParams, }: GetManagedChannelSubscribersParams) => Promise<ConnectedXMResponse<ChannelSubscriber[]>>;
2083
+ 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>>;
2084
+
2085
+ declare const MANAGED_CHANNEL_INTERESTS_QUERY_KEY: (channelId: string) => QueryKey;
2086
+ interface GetManagedChannelInterestsParams extends InfiniteQueryParams {
2087
+ channelId: string;
2088
+ }
2089
+ declare const GetManagedChannelInterests: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetManagedChannelInterestsParams) => Promise<ConnectedXMResponse<Interest[]>>;
2090
+ 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>>;
2091
+
1957
2092
  declare const CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
1958
2093
  declare const SET_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1959
2094
  interface GetChannelParams extends SingleQueryParams {
@@ -1969,12 +2104,11 @@ interface GetChannelsParams extends InfiniteQueryParams {
1969
2104
  declare const GetChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
1970
2105
  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>>;
1971
2106
 
1972
- declare const CHANNEL_SUBSCRIPTIONS_QUERY_KEY: (channelId: string) => QueryKey;
1973
- interface GetChannelSubscriptionsParams extends InfiniteQueryParams {
1974
- channelId: string;
2107
+ declare const SUBSCRIBED_CHANNELS_QUERY_KEY: () => QueryKey;
2108
+ interface GetSubscribedChannelsParams extends InfiniteQueryParams {
1975
2109
  }
1976
- declare const GetChannelSubscriptions: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetChannelSubscriptionsParams) => Promise<ConnectedXMResponse<ChannelSubscription[]>>;
1977
- declare const useGetChannelSubscriptions: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelSubscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2110
+ declare const GetSubscribedChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSubscribedChannelsParams) => Promise<ConnectedXMResponse<Channel[]>>;
2111
+ declare const useGetSubscribedChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscribedChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1978
2112
 
1979
2113
  declare const CHANNEL_INTERESTS_QUERY_KEY: (channelId: string) => QueryKey;
1980
2114
  interface GetChannelInterestsParams extends InfiniteQueryParams {
@@ -1991,12 +2125,30 @@ interface GetContentParams extends SingleQueryParams {
1991
2125
  declare const GetContent: ({ contentId, clientApiParams, }: GetContentParams) => Promise<ConnectedXMResponse<Content>>;
1992
2126
  declare const useGetContent: (contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1993
2127
 
1994
- declare const CONTENTS_QUERY_KEY: () => QueryKey;
2128
+ declare const CONTENT_INTERESTS_QUERY_KEY: () => QueryKey;
2129
+ interface GetContentInterestsParams extends InfiniteQueryParams {
2130
+ }
2131
+ declare const GetContentInterests: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetContentInterestsParams) => Promise<ConnectedXMResponse<Interest[]>>;
2132
+ 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>>;
2133
+
2134
+ declare const CONTENTS_QUERY_KEY: (type?: "video" | "audio" | "article", featured?: boolean, interest?: string, past?: boolean) => QueryKey;
1995
2135
  declare const SET_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
1996
2136
  interface GetContentsParams extends InfiniteQueryParams {
2137
+ type?: "video" | "audio" | "article";
2138
+ featured?: boolean;
2139
+ interest?: string;
2140
+ past?: boolean;
1997
2141
  }
1998
- declare const GetContents: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1999
- declare const useGetContents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2142
+ declare const GetContents: ({ type, featured, interest, past, pageParam, pageSize, orderBy, search, clientApiParams, }: GetContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
2143
+ declare const useGetContents: (type?: "video" | "audio" | "article", featured?: boolean, interest?: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2144
+
2145
+ declare const SUBSCRIBED_CONTENTS_QUERY_KEY: (type?: string, interest?: string) => QueryKey;
2146
+ interface GetSubscribedContentsParams extends InfiniteQueryParams {
2147
+ type?: "video" | "audio" | "article";
2148
+ interest?: string;
2149
+ }
2150
+ declare const GetSubscribedContents: ({ type, interest, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSubscribedContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
2151
+ declare const useGetSubscribedContents: (type?: "video" | "audio" | "article", interest?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscribedContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2000
2152
 
2001
2153
  declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
2002
2154
  declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -2351,13 +2503,13 @@ declare const GetSelfEventRegistrationCoupons: ({ eventId, registrationId, clien
2351
2503
  declare const useGetSelfEventRegistrationCoupons: (eventId: string, registrationId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventRegistrationCoupons>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Coupon[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2352
2504
 
2353
2505
  declare const SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY: (eventId: string, registrationId: string, couponId: string) => QueryKey;
2354
- interface GetSelfEventRegistrationCouponRegistrationsProps extends InfiniteQueryParams {
2506
+ interface GetSelfEventRegistrationCouponPurchasesProps extends InfiniteQueryParams {
2355
2507
  eventId: string;
2356
2508
  registrationId: string;
2357
2509
  couponId: string;
2358
2510
  }
2359
- declare const GetSelfEventRegistrationCouponRegistrations: ({ eventId, registrationId, couponId, clientApiParams, }: GetSelfEventRegistrationCouponRegistrationsProps) => Promise<ConnectedXMResponse<Registration[]>>;
2360
- declare const useGetSelfEventRegistrationCouponRegistrations: (eventId?: string, registrationId?: string, couponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventRegistrationCouponRegistrations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Registration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2511
+ declare const GetSelfEventRegistrationCouponPurchases: ({ eventId, registrationId, couponId, clientApiParams, }: GetSelfEventRegistrationCouponPurchasesProps) => Promise<ConnectedXMResponse<ManagedCouponPurchase[]>>;
2512
+ declare const useGetSelfEventRegistrationCouponPurchases: (eventId?: string, registrationId?: string, couponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventRegistrationCouponPurchases>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCouponPurchase[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2361
2513
 
2362
2514
  declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
2363
2515
  interface GetSelfSubcriptionProps extends SingleQueryParams {
@@ -2389,8 +2541,8 @@ declare const GetSelf: ({ ignoreExecuteAs, clientApiParams, }: GetSelfProps) =>
2389
2541
  declare const useGetSelf: (ignoreExecuteAs?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2390
2542
 
2391
2543
  declare const SELF_RELATIONSHIPS_QUERY_KEY: () => QueryKey;
2392
- declare const ADD_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: Parameters<typeof GetBaseSingleQueryKeys> | undefined, type: "groups" | "accounts" | "events", id: string, value?: boolean | string) => void;
2393
- declare const REMOVE_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: Parameters<typeof GetBaseSingleQueryKeys> | undefined, type: "groups" | "accounts" | "events", id: string, value?: boolean | string) => void;
2544
+ declare const ADD_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: Parameters<typeof GetBaseSingleQueryKeys> | undefined, type: "groups" | "accounts" | "events" | "channels", id: string, value?: boolean | string) => void;
2545
+ declare const REMOVE_SELF_RELATIONSHIP: (client: QueryClient, baseKeys: Parameters<typeof GetBaseSingleQueryKeys> | undefined, type: "groups" | "accounts" | "events" | "channels", id: string, value?: boolean | string) => void;
2394
2546
  interface GetSelfRelationshipsProps extends SingleQueryParams {
2395
2547
  }
2396
2548
  declare const GetSelfRelationships: ({ clientApiParams, }: GetSelfRelationshipsProps) => Promise<ConnectedXMResponse<SelfRelationships>>;
@@ -2743,6 +2895,270 @@ interface UnlikeActivityParams extends MutationParams {
2743
2895
  declare const UnlikeActivity: ({ activityId, clientApiParams, queryClient, }: UnlikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2744
2896
  declare const useUnlikeActivity: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeActivity>>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">, unknown>;
2745
2897
 
2898
+ interface LikeContentParams extends MutationParams {
2899
+ channelId: string;
2900
+ contentId: string;
2901
+ }
2902
+ declare const LikeContent: ({ channelId, contentId, clientApiParams, queryClient, }: LikeContentParams) => Promise<ConnectedXMResponse<Content>>;
2903
+ 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>;
2904
+
2905
+ interface UnlikeContentParams extends MutationParams {
2906
+ channelId: string;
2907
+ contentId: string;
2908
+ }
2909
+ declare const UnlikeContent: ({ channelId, contentId, clientApiParams, queryClient, }: UnlikeContentParams) => Promise<ConnectedXMResponse<Content>>;
2910
+ 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>;
2911
+
2912
+ interface CreateChannelSubscriberParams extends MutationParams {
2913
+ channelId: string;
2914
+ }
2915
+ declare const CreateChannelSubscriber: ({ channelId, clientApiParams, queryClient, }: CreateChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
2916
+ 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>;
2917
+
2918
+ interface DeleteChannelSubscriberParams extends MutationParams {
2919
+ channelId: string;
2920
+ }
2921
+ declare const DeleteChannelSubscriber: ({ channelId, clientApiParams, queryClient, }: DeleteChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
2922
+ 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>;
2923
+
2924
+ interface UpdateChannelSubscriberParams extends MutationParams {
2925
+ channelId: string;
2926
+ channelSubscriber: UpdateChannelSubscriber;
2927
+ }
2928
+ interface UpdateChannelSubscriber {
2929
+ contentEmailNotification?: boolean;
2930
+ contentPushNotification?: boolean;
2931
+ }
2932
+ declare const UpdateChannelSubscriber: ({ channelId, channelSubscriber, clientApiParams, }: UpdateChannelSubscriberParams) => Promise<ConnectedXMResponse<ChannelSubscriber>>;
2933
+ 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>;
2934
+
2935
+ interface AddChannelCollectionContentParams extends MutationParams {
2936
+ channelId: string;
2937
+ collectionId: string;
2938
+ contentId: string;
2939
+ imageDataUri?: any;
2940
+ }
2941
+ declare const AddChannelCollectionContent: ({ channelId, collectionId, contentId, clientApiParams, queryClient, }: AddChannelCollectionContentParams) => Promise<ConnectedXMResponse<null>>;
2942
+ declare const useAddChannelCollectionContent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddChannelCollectionContent>>, Omit<AddChannelCollectionContentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<AddChannelCollectionContentParams, "queryClient" | "clientApiParams">, unknown>;
2943
+
2944
+ interface RemoveChannelCollectionContentParams extends MutationParams {
2945
+ channelId: string;
2946
+ collectionId: string;
2947
+ contentId: string;
2948
+ imageDataUri?: any;
2949
+ }
2950
+ declare const RemoveChannelCollectionContent: ({ channelId, collectionId, contentId, clientApiParams, queryClient, }: RemoveChannelCollectionContentParams) => Promise<ConnectedXMResponse<null>>;
2951
+ 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>;
2952
+
2953
+ interface CreateChannelCollectionParams extends MutationParams {
2954
+ channelId: string;
2955
+ collection: CreateChannelCollection;
2956
+ }
2957
+ interface CreateChannelCollection {
2958
+ name: string;
2959
+ description?: string;
2960
+ }
2961
+ declare const CreateChannelCollection: ({ channelId, collection, clientApiParams, queryClient, }: CreateChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
2962
+ 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>;
2963
+
2964
+ interface DeleteChannelCollectionParams extends MutationParams {
2965
+ channelId: string;
2966
+ collectionId: string;
2967
+ }
2968
+ declare const DeleteChannelCollection: ({ channelId, collectionId, clientApiParams, queryClient, }: DeleteChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
2969
+ 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>;
2970
+
2971
+ interface UpdateChannelCollectionParams extends MutationParams {
2972
+ channelId: string;
2973
+ collection: UpdateChannelCollection;
2974
+ collectionId: string;
2975
+ }
2976
+ interface UpdateChannelCollection {
2977
+ name?: string;
2978
+ description?: string;
2979
+ }
2980
+ declare const UpdateChannelCollection: ({ channelId, collection, collectionId, clientApiParams, queryClient, }: UpdateChannelCollectionParams) => Promise<ConnectedXMResponse<ChannelCollection>>;
2981
+ 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>;
2982
+
2983
+ interface CreateContentGuestParams extends MutationParams {
2984
+ channelId: string;
2985
+ contentId: string;
2986
+ guest: CreateContentGuest;
2987
+ imageDataUri?: string;
2988
+ }
2989
+ interface CreateContentGuest {
2990
+ accountId?: string | null;
2991
+ type: ContentGuestType;
2992
+ name: string;
2993
+ title: string | null;
2994
+ bio: string | null;
2995
+ company: string | null;
2996
+ companyLink: string | null;
2997
+ companyBio: string | null;
2998
+ website: string | null;
2999
+ facebook: string | null;
3000
+ twitter: string | null;
3001
+ instagram: string | null;
3002
+ linkedIn: string | null;
3003
+ tikTok: string | null;
3004
+ youtube: string | null;
3005
+ discord: string | null;
3006
+ }
3007
+ declare const CreateContentGuest: ({ channelId, contentId, guest, imageDataUri, clientApiParams, queryClient, }: CreateContentGuestParams) => Promise<ConnectedXMResponse<ContentGuest>>;
3008
+ 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>;
3009
+
3010
+ interface UpdateContentGuestParams extends MutationParams {
3011
+ channelId: string;
3012
+ contentId: string;
3013
+ guest: UpdateContentGuest;
3014
+ guestId: string;
3015
+ imageDataUri?: string;
3016
+ }
3017
+ interface UpdateContentGuest {
3018
+ accountId?: string | null;
3019
+ type: ContentGuestType;
3020
+ name: string;
3021
+ title: string | null;
3022
+ bio: string | null;
3023
+ company: string | null;
3024
+ companyLink: string | null;
3025
+ companyBio: string | null;
3026
+ website: string | null;
3027
+ facebook: string | null;
3028
+ twitter: string | null;
3029
+ instagram: string | null;
3030
+ linkedIn: string | null;
3031
+ tikTok: string | null;
3032
+ youtube: string | null;
3033
+ discord: string | null;
3034
+ }
3035
+ declare const UpdateContentGuest: ({ channelId, contentId, guest, guestId, imageDataUri, clientApiParams, queryClient, }: UpdateContentGuestParams) => Promise<ConnectedXMResponse<ContentGuest>>;
3036
+ 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>;
3037
+
3038
+ interface DeleteContentGuestParams extends MutationParams {
3039
+ channelId: string;
3040
+ contentId: string;
3041
+ guestId: string;
3042
+ }
3043
+ declare const DeleteContentGuest: ({ channelId, contentId, guestId, clientApiParams, queryClient, }: DeleteContentGuestParams) => Promise<ConnectedXMResponse<null>>;
3044
+ 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>;
3045
+
3046
+ interface AddContentInterestParams extends MutationParams {
3047
+ channelId: string;
3048
+ contentId: string;
3049
+ interest: AddContentInterest;
3050
+ }
3051
+ interface AddContentInterest {
3052
+ name: string;
3053
+ }
3054
+ declare const AddContentInterest: ({ channelId, contentId, interest, clientApiParams, }: AddContentInterestParams) => Promise<ConnectedXMResponse<Interest>>;
3055
+ 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>;
3056
+
3057
+ interface RemoveContentInterestParams extends MutationParams {
3058
+ channelId: string;
3059
+ contentId: string;
3060
+ interestId: string;
3061
+ }
3062
+ declare const RemoveContentInterest: ({ channelId, contentId, interestId, clientApiParams, }: RemoveContentInterestParams) => Promise<ConnectedXMResponse<null>>;
3063
+ declare const useRemoveContentInterest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveContentInterest>>, Omit<RemoveContentInterestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveContentInterestParams, "queryClient" | "clientApiParams">, unknown>;
3064
+
3065
+ interface DeleteContentPublishScheduleParams extends MutationParams {
3066
+ channelId: string;
3067
+ contentId: string;
3068
+ }
3069
+ declare const DeleteContentPublishSchedule: ({ channelId, contentId, clientApiParams, }: DeleteContentPublishScheduleParams) => Promise<ConnectedXMResponse<Content>>;
3070
+ 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>;
3071
+
3072
+ interface SetContentPublishScheduleParams extends MutationParams {
3073
+ channelId: string;
3074
+ contentId: string;
3075
+ date: string;
3076
+ email?: boolean;
3077
+ push?: boolean;
3078
+ visible?: boolean;
3079
+ }
3080
+ declare const SetContentPublishSchedule: ({ channelId, contentId, date, email, push, visible, clientApiParams, }: SetContentPublishScheduleParams) => Promise<ConnectedXMResponse<Content>>;
3081
+ 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>;
3082
+
3083
+ interface CreateChannelContentParams extends MutationParams {
3084
+ channelId: string;
3085
+ content: CreateChannelContent;
3086
+ }
3087
+ interface CreateChannelContent {
3088
+ title: string;
3089
+ visible?: boolean;
3090
+ description?: string | null;
3091
+ duration?: string | null;
3092
+ body?: string | null;
3093
+ externalUrl?: string | null;
3094
+ appleUrl?: string | null;
3095
+ spotifyUrl?: string | null;
3096
+ googleUrl?: string | null;
3097
+ youtubeUrl?: string | null;
3098
+ }
3099
+ declare const CreateChannelContent: ({ channelId, content, clientApiParams, queryClient, }: CreateChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
3100
+ 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>;
3101
+
3102
+ interface UpdateChannelContentParams extends MutationParams {
3103
+ channelId: string;
3104
+ contentId: string;
3105
+ content: UpdateChannelContent;
3106
+ imageDataUri?: string;
3107
+ }
3108
+ interface UpdateChannelContent {
3109
+ visible?: boolean;
3110
+ title?: string;
3111
+ description?: string | null;
3112
+ duration?: string | null;
3113
+ body?: string | null;
3114
+ editor?: string | null;
3115
+ externalUrl?: string | null;
3116
+ appleUrl?: string | null;
3117
+ spotifyUrl?: string | null;
3118
+ googleUrl?: string | null;
3119
+ youtubeUrl?: string | null;
3120
+ videoId?: string | null;
3121
+ audioId?: number | null;
3122
+ slug?: string;
3123
+ email?: boolean;
3124
+ push?: boolean;
3125
+ }
3126
+ declare const UpdateChannelContent: ({ channelId, contentId, content, imageDataUri, clientApiParams, queryClient, }: UpdateChannelContentParams) => Promise<ConnectedXMResponse<Content>>;
3127
+ 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>;
3128
+
3129
+ interface DeleteChannelContentParams extends MutationParams {
3130
+ channelId: string;
3131
+ contentId: string;
3132
+ }
3133
+ declare const DeleteChannelContent: ({ channelId, contentId, clientApiParams, }: DeleteChannelContentParams) => Promise<ConnectedXMResponse<null>>;
3134
+ 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>;
3135
+
3136
+ interface UploadChannelContentImageParams extends MutationParams {
3137
+ channelId: string;
3138
+ contentId: string;
3139
+ imageDataUri: string;
3140
+ filename?: string;
3141
+ }
3142
+ declare const UploadChannelContentImage: ({ channelId, contentId, imageDataUri, filename, clientApiParams, }: UploadChannelContentImageParams) => Promise<ConnectedXMResponse<Image>>;
3143
+ 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>;
3144
+
3145
+ interface AddChannelInterestParams extends MutationParams {
3146
+ channelId: string;
3147
+ interest: AddChannelInterest;
3148
+ }
3149
+ interface AddChannelInterest {
3150
+ name: string;
3151
+ }
3152
+ declare const AddChannelInterest: ({ channelId, interest, clientApiParams, }: AddChannelInterestParams) => Promise<ConnectedXMResponse<Interest>>;
3153
+ 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>;
3154
+
3155
+ interface RemoveChannelInterestParams extends MutationParams {
3156
+ channelId: string;
3157
+ interestId: string;
3158
+ }
3159
+ declare const RemoveChannelInterest: ({ channelId, interestId, clientApiParams, }: RemoveChannelInterestParams) => Promise<ConnectedXMResponse<null>>;
3160
+ 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>;
3161
+
2746
3162
  interface CreateChannelParams extends MutationParams {
2747
3163
  channel: CreateChannel;
2748
3164
  imageDataUri?: any;
@@ -2772,9 +3188,14 @@ interface UpdateChannel {
2772
3188
  description?: string;
2773
3189
  visible?: boolean;
2774
3190
  slug?: string;
2775
- groupId?: string;
3191
+ groupId?: string | null;
3192
+ externalUrl?: string | null;
3193
+ appleUrl?: string | null;
3194
+ spotifyUrl?: string | null;
3195
+ googleUrl?: string | null;
3196
+ youtubeUrl?: string | null;
2776
3197
  }
2777
- declare const UpdateChannel: ({ channelId, channel, imageDataUri, clientApiParams, }: UpdateChannelParams) => Promise<ConnectedXMResponse<Channel>>;
3198
+ declare const UpdateChannel: ({ channelId, channel, imageDataUri, clientApiParams, queryClient, }: UpdateChannelParams) => Promise<ConnectedXMResponse<Channel>>;
2778
3199
  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>;
2779
3200
 
2780
3201
  interface CompleteEventActivationParams extends MutationParams {
@@ -2846,13 +3267,6 @@ interface UpdateSelfChatChannelNotificationsParams extends MutationParams {
2846
3267
  declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApiParams, queryClient, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
2847
3268
  declare const useUpdateSelfChatChannelNotifications: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfChatChannelNotifications>>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">, unknown>;
2848
3269
 
2849
- interface RegisterCancelledEventRegistrationParams extends MutationParams {
2850
- eventId: string;
2851
- registrationId: string;
2852
- }
2853
- declare const RegisterCancelledEventRegistration: ({ eventId, registrationId, clientApiParams, queryClient, }: RegisterCancelledEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2854
- declare const useRegisterCancelledEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RegisterCancelledEventRegistration>>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
2855
-
2856
3270
  interface SelectSelfEventRegistrationCouponParams extends MutationParams {
2857
3271
  eventId: string;
2858
3272
  registrationId: string;
@@ -2951,13 +3365,6 @@ interface SelectSelfEventRegistrationPurchaseReservationParams extends MutationP
2951
3365
  declare const SelectSelfEventRegistrationPurchaseReservation: ({ eventId, registrationId, purchaseId, locationId, reservationStart, reservationEnd, clientApiParams, queryClient, }: SelectSelfEventRegistrationPurchaseReservationParams) => Promise<ConnectedXMResponse<Registration>>;
2952
3366
  declare const useSelectSelfEventRegistrationPurchaseReservation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationPurchaseReservation>>, Omit<SelectSelfEventRegistrationPurchaseReservationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationPurchaseReservationParams, "queryClient" | "clientApiParams">, unknown>;
2953
3367
 
2954
- interface CancelEventRegistrationParams extends MutationParams {
2955
- eventId: string;
2956
- registrationId: string;
2957
- }
2958
- declare const CancelEventRegistration: ({ eventId, registrationId, clientApiParams, queryClient, }: CancelEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2959
- declare const useCancelEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelEventRegistration>>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
2960
-
2961
3368
  interface CancelTransferParams extends MutationParams {
2962
3369
  transferId: string;
2963
3370
  eventId: string;
@@ -3595,4 +4002,4 @@ interface UploadFileParams extends MutationParams {
3595
4002
  declare const UploadFile: ({ clientApiParams, dataUri, name, }: UploadFileParams) => Promise<ConnectedXMResponse<File>>;
3596
4003
  declare const useUploadFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UploadFile>>, Omit<UploadFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<File>, any>, Omit<UploadFileParams, "queryClient" | "clientApiParams">, unknown>;
3597
4004
 
3598
- export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddFreePurchaseAddOns, type AddFreePurchaseAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscription, 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 BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, 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 BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTicketPriceSchedule, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, 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_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIPTIONS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscription, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, ContentType, type Coupon, CouponType, type CreateActivity, CreateChannel, type CreateChannelParams, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, type DeleteChannelParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_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_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_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, 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, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscriptions, type GetChannelSubscriptionsParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, 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, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCoupon, type GetSelfEventRegistrationCouponProps, GetSelfEventRegistrationCouponRegistrations, type GetSelfEventRegistrationCouponRegistrationsProps, GetSelfEventRegistrationCoupons, type GetSelfEventRegistrationCouponsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPayment, type GetSelfEventRegistrationPaymentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, GetSelfEventRegistrationPurchaseAddOnsIntent, type GetSelfEventRegistrationPurchaseAddOnsIntentProps, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ListingPurchase, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationAction, OrganizationActionType, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Payment, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_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_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, 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_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_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_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_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_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_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_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, 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_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, SupportedLocale, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateChannel, type UpdateChannelParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadFile, type UploadFileParams, type User, 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, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddFreePurchaseAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelEventRegistration, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateChannel, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscriptions, useGetChannels, useGetContent, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCoupon, useGetSelfEventRegistrationCouponRegistrations, useGetSelfEventRegistrationCoupons, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPayment, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseAddOnsIntent, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, usePromoteGroupMember, useRegisterCancelledEventRegistration, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateChannel, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadFile };
4005
+ export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, AddContentInterest, type AddContentInterestParams, AddFreePurchaseAddOns, type AddFreePurchaseAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, 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 BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, 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 BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTicketPriceSchedule, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, 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, CacheIndividualQueries, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, CreateChannelContent, type CreateChannelContentParams, type CreateChannelParams, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, 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, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DemoteGroupModerator, type DemoteGroupModeratorParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_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_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_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type EventWithSessions, type EventWithSpeakers, type EventWithSponsors, 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, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, 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, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, 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, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, 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, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCoupon, type GetSelfEventRegistrationCouponProps, GetSelfEventRegistrationCouponPurchases, type GetSelfEventRegistrationCouponPurchasesProps, GetSelfEventRegistrationCoupons, type GetSelfEventRegistrationCouponsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPayment, type GetSelfEventRegistrationPaymentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, GetSelfEventRegistrationPurchaseAddOnsIntent, type GetSelfEventRegistrationPurchaseAddOnsIntentProps, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationStatus, type GetSelfEventRegistrationStatusProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkPreview, type ListingPurchase, 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 ManagedCouponPurchase, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationAction, OrganizationActionType, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Payment, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type RecomendationType, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, type RegistrationStatusDetails, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RejectTransfer, type RejectTransferParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_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_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_STATUS_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, 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_GROUPS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_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_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_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_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_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_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, 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_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_STATUS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, type Scan, type Schedule, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, SupportedLocale, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, 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, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UploadChannelContentImage, type UploadChannelContentImageParams, UploadFile, type UploadFileParams, type User, 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, isTypeTransfer, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAcceptTransfer, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePurchaseAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useCancelGroupInvitation, useCancelGroupRequest, useCancelSubscription, useCancelTransfer, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDemoteGroupModerator, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannels, useGetContent, useGetContentInterests, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetManagedChannel, useGetManagedChannelCollection, useGetManagedChannelCollectionContents, useGetManagedChannelCollections, useGetManagedChannelContent, useGetManagedChannelContentActivities, useGetManagedChannelContentGuests, useGetManagedChannelContentInterests, useGetManagedChannelContents, useGetManagedChannelInterests, useGetManagedChannelSubscribers, useGetManagedChannels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCoupon, useGetSelfEventRegistrationCouponPurchases, useGetSelfEventRegistrationCoupons, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPayment, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseAddOnsIntent, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationStatus, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRejectTransfer, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useSubmitSelfEventRegistration, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUploadChannelContentImage, useUploadFile };