@connectedxm/client 0.0.56 → 0.0.59

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
@@ -1154,7 +1154,7 @@ interface ConnectedXMClientContextState {
1154
1154
  organizationId: string;
1155
1155
  apiUrl: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com" | "http://localhost:4001";
1156
1156
  token: string | undefined;
1157
- setToken: (token: string) => void;
1157
+ setToken: (token: string | undefined) => void;
1158
1158
  executeAs: string | undefined;
1159
1159
  setExecuteAs: (accountId: string) => void;
1160
1160
  locale: string;
@@ -1169,6 +1169,7 @@ declare const ConnectedXMProvider: ({ children, ...state }: ConnectedXMProviderP
1169
1169
 
1170
1170
  declare const useConnectedXM: () => ConnectedXMClientContextState;
1171
1171
 
1172
+ declare const getClientAPI: (apiUrl: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com" | "http://localhost:4001", organizationId: string, token?: string, executeAs?: string, locale?: string) => AxiosInstance;
1172
1173
  declare const useClientAPI: (locale?: string) => AxiosInstance;
1173
1174
 
1174
1175
  declare const AppendInfiniteQuery: <TData = unknown>(queryClient: QueryClient, key: QueryKey, newData: TData) => void;
@@ -1586,6 +1587,24 @@ interface GetOrganizationPageProps extends SingleQueryParams {
1586
1587
  declare const GetOrganizationPage: ({ type, clientApi, }: GetOrganizationPageProps) => Promise<ConnectedXMResponse<Page | null>>;
1587
1588
  declare const useGetOrganizationPage: (type: PageType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPage>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Page | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1588
1589
 
1590
+ declare const ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY: () => unknown[];
1591
+ interface GetOrganizationSubscriptionProductsProps extends InfiniteQueryParams {
1592
+ }
1593
+ declare const GetOrganizationSubscriptionProducts: ({ clientApi, }: GetOrganizationSubscriptionProductsProps) => Promise<ConnectedXMResponse<SubscriptionProduct[]>>;
1594
+ declare const useGetOrganizationSubscriptionProducts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetOrganizationSubscriptionProducts>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<SubscriptionProduct[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1595
+
1596
+ declare const ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY: () => unknown[];
1597
+ interface GetOrganizationPaymentIntegrationParams extends SingleQueryParams {
1598
+ }
1599
+ declare const GetOrganizationPaymentIntegration: ({ clientApi, }: GetOrganizationPaymentIntegrationParams) => Promise<ConnectedXMResponse<{
1600
+ connectionId: string;
1601
+ type: "stripe" | "paypal";
1602
+ }>>;
1603
+ declare const useGetOrganizationPaymentIntegration: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentIntegration>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<{
1604
+ connectionId: string;
1605
+ type: "stripe" | "paypal";
1606
+ }>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1607
+
1589
1608
  declare const SELF_CHAT_CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
1590
1609
  declare const SET_SELF_CHAT_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetSelfChatChannel>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1591
1610
  interface GetSelfChatChannelProps extends SingleQueryParams {
@@ -1642,6 +1661,27 @@ interface GetSelfEventRegistrationCheckoutProps extends SingleQueryParams {
1642
1661
  declare const GetSelfEventRegistrationCheckout: ({ eventId, registrationId, clientApi, }: GetSelfEventRegistrationCheckoutProps) => Promise<Awaited<ConnectedXMResponse<CheckoutResponse>>>;
1643
1662
  declare const useGetSelfEventRegistrationCheckout: (eventId: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationCheckout>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<CheckoutResponse>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1644
1663
 
1664
+ declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
1665
+ interface GetSelfSubcriptionProps extends SingleQueryParams {
1666
+ subscriptionId: string;
1667
+ }
1668
+ declare const GetSelfSubcription: ({ subscriptionId, clientApi, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
1669
+ declare const useGetSelfSubcription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfSubcription>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1670
+
1671
+ declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unknown[];
1672
+ interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
1673
+ status?: SubscriptionStatus;
1674
+ }
1675
+ declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
1676
+ declare const useGetSelfSubscriptions: (status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptions>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1677
+
1678
+ declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
1679
+ interface GetSelfSubscriptionPaymentsProps extends InfiniteQueryParams {
1680
+ subscriptionId: string;
1681
+ }
1682
+ declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApi, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
1683
+ declare const useGetSelfSubscriptionPayments: (subscriptionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptionPayments>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1684
+
1645
1685
  declare const SELF_QUERY_KEY: (authenticated?: boolean) => QueryKey;
1646
1686
  declare const SET_SELF_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelf>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1647
1687
  interface GetSelfProps extends SingleQueryParams {
@@ -2018,6 +2058,27 @@ interface CaptureSelfEventRegistrationPaymentParams extends MutationParams {
2018
2058
  declare const CaptureSelfEventRegistrationPayment: ({ eventId, registrationId, clientApi, queryClient, locale, }: CaptureSelfEventRegistrationPaymentParams) => Promise<ConnectedXMResponse<Registration>>;
2019
2059
  declare const useCaptureSelfEventRegistrationPayment: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CaptureSelfEventRegistrationPayment>>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApi">, unknown>;
2020
2060
 
2061
+ interface CreateGuest {
2062
+ firstName: string;
2063
+ lastName: string;
2064
+ email: string;
2065
+ }
2066
+ interface CreateSelfEventRegistrationGuestParams extends MutationParams {
2067
+ eventId: string;
2068
+ registrationId: string;
2069
+ guest: CreateGuest;
2070
+ }
2071
+ declare const CreateSelfEventRegistrationGuest: ({ eventId, registrationId, guest, clientApi, queryClient, locale, }: CreateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
2072
+ declare const useCreateSelfEventRegistrationGuest: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventRegistrationGuest>>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApi">, unknown>;
2073
+
2074
+ interface DeleteSelfEventRegistrationGuestParams extends MutationParams {
2075
+ eventId: string;
2076
+ registrationId: string;
2077
+ guestId: string;
2078
+ }
2079
+ declare const DeleteSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, clientApi, queryClient, locale, }: DeleteSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
2080
+ declare const useDeleteSelfEventRegistrationGuest: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfEventRegistrationGuest>>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApi">, unknown>;
2081
+
2021
2082
  interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
2022
2083
  eventId: string;
2023
2084
  registrationId: string;
@@ -2066,6 +2127,45 @@ interface SubmitSelfEventRegistrationParams extends MutationParams {
2066
2127
  declare const SubmitSelfEventRegistration: ({ eventId, registrationId, payment, clientApi, queryClient, locale, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2067
2128
  declare const useSubmitSelfEventRegistration: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistration>>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApi">, unknown>;
2068
2129
 
2130
+ interface UpdateSelfEventRegistrationGuestParams extends MutationParams {
2131
+ eventId: string;
2132
+ registrationId: string;
2133
+ guestId: string;
2134
+ guest: BaseRegistrationGuest;
2135
+ }
2136
+ declare const UpdateSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, guest, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
2137
+ declare const useUpdateSelfEventRegistrationGuest: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuest>>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApi">, unknown>;
2138
+
2139
+ interface UpdateSelfEventRegistrationGuestResponseFileParams extends MutationParams {
2140
+ eventId: string;
2141
+ registrationId: string;
2142
+ questionId: string;
2143
+ guestId?: string;
2144
+ dataUrl: string;
2145
+ name: string;
2146
+ }
2147
+ declare const UpdateSelfEventRegistrationGuestResponseFile: ({ eventId, registrationId, questionId, guestId, dataUrl, name, clientApi, }: UpdateSelfEventRegistrationGuestResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
2148
+ declare const useUpdateSelfEventRegistrationGuestResponseFile: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponseFile>>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, Error | axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApi">, unknown>;
2149
+
2150
+ interface UpdateSelfEventRegistrationGuestResponsesParams extends MutationParams {
2151
+ eventId: string;
2152
+ registrationId: string;
2153
+ guestId: string;
2154
+ responses: BaseRegistrationQuestionResponse[];
2155
+ }
2156
+ declare const UpdateSelfEventRegistrationGuestResponses: ({ eventId, registrationId, guestId, responses, clientApi, }: UpdateSelfEventRegistrationGuestResponsesParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
2157
+ declare const useUpdateSelfEventRegistrationGuestResponses: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponses>>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, Error | axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApi">, unknown>;
2158
+
2159
+ interface UpdateSelfEventRegistrationResponseFileParams extends MutationParams {
2160
+ eventId: string;
2161
+ registrationId: string;
2162
+ dataUrl: string;
2163
+ name: string;
2164
+ questionId: string;
2165
+ }
2166
+ declare const UpdateSelfEventRegistrationResponseFile: ({ eventId, registrationId, dataUrl, name, questionId, clientApi, }: UpdateSelfEventRegistrationResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
2167
+ declare const useUpdateSelfEventRegistrationResponseFile: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponseFile>>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, Error | axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApi">, unknown>;
2168
+
2069
2169
  interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
2070
2170
  eventId: string;
2071
2171
  registrationId: string;
@@ -2107,6 +2207,41 @@ interface UpdateSelfEventRegistrationResponseParams extends MutationParams {
2107
2207
  declare const UpdateSelfEventRegistrationResponse: ({ eventId, registrationId, questionId, response, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationResponseParams) => Promise<ConnectedXMResponse<Registration>>;
2108
2208
  declare const useUpdateSelfEventRegistrationResponse: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponse>>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApi">, unknown>;
2109
2209
 
2210
+ interface UpdateSelfEventRegistrationGuestResponseParams extends MutationParams {
2211
+ eventId: string;
2212
+ registrationId: string;
2213
+ questionId: string;
2214
+ guestId: string;
2215
+ response: string;
2216
+ }
2217
+ declare const UpdateSelfEventRegistrationGuestResponse: ({ eventId, registrationId, questionId, guestId, response, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationGuestResponseParams) => Promise<ConnectedXMResponse<Registration>>;
2218
+ declare const useUpdateSelfEventRegistrationGuestResponse: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponse>>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApi">, unknown>;
2219
+
2220
+ interface CancelSubscriptionParams extends MutationParams {
2221
+ subscriptionId: string;
2222
+ }
2223
+ declare const CancelSubscription: ({ subscriptionId, clientApi, queryClient, }: CancelSubscriptionParams) => Promise<ConnectedXMResponse<null>>;
2224
+ declare const useCancelSubscription: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSubscription>>, Omit<CancelSubscriptionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CancelSubscriptionParams, "queryClient" | "clientApi">, unknown>;
2225
+
2226
+ interface CreateSubscriptionParams extends MutationParams {
2227
+ subscriptionId: string;
2228
+ productId: string;
2229
+ priceId: string;
2230
+ }
2231
+ interface CreateSubscriptionResponse {
2232
+ type: string;
2233
+ clientSecret: string;
2234
+ }
2235
+ declare const CreateSubscription: ({ productId, priceId, clientApi, }: CreateSubscriptionParams) => Promise<ConnectedXMResponse<CreateSubscriptionResponse>>;
2236
+ declare const useCreateSubscription: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSubscription>>, Omit<CreateSubscriptionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CreateSubscriptionResponse>, Error | axios.AxiosError<ConnectedXMResponse<CreateSubscriptionResponse>, any>, Omit<CreateSubscriptionParams, "queryClient" | "clientApi">, unknown>;
2237
+
2238
+ interface UpdateSubscriptionPaymentMethodParams extends MutationParams {
2239
+ subscriptionId: string;
2240
+ paymentMethodId: string;
2241
+ }
2242
+ declare const UpdateSubscriptionPaymentMethod: ({ subscriptionId, paymentMethodId, clientApi, queryClient, }: UpdateSubscriptionPaymentMethodParams) => Promise<ConnectedXMResponse<null>>;
2243
+ declare const useUpdateSubscriptionPaymentMethod: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSubscriptionPaymentMethod>>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApi">, unknown>;
2244
+
2110
2245
  interface AcceptTransferParams extends MutationParams {
2111
2246
  transferId: string;
2112
2247
  }
@@ -2154,7 +2289,7 @@ interface AddSelfEventSessionParams extends MutationParams {
2154
2289
  declare const AddSelfEventSession: ({ eventId, sessionId, clientApi, queryClient, }: AddSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
2155
2290
  declare const useAddSelfEventSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventSession>>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApi">, unknown>;
2156
2291
 
2157
- interface CreateEvent {
2292
+ interface CreateEventListing {
2158
2293
  name: string;
2159
2294
  shortDescription: string;
2160
2295
  eventStart: string;
@@ -2173,7 +2308,7 @@ interface CreateEvent {
2173
2308
  registrationLimit?: string;
2174
2309
  }
2175
2310
  interface CreateSelfEventListingParams extends MutationParams {
2176
- event: CreateEvent;
2311
+ event: CreateEventListing;
2177
2312
  base64?: any;
2178
2313
  communityId?: string;
2179
2314
  sponsorIds?: string[];
@@ -2234,6 +2369,13 @@ interface RemoveSelfEventSessionParams extends MutationParams {
2234
2369
  declare const RemoveSelfEventSession: ({ eventId, sessionId, clientApi, queryClient, }: RemoveSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
2235
2370
  declare const useRemoveSelfEventSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventSession>>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApi">, unknown>;
2236
2371
 
2372
+ interface SelfCheckinRegistrationParams extends MutationParams {
2373
+ accountId: string;
2374
+ eventId: string;
2375
+ }
2376
+ declare const SelfCheckinRegistration: ({ accountId, eventId, clientApi, queryClient, }: SelfCheckinRegistrationParams) => Promise<any>;
2377
+ declare const useSelfCheckinRegistration: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCheckinRegistration>>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<any, Error | axios.AxiosError<any, any>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApi">, unknown>;
2378
+
2237
2379
  interface CreateActivity {
2238
2380
  message: string;
2239
2381
  contentId?: string;
@@ -2244,8 +2386,9 @@ interface CreateActivity {
2244
2386
  interface SelfCreateActivityParams extends MutationParams {
2245
2387
  activity: CreateActivity;
2246
2388
  base64Image?: any;
2389
+ videoUri?: string;
2247
2390
  }
2248
- declare const SelfCreateActivity: ({ activity, base64Image, clientApi, queryClient, locale, }: SelfCreateActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2391
+ declare const SelfCreateActivity: ({ activity, base64Image, videoUri, clientApi, queryClient, locale, }: SelfCreateActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2249
2392
  declare const useSelfCreateActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCreateActivity>>, Omit<SelfCreateActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<SelfCreateActivityParams, "queryClient" | "clientApi">, unknown>;
2250
2393
 
2251
2394
  interface DeleteActivityParams extends MutationParams {
@@ -2274,29 +2417,29 @@ declare const SelfUpdateCommunityMembership: ({ communityId, membership, clientA
2274
2417
  declare const useSelfUpdateCommunityMembership: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfUpdateCommunityMembership>>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CommunityMembership>, Error | axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApi">, unknown>;
2275
2418
 
2276
2419
  interface UpdateSelfParams extends MutationParams {
2277
- firstName: string;
2278
- lastName: string;
2279
- phone: string;
2280
- title: string;
2281
- company: string;
2282
- bio: string;
2283
- dietaryRestrictions: string;
2284
- address1: string;
2285
- address2: string;
2286
- city: string;
2287
- state: string;
2288
- zip: string;
2289
- country: string;
2290
- facebook: string;
2291
- twitter: string;
2292
- instagram: string;
2293
- tikTok: string;
2294
- linkedIn: string;
2295
- youtube: string;
2296
- discord: string;
2297
- video: string;
2298
- website: string;
2299
- username: string;
2420
+ username?: string;
2421
+ firstName?: string | null;
2422
+ lastName?: string | null;
2423
+ phone?: string | null;
2424
+ title?: string | null;
2425
+ company?: string | null;
2426
+ bio?: string | null;
2427
+ dietaryRestrictions?: string | null;
2428
+ address1?: string | null;
2429
+ address2?: string | null;
2430
+ city?: string | null;
2431
+ state?: string | null;
2432
+ zip?: string | null;
2433
+ country?: string | null;
2434
+ facebook?: string | null;
2435
+ twitter?: string | null;
2436
+ instagram?: string | null;
2437
+ tikTok?: string | null;
2438
+ linkedIn?: string | null;
2439
+ youtube?: string | null;
2440
+ discord?: string | null;
2441
+ video?: string | null;
2442
+ website?: string | null;
2300
2443
  }
2301
2444
  declare const UpdateSelf: ({ clientApi, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
2302
2445
  declare const useUpdateSelf: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Self>, Error | axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApi">, unknown>;
@@ -2305,6 +2448,7 @@ interface UpdateListing {
2305
2448
  eventType: keyof typeof EventType;
2306
2449
  name: string;
2307
2450
  shortDescription: string;
2451
+ longDescription: string;
2308
2452
  eventStart: string;
2309
2453
  eventEnd: string;
2310
2454
  registration: boolean;
@@ -2367,12 +2511,20 @@ interface UpdateSelfNotificationPreferencesParams extends MutationParams {
2367
2511
  likePush?: boolean;
2368
2512
  resharePush?: boolean;
2369
2513
  commentPush?: boolean;
2514
+ commentEmail?: boolean;
2370
2515
  transferPush?: boolean;
2371
2516
  transferEmail?: boolean;
2372
2517
  supportTicketConfirmationEmail?: boolean;
2373
2518
  chatPush?: boolean;
2374
2519
  chatUnreadPush?: boolean;
2375
2520
  chatUnreadEmail?: boolean;
2521
+ eventReminderEmail?: boolean;
2522
+ eventAnnouncementPush?: boolean;
2523
+ eventAnnouncementEmail?: boolean;
2524
+ organizationAnnouncementPush?: boolean;
2525
+ organizationAnnouncementEmail?: boolean;
2526
+ communityAnnouncementPush?: boolean;
2527
+ communityAnnouncementEmail?: boolean;
2376
2528
  }
2377
2529
  declare const UpdateSelfNotificationPreferences: ({ clientApi, queryClient, locale, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
2378
2530
  declare const useUpdateSelfNotificationPreferences: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfNotificationPreferences>>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<NotificationPreferences>, Error | axios.AxiosError<ConnectedXMResponse<NotificationPreferences>, any>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApi">, unknown>;
@@ -2401,4 +2553,4 @@ interface CreateTeamAccountParams extends MutationParams {
2401
2553
  declare const CreateTeamAccount: ({ name, email, clientApi, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
2402
2554
  declare const useCreateTeamAccount: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApi">, unknown>;
2403
2555
 
2404
- export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventSession, type AddSelfEventSessionParams, 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 BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventPage, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationGuest, 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 BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelTransfer, type CancelTransferParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, type CheckoutResponse, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, type CreateEvent, CreateEventLead, type CreateEventLeadParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, 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 EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBenefits, type GetBenefitsProps, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, 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, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, type Image, ImageType, type Instance, type Integrations, type Interest, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationGuest, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, type RegistrationSectionQuestion, RegistrationStatus, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationTicket, type RemoveSelfEventRegistrationTicketParams, 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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_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_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_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_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_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_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_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_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_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationTicket, type SelectSelfEventRegistrationTicketParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, 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, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, UpdateSelfEventRegistrationResponse, type UpdateSelfEventRegistrationResponseParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, type User, isListing, isManagedCoupon, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventSession, useCancelEventRegistration, useCancelTransfer, useCaptureSelfEventRegistrationPayment, useClientAPI, useCompleteEventActivation, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationTicket, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationResponse, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice };
2556
+ export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventSession, type AddSelfEventSessionParams, 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 BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventPage, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationGuest, 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 BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, type CheckoutResponse, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, type CreateGuest, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSelfEventRegistrationGuest, type CreateSelfEventRegistrationGuestParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfEventRegistrationGuest, type DeleteSelfEventRegistrationGuestParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, 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 EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBenefits, type GetBenefitsProps, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, 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, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, 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, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, type Image, ImageType, type Instance, type Integrations, type Interest, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type Notification$1 as 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 Page, type PageType, type Payment, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationGuest, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, type RegistrationSectionQuestion, RegistrationStatus, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationTicket, type RemoveSelfEventRegistrationTicketParams, 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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_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_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_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_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_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_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_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_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_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationTicket, type SelectSelfEventRegistrationTicketParams, type Self, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, 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, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, UpdateSelfEventRegistrationGuest, type UpdateSelfEventRegistrationGuestParams, UpdateSelfEventRegistrationGuestResponse, UpdateSelfEventRegistrationGuestResponseFile, type UpdateSelfEventRegistrationGuestResponseFileParams, type UpdateSelfEventRegistrationGuestResponseParams, UpdateSelfEventRegistrationGuestResponses, UpdateSelfEventRegistrationResponse, UpdateSelfEventRegistrationResponseFile, type UpdateSelfEventRegistrationResponseFileParams, type UpdateSelfEventRegistrationResponseParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, getClientAPI, isListing, isManagedCoupon, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureSelfEventRegistrationPayment, useClientAPI, useCompleteEventActivation, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSelfEventRegistrationGuest, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfEventRegistrationGuest, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationTicket, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationGuest, useUpdateSelfEventRegistrationGuestResponse, useUpdateSelfEventRegistrationGuestResponseFile, useUpdateSelfEventRegistrationGuestResponses, useUpdateSelfEventRegistrationResponse, useUpdateSelfEventRegistrationResponseFile, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };