@connectedxm/client 0.0.61 → 0.0.79

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
@@ -1093,6 +1093,8 @@ interface BaseVideo {
1093
1093
  thumbnailUrl: string;
1094
1094
  previewUrl: string;
1095
1095
  readyToStream: string;
1096
+ hlsUrl: string;
1097
+ dashUrl: string;
1096
1098
  }
1097
1099
  declare enum SubscriptionStatus {
1098
1100
  active = "active",
@@ -1154,25 +1156,21 @@ interface ConnectedXMClientContextState {
1154
1156
  queryClient: QueryClient;
1155
1157
  organizationId: string;
1156
1158
  apiUrl: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com" | "http://localhost:4001";
1157
- token: string | undefined;
1158
- setToken: (token: string | undefined) => void;
1159
- executeAs: string | undefined;
1160
- setExecuteAs: (accountId: string) => void;
1159
+ authenticated: boolean;
1160
+ getToken: () => Promise<string | undefined> | string | undefined;
1161
+ getExecuteAs?: () => Promise<string | undefined> | string | undefined;
1161
1162
  locale: string;
1162
- onNotAuthorized?: (error: AxiosError<ConnectedXMResponse<any>>) => void;
1163
- onModuleForbidden?: (error: AxiosError<ConnectedXMResponse<any>>) => void;
1164
- onNotFound?: (error: AxiosError<ConnectedXMResponse<any>>) => void;
1163
+ onNotAuthorized?: (error: AxiosError<ConnectedXMResponse<any>>, key: QueryKey) => void;
1164
+ onModuleForbidden?: (error: AxiosError<ConnectedXMResponse<any>>, key: QueryKey) => void;
1165
+ onNotFound?: (error: AxiosError<ConnectedXMResponse<any>>, key: QueryKey) => void;
1165
1166
  }
1166
1167
  interface ConnectedXMProviderProps extends Omit<ConnectedXMClientContextState, "token" | "setToken" | "executeAs" | "setExecuteAs"> {
1167
1168
  children: React.ReactNode;
1168
1169
  }
1169
- declare const ConnectedXMProvider: ({ queryClient, children, ...state }: ConnectedXMProviderProps) => React.JSX.Element;
1170
+ declare const ConnectedXMProvider: ({ queryClient, authenticated, children, ...state }: ConnectedXMProviderProps) => React.JSX.Element;
1170
1171
 
1171
1172
  declare const useConnectedXM: () => Omit<ConnectedXMClientContextState, "queryClient">;
1172
1173
 
1173
- 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;
1174
- declare const useClientAPI: (locale?: string) => AxiosInstance;
1175
-
1176
1174
  declare const AppendInfiniteQuery: <TData = unknown>(queryClient: QueryClient, key: QueryKey, newData: TData) => void;
1177
1175
 
1178
1176
  declare const GetErrorMessage: (error: any, fallback?: string) => string;
@@ -1189,8 +1187,17 @@ interface ItemWithId {
1189
1187
  }
1190
1188
  declare const CacheIndividualQueries: <TData extends ItemWithId>(page: ConnectedXMResponse<TData[]>, queryClient: QueryClient, queryKeyFn: (id: string) => QueryKey, locale?: string, itemMap?: ((item: TData) => TData) | undefined) => void;
1191
1189
 
1190
+ interface ClientApiParams {
1191
+ apiUrl: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com" | "http://localhost:4001";
1192
+ organizationId: string;
1193
+ getToken: () => Promise<string | undefined> | string | undefined;
1194
+ getExecuteAs?: () => Promise<string | undefined> | string | undefined;
1195
+ locale?: string;
1196
+ }
1197
+ declare const GetClientAPI: (params: ClientApiParams) => Promise<AxiosInstance>;
1198
+
1192
1199
  interface SingleQueryParams {
1193
- clientApi: AxiosInstance;
1200
+ clientApiParams: ClientApiParams;
1194
1201
  }
1195
1202
  interface SingleQueryOptions<TQueryData = unknown> extends Omit<UseQueryOptions<TQueryData, AxiosError<ConnectedXMResponse<any>>, Awaited<TQueryData>, QueryKey>, "queryFn" | "queryKey"> {
1196
1203
  }
@@ -1201,16 +1208,16 @@ declare const SET_ACCOUNT_QUERY_DATA: (client: QueryClient, keyParams: Parameter
1201
1208
  interface GetAccountProps extends SingleQueryParams {
1202
1209
  accountId: string;
1203
1210
  }
1204
- declare const GetAccount: ({ accountId, clientApi, }: GetAccountProps) => Promise<ConnectedXMResponse<Account>>;
1205
- declare const useGetAccount: (accountId: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1211
+ declare const GetAccount: ({ accountId, clientApiParams, }: GetAccountProps) => Promise<ConnectedXMResponse<Account>>;
1212
+ declare const useGetAccount: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1206
1213
 
1207
1214
  interface InfiniteQueryParams {
1215
+ pageParam: number;
1216
+ clientApiParams: ClientApiParams;
1208
1217
  pageSize?: number;
1209
1218
  orderBy?: string;
1210
1219
  search?: string;
1211
1220
  locale?: string;
1212
- pageParam: number;
1213
- clientApi: AxiosInstance;
1214
1221
  queryClient?: QueryClient;
1215
1222
  }
1216
1223
  interface InfiniteQueryOptions<TQueryData extends ConnectedXMResponse<any> = ConnectedXMResponse<unknown>> extends Omit<UseInfiniteQueryOptions<TQueryData, AxiosError<ConnectedXMResponse<null>>, InfiniteData<TQueryData, number>, TQueryData, QueryKey, number>, "queryKey" | "queryFn" | "getNextPageParam" | "initialPageParam"> {
@@ -1221,116 +1228,116 @@ declare const SET_ACCOUNT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams
1221
1228
  interface GetAccountActivitiesProps extends InfiniteQueryParams {
1222
1229
  accountId: string;
1223
1230
  }
1224
- declare const GetAccountActivities: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1225
- declare const useGetAccountActivities: (accountId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1231
+ declare const GetAccountActivities: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApiParams, locale, }: GetAccountActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1232
+ declare const useGetAccountActivities: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1226
1233
 
1227
1234
  declare const ACCOUNT_BY_SHARE_CODE_QUERY_KEY: (shareCode: string) => QueryKey;
1228
1235
  declare const SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountByShareCode>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1229
1236
  interface GetAccountByShareCodeProps extends SingleQueryParams {
1230
1237
  shareCode: string;
1231
1238
  }
1232
- declare const GetAccountByShareCode: ({ shareCode, clientApi, }: GetAccountByShareCodeProps) => Promise<ConnectedXMResponse<AccountShare>>;
1233
- declare const useGetAccountByShareCode: (shareCode: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountByShareCode>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<AccountShare>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1239
+ declare const GetAccountByShareCode: ({ shareCode, clientApiParams, }: GetAccountByShareCodeProps) => Promise<ConnectedXMResponse<AccountShare>>;
1240
+ declare const useGetAccountByShareCode: (shareCode?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountByShareCode>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<AccountShare>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1234
1241
 
1235
1242
  declare const ACCOUNT_COMMUNITIES_QUERY_KEY: (accountId: string) => QueryKey;
1236
1243
  declare const SET_ACCOUNT_COMMUNITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_COMMUNITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountCommunities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1237
1244
  interface GetAccountCommunitiesProps extends InfiniteQueryParams {
1238
1245
  accountId: string;
1239
1246
  }
1240
- declare const GetAccountCommunities: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountCommunitiesProps) => Promise<ConnectedXMResponse<Community[]>>;
1241
- declare const useGetAccountCommunities: (accountId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountCommunities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Community[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1247
+ declare const GetAccountCommunities: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApiParams, locale, }: GetAccountCommunitiesProps) => Promise<ConnectedXMResponse<Community[]>>;
1248
+ declare const useGetAccountCommunities: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountCommunities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Community[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1242
1249
 
1243
1250
  declare const ACCOUNT_FOLLOWERS_QUERY_KEY: (accountId: string) => QueryKey;
1244
1251
  declare const SET_ACCOUNT_FOLLOWERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1245
1252
  interface GetAccountFollowersProps extends InfiniteQueryParams {
1246
1253
  accountId: string;
1247
1254
  }
1248
- declare const GetAccountFollowers: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountFollowersProps) => Promise<ConnectedXMResponse<Account[]>>;
1249
- declare const useGetAccountFollowers: (accountId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountFollowers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1255
+ declare const GetAccountFollowers: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApiParams, locale, }: GetAccountFollowersProps) => Promise<ConnectedXMResponse<Account[]>>;
1256
+ declare const useGetAccountFollowers: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountFollowers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1250
1257
 
1251
1258
  declare const ACCOUNT_FOLLOWINGS_QUERY_KEY: (accountId: string) => QueryKey;
1252
1259
  declare const SET_ACCOUNT_FOLLOWINGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWINGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowings>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1253
1260
  interface GetAccountFollowingsProps extends InfiniteQueryParams {
1254
1261
  accountId: string;
1255
1262
  }
1256
- declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountFollowingsProps) => Promise<ConnectedXMResponse<Account[]>>;
1257
- declare const useGetAccountFollowings: (accountId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountFollowings>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1263
+ declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApiParams, locale, }: GetAccountFollowingsProps) => Promise<ConnectedXMResponse<Account[]>>;
1264
+ declare const useGetAccountFollowings: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountFollowings>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1258
1265
 
1259
1266
  declare const ACCOUNTS_QUERY_KEY: () => QueryKey;
1260
1267
  declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccounts>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1261
1268
  interface GetAccountsProps extends InfiniteQueryParams {
1262
1269
  }
1263
- declare const GetAccounts: ({ pageSize, orderBy, search, queryClient, clientApi, locale, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
1264
- declare const useGetAccounts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccounts>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1270
+ declare const GetAccounts: ({ pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
1271
+ declare const useGetAccounts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccounts>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1265
1272
 
1266
1273
  declare const ACTIVITIES_QUERY_KEY: () => QueryKey;
1267
1274
  declare const SET_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1268
1275
  interface GetActivitiesProps extends InfiniteQueryParams {
1269
1276
  }
1270
- declare const GetActivities: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1271
- declare const useGetActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1277
+ declare const GetActivities: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1278
+ declare const useGetActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1272
1279
 
1273
1280
  declare const ACTIVITY_QUERY_KEY: (activityId: string) => QueryKey;
1274
1281
  declare const SET_ACTIVITY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivity>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1275
1282
  interface GetActivityProps extends SingleQueryParams {
1276
1283
  activityId: string;
1277
1284
  }
1278
- declare const GetActivity: ({ activityId, clientApi, }: GetActivityProps) => Promise<ConnectedXMResponse<SingleActivity>>;
1279
- declare const useGetActivity: (activityId: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<SingleActivity>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1285
+ declare const GetActivity: ({ activityId, clientApiParams, }: GetActivityProps) => Promise<ConnectedXMResponse<SingleActivity>>;
1286
+ declare const useGetActivity: (activityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<SingleActivity>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1280
1287
 
1281
1288
  declare const ACTIVITY_COMMENTS_QUERY_KEY: (activityId: string) => QueryKey;
1282
1289
  declare const SET_ACTIVITY_COMMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITY_COMMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivityComments>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1283
1290
  interface GetActivityCommentsProps extends InfiniteQueryParams {
1284
1291
  activityId: string;
1285
1292
  }
1286
- declare const GetActivityComments: ({ activityId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetActivityCommentsProps) => Promise<ConnectedXMResponse<Activity[]>>;
1287
- declare const useGetActivityComments: (activityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetActivityComments>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1293
+ declare const GetActivityComments: ({ activityId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetActivityCommentsProps) => Promise<ConnectedXMResponse<Activity[]>>;
1294
+ declare const useGetActivityComments: (activityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetActivityComments>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1288
1295
 
1289
1296
  declare const ADVERTISEMENT_QUERY_KEY: (position: string) => QueryKey;
1290
1297
  declare const SET_ADVERTISEMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ADVERTISEMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAdvertisement>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1291
1298
  interface GetAdvertisementProps extends SingleQueryParams {
1292
1299
  }
1293
- declare const GetAdvertisement: ({ clientApi, }: GetAdvertisementProps) => Promise<ConnectedXMResponse<Advertisement>>;
1300
+ declare const GetAdvertisement: ({ clientApiParams, }: GetAdvertisementProps) => Promise<ConnectedXMResponse<Advertisement>>;
1294
1301
  declare const useGetAdvertisement: (position: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Advertisement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1295
1302
 
1296
1303
  declare const BENEFITS_QUERY_KEY: () => QueryKey;
1297
1304
  declare const SET_BENEFITS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BENEFITS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBenefits>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1298
1305
  interface GetBenefitsProps extends InfiniteQueryParams {
1299
1306
  }
1300
- declare const GetBenefits: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetBenefitsProps) => Promise<ConnectedXMResponse<Benefit[]>>;
1301
- declare const useGetBenefits: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBenefits>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Benefit[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1307
+ declare const GetBenefits: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetBenefitsProps) => Promise<ConnectedXMResponse<Benefit[]>>;
1308
+ declare const useGetBenefits: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBenefits>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Benefit[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1302
1309
 
1303
1310
  declare const COMMUNITIES_QUERY_KEY: () => QueryKey;
1304
1311
  declare const SET_COMMUNITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1305
1312
  interface GetCommunitiesProps extends InfiniteQueryParams {
1306
1313
  privateCommunities?: boolean;
1307
1314
  }
1308
- declare const GetCommunities: ({ pageParam, pageSize, orderBy, search, privateCommunities, queryClient, clientApi, locale, }: GetCommunitiesProps) => Promise<ConnectedXMResponse<Community[]>>;
1309
- declare const useGetCommunities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Community[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1315
+ declare const GetCommunities: ({ pageParam, pageSize, orderBy, search, privateCommunities, queryClient, clientApiParams, locale, }: GetCommunitiesProps) => Promise<ConnectedXMResponse<Community[]>>;
1316
+ declare const useGetCommunities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Community[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1310
1317
 
1311
1318
  declare const COMMUNITY_QUERY_KEY: (communityId: string) => QueryKey;
1312
1319
  declare const SET_COMMUNITY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunity>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
1313
1320
  interface GetCommunityProps extends SingleQueryParams {
1314
1321
  communityId: string;
1315
1322
  }
1316
- declare const GetCommunity: ({ communityId, clientApi, }: GetCommunityProps) => Promise<ConnectedXMResponse<Community>>;
1317
- declare const useGetCommunity: (communityId: string, options?: SingleQueryOptions<ReturnType<typeof GetCommunity>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1323
+ declare const GetCommunity: ({ communityId, clientApiParams, }: GetCommunityProps) => Promise<ConnectedXMResponse<Community>>;
1324
+ declare const useGetCommunity: (communityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetCommunity>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1318
1325
 
1319
1326
  declare const COMMUNITY_ACTIVITIES_QUERY_KEY: (communityId: string) => QueryKey;
1320
1327
  declare const SET_COMMUNITY_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1321
1328
  interface GetCommunityActivitiesProps extends InfiniteQueryParams {
1322
1329
  communityId: string;
1323
1330
  }
1324
- declare const GetCommunityActivities: ({ pageParam, pageSize, orderBy, search, communityId, queryClient, clientApi, locale, }: GetCommunityActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1325
- declare const useGetCommunityActivities: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1331
+ declare const GetCommunityActivities: ({ pageParam, pageSize, orderBy, search, communityId, queryClient, clientApiParams, locale, }: GetCommunityActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1332
+ declare const useGetCommunityActivities: (communityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1326
1333
 
1327
1334
  declare const COMMUNITY_ANNOUNCEMENTS_QUERY_KEY: (communityId: string) => QueryKey;
1328
1335
  declare const SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_ANNOUNCEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityAnnouncements>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1329
1336
  interface GetCommunityAnnouncementsProps extends InfiniteQueryParams {
1330
1337
  communityId: string;
1331
1338
  }
1332
- declare const GetCommunityAnnouncements: ({ communityId, pageParam, pageSize, orderBy, search, clientApi, }: GetCommunityAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
1333
- declare const useGetCommunityAnnouncements: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityAnnouncements>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1339
+ declare const GetCommunityAnnouncements: ({ communityId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetCommunityAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
1340
+ declare const useGetCommunityAnnouncements: (communityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityAnnouncements>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1334
1341
 
1335
1342
  declare const COMMUNITY_EVENTS_QUERY_KEY: (communityId: string, past?: boolean) => QueryKey;
1336
1343
  declare const SET_COMMUNITY_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: [communityId: string, past?: boolean | undefined], response: Awaited<ReturnType<typeof GetCommunityEvents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
@@ -1338,94 +1345,94 @@ interface GetCommunityEventsProps extends InfiniteQueryParams {
1338
1345
  communityId: string;
1339
1346
  past?: boolean;
1340
1347
  }
1341
- declare const GetCommunityEvents: ({ pageParam, pageSize, orderBy, search, communityId, past, queryClient, clientApi, locale, }: GetCommunityEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1342
- declare const useGetCommunityEvents: (communityId: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1348
+ declare const GetCommunityEvents: ({ pageParam, pageSize, orderBy, search, communityId, past, queryClient, clientApiParams, locale, }: GetCommunityEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1349
+ declare const useGetCommunityEvents: (communityId?: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1343
1350
 
1344
1351
  declare const COMMUNITY_MEMBERS_QUERY_KEY: (communityId: string) => QueryKey;
1345
1352
  declare const SET_COMMUNITY_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityMembers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1346
1353
  interface GetCommunityMembersProps extends InfiniteQueryParams {
1347
1354
  communityId: string;
1348
1355
  }
1349
- declare const GetCommunityMembers: ({ pageParam, pageSize, orderBy, search, communityId, clientApi, }: GetCommunityMembersProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
1350
- declare const useGetCommunityMembers: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityMembers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1356
+ declare const GetCommunityMembers: ({ pageParam, pageSize, orderBy, search, communityId, clientApiParams, }: GetCommunityMembersProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
1357
+ declare const useGetCommunityMembers: (communityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityMembers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1351
1358
 
1352
1359
  declare const COMMUNITY_MODERATORS_QUERY_KEY: (communityId: string) => QueryKey;
1353
1360
  declare const SET_COMMUNITY_MODERATORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_MODERATORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityModerators>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1354
1361
  interface GetCommunityModeratorsProps extends InfiniteQueryParams {
1355
1362
  communityId: string;
1356
1363
  }
1357
- declare const GetCommunityModerators: ({ pageParam, pageSize, orderBy, search, communityId, clientApi, }: GetCommunityModeratorsProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
1358
- declare const useGetCommunityModerators: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityModerators>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1364
+ declare const GetCommunityModerators: ({ pageParam, pageSize, orderBy, search, communityId, clientApiParams, }: GetCommunityModeratorsProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
1365
+ declare const useGetCommunityModerators: (communityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityModerators>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1359
1366
 
1360
1367
  declare const COMMUNITY_SPONSORS_QUERY_KEY: (communityId: string) => QueryKey;
1361
1368
  declare const SET_COMMUNITY_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunitySponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1362
1369
  interface GetCommunitySponsorsProps extends InfiniteQueryParams {
1363
1370
  communityId: string;
1364
1371
  }
1365
- declare const GetCommunitySponsors: ({ pageParam, pageSize, orderBy, search, communityId, queryClient, clientApi, locale, }: GetCommunitySponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
1366
- declare const useGetCommunitySponsors: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunitySponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1372
+ declare const GetCommunitySponsors: ({ pageParam, pageSize, orderBy, search, communityId, queryClient, clientApiParams, locale, }: GetCommunitySponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
1373
+ declare const useGetCommunitySponsors: (communityId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunitySponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1367
1374
 
1368
1375
  declare const CONTENT_QUERY_KEY: (contentId: string) => QueryKey;
1369
1376
  declare const SET_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1370
1377
  interface GetContentParams extends SingleQueryParams {
1371
1378
  contentId: string;
1372
1379
  }
1373
- declare const GetContent: ({ contentId, clientApi, }: GetContentParams) => Promise<ConnectedXMResponse<Content>>;
1374
- declare const useGetContent: (contentId: string, options?: SingleQueryOptions<ReturnType<typeof GetContent>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1380
+ declare const GetContent: ({ contentId, clientApiParams, }: GetContentParams) => Promise<ConnectedXMResponse<Content>>;
1381
+ declare const useGetContent: (contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetContent>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1375
1382
 
1376
1383
  declare const CONTENT_ACTIVITIES_QUERY_KEY: (contentId: string) => QueryKey;
1377
1384
  declare const SET_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1378
1385
  interface GetContentActivitiesParams extends InfiniteQueryParams {
1379
1386
  contentId: string;
1380
1387
  }
1381
- declare const GetContentActivities: ({ pageParam, pageSize, orderBy, search, contentId, queryClient, clientApi, locale, }: GetContentActivitiesParams) => Promise<ConnectedXMResponse<Activity[]>>;
1382
- declare const useGetContentActivities: (contentId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1388
+ declare const GetContentActivities: ({ pageParam, pageSize, orderBy, search, contentId, queryClient, clientApiParams, locale, }: GetContentActivitiesParams) => Promise<ConnectedXMResponse<Activity[]>>;
1389
+ declare const useGetContentActivities: (contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1383
1390
 
1384
1391
  declare const CONTENTS_QUERY_KEY: () => QueryKey;
1385
1392
  declare const SET_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1386
1393
  interface GetContentsParams extends InfiniteQueryParams {
1387
1394
  }
1388
- declare const GetContents: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1389
- declare const useGetContents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1395
+ declare const GetContents: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1396
+ declare const useGetContents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1390
1397
 
1391
1398
  declare const CONTENT_TYPE_QUERY_KEY: (contentTypeId: string) => QueryKey;
1392
1399
  declare const SET_CONTENT_TYPE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentType>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1393
1400
  interface GetContentTypeParams extends SingleQueryParams {
1394
1401
  contentTypeId: string;
1395
1402
  }
1396
- declare const GetContentType: ({ contentTypeId, clientApi, }: GetContentTypeParams) => Promise<ConnectedXMResponse<ContentType>>;
1397
- declare const useGetContentType: (contentTypeId: string, options?: SingleQueryOptions<ReturnType<typeof GetContentType>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<ContentType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1403
+ declare const GetContentType: ({ contentTypeId, clientApiParams, }: GetContentTypeParams) => Promise<ConnectedXMResponse<ContentType>>;
1404
+ declare const useGetContentType: (contentTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetContentType>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<ContentType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1398
1405
 
1399
1406
  declare const CONTENT_TYPE_CONTENTS_QUERY_KEY: (contentTypeId: string) => QueryKey;
1400
1407
  declare const SET_CONTENT_TYPE_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPE_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentTypeContents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1401
1408
  interface GetContentTypeContentsParams extends InfiniteQueryParams {
1402
1409
  contentTypeId: string;
1403
1410
  }
1404
- declare const GetContentTypeContents: ({ pageParam, pageSize, orderBy, search, contentTypeId, queryClient, clientApi, locale, }: GetContentTypeContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1405
- declare const useGetContentTypeContents: (contentTypeId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypeContents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1411
+ declare const GetContentTypeContents: ({ pageParam, pageSize, orderBy, search, contentTypeId, queryClient, clientApiParams, locale, }: GetContentTypeContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
1412
+ declare const useGetContentTypeContents: (contentTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypeContents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1406
1413
 
1407
1414
  declare const CONTENT_TYPES_QUERY_KEY: () => QueryKey;
1408
1415
  declare const SET_CONTENT_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentTypes>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1409
1416
  interface GetContentTypesParams extends InfiniteQueryParams {
1410
1417
  }
1411
- declare const GetContentTypes: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetContentTypesParams) => Promise<ConnectedXMResponse<ContentType[]>>;
1412
- declare const useGetContentTypes: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypes>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ContentType[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1418
+ declare const GetContentTypes: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetContentTypesParams) => Promise<ConnectedXMResponse<ContentType[]>>;
1419
+ declare const useGetContentTypes: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypes>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ContentType[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1413
1420
 
1414
1421
  declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
1415
1422
  declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1416
1423
  interface GetEventProps extends SingleQueryParams {
1417
1424
  eventId: string;
1418
1425
  }
1419
- declare const GetEvent: ({ eventId, clientApi, }: GetEventProps) => Promise<ConnectedXMResponse<Event>>;
1420
- declare const useGetEvent: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1426
+ declare const GetEvent: ({ eventId, clientApiParams, }: GetEventProps) => Promise<ConnectedXMResponse<Event>>;
1427
+ declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1421
1428
 
1422
1429
  declare const EVENT_ACTIVITIES_QUERY_KEY: (eventId: string) => QueryKey;
1423
1430
  declare const SET_EVENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1424
1431
  interface GetEventActivitiesProps extends InfiniteQueryParams {
1425
1432
  eventId: string;
1426
1433
  }
1427
- declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1428
- declare const useGetEventActivities: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1434
+ declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1435
+ declare const useGetEventActivities: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1429
1436
 
1430
1437
  declare const EVENT_FAQ_SECTION_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
1431
1438
  declare const SET_EVENT_FAQ_SECTION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventFAQSection>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -1433,8 +1440,8 @@ interface GetEventFAQSectionProps extends SingleQueryParams {
1433
1440
  eventId: string;
1434
1441
  sectionId: string;
1435
1442
  }
1436
- declare const GetEventFAQSection: ({ eventId, sectionId, clientApi, }: GetEventFAQSectionProps) => Promise<ConnectedXMResponse<FaqSection>>;
1437
- declare const useGetEventFAQSection: (eventId: string, sectionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSection>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<FaqSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1443
+ declare const GetEventFAQSection: ({ eventId, sectionId, clientApiParams, }: GetEventFAQSectionProps) => Promise<ConnectedXMResponse<FaqSection>>;
1444
+ declare const useGetEventFAQSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSection>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<FaqSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1438
1445
 
1439
1446
  declare const EVENT_FAQ_SECTION_QUESTION_QUERY_KEY: (eventId: string, sectionId: string, questionId: string) => QueryKey;
1440
1447
  declare const SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sectionId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventFAQSectionQuestion>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -1443,8 +1450,8 @@ interface GetEventFAQSectionQuestionProps extends SingleQueryParams {
1443
1450
  sectionId: string;
1444
1451
  questionId: string;
1445
1452
  }
1446
- declare const GetEventFAQSectionQuestion: ({ eventId, sectionId, questionId, clientApi, }: GetEventFAQSectionQuestionProps) => Promise<ConnectedXMResponse<Faq>>;
1447
- declare const useGetEventFAQSectionQuestion: (eventId: string, sectionId: string, questionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSectionQuestion>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Faq>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1453
+ declare const GetEventFAQSectionQuestion: ({ eventId, sectionId, questionId, clientApiParams, }: GetEventFAQSectionQuestionProps) => Promise<ConnectedXMResponse<Faq>>;
1454
+ declare const useGetEventFAQSectionQuestion: (eventId?: string, sectionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSectionQuestion>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Faq>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1448
1455
 
1449
1456
  declare const EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
1450
1457
  declare const SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventFaqs>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
@@ -1452,16 +1459,16 @@ interface GetEventFaqsProps extends InfiniteQueryParams {
1452
1459
  eventId: string;
1453
1460
  sectionId: string;
1454
1461
  }
1455
- declare const GetEventFaqs: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventFaqsProps) => Promise<ConnectedXMResponse<Faq[]>>;
1456
- declare const useGetEventFaqs: (eventId: string, sectionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqs>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Faq[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1462
+ declare const GetEventFaqs: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventFaqsProps) => Promise<ConnectedXMResponse<Faq[]>>;
1463
+ declare const useGetEventFaqs: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqs>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Faq[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1457
1464
 
1458
1465
  declare const EVENT_FAQ_SECTIONS_QUERY_KEY: (eventId: string) => QueryKey;
1459
1466
  declare const SET_EVENT_FAQ_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSections>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1460
1467
  interface GetEventFaqSectionsProps extends InfiniteQueryParams {
1461
1468
  eventId: string;
1462
1469
  }
1463
- declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventFaqSectionsProps) => Promise<ConnectedXMResponse<FaqSection[]>>;
1464
- declare const useGetEventFaqSections: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqSections>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<FaqSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1470
+ declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventFaqSectionsProps) => Promise<ConnectedXMResponse<FaqSection[]>>;
1471
+ declare const useGetEventFaqSections: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqSections>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<FaqSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1465
1472
 
1466
1473
  declare const EVENT_PAGE_QUERY_KEY: (eventId: string, pageId: string) => QueryKey;
1467
1474
  declare const SET_EVENT_PAGE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, pageId: string], response: Awaited<ReturnType<typeof GetEventPage>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -1469,48 +1476,48 @@ interface GetEventPageProps extends SingleQueryParams {
1469
1476
  eventId: string;
1470
1477
  pageId: string;
1471
1478
  }
1472
- declare const GetEventPage: ({ eventId, pageId, clientApi, }: GetEventPageProps) => Promise<ConnectedXMResponse<EventPage>>;
1473
- declare const useGetEventPage: (eventId: string, pageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<EventPage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1479
+ declare const GetEventPage: ({ eventId, pageId, clientApiParams, }: GetEventPageProps) => Promise<ConnectedXMResponse<EventPage>>;
1480
+ declare const useGetEventPage: (eventId: string | undefined, pageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<EventPage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1474
1481
 
1475
1482
  declare const EVENT_PAGES_QUERY_KEY: (eventId: string) => QueryKey;
1476
1483
  declare const SET_EVENT_PAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPages>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1477
1484
  interface GetEventPagesProps extends InfiniteQueryParams {
1478
1485
  eventId: string;
1479
1486
  }
1480
- declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventPagesProps) => Promise<ConnectedXMResponse<BaseEventPage[]>>;
1481
- declare const useGetEventPages: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPages>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<BaseEventPage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1487
+ declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventPagesProps) => Promise<ConnectedXMResponse<BaseEventPage[]>>;
1488
+ declare const useGetEventPages: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPages>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<BaseEventPage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1482
1489
 
1483
1490
  declare const EVENT_QUESTION_VALUES_QUERY_KEY: (eventId: string, questionId: string) => unknown[];
1484
1491
  interface GetEventQuestionSearchValuesProps extends InfiniteQueryParams {
1485
1492
  eventId: string;
1486
1493
  questionId: string;
1487
1494
  }
1488
- declare const GetEventQuestionSearchValues: ({ eventId, questionId, pageParam, pageSize, orderBy, search, clientApi, }: GetEventQuestionSearchValuesProps) => Promise<ConnectedXMResponse<RegistrationQuestionSearchValue[]>>;
1489
- declare const useGetEventQuestionSearchValues: (eventId: string, questionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionSearchValues>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<RegistrationQuestionSearchValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1495
+ declare const GetEventQuestionSearchValues: ({ eventId, questionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventQuestionSearchValuesProps) => Promise<ConnectedXMResponse<RegistrationQuestionSearchValue[]>>;
1496
+ declare const useGetEventQuestionSearchValues: (eventId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionSearchValues>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<RegistrationQuestionSearchValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1490
1497
 
1491
1498
  declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string) => QueryKey;
1492
1499
  declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1493
1500
  interface GetEventSessionsProps extends InfiniteQueryParams {
1494
1501
  eventId: string;
1495
1502
  }
1496
- declare const GetEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventSessionsProps) => Promise<ConnectedXMResponse<Session[]>>;
1497
- declare const useGetEventSessions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessions>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Session[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1503
+ declare const GetEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventSessionsProps) => Promise<ConnectedXMResponse<Session[]>>;
1504
+ declare const useGetEventSessions: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessions>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Session[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1498
1505
 
1499
1506
  declare const EVENT_REGISTRANTS_QUERY_KEY: (eventId: string) => QueryKey;
1500
1507
  declare const SET_EVENT_REGISTRANTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_REGISTRANTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1501
1508
  interface GetEventRegistrantsProps extends InfiniteQueryParams {
1502
1509
  eventId: string;
1503
1510
  }
1504
- declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventRegistrantsProps) => Promise<ConnectedXMResponse<Account[]>>;
1505
- declare const useGetEventRegistrants: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrants>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1511
+ declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventRegistrantsProps) => Promise<ConnectedXMResponse<Account[]>>;
1512
+ declare const useGetEventRegistrants: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrants>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1506
1513
 
1507
1514
  declare const EVENTS_QUERY_KEY: (past?: boolean) => QueryKey;
1508
1515
  declare const SET_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1509
1516
  interface GetEventsProps extends InfiniteQueryParams {
1510
1517
  past?: boolean;
1511
1518
  }
1512
- declare const GetEvents: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApi, locale, }: GetEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1513
- declare const useGetEvents: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1519
+ declare const GetEvents: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApiParams, locale, }: GetEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1520
+ declare const useGetEvents: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1514
1521
 
1515
1522
  declare const EVENT_SESSION_QUERY_KEY: (eventId: string, sessionId: string) => QueryKey;
1516
1523
  declare const SET_EVENT_SESSION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSession>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -1518,8 +1525,8 @@ interface GetEventSessionProps extends SingleQueryParams {
1518
1525
  eventId: string;
1519
1526
  sessionId: string;
1520
1527
  }
1521
- declare const GetEventSession: ({ eventId, sessionId, clientApi, }: GetEventSessionProps) => Promise<ConnectedXMResponse<Session>>;
1522
- declare const useGetEventSession: (eventId: string, sessionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSession>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Session>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1528
+ declare const GetEventSession: ({ eventId, sessionId, clientApiParams, }: GetEventSessionProps) => Promise<ConnectedXMResponse<Session>>;
1529
+ declare const useGetEventSession: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSession>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Session>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1523
1530
 
1524
1531
  declare const EVENT_SPEAKER_QUERY_KEY: (eventId: string, speakerId: string) => QueryKey;
1525
1532
  declare const SET_EVENT_SPEAKER_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, speakerId: string], response: Awaited<ReturnType<typeof GetEventSpeaker>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -1527,44 +1534,44 @@ interface GetEventSpeakerProps extends SingleQueryParams {
1527
1534
  eventId: string;
1528
1535
  speakerId: string;
1529
1536
  }
1530
- declare const GetEventSpeaker: ({ eventId, speakerId, clientApi, }: GetEventSpeakerProps) => Promise<ConnectedXMResponse<Speaker>>;
1531
- declare const useGetEventSpeaker: (eventId: string, speakerId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Speaker>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1537
+ declare const GetEventSpeaker: ({ eventId, speakerId, clientApiParams, }: GetEventSpeakerProps) => Promise<ConnectedXMResponse<Speaker>>;
1538
+ declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Speaker>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1532
1539
 
1533
1540
  declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => QueryKey;
1534
1541
  declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1535
1542
  interface GetEventSpeakersProps extends InfiniteQueryParams {
1536
1543
  eventId: string;
1537
1544
  }
1538
- declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventSpeakersProps) => Promise<ConnectedXMResponse<Speaker[]>>;
1539
- declare const useGetEventSpeakers: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Speaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1545
+ declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventSpeakersProps) => Promise<ConnectedXMResponse<Speaker[]>>;
1546
+ declare const useGetEventSpeakers: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Speaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1540
1547
 
1541
1548
  declare const EVENT_SPONSORS_QUERY_KEY: (eventId: string) => QueryKey;
1542
1549
  declare const SET_EVENT_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1543
1550
  interface GetEventSponsorsProps extends InfiniteQueryParams {
1544
1551
  eventId: string;
1545
1552
  }
1546
- declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
1547
- declare const useGetEventSponsors: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1553
+ declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
1554
+ declare const useGetEventSponsors: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1548
1555
 
1549
1556
  declare const EVENT_TICKETS_QUERY_KEY: (eventId: string) => QueryKey;
1550
1557
  declare const SET_EVENT_TICKETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTickets>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1551
1558
  interface GetEventTicketsProps extends InfiniteQueryParams {
1552
1559
  eventId: string;
1553
1560
  }
1554
- declare const GetEventTickets: ({ eventId, pageParam, pageSize, orderBy, search, clientApi, }: GetEventTicketsProps) => Promise<ConnectedXMResponse<Ticket[]>>;
1555
- declare const useGetEventTickets: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTickets>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Ticket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1561
+ declare const GetEventTickets: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetEventTicketsProps) => Promise<ConnectedXMResponse<Ticket[]>>;
1562
+ declare const useGetEventTickets: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTickets>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Ticket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1556
1563
 
1557
1564
  declare const EVENTS_FEATURED_QUERY_KEY: () => QueryKey;
1558
1565
  declare const SET_EVENTS_FEATURED_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_FEATURED_QUERY_KEY>, response: Awaited<ReturnType<typeof GetFeaturedEvents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1559
1566
  interface GetFeaturedEventsProps extends InfiniteQueryParams {
1560
1567
  }
1561
- declare const GetFeaturedEvents: ({ pageParam, pageSize, orderBy, queryClient, clientApi, locale, }: GetFeaturedEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1562
- declare const useGetFeaturedEvents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetFeaturedEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1568
+ declare const GetFeaturedEvents: ({ pageParam, pageSize, orderBy, queryClient, clientApiParams, locale, }: GetFeaturedEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1569
+ declare const useGetFeaturedEvents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetFeaturedEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1563
1570
 
1564
1571
  declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
1565
1572
  interface GetOrganizationParams extends SingleQueryParams {
1566
1573
  }
1567
- declare const GetOrganization: ({ clientApi, }: GetOrganizationParams) => Promise<ConnectedXMResponse<Organization>>;
1574
+ declare const GetOrganization: ({ clientApiParams, }: GetOrganizationParams) => Promise<ConnectedXMResponse<Organization>>;
1568
1575
  declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Organization>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1569
1576
 
1570
1577
  declare const ORGANIZATION_EXPLORE_QUERY_KEY: () => QueryKey;
@@ -1576,7 +1583,7 @@ interface Explore {
1576
1583
  }
1577
1584
  interface GetOrganizationExploreProps extends SingleQueryParams {
1578
1585
  }
1579
- declare const GetOrganizationExplore: ({ clientApi, }: GetOrganizationExploreProps) => Promise<ConnectedXMResponse<Explore>>;
1586
+ declare const GetOrganizationExplore: ({ clientApiParams, }: GetOrganizationExploreProps) => Promise<ConnectedXMResponse<Explore>>;
1580
1587
  declare const useGetOrganizationExplore: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationExplore>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Explore>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1581
1588
 
1582
1589
  declare const ORGANIZATION_PAGE_QUERY_KEY: (type: PageType) => QueryKey;
@@ -1585,19 +1592,19 @@ type PageType = "about" | "team" | "privacy" | "terms";
1585
1592
  interface GetOrganizationPageProps extends SingleQueryParams {
1586
1593
  type: PageType;
1587
1594
  }
1588
- declare const GetOrganizationPage: ({ type, clientApi, }: GetOrganizationPageProps) => Promise<ConnectedXMResponse<Page | null>>;
1595
+ declare const GetOrganizationPage: ({ type, clientApiParams, }: GetOrganizationPageProps) => Promise<ConnectedXMResponse<Page | null>>;
1589
1596
  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>>;
1590
1597
 
1591
1598
  declare const ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY: () => unknown[];
1592
1599
  interface GetOrganizationSubscriptionProductsProps extends InfiniteQueryParams {
1593
1600
  }
1594
- declare const GetOrganizationSubscriptionProducts: ({ clientApi, }: GetOrganizationSubscriptionProductsProps) => Promise<ConnectedXMResponse<SubscriptionProduct[]>>;
1595
- 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>>;
1601
+ declare const GetOrganizationSubscriptionProducts: ({ clientApiParams, }: GetOrganizationSubscriptionProductsProps) => Promise<ConnectedXMResponse<SubscriptionProduct[]>>;
1602
+ declare const useGetOrganizationSubscriptionProducts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, 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>>;
1596
1603
 
1597
1604
  declare const ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY: () => unknown[];
1598
1605
  interface GetOrganizationPaymentIntegrationParams extends SingleQueryParams {
1599
1606
  }
1600
- declare const GetOrganizationPaymentIntegration: ({ clientApi, }: GetOrganizationPaymentIntegrationParams) => Promise<ConnectedXMResponse<{
1607
+ declare const GetOrganizationPaymentIntegration: ({ clientApiParams, }: GetOrganizationPaymentIntegrationParams) => Promise<ConnectedXMResponse<{
1601
1608
  connectionId: string;
1602
1609
  type: "stripe" | "paypal";
1603
1610
  }>>;
@@ -1611,7 +1618,7 @@ declare const SET_SELF_CHAT_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams:
1611
1618
  interface GetSelfChatChannelProps extends SingleQueryParams {
1612
1619
  channelId: string;
1613
1620
  }
1614
- declare const GetSelfChatChannel: ({ channelId, clientApi, }: GetSelfChatChannelProps) => Promise<ConnectedXMResponse<ChatChannelMember>>;
1621
+ declare const GetSelfChatChannel: ({ channelId, clientApiParams, }: GetSelfChatChannelProps) => Promise<ConnectedXMResponse<ChatChannelMember>>;
1615
1622
  declare const useGetSelfChatChannel: (channelId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfChatChannel>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1616
1623
 
1617
1624
  declare const SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY: (channelId: string) => QueryKey;
@@ -1619,23 +1626,23 @@ declare const SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA: (client: QueryClient, ke
1619
1626
  interface GetSelfChatChannelMembersProps extends InfiniteQueryParams {
1620
1627
  channelId: string;
1621
1628
  }
1622
- declare const GetSelfChatChannelMembers: ({ channelId, pageParam, pageSize, orderBy, search, clientApi, }: GetSelfChatChannelMembersProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
1623
- declare const useGetSelfChatChannelMembers: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMembers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1629
+ declare const GetSelfChatChannelMembers: ({ channelId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfChatChannelMembersProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
1630
+ declare const useGetSelfChatChannelMembers: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMembers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1624
1631
 
1625
1632
  declare const SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY: (channelId: string) => QueryKey;
1626
1633
  declare const SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMessages>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1627
1634
  interface GetSelfChatChannelMessagesProps extends InfiniteQueryParams {
1628
1635
  channelId: string;
1629
1636
  }
1630
- declare const GetSelfChatChannelMessages: ({ channelId, pageParam, pageSize, orderBy, search, queryClient, clientApi, }: GetSelfChatChannelMessagesProps) => Promise<ConnectedXMResponse<ChatChannelMessage[]>>;
1631
- declare const useGetSelfChatChannelMessages: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMessages>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ChatChannelMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1637
+ declare const GetSelfChatChannelMessages: ({ channelId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, }: GetSelfChatChannelMessagesProps) => Promise<ConnectedXMResponse<ChatChannelMessage[]>>;
1638
+ declare const useGetSelfChatChannelMessages: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMessages>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ChatChannelMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1632
1639
 
1633
1640
  declare const SELF_CHAT_CHANNELS_QUERY_KEY: () => QueryKey;
1634
1641
  declare const SET_SELF_CHAT_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannels>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1635
1642
  interface GetSelfChatChannelsProps extends InfiniteQueryParams {
1636
1643
  }
1637
- declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfChatChannelsProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
1638
- declare const useGetSelfChatChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannels>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1644
+ declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfChatChannelsProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
1645
+ declare const useGetSelfChatChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannels>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1639
1646
 
1640
1647
  declare const SELF_EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => QueryKey;
1641
1648
  declare const SET_SELF_EVENT_REGISTRATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -1645,7 +1652,7 @@ interface GetSelfEventRegistrationProps extends SingleQueryParams {
1645
1652
  quantity?: number;
1646
1653
  coupon?: string;
1647
1654
  }
1648
- declare const GetSelfEventRegistration: ({ eventId, ticket, quantity, coupon, clientApi, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
1655
+ declare const GetSelfEventRegistration: ({ eventId, ticket, quantity, coupon, clientApiParams, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
1649
1656
  declare const useGetSelfEventRegistration: (eventId: string, ticket?: string, quantity?: number, coupon?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistration>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1650
1657
 
1651
1658
  interface CheckoutResponse {
@@ -1659,49 +1666,49 @@ interface GetSelfEventRegistrationCheckoutProps extends SingleQueryParams {
1659
1666
  eventId: string;
1660
1667
  registrationId: string;
1661
1668
  }
1662
- declare const GetSelfEventRegistrationCheckout: ({ eventId, registrationId, clientApi, }: GetSelfEventRegistrationCheckoutProps) => Promise<Awaited<ConnectedXMResponse<CheckoutResponse>>>;
1669
+ declare const GetSelfEventRegistrationCheckout: ({ eventId, registrationId, clientApiParams, }: GetSelfEventRegistrationCheckoutProps) => Promise<Awaited<ConnectedXMResponse<CheckoutResponse>>>;
1663
1670
  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>>;
1664
1671
 
1665
1672
  declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
1666
1673
  interface GetSelfSubcriptionProps extends SingleQueryParams {
1667
1674
  subscriptionId: string;
1668
1675
  }
1669
- declare const GetSelfSubcription: ({ subscriptionId, clientApi, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
1676
+ declare const GetSelfSubcription: ({ subscriptionId, clientApiParams, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
1670
1677
  declare const useGetSelfSubcription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfSubcription>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1671
1678
 
1672
1679
  declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unknown[];
1673
1680
  interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
1674
1681
  status?: SubscriptionStatus;
1675
1682
  }
1676
- declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
1677
- 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>>;
1683
+ declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
1684
+ declare const useGetSelfSubscriptions: (status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, 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>>;
1678
1685
 
1679
1686
  declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
1680
1687
  interface GetSelfSubscriptionPaymentsProps extends InfiniteQueryParams {
1681
1688
  subscriptionId: string;
1682
1689
  }
1683
- declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApi, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
1684
- 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>>;
1690
+ declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
1691
+ declare const useGetSelfSubscriptionPayments: (subscriptionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, 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>>;
1685
1692
 
1686
- declare const SELF_QUERY_KEY: (authenticated?: boolean) => QueryKey;
1693
+ declare const SELF_QUERY_KEY: (ignoreExecuteAs?: boolean) => QueryKey;
1687
1694
  declare const SET_SELF_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelf>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1688
1695
  interface GetSelfProps extends SingleQueryParams {
1689
- authenticated?: boolean;
1696
+ ignoreExecuteAs?: boolean;
1690
1697
  }
1691
- declare const GetSelf: ({ authenticated, clientApi, }: GetSelfProps) => Promise<ConnectedXMResponse<Self>>;
1692
- declare const useGetSelf: (authenticated?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1698
+ declare const GetSelf: ({ ignoreExecuteAs, clientApiParams, }: GetSelfProps) => Promise<ConnectedXMResponse<Self>>;
1699
+ declare const useGetSelf: (ignoreExecuteAs?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1693
1700
 
1694
1701
  declare const SELF_ACTIVITIES_QUERY_KEY: () => QueryKey;
1695
1702
  interface GetSelfActivitiesProps extends InfiniteQueryParams {
1696
1703
  }
1697
- declare const GetSelfActivities: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1698
- declare const useGetSelfActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1704
+ declare const GetSelfActivities: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
1705
+ declare const useGetSelfActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1699
1706
 
1700
1707
  declare const SELF_ANNOUNCEMENT_QUERY_KEY: (announcementId: string) => QueryKey;
1701
1708
  interface GetSelfAnnouncementProps extends SingleQueryParams {
1702
1709
  announcementId: string;
1703
1710
  }
1704
- declare const GetSelfAnnouncement: ({ announcementId, clientApi, }: GetSelfAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
1711
+ declare const GetSelfAnnouncement: ({ announcementId, clientApiParams, }: GetSelfAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
1705
1712
  declare const useGetSelfAnnouncement: (announcementId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfAnnouncement>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1706
1713
 
1707
1714
  declare const SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY: (communityId: string) => QueryKey;
@@ -1709,33 +1716,33 @@ declare const SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA: (client: QueryClient, ke
1709
1716
  interface GetSelfCommunityMembershipProps extends SingleQueryParams {
1710
1717
  communityId: string;
1711
1718
  }
1712
- declare const GetSelfCommunityMembership: ({ communityId, clientApi, }: GetSelfCommunityMembershipProps) => Promise<ConnectedXMResponse<CommunityMembership>>;
1719
+ declare const GetSelfCommunityMembership: ({ communityId, clientApiParams, }: GetSelfCommunityMembershipProps) => Promise<ConnectedXMResponse<CommunityMembership>>;
1713
1720
  declare const useGetSelfCommunityMembership: (communityId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfCommunityMembership>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<CommunityMembership>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1714
1721
 
1715
1722
  declare const SELF_COMMUNITY_MEMBERSHIPS_QUERY_KEY: () => QueryKey;
1716
1723
  interface GetSelfCommunityMembershipsProps extends InfiniteQueryParams {
1717
1724
  }
1718
- declare const GetSelfCommunityMemberships: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSelfCommunityMembershipsProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
1719
- declare const useGetSelfCommunityMemberships: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfCommunityMemberships>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1725
+ declare const GetSelfCommunityMemberships: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfCommunityMembershipsProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
1726
+ declare const useGetSelfCommunityMemberships: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfCommunityMemberships>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1720
1727
 
1721
1728
  declare const SELF_DELEGATE_OF_QUERY_KEY: () => QueryKey;
1722
1729
  interface GetSelfDelegateOfProps extends InfiniteQueryParams {
1723
1730
  }
1724
- declare const GetSelfDelegateOf: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfDelegateOfProps) => Promise<ConnectedXMResponse<Account[]>>;
1725
- declare const useGetSelfDelegateOf: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegateOf>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1731
+ declare const GetSelfDelegateOf: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfDelegateOfProps) => Promise<ConnectedXMResponse<Account[]>>;
1732
+ declare const useGetSelfDelegateOf: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegateOf>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1726
1733
 
1727
1734
  declare const SELF_DELEGATES_QUERY_KEY: () => QueryKey;
1728
1735
  interface GetSelfDelegatesProps extends InfiniteQueryParams {
1729
1736
  }
1730
- declare const GetSelfDelegates: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfDelegatesProps) => Promise<ConnectedXMResponse<Account[]>>;
1731
- declare const useGetSelfDelegates: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegates>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1737
+ declare const GetSelfDelegates: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfDelegatesProps) => Promise<ConnectedXMResponse<Account[]>>;
1738
+ declare const useGetSelfDelegates: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegates>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1732
1739
 
1733
1740
  declare const SELF_EVENT_LISTING_QUERY_KEY: (eventId: string) => QueryKey;
1734
1741
  declare const SET_SELF_EVENT_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1735
1742
  interface GetSelfEventListingProps extends SingleQueryParams {
1736
1743
  eventId: string;
1737
1744
  }
1738
- declare const GetSelfEventListing: ({ eventId, clientApi, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
1745
+ declare const GetSelfEventListing: ({ eventId, clientApiParams, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
1739
1746
  declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1740
1747
 
1741
1748
  declare const SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY: (eventId: string, checkedIn: boolean) => unknown[];
@@ -1743,60 +1750,60 @@ interface GetSelfEventListingRegistrationsProps extends InfiniteQueryParams {
1743
1750
  eventId: string;
1744
1751
  checkedIn?: boolean;
1745
1752
  }
1746
- declare const GetSelfEventListingRegistrations: ({ eventId, pageParam, pageSize, orderBy, search, checkedIn, clientApi, }: GetSelfEventListingRegistrationsProps) => Promise<ConnectedXMResponse<Registration[]>>;
1747
- declare const useGetSelfEventListingsRegistrations: (eventId: string, checkedIn?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingRegistrations>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Registration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1753
+ declare const GetSelfEventListingRegistrations: ({ eventId, pageParam, pageSize, orderBy, search, checkedIn, clientApiParams, }: GetSelfEventListingRegistrationsProps) => Promise<ConnectedXMResponse<Registration[]>>;
1754
+ declare const useGetSelfEventListingsRegistrations: (eventId: string, checkedIn?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingRegistrations>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Registration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1748
1755
 
1749
1756
  declare const SELF_EVENT_LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
1750
1757
  interface GetSelfEventListingsProps extends InfiniteQueryParams {
1751
1758
  past?: boolean;
1752
1759
  }
1753
- declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApi, locale, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
1754
- declare const useGetSelfEventListings: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListings>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<EventListing[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1760
+ declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApiParams, locale, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
1761
+ declare const useGetSelfEventListings: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListings>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<EventListing[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1755
1762
 
1756
1763
  declare const SELF_EVENTS_QUERY_KEY: (past: boolean) => QueryKey;
1757
1764
  interface GetSelfEventsProps extends InfiniteQueryParams {
1758
1765
  past?: boolean;
1759
1766
  }
1760
- declare const GetSelfEvents: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApi, locale, }: GetSelfEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1761
- declare const useGetSelfEvents: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1767
+ declare const GetSelfEvents: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApiParams, locale, }: GetSelfEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1768
+ declare const useGetSelfEvents: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1762
1769
 
1763
1770
  declare const SELF_EVENT_SESSIONS_QUERY_KEY: (eventId: string) => QueryKey;
1764
1771
  interface GetSelfEventSessionsProps extends InfiniteQueryParams {
1765
1772
  eventId: string;
1766
1773
  }
1767
- declare const GetSelfEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfEventSessionsProps) => Promise<ConnectedXMResponse<Session[]>>;
1768
- declare const useGetSelfEventSessions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventSessions>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Session[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1774
+ declare const GetSelfEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfEventSessionsProps) => Promise<ConnectedXMResponse<Session[]>>;
1775
+ declare const useGetSelfEventSessions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventSessions>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Session[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1769
1776
 
1770
1777
  declare const SELF_FEED_QUERY_KEY: () => QueryKey;
1771
1778
  interface GetSelfFeedProps extends InfiniteQueryParams {
1772
1779
  }
1773
- declare const GetSelfFeed: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfFeedProps) => Promise<ConnectedXMResponse<Activity[]>>;
1774
- declare const useGetSelfFeed: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfFeed>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1780
+ declare const GetSelfFeed: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfFeedProps) => Promise<ConnectedXMResponse<Activity[]>>;
1781
+ declare const useGetSelfFeed: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfFeed>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1775
1782
 
1776
1783
  declare const SELF_INTERESTS_QUERY_KEY: () => QueryKey;
1777
1784
  interface GetSelfInterestsProps extends InfiniteQueryParams {
1778
1785
  }
1779
- declare const GetSelfInterests: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSelfInterestsProps) => Promise<ConnectedXMResponse<Interest[]>>;
1780
- declare const useGetSelfInterests: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfInterests>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Interest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1786
+ declare const GetSelfInterests: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfInterestsProps) => Promise<ConnectedXMResponse<Interest[]>>;
1787
+ declare const useGetSelfInterests: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfInterests>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Interest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1781
1788
 
1782
1789
  declare const SELF_PREFERENCES_QUERY_KEY: () => QueryKey;
1783
1790
  interface GetSelfNotificationPreferencesProps extends SingleQueryParams {
1784
1791
  }
1785
- declare const GetSelfNotificationPreferences: ({ clientApi, }: GetSelfNotificationPreferencesProps) => Promise<ConnectedXMResponse<NotificationPreferences>>;
1792
+ declare const GetSelfNotificationPreferences: ({ clientApiParams, }: GetSelfNotificationPreferencesProps) => Promise<ConnectedXMResponse<NotificationPreferences>>;
1786
1793
  declare const useGetSelfNotificationPreferences: (options?: SingleQueryOptions<ReturnType<typeof GetSelfNotificationPreferences>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<NotificationPreferences>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1787
1794
 
1788
1795
  declare const SELF_NOTIFICATIONS_QUERY_KEY: (filters: string) => QueryKey;
1789
1796
  interface GetSelfNotificationsProps extends InfiniteQueryParams {
1790
1797
  filters?: string;
1791
1798
  }
1792
- declare const GetSelfNotifications: ({ pageParam, pageSize, orderBy, search, filters, clientApi, }: GetSelfNotificationsProps) => Promise<ConnectedXMResponse<Notification$1[]>>;
1793
- declare const useGetSelfNotifications: (filters?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfNotifications>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Notification$1[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1799
+ declare const GetSelfNotifications: ({ pageParam, pageSize, orderBy, search, filters, clientApiParams, }: GetSelfNotificationsProps) => Promise<ConnectedXMResponse<Notification$1[]>>;
1800
+ declare const useGetSelfNotifications: (filters?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfNotifications>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Notification$1[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1794
1801
 
1795
1802
  declare const SELF_NOTIFICATION_COUNT_QUERY_KEY: (filters: string) => QueryKey;
1796
1803
  interface GetSelfNewNotificationsCountProps extends SingleQueryParams {
1797
1804
  filters?: string;
1798
1805
  }
1799
- declare const GetSelfNewNotificationsCount: ({ filters, clientApi, }: GetSelfNewNotificationsCountProps) => Promise<ConnectedXMResponse<Notification[]>>;
1806
+ declare const GetSelfNewNotificationsCount: ({ filters, clientApiParams, }: GetSelfNewNotificationsCountProps) => Promise<ConnectedXMResponse<Notification[]>>;
1800
1807
  declare const useGetSelfNewNotificationsCount: (filters?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfNewNotificationsCount>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Notification[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1801
1808
 
1802
1809
  declare const SELF_PUSH_DEVICE_QUERY_KEY: (pushDeviceId: string) => QueryKey;
@@ -1804,14 +1811,14 @@ declare const SET_PUSH_DEVICE_QUERY_DATA: (client: QueryClient, keyParams: Param
1804
1811
  interface GetSelfPushDeviceProps extends SingleQueryParams {
1805
1812
  pushDeviceId: string;
1806
1813
  }
1807
- declare const GetSelfPushDevice: ({ pushDeviceId, clientApi, }: GetSelfPushDeviceProps) => Promise<ConnectedXMResponse<PushDevice>>;
1814
+ declare const GetSelfPushDevice: ({ pushDeviceId, clientApiParams, }: GetSelfPushDeviceProps) => Promise<ConnectedXMResponse<PushDevice>>;
1808
1815
  declare const useGetSelfPushDevice: (pushDeviceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfPushDevice>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1809
1816
 
1810
1817
  declare const SELF_PUSH_DEVICES_QUERY_KEY: () => QueryKey;
1811
1818
  interface GetSelfPushDevicesProps extends InfiniteQueryParams {
1812
1819
  }
1813
- declare const GetSelfPushDevices: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfPushDevicesProps) => Promise<ConnectedXMResponse<PushDevice[]>>;
1814
- declare const useGetSelfPushDevices: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfPushDevices>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<PushDevice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1820
+ declare const GetSelfPushDevices: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfPushDevicesProps) => Promise<ConnectedXMResponse<PushDevice[]>>;
1821
+ declare const useGetSelfPushDevices: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfPushDevices>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<PushDevice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1815
1822
 
1816
1823
  declare const SELF_RECOMMENDATIONS_QUERY_KEY: (type: string, eventId?: string) => unknown[];
1817
1824
  type RecomendationType = "following" | "contacts" | "popular";
@@ -1819,86 +1826,86 @@ interface GetSelfRecommendationsProps extends InfiniteQueryParams {
1819
1826
  eventId?: string;
1820
1827
  type?: RecomendationType;
1821
1828
  }
1822
- declare const GetSelfRecommendations: ({ pageParam, pageSize, orderBy, search, eventId, type, queryClient, clientApi, locale, }: GetSelfRecommendationsProps) => Promise<ConnectedXMResponse<Account[]>>;
1823
- declare const useGetSelfRecommendations: (type: RecomendationType, eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfRecommendations>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1829
+ declare const GetSelfRecommendations: ({ pageParam, pageSize, orderBy, search, eventId, type, queryClient, clientApiParams, locale, }: GetSelfRecommendationsProps) => Promise<ConnectedXMResponse<Account[]>>;
1830
+ declare const useGetSelfRecommendations: (type: RecomendationType, eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfRecommendations>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1824
1831
 
1825
1832
  declare const SELF_PENDING_TRANSFER_QUERY_KEY: (transferId: string) => QueryKey;
1826
1833
  interface GetSelfTransferProps extends SingleQueryParams {
1827
1834
  transferId: string;
1828
1835
  }
1829
- declare const GetSelfTransfer: ({ transferId, clientApi, }: GetSelfTransferProps) => Promise<ConnectedXMResponse<Transfer>>;
1836
+ declare const GetSelfTransfer: ({ transferId, clientApiParams, }: GetSelfTransferProps) => Promise<ConnectedXMResponse<Transfer>>;
1830
1837
  declare const useGetSelfTransfer: (transferId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfTransfer>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1831
1838
 
1832
1839
  declare const SELF_TRANSFERS_QUERY_KEY: () => QueryKey;
1833
1840
  interface GetSelfTransfersProps extends InfiniteQueryParams {
1834
1841
  }
1835
- declare const GetSelfTransfers: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSelfTransfersProps) => Promise<ConnectedXMResponse<Transfer[]>>;
1836
- declare const useGetSelfTransfers: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfTransfers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Transfer[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1842
+ declare const GetSelfTransfers: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfTransfersProps) => Promise<ConnectedXMResponse<Transfer[]>>;
1843
+ declare const useGetSelfTransfers: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfTransfers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Transfer[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1837
1844
 
1838
1845
  declare const SERIES_QUERY_KEY: (seriesId: string) => QueryKey;
1839
1846
  declare const SET_SERIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeries>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1840
1847
  interface GetSeriesProps extends SingleQueryParams {
1841
1848
  seriesId: string;
1842
1849
  }
1843
- declare const GetSeries: ({ seriesId, clientApi, }: GetSeriesProps) => Promise<ConnectedXMResponse<Series>>;
1844
- declare const useGetSeries: (seriesId: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Series>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1850
+ declare const GetSeries: ({ seriesId, clientApiParams, }: GetSeriesProps) => Promise<ConnectedXMResponse<Series>>;
1851
+ declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Series>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1845
1852
 
1846
1853
  declare const SERIES_EVENTS_QUERY_KEY: (seriesId: string) => QueryKey;
1847
1854
  declare const SET_SERIES_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesEvents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1848
1855
  interface GetSeriesEventsProps extends InfiniteQueryParams {
1849
1856
  seriesId: string;
1850
1857
  }
1851
- declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSeriesEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1852
- declare const useGetSeriesEvents: (seriesId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1858
+ declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSeriesEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
1859
+ declare const useGetSeriesEvents: (seriesId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1853
1860
 
1854
1861
  declare const SERIES_LIST_QUERY_KEY: () => QueryKey;
1855
1862
  declare const SET_SERIES_LIST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_LIST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesList>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1856
1863
  interface GetSeriesListProps extends InfiniteQueryParams {
1857
1864
  past?: boolean;
1858
1865
  }
1859
- declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSeriesListProps) => Promise<ConnectedXMResponse<Series[]>>;
1860
- declare const useGetSeriesList: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesList>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Series[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1866
+ declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSeriesListProps) => Promise<ConnectedXMResponse<Series[]>>;
1867
+ declare const useGetSeriesList: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesList>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Series[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1861
1868
 
1862
1869
  declare const LEVEL_QUERY_KEY: (levelId: string) => QueryKey;
1863
1870
  declare const SET_LEVEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1864
1871
  interface GetLevelProps extends SingleQueryParams {
1865
1872
  levelId: string;
1866
1873
  }
1867
- declare const GetLevel: ({ levelId, clientApi, }: GetLevelProps) => Promise<ConnectedXMResponse<SponsorshipLevel>>;
1868
- declare const useGetLevel: (levelId: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<SponsorshipLevel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1874
+ declare const GetLevel: ({ levelId, clientApiParams, }: GetLevelProps) => Promise<ConnectedXMResponse<SponsorshipLevel>>;
1875
+ declare const useGetLevel: (levelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<SponsorshipLevel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1869
1876
 
1870
1877
  declare const LEVELS_QUERY_KEY: () => QueryKey;
1871
1878
  declare const SET_LEVELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevels>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1872
1879
  interface GetLevelsProps extends InfiniteQueryParams {
1873
1880
  }
1874
- declare const GetLevels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetLevelsProps) => Promise<ConnectedXMResponse<SponsorshipLevel[]>>;
1875
- declare const useGetLevels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevels>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<SponsorshipLevel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1881
+ declare const GetLevels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetLevelsProps) => Promise<ConnectedXMResponse<SponsorshipLevel[]>>;
1882
+ declare const useGetLevels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevels>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<SponsorshipLevel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1876
1883
 
1877
1884
  declare const LEVEL_SPONSORS_QUERY_KEY: (levelId: string) => QueryKey;
1878
1885
  declare const SET_LEVEL_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevelSponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1879
1886
  interface GetLevelSponsorsProps extends InfiniteQueryParams {
1880
1887
  levelId: string;
1881
1888
  }
1882
- declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
1883
- declare const useGetLevelSponsors: (levelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevelSponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1889
+ declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
1890
+ declare const useGetLevelSponsors: (levelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevelSponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1884
1891
 
1885
1892
  declare const SPONSOR_QUERY_KEY: (sponsorId: string) => QueryKey;
1886
1893
  declare const SET_SPONSOR_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SPONSOR_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSponsor>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
1887
1894
  interface GetSponsorProps extends SingleQueryParams {
1888
1895
  accountId: string;
1889
1896
  }
1890
- declare const GetSponsor: ({ accountId, clientApi, }: GetSponsorProps) => Promise<ConnectedXMResponse<Account>>;
1891
- declare const useGetSponsor: (accountId: string, options?: SingleQueryOptions<ReturnType<typeof GetSponsor>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1897
+ declare const GetSponsor: ({ accountId, clientApiParams, }: GetSponsorProps) => Promise<ConnectedXMResponse<Account>>;
1898
+ declare const useGetSponsor: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSponsor>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
1892
1899
 
1893
1900
  declare const SPONSORS_QUERY_KEY: () => QueryKey;
1894
1901
  declare const SET_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
1895
1902
  interface GetSponsorsProps extends InfiniteQueryParams {
1896
1903
  }
1897
- declare const GetSponsors: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
1898
- declare const useGetSponsors: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1904
+ declare const GetSponsors: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
1905
+ declare const useGetSponsors: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
1899
1906
 
1900
1907
  interface MutationParams {
1901
- clientApi: AxiosInstance;
1908
+ clientApiParams: ClientApiParams;
1902
1909
  locale?: string;
1903
1910
  queryClient?: QueryClient;
1904
1911
  }
@@ -1908,45 +1915,45 @@ interface MutationOptions<TResponseData, TMutationParams> extends UseMutationOpt
1908
1915
  interface FollowAccountParams extends MutationParams {
1909
1916
  accountId: string;
1910
1917
  }
1911
- declare const FollowAccount: ({ accountId, clientApi, queryClient, locale, }: FollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
1912
- declare const useFollowAccount: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof FollowAccount>>, Omit<FollowAccountParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<FollowAccountParams, "queryClient" | "clientApi">, unknown>;
1918
+ declare const FollowAccount: ({ accountId, clientApiParams, queryClient, locale, }: FollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
1919
+ declare const useFollowAccount: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof FollowAccount>>, Omit<FollowAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<FollowAccountParams, "queryClient" | "clientApiParams">, unknown>;
1913
1920
 
1914
1921
  interface UnfollowAccountParams extends MutationParams {
1915
1922
  accountId: string;
1916
1923
  }
1917
- declare const UnfollowAccount: ({ accountId, clientApi, queryClient, locale, }: UnfollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
1918
- declare const useUnfollowAccount: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnfollowAccount>>, Omit<UnfollowAccountParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<UnfollowAccountParams, "queryClient" | "clientApi">, unknown>;
1924
+ declare const UnfollowAccount: ({ accountId, clientApiParams, queryClient, locale, }: UnfollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
1925
+ declare const useUnfollowAccount: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnfollowAccount>>, Omit<UnfollowAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<UnfollowAccountParams, "queryClient" | "clientApiParams">, unknown>;
1919
1926
 
1920
1927
  interface DeleteReshareParams extends MutationParams {
1921
1928
  activityId: string;
1922
1929
  }
1923
- declare const DeleteReshare: ({ activityId, clientApi, queryClient, }: DeleteReshareParams) => Promise<ConnectedXMResponse<Activity>>;
1924
- declare const useDeleteReshare: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteReshare>>, Omit<DeleteReshareParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<DeleteReshareParams, "queryClient" | "clientApi">, unknown>;
1930
+ declare const DeleteReshare: ({ activityId, clientApiParams, queryClient, }: DeleteReshareParams) => Promise<ConnectedXMResponse<Activity>>;
1931
+ declare const useDeleteReshare: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteReshare>>, Omit<DeleteReshareParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<DeleteReshareParams, "queryClient" | "clientApiParams">, unknown>;
1925
1932
 
1926
1933
  interface LikeActivityParams extends MutationParams {
1927
1934
  activityId: string;
1928
1935
  }
1929
- declare const LikeActivity: ({ activityId, clientApi, queryClient, }: LikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
1930
- declare const useLikeActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeActivity>>, Omit<LikeActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<LikeActivityParams, "queryClient" | "clientApi">, unknown>;
1936
+ declare const LikeActivity: ({ activityId, clientApiParams, queryClient, }: LikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
1937
+ declare const useLikeActivity: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeActivity>>, Omit<LikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<LikeActivityParams, "queryClient" | "clientApiParams">, unknown>;
1931
1938
 
1932
1939
  interface ReshareActivityParams extends MutationParams {
1933
1940
  activityId: string;
1934
1941
  }
1935
- declare const ReshareActivity: ({ activityId, queryClient, clientApi, }: ReshareActivityParams) => Promise<ConnectedXMResponse<Activity>>;
1936
- declare const useReshareActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReshareActivity>>, Omit<ReshareActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<ReshareActivityParams, "queryClient" | "clientApi">, unknown>;
1942
+ declare const ReshareActivity: ({ activityId, queryClient, clientApiParams, }: ReshareActivityParams) => Promise<ConnectedXMResponse<Activity>>;
1943
+ declare const useReshareActivity: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReshareActivity>>, Omit<ReshareActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<ReshareActivityParams, "queryClient" | "clientApiParams">, unknown>;
1937
1944
 
1938
1945
  interface UnlikeActivityParams extends MutationParams {
1939
1946
  activityId: string;
1940
1947
  }
1941
- declare const UnlikeActivity: ({ activityId, clientApi, queryClient, }: UnlikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
1942
- declare const useUnlikeActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeActivity>>, Omit<UnlikeActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<UnlikeActivityParams, "queryClient" | "clientApi">, unknown>;
1948
+ declare const UnlikeActivity: ({ activityId, clientApiParams, queryClient, }: UnlikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
1949
+ declare const useUnlikeActivity: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeActivity>>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<UnlikeActivityParams, "queryClient" | "clientApiParams">, unknown>;
1943
1950
 
1944
1951
  interface AddCommunityEventParams extends MutationParams {
1945
1952
  communityId: string;
1946
1953
  eventId: string;
1947
1954
  }
1948
- declare const AddCommunityEvent: ({ communityId, eventId, clientApi, queryClient, }: AddCommunityEventParams) => Promise<ConnectedXMResponse<Event>>;
1949
- declare const useAddCommunityEvent: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddCommunityEvent>>, Omit<AddCommunityEventParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Event>, Error | axios.AxiosError<ConnectedXMResponse<Event>, any>, Omit<AddCommunityEventParams, "queryClient" | "clientApi">, unknown>;
1955
+ declare const AddCommunityEvent: ({ communityId, eventId, clientApiParams, queryClient, }: AddCommunityEventParams) => Promise<ConnectedXMResponse<Event>>;
1956
+ declare const useAddCommunityEvent: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddCommunityEvent>>, Omit<AddCommunityEventParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Event>, Error | axios.AxiosError<ConnectedXMResponse<Event>, any>, Omit<AddCommunityEventParams, "queryClient" | "clientApiParams">, unknown>;
1950
1957
 
1951
1958
  interface CreateCommunityAnnouncementParams extends MutationParams {
1952
1959
  communityId: string;
@@ -1955,15 +1962,15 @@ interface CreateCommunityAnnouncementParams extends MutationParams {
1955
1962
  email: boolean;
1956
1963
  push: boolean;
1957
1964
  }
1958
- declare const CreateCommunityAnnouncement: ({ communityId, title, html, email, push, clientApi, queryClient, }: CreateCommunityAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
1959
- declare const useCreateCommunityAnnouncement: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunityAnnouncement>>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Announcement>, Error | axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApi">, unknown>;
1965
+ declare const CreateCommunityAnnouncement: ({ communityId, title, html, email, push, clientApiParams, queryClient, }: CreateCommunityAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
1966
+ declare const useCreateCommunityAnnouncement: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunityAnnouncement>>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Announcement>, Error | axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApiParams">, unknown>;
1960
1967
 
1961
1968
  interface RemoveCommunityEventParams extends MutationParams {
1962
1969
  communityId: string;
1963
1970
  eventId: string;
1964
1971
  }
1965
- declare const RemoveCommunityEvent: ({ communityId, eventId, clientApi, queryClient, }: RemoveCommunityEventParams) => Promise<ConnectedXMResponse<null>>;
1966
- declare const useRemoveCommunityEvent: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveCommunityEvent>>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApi">, unknown>;
1972
+ declare const RemoveCommunityEvent: ({ communityId, eventId, clientApiParams, queryClient, }: RemoveCommunityEventParams) => Promise<ConnectedXMResponse<null>>;
1973
+ declare const useRemoveCommunityEvent: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveCommunityEvent>>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApiParams">, unknown>;
1967
1974
 
1968
1975
  interface UpdateCommunityParams extends MutationParams {
1969
1976
  communityId: string;
@@ -1971,93 +1978,93 @@ interface UpdateCommunityParams extends MutationParams {
1971
1978
  externalUrl?: string;
1972
1979
  base64?: string;
1973
1980
  }
1974
- declare const UpdateCommunity: ({ communityId, description, externalUrl, base64, clientApi, queryClient, locale, }: UpdateCommunityParams) => Promise<ConnectedXMResponse<Community>>;
1975
- declare const useUpdateCommunity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateCommunity>>, Omit<UpdateCommunityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Community>, Error | axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<UpdateCommunityParams, "queryClient" | "clientApi">, unknown>;
1981
+ declare const UpdateCommunity: ({ communityId, description, externalUrl, base64, clientApiParams, queryClient, locale, }: UpdateCommunityParams) => Promise<ConnectedXMResponse<Community>>;
1982
+ declare const useUpdateCommunity: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateCommunity>>, Omit<UpdateCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Community>, Error | axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<UpdateCommunityParams, "queryClient" | "clientApiParams">, unknown>;
1976
1983
 
1977
1984
  interface CompleteEventActivationParams extends MutationParams {
1978
1985
  eventId: string;
1979
1986
  activationId: string;
1980
1987
  code?: string;
1981
1988
  }
1982
- declare const CompleteEventActivation: ({ eventId, activationId, code, clientApi, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
1983
- declare const useCompleteEventActivation: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CompleteEventActivation>>, Omit<CompleteEventActivationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventActivation>, Error | axios.AxiosError<ConnectedXMResponse<EventActivation>, any>, Omit<CompleteEventActivationParams, "queryClient" | "clientApi">, unknown>;
1989
+ declare const CompleteEventActivation: ({ eventId, activationId, code, clientApiParams, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
1990
+ declare const useCompleteEventActivation: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CompleteEventActivation>>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventActivation>, Error | axios.AxiosError<ConnectedXMResponse<EventActivation>, any>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">, unknown>;
1984
1991
 
1985
1992
  interface CreateEventLeadParams extends MutationParams {
1986
1993
  eventId: string;
1987
1994
  purchaseId: string;
1988
1995
  note?: string;
1989
1996
  }
1990
- declare const CreateEventLead: ({ eventId, purchaseId, note, clientApi, queryClient, }: CreateEventLeadParams) => Promise<ConnectedXMResponse<Lead>>;
1991
- declare const useCreateEventLead: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateEventLead>>, Omit<CreateEventLeadParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Lead>, Error | axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<CreateEventLeadParams, "queryClient" | "clientApi">, unknown>;
1997
+ declare const CreateEventLead: ({ eventId, purchaseId, note, clientApiParams, queryClient, }: CreateEventLeadParams) => Promise<ConnectedXMResponse<Lead>>;
1998
+ declare const useCreateEventLead: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateEventLead>>, Omit<CreateEventLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Lead>, Error | axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<CreateEventLeadParams, "queryClient" | "clientApiParams">, unknown>;
1992
1999
 
1993
2000
  interface AddSelfChatChannelMemberParams extends MutationParams {
1994
2001
  channelId: string;
1995
2002
  accountId: string;
1996
2003
  }
1997
- declare const AddSelfChatChannelMember: ({ channelId, accountId, clientApi, queryClient, }: AddSelfChatChannelMemberParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
1998
- declare const useAddSelfChatChannelMember: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfChatChannelMember>>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApi">, unknown>;
2004
+ declare const AddSelfChatChannelMember: ({ channelId, accountId, clientApiParams, queryClient, }: AddSelfChatChannelMemberParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
2005
+ declare const useAddSelfChatChannelMember: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfChatChannelMember>>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApiParams">, unknown>;
1999
2006
 
2000
2007
  interface CreateSelfChatChannelParams extends MutationParams {
2001
2008
  name: string;
2002
2009
  accountIds: string[];
2003
2010
  }
2004
- declare const CreateSelfChatChannel: ({ name, accountIds, clientApi, queryClient, }: CreateSelfChatChannelParams) => Promise<ConnectedXMResponse<ChatChannel>>;
2005
- declare const useCreateSelfChatChannel: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannel>>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannel>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannel>, any>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApi">, unknown>;
2011
+ declare const CreateSelfChatChannel: ({ name, accountIds, clientApiParams, queryClient, }: CreateSelfChatChannelParams) => Promise<ConnectedXMResponse<ChatChannel>>;
2012
+ declare const useCreateSelfChatChannel: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannel>>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannel>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannel>, any>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
2006
2013
 
2007
2014
  interface CreateSelfChatChannelMessageParams extends MutationParams {
2008
2015
  channelId: string;
2009
2016
  text: string;
2010
2017
  }
2011
- declare const CreateSelfChatChannelMessage: ({ channelId, text, queryClient, clientApi, }: CreateSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<ChatChannelMessage>>;
2012
- declare const useCreateSelfChatChannelMessage: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannelMessage>>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannelMessage>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannelMessage>, any>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApi">, unknown>;
2018
+ declare const CreateSelfChatChannelMessage: ({ channelId, text, queryClient, clientApiParams, }: CreateSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<ChatChannelMessage>>;
2019
+ declare const useCreateSelfChatChannelMessage: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannelMessage>>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannelMessage>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannelMessage>, any>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApiParams">, unknown>;
2013
2020
 
2014
2021
  interface DeleteSelfChatChannelParams extends MutationParams {
2015
2022
  channelId: string;
2016
2023
  }
2017
- declare const DeleteSelfChatChannel: ({ channelId, clientApi, queryClient, }: DeleteSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
2018
- declare const useDeleteSelfChatChannel: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannel>>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApi">, unknown>;
2024
+ declare const DeleteSelfChatChannel: ({ channelId, clientApiParams, queryClient, }: DeleteSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
2025
+ declare const useDeleteSelfChatChannel: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannel>>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
2019
2026
 
2020
2027
  interface DeleteSelfChatChannelMessageParams extends MutationParams {
2021
2028
  channelId: string;
2022
2029
  messageId: string;
2023
2030
  }
2024
- declare const DeleteSelfChatChannelMessage: ({ channelId, messageId, clientApi, queryClient, }: DeleteSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<null>>;
2025
- declare const useDeleteSelfChatChannelMessage: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannelMessage>>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApi">, unknown>;
2031
+ declare const DeleteSelfChatChannelMessage: ({ channelId, messageId, clientApiParams, queryClient, }: DeleteSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<null>>;
2032
+ declare const useDeleteSelfChatChannelMessage: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannelMessage>>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApiParams">, unknown>;
2026
2033
 
2027
2034
  interface LeaveSelfChatChannelParams extends MutationParams {
2028
2035
  channelId: string;
2029
2036
  }
2030
- declare const LeaveSelfChatChannel: ({ channelId, clientApi, queryClient, }: LeaveSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
2031
- declare const useLeaveSelfChatChannel: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveSelfChatChannel>>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApi">, unknown>;
2037
+ declare const LeaveSelfChatChannel: ({ channelId, clientApiParams, queryClient, }: LeaveSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
2038
+ declare const useLeaveSelfChatChannel: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveSelfChatChannel>>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApiParams">, unknown>;
2032
2039
 
2033
2040
  interface UpdateSelfChatChannelNotificationsParams extends MutationParams {
2034
2041
  channelId: string;
2035
2042
  notifications: boolean;
2036
2043
  }
2037
- declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApi, queryClient, locale, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
2038
- declare const useUpdateSelfChatChannelNotifications: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfChatChannelNotifications>>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApi">, unknown>;
2044
+ declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApiParams, queryClient, locale, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
2045
+ declare const useUpdateSelfChatChannelNotifications: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfChatChannelNotifications>>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApiParams">, unknown>;
2039
2046
 
2040
2047
  interface RegisterCancelledEventRegistrationParams extends MutationParams {
2041
2048
  eventId: string;
2042
2049
  registrationId: string;
2043
2050
  }
2044
- declare const RegisterCancelledEventRegistration: ({ eventId, registrationId, clientApi, queryClient, locale, }: RegisterCancelledEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2045
- declare const useRegisterCancelledEventRegistration: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RegisterCancelledEventRegistration>>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApi">, unknown>;
2051
+ declare const RegisterCancelledEventRegistration: ({ eventId, registrationId, clientApiParams, queryClient, locale, }: RegisterCancelledEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2052
+ declare const useRegisterCancelledEventRegistration: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RegisterCancelledEventRegistration>>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
2046
2053
 
2047
2054
  interface SelectSelfEventRegistrationCouponParams extends MutationParams {
2048
2055
  eventId: string;
2049
2056
  registrationId: string;
2050
2057
  couponId: string;
2051
2058
  }
2052
- declare const SelectSelfEventRegistrationCoupon: ({ eventId, registrationId, couponId, clientApi, queryClient, locale, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
2053
- declare const useSelectSelfEventRegistrationCoupon: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApi">, unknown>;
2059
+ declare const SelectSelfEventRegistrationCoupon: ({ eventId, registrationId, couponId, clientApiParams, queryClient, locale, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
2060
+ declare const useSelectSelfEventRegistrationCoupon: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
2054
2061
 
2055
2062
  interface CaptureSelfEventRegistrationPaymentParams extends MutationParams {
2056
2063
  eventId: string;
2057
2064
  registrationId: string;
2058
2065
  }
2059
- declare const CaptureSelfEventRegistrationPayment: ({ eventId, registrationId, clientApi, queryClient, locale, }: CaptureSelfEventRegistrationPaymentParams) => Promise<ConnectedXMResponse<Registration>>;
2060
- 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>;
2066
+ declare const CaptureSelfEventRegistrationPayment: ({ eventId, registrationId, clientApiParams, queryClient, locale, }: CaptureSelfEventRegistrationPaymentParams) => Promise<ConnectedXMResponse<Registration>>;
2067
+ declare const useCaptureSelfEventRegistrationPayment: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CaptureSelfEventRegistrationPayment>>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApiParams">, unknown>;
2061
2068
 
2062
2069
  interface CreateGuest {
2063
2070
  firstName: string;
@@ -2069,38 +2076,38 @@ interface CreateSelfEventRegistrationGuestParams extends MutationParams {
2069
2076
  registrationId: string;
2070
2077
  guest: CreateGuest;
2071
2078
  }
2072
- declare const CreateSelfEventRegistrationGuest: ({ eventId, registrationId, guest, clientApi, queryClient, locale, }: CreateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
2073
- 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>;
2079
+ declare const CreateSelfEventRegistrationGuest: ({ eventId, registrationId, guest, clientApiParams, queryClient, locale, }: CreateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
2080
+ declare const useCreateSelfEventRegistrationGuest: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventRegistrationGuest>>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">, unknown>;
2074
2081
 
2075
2082
  interface DeleteSelfEventRegistrationGuestParams extends MutationParams {
2076
2083
  eventId: string;
2077
2084
  registrationId: string;
2078
2085
  guestId: string;
2079
2086
  }
2080
- declare const DeleteSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, clientApi, queryClient, locale, }: DeleteSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
2081
- 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>;
2087
+ declare const DeleteSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, clientApiParams, queryClient, locale, }: DeleteSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
2088
+ declare const useDeleteSelfEventRegistrationGuest: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfEventRegistrationGuest>>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">, unknown>;
2082
2089
 
2083
2090
  interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
2084
2091
  eventId: string;
2085
2092
  registrationId: string;
2086
2093
  }
2087
- declare const RemoveSelfEventRegistrationCoupon: ({ eventId, registrationId, clientApi, queryClient, locale, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
2088
- declare const useRemoveSelfEventRegistrationCoupon: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApi">, unknown>;
2094
+ declare const RemoveSelfEventRegistrationCoupon: ({ eventId, registrationId, clientApiParams, queryClient, locale, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
2095
+ declare const useRemoveSelfEventRegistrationCoupon: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
2089
2096
 
2090
2097
  interface RemoveSelfEventRegistrationTicketParams extends MutationParams {
2091
2098
  eventId: string;
2092
2099
  registrationId: string;
2093
2100
  }
2094
- declare const RemoveSelfEventRegistrationTicket: ({ eventId, registrationId, clientApi, queryClient, locale, }: RemoveSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
2095
- declare const useRemoveSelfEventRegistrationTicket: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationTicket>>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApi">, unknown>;
2101
+ declare const RemoveSelfEventRegistrationTicket: ({ eventId, registrationId, clientApiParams, queryClient, locale, }: RemoveSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
2102
+ declare const useRemoveSelfEventRegistrationTicket: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationTicket>>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">, unknown>;
2096
2103
 
2097
2104
  interface SelectSelfEventRegistrationTicketParams extends MutationParams {
2098
2105
  eventId: string;
2099
2106
  registrationId: string;
2100
2107
  ticketId: string;
2101
2108
  }
2102
- declare const SelectSelfEventRegistrationTicket: ({ eventId, registrationId, ticketId, clientApi, queryClient, locale, }: SelectSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
2103
- declare const useSelectSelfEventRegistrationTicket: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationTicket>>, Omit<SelectSelfEventRegistrationTicketParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationTicketParams, "queryClient" | "clientApi">, unknown>;
2109
+ declare const SelectSelfEventRegistrationTicket: ({ eventId, registrationId, ticketId, clientApiParams, queryClient, locale, }: SelectSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
2110
+ declare const useSelectSelfEventRegistrationTicket: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationTicket>>, Omit<SelectSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">, unknown>;
2104
2111
 
2105
2112
  interface SubmitStripe {
2106
2113
  type: "stripe";
@@ -2125,8 +2132,8 @@ interface SubmitSelfEventRegistrationParams extends MutationParams {
2125
2132
  registrationId: string;
2126
2133
  payment?: SubmitPayment;
2127
2134
  }
2128
- declare const SubmitSelfEventRegistration: ({ eventId, registrationId, payment, clientApi, queryClient, locale, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2129
- 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>;
2135
+ declare const SubmitSelfEventRegistration: ({ eventId, registrationId, payment, clientApiParams, queryClient, locale, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2136
+ declare const useSubmitSelfEventRegistration: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistration>>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
2130
2137
 
2131
2138
  interface UpdateSelfEventRegistrationGuestParams extends MutationParams {
2132
2139
  eventId: string;
@@ -2134,8 +2141,8 @@ interface UpdateSelfEventRegistrationGuestParams extends MutationParams {
2134
2141
  guestId: string;
2135
2142
  guest: BaseRegistrationGuest;
2136
2143
  }
2137
- declare const UpdateSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, guest, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
2138
- 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>;
2144
+ declare const UpdateSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, guest, clientApiParams, queryClient, locale, }: UpdateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
2145
+ declare const useUpdateSelfEventRegistrationGuest: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuest>>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">, unknown>;
2139
2146
 
2140
2147
  interface UpdateSelfEventRegistrationGuestResponseFileParams extends MutationParams {
2141
2148
  eventId: string;
@@ -2145,8 +2152,8 @@ interface UpdateSelfEventRegistrationGuestResponseFileParams extends MutationPar
2145
2152
  dataUrl: string;
2146
2153
  name: string;
2147
2154
  }
2148
- declare const UpdateSelfEventRegistrationGuestResponseFile: ({ eventId, registrationId, questionId, guestId, dataUrl, name, clientApi, }: UpdateSelfEventRegistrationGuestResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
2149
- 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>;
2155
+ declare const UpdateSelfEventRegistrationGuestResponseFile: ({ eventId, registrationId, questionId, guestId, dataUrl, name, clientApiParams, }: UpdateSelfEventRegistrationGuestResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
2156
+ declare const useUpdateSelfEventRegistrationGuestResponseFile: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponseFile>>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, Error | axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApiParams">, unknown>;
2150
2157
 
2151
2158
  interface UpdateSelfEventRegistrationGuestResponsesParams extends MutationParams {
2152
2159
  eventId: string;
@@ -2154,8 +2161,8 @@ interface UpdateSelfEventRegistrationGuestResponsesParams extends MutationParams
2154
2161
  guestId: string;
2155
2162
  responses: BaseRegistrationQuestionResponse[];
2156
2163
  }
2157
- declare const UpdateSelfEventRegistrationGuestResponses: ({ eventId, registrationId, guestId, responses, clientApi, }: UpdateSelfEventRegistrationGuestResponsesParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
2158
- 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>;
2164
+ declare const UpdateSelfEventRegistrationGuestResponses: ({ eventId, registrationId, guestId, responses, clientApiParams, }: UpdateSelfEventRegistrationGuestResponsesParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
2165
+ declare const useUpdateSelfEventRegistrationGuestResponses: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponses>>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, Error | axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApiParams">, unknown>;
2159
2166
 
2160
2167
  interface UpdateSelfEventRegistrationResponseFileParams extends MutationParams {
2161
2168
  eventId: string;
@@ -2164,31 +2171,31 @@ interface UpdateSelfEventRegistrationResponseFileParams extends MutationParams {
2164
2171
  name: string;
2165
2172
  questionId: string;
2166
2173
  }
2167
- declare const UpdateSelfEventRegistrationResponseFile: ({ eventId, registrationId, dataUrl, name, questionId, clientApi, }: UpdateSelfEventRegistrationResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
2168
- 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>;
2174
+ declare const UpdateSelfEventRegistrationResponseFile: ({ eventId, registrationId, dataUrl, name, questionId, clientApiParams, }: UpdateSelfEventRegistrationResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
2175
+ declare const useUpdateSelfEventRegistrationResponseFile: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponseFile>>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, Error | axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApiParams">, unknown>;
2169
2176
 
2170
2177
  interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
2171
2178
  eventId: string;
2172
2179
  registrationId: string;
2173
2180
  responses: BaseRegistrationQuestionResponse[];
2174
2181
  }
2175
- declare const UpdateSelfEventRegistrationResponses: ({ eventId, registrationId, responses, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<Registration>>;
2176
- declare const useUpdateSelfEventRegistrationResponses: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApi">, unknown>;
2182
+ declare const UpdateSelfEventRegistrationResponses: ({ eventId, registrationId, responses, clientApiParams, queryClient, locale, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<Registration>>;
2183
+ declare const useUpdateSelfEventRegistrationResponses: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
2177
2184
 
2178
2185
  interface CancelEventRegistrationParams extends MutationParams {
2179
2186
  eventId: string;
2180
2187
  registrationId: string;
2181
2188
  }
2182
- declare const CancelEventRegistration: ({ eventId, registrationId, clientApi, queryClient, locale, }: CancelEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2183
- declare const useCancelEventRegistration: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelEventRegistration>>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApi">, unknown>;
2189
+ declare const CancelEventRegistration: ({ eventId, registrationId, clientApiParams, queryClient, locale, }: CancelEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2190
+ declare const useCancelEventRegistration: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelEventRegistration>>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
2184
2191
 
2185
2192
  interface CancelTransferParams extends MutationParams {
2186
2193
  transferId: string;
2187
2194
  eventId: string;
2188
2195
  registrationId: string;
2189
2196
  }
2190
- declare const CancelTransfer: ({ transferId, eventId, registrationId, clientApi, queryClient, }: CancelTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
2191
- declare const useCancelTransfer: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelTransfer>>, Omit<CancelTransferParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<CancelTransferParams, "queryClient" | "clientApi">, unknown>;
2197
+ declare const CancelTransfer: ({ transferId, eventId, registrationId, clientApiParams, queryClient, }: CancelTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
2198
+ declare const useCancelTransfer: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelTransfer>>, Omit<CancelTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<CancelTransferParams, "queryClient" | "clientApiParams">, unknown>;
2192
2199
 
2193
2200
  interface TransferPurchaseParams extends MutationParams {
2194
2201
  email: string;
@@ -2196,8 +2203,8 @@ interface TransferPurchaseParams extends MutationParams {
2196
2203
  eventId: string;
2197
2204
  registrationId: string;
2198
2205
  }
2199
- declare const TransferPurchase: ({ email, purchaseId, eventId, registrationId, clientApi, queryClient, }: TransferPurchaseParams) => Promise<ConnectedXMResponse<Transfer>>;
2200
- declare const useTransferPurchase: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPurchase>>, Omit<TransferPurchaseParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<TransferPurchaseParams, "queryClient" | "clientApi">, unknown>;
2206
+ declare const TransferPurchase: ({ email, purchaseId, eventId, registrationId, clientApiParams, queryClient, }: TransferPurchaseParams) => Promise<ConnectedXMResponse<Transfer>>;
2207
+ declare const useTransferPurchase: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPurchase>>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
2201
2208
 
2202
2209
  interface UpdateSelfEventRegistrationResponseParams extends MutationParams {
2203
2210
  eventId: string;
@@ -2205,8 +2212,8 @@ interface UpdateSelfEventRegistrationResponseParams extends MutationParams {
2205
2212
  questionId: string;
2206
2213
  response: string;
2207
2214
  }
2208
- declare const UpdateSelfEventRegistrationResponse: ({ eventId, registrationId, questionId, response, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationResponseParams) => Promise<ConnectedXMResponse<Registration>>;
2209
- 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>;
2215
+ declare const UpdateSelfEventRegistrationResponse: ({ eventId, registrationId, questionId, response, clientApiParams, queryClient, locale, }: UpdateSelfEventRegistrationResponseParams) => Promise<ConnectedXMResponse<Registration>>;
2216
+ declare const useUpdateSelfEventRegistrationResponse: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponse>>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApiParams">, unknown>;
2210
2217
 
2211
2218
  interface UpdateSelfEventRegistrationGuestResponseParams extends MutationParams {
2212
2219
  eventId: string;
@@ -2215,14 +2222,14 @@ interface UpdateSelfEventRegistrationGuestResponseParams extends MutationParams
2215
2222
  guestId: string;
2216
2223
  response: string;
2217
2224
  }
2218
- declare const UpdateSelfEventRegistrationGuestResponse: ({ eventId, registrationId, questionId, guestId, response, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationGuestResponseParams) => Promise<ConnectedXMResponse<Registration>>;
2219
- 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>;
2225
+ declare const UpdateSelfEventRegistrationGuestResponse: ({ eventId, registrationId, questionId, guestId, response, clientApiParams, queryClient, locale, }: UpdateSelfEventRegistrationGuestResponseParams) => Promise<ConnectedXMResponse<Registration>>;
2226
+ declare const useUpdateSelfEventRegistrationGuestResponse: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponse>>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApiParams">, unknown>;
2220
2227
 
2221
2228
  interface CancelSubscriptionParams extends MutationParams {
2222
2229
  subscriptionId: string;
2223
2230
  }
2224
- declare const CancelSubscription: ({ subscriptionId, clientApi, queryClient, }: CancelSubscriptionParams) => Promise<ConnectedXMResponse<null>>;
2225
- 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>;
2231
+ declare const CancelSubscription: ({ subscriptionId, clientApiParams, queryClient, }: CancelSubscriptionParams) => Promise<ConnectedXMResponse<null>>;
2232
+ declare const useCancelSubscription: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSubscription>>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">, unknown>;
2226
2233
 
2227
2234
  interface CreateSubscriptionParams extends MutationParams {
2228
2235
  subscriptionId: string;
@@ -2233,34 +2240,34 @@ interface CreateSubscriptionResponse {
2233
2240
  type: string;
2234
2241
  clientSecret: string;
2235
2242
  }
2236
- declare const CreateSubscription: ({ productId, priceId, clientApi, }: CreateSubscriptionParams) => Promise<ConnectedXMResponse<CreateSubscriptionResponse>>;
2237
- 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>;
2243
+ declare const CreateSubscription: ({ productId, priceId, clientApiParams, }: CreateSubscriptionParams) => Promise<ConnectedXMResponse<CreateSubscriptionResponse>>;
2244
+ declare const useCreateSubscription: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSubscription>>, Omit<CreateSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CreateSubscriptionResponse>, Error | axios.AxiosError<ConnectedXMResponse<CreateSubscriptionResponse>, any>, Omit<CreateSubscriptionParams, "queryClient" | "clientApiParams">, unknown>;
2238
2245
 
2239
2246
  interface UpdateSubscriptionPaymentMethodParams extends MutationParams {
2240
2247
  subscriptionId: string;
2241
2248
  paymentMethodId: string;
2242
2249
  }
2243
- declare const UpdateSubscriptionPaymentMethod: ({ subscriptionId, paymentMethodId, clientApi, queryClient, }: UpdateSubscriptionPaymentMethodParams) => Promise<ConnectedXMResponse<null>>;
2244
- 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>;
2250
+ declare const UpdateSubscriptionPaymentMethod: ({ subscriptionId, paymentMethodId, clientApiParams, queryClient, }: UpdateSubscriptionPaymentMethodParams) => Promise<ConnectedXMResponse<null>>;
2251
+ declare const useUpdateSubscriptionPaymentMethod: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSubscriptionPaymentMethod>>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApiParams">, unknown>;
2245
2252
 
2246
2253
  interface AcceptTransferParams extends MutationParams {
2247
2254
  transferId: string;
2248
2255
  }
2249
- declare const AcceptTransfer: ({ transferId, clientApi, queryClient, }: AcceptTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
2250
- declare const useAcceptTransfer: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptTransfer>>, Omit<AcceptTransferParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<AcceptTransferParams, "queryClient" | "clientApi">, unknown>;
2256
+ declare const AcceptTransfer: ({ transferId, clientApiParams, queryClient, }: AcceptTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
2257
+ declare const useAcceptTransfer: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptTransfer>>, Omit<AcceptTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<AcceptTransferParams, "queryClient" | "clientApiParams">, unknown>;
2251
2258
 
2252
2259
  interface AddSelfDelegateParams extends MutationParams {
2253
2260
  email: string;
2254
2261
  }
2255
- declare const AddSelfDelegate: ({ email, clientApi, queryClient, }: AddSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
2256
- declare const useAddSelfDelegate: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfDelegate>>, Omit<AddSelfDelegateParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfDelegateParams, "queryClient" | "clientApi">, unknown>;
2262
+ declare const AddSelfDelegate: ({ email, clientApiParams, queryClient, }: AddSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
2263
+ declare const useAddSelfDelegate: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfDelegate>>, Omit<AddSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfDelegateParams, "queryClient" | "clientApiParams">, unknown>;
2257
2264
 
2258
2265
  interface AddSelfEventListingSessionParams extends MutationParams {
2259
2266
  eventId: string;
2260
2267
  session: Omit<Session, "id" | "slug" | "event" | "sortOrder" | "tracks" | "nonSession" | "createdAt" | "updatedAt" | "speakers" | "sponsors" | "longDescription" | "image" | "streamInput">;
2261
2268
  }
2262
- declare const AddSelfEventListingSession: ({ eventId, session, clientApi, queryClient, locale, }: AddSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2263
- declare const useAddSelfEventListingSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSession>>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApi">, unknown>;
2269
+ declare const AddSelfEventListingSession: ({ eventId, session, clientApiParams, queryClient, locale, }: AddSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2270
+ declare const useAddSelfEventListingSession: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSession>>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
2264
2271
 
2265
2272
  interface EventListingSpeaker {
2266
2273
  firstName: string | null;
@@ -2273,22 +2280,22 @@ interface AddSelfEventListingSpeakerParams extends MutationParams {
2273
2280
  eventId: string;
2274
2281
  speaker: EventListingSpeaker;
2275
2282
  }
2276
- declare const AddSelfEventListingSpeaker: ({ eventId, speaker, clientApi, queryClient, locale, }: AddSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2277
- declare const useAddSelfEventListingSpeaker: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSpeaker>>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApi">, unknown>;
2283
+ declare const AddSelfEventListingSpeaker: ({ eventId, speaker, clientApiParams, queryClient, locale, }: AddSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2284
+ declare const useAddSelfEventListingSpeaker: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSpeaker>>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
2278
2285
 
2279
2286
  interface AddSelfEventListingSponsorParams extends MutationParams {
2280
2287
  eventId: string;
2281
2288
  sponsor: Account;
2282
2289
  }
2283
- declare const AddSelfEventListingSponsor: ({ eventId, sponsor, clientApi, queryClient, locale, }: AddSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
2284
- declare const useAddSelfEventListingSponsor: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSponsor>>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApi">, unknown>;
2290
+ declare const AddSelfEventListingSponsor: ({ eventId, sponsor, clientApiParams, queryClient, locale, }: AddSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
2291
+ declare const useAddSelfEventListingSponsor: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSponsor>>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
2285
2292
 
2286
2293
  interface AddSelfEventSessionParams extends MutationParams {
2287
2294
  eventId: string;
2288
2295
  sessionId: string;
2289
2296
  }
2290
- declare const AddSelfEventSession: ({ eventId, sessionId, clientApi, queryClient, }: AddSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
2291
- 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>;
2297
+ declare const AddSelfEventSession: ({ eventId, sessionId, clientApiParams, queryClient, }: AddSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
2298
+ declare const useAddSelfEventSession: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventSession>>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApiParams">, unknown>;
2292
2299
 
2293
2300
  interface CreateEventListing {
2294
2301
  name: string;
@@ -2316,66 +2323,66 @@ interface CreateSelfEventListingParams extends MutationParams {
2316
2323
  speakers?: Speaker[];
2317
2324
  sessions?: Session[];
2318
2325
  }
2319
- declare const CreateSelfEventListing: ({ event, base64, communityId, sponsorIds, speakers, sessions, clientApi, queryClient, locale, }: CreateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
2320
- declare const useCreateSelfEventListing: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventListing>>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApi">, unknown>;
2326
+ declare const CreateSelfEventListing: ({ event, base64, communityId, sponsorIds, speakers, sessions, clientApiParams, queryClient, locale, }: CreateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
2327
+ declare const useCreateSelfEventListing: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventListing>>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApiParams">, unknown>;
2321
2328
 
2322
2329
  interface DeleteSelfParams extends MutationParams {
2323
2330
  }
2324
- declare const DeleteSelf: ({ clientApi, queryClient, }: DeleteSelfParams) => Promise<any>;
2325
- declare const useDeleteSelf: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelf>>, Omit<DeleteSelfParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<any, Error | axios.AxiosError<any, any>, Omit<DeleteSelfParams, "queryClient" | "clientApi">, unknown>;
2331
+ declare const DeleteSelf: ({ clientApiParams, queryClient, }: DeleteSelfParams) => Promise<any>;
2332
+ declare const useDeleteSelf: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelf>>, Omit<DeleteSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<any, Error | axios.AxiosError<any, any>, Omit<DeleteSelfParams, "queryClient" | "clientApiParams">, unknown>;
2326
2333
 
2327
2334
  interface DeleteSelfPushDeviceParams extends MutationParams {
2328
2335
  pushDeviceId: string;
2329
2336
  }
2330
- declare const DeleteSelfPushDevice: ({ pushDeviceId, clientApi, queryClient, }: DeleteSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
2331
- declare const useDeleteSelfPushDevice: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfPushDevice>>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<PushDevice>, Error | axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApi">, unknown>;
2337
+ declare const DeleteSelfPushDevice: ({ pushDeviceId, clientApiParams, queryClient, }: DeleteSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
2338
+ declare const useDeleteSelfPushDevice: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfPushDevice>>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<PushDevice>, Error | axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApiParams">, unknown>;
2332
2339
 
2333
2340
  interface RejectTransferParams extends MutationParams {
2334
2341
  transferId: string;
2335
2342
  }
2336
- declare const RejectTransfer: ({ transferId, clientApi, queryClient, }: RejectTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
2337
- declare const useRejectTransfer: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectTransfer>>, Omit<RejectTransferParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<RejectTransferParams, "queryClient" | "clientApi">, unknown>;
2343
+ declare const RejectTransfer: ({ transferId, clientApiParams, queryClient, }: RejectTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
2344
+ declare const useRejectTransfer: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectTransfer>>, Omit<RejectTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<RejectTransferParams, "queryClient" | "clientApiParams">, unknown>;
2338
2345
 
2339
2346
  interface RemoveSelfDelegateParams extends MutationParams {
2340
2347
  accountId: string;
2341
2348
  }
2342
- declare const RemoveSelfDelegate: ({ accountId, clientApi, queryClient, }: RemoveSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
2343
- declare const useRemoveSelfDelegate: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfDelegate>>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApi">, unknown>;
2349
+ declare const RemoveSelfDelegate: ({ accountId, clientApiParams, queryClient, }: RemoveSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
2350
+ declare const useRemoveSelfDelegate: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfDelegate>>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApiParams">, unknown>;
2344
2351
 
2345
2352
  interface RemoveSelfEventListingSessionParams extends MutationParams {
2346
2353
  eventId: string;
2347
2354
  sessionId: string;
2348
2355
  }
2349
- declare const RemoveSelfEventListingSession: ({ eventId, sessionId, clientApi, queryClient, locale, }: RemoveSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2350
- declare const useRemoveSelfEventListingSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSession>>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApi">, unknown>;
2356
+ declare const RemoveSelfEventListingSession: ({ eventId, sessionId, clientApiParams, queryClient, locale, }: RemoveSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2357
+ declare const useRemoveSelfEventListingSession: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSession>>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
2351
2358
 
2352
2359
  interface RemoveSelfEventListingSpeakerParams extends MutationParams {
2353
2360
  eventId: string;
2354
2361
  speakerId: string;
2355
2362
  }
2356
- declare const RemoveSelfEventListingSpeaker: ({ eventId, speakerId, clientApi, queryClient, locale, }: RemoveSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2357
- declare const useRemoveSelfEventListingSpeaker: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSpeaker>>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApi">, unknown>;
2363
+ declare const RemoveSelfEventListingSpeaker: ({ eventId, speakerId, clientApiParams, queryClient, locale, }: RemoveSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2364
+ declare const useRemoveSelfEventListingSpeaker: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSpeaker>>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
2358
2365
 
2359
2366
  interface RemoveSelfEventListingSponsorParams extends MutationParams {
2360
2367
  eventId: string;
2361
2368
  sponsorId: string;
2362
2369
  }
2363
- declare const RemoveSelfEventListingSponsor: ({ eventId, sponsorId, clientApi, queryClient, locale, }: RemoveSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
2364
- declare const useRemoveSelfEventListingSponsor: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSponsor>>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApi">, unknown>;
2370
+ declare const RemoveSelfEventListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, locale, }: RemoveSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
2371
+ declare const useRemoveSelfEventListingSponsor: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSponsor>>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
2365
2372
 
2366
2373
  interface RemoveSelfEventSessionParams extends MutationParams {
2367
2374
  eventId: string;
2368
2375
  sessionId: string;
2369
2376
  }
2370
- declare const RemoveSelfEventSession: ({ eventId, sessionId, clientApi, queryClient, }: RemoveSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
2371
- 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>;
2377
+ declare const RemoveSelfEventSession: ({ eventId, sessionId, clientApiParams, queryClient, }: RemoveSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
2378
+ declare const useRemoveSelfEventSession: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventSession>>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApiParams">, unknown>;
2372
2379
 
2373
2380
  interface SelfCheckinRegistrationParams extends MutationParams {
2374
2381
  accountId: string;
2375
2382
  eventId: string;
2376
2383
  }
2377
- declare const SelfCheckinRegistration: ({ accountId, eventId, clientApi, queryClient, }: SelfCheckinRegistrationParams) => Promise<any>;
2378
- 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>;
2384
+ declare const SelfCheckinRegistration: ({ accountId, eventId, clientApiParams, queryClient, }: SelfCheckinRegistrationParams) => Promise<any>;
2385
+ declare const useSelfCheckinRegistration: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCheckinRegistration>>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<any, Error | axios.AxiosError<any, any>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
2379
2386
 
2380
2387
  interface CreateActivity {
2381
2388
  message: string;
@@ -2389,33 +2396,33 @@ interface SelfCreateActivityParams extends MutationParams {
2389
2396
  base64Image?: any;
2390
2397
  videoUri?: string;
2391
2398
  }
2392
- declare const SelfCreateActivity: ({ activity, base64Image, videoUri, clientApi, queryClient, locale, }: SelfCreateActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2393
- 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>;
2399
+ declare const SelfCreateActivity: ({ activity, base64Image, videoUri, clientApiParams, queryClient, locale, }: SelfCreateActivityParams) => Promise<ConnectedXMResponse<Activity>>;
2400
+ declare const useSelfCreateActivity: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCreateActivity>>, Omit<SelfCreateActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<SelfCreateActivityParams, "queryClient" | "clientApiParams">, unknown>;
2394
2401
 
2395
2402
  interface DeleteActivityParams extends MutationParams {
2396
2403
  activityId: string;
2397
2404
  }
2398
- declare const DeleteActivity: ({ activityId, clientApi, queryClient, }: DeleteActivityParams) => Promise<ConnectedXMResponse<null>>;
2399
- declare const useDeleteActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteActivity>>, Omit<DeleteActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteActivityParams, "queryClient" | "clientApi">, unknown>;
2405
+ declare const DeleteActivity: ({ activityId, clientApiParams, queryClient, }: DeleteActivityParams) => Promise<ConnectedXMResponse<null>>;
2406
+ declare const useDeleteActivity: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteActivity>>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteActivityParams, "queryClient" | "clientApiParams">, unknown>;
2400
2407
 
2401
2408
  interface SelfJoinCommunityParams extends MutationParams {
2402
2409
  communityId: string;
2403
2410
  }
2404
- declare const SelfJoinCommunity: ({ communityId, clientApi, queryClient, }: SelfJoinCommunityParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
2405
- declare const useSelfJoinCommunity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfJoinCommunity>>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CommunityMembership>, Error | axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApi">, unknown>;
2411
+ declare const SelfJoinCommunity: ({ communityId, clientApiParams, queryClient, }: SelfJoinCommunityParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
2412
+ declare const useSelfJoinCommunity: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfJoinCommunity>>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CommunityMembership>, Error | axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2406
2413
 
2407
2414
  interface SelfLeaveCommunityParams extends MutationParams {
2408
2415
  communityId: string;
2409
2416
  }
2410
- declare const SelfLeaveCommunity: ({ communityId, clientApi, queryClient, }: SelfLeaveCommunityParams) => Promise<ConnectedXMResponse<null>>;
2411
- declare const useSelfLeaveCommunity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfLeaveCommunity>>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApi">, unknown>;
2417
+ declare const SelfLeaveCommunity: ({ communityId, clientApiParams, queryClient, }: SelfLeaveCommunityParams) => Promise<ConnectedXMResponse<null>>;
2418
+ declare const useSelfLeaveCommunity: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfLeaveCommunity>>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApiParams">, unknown>;
2412
2419
 
2413
2420
  interface SelfUpdateCommunityMembershipParams extends MutationParams {
2414
2421
  communityId: string;
2415
2422
  membership: Partial<CommunityMembership>;
2416
2423
  }
2417
- declare const SelfUpdateCommunityMembership: ({ communityId, membership, clientApi, queryClient, locale, }: SelfUpdateCommunityMembershipParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
2418
- 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>;
2424
+ declare const SelfUpdateCommunityMembership: ({ communityId, membership, clientApiParams, queryClient, locale, }: SelfUpdateCommunityMembershipParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
2425
+ declare const useSelfUpdateCommunityMembership: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfUpdateCommunityMembership>>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CommunityMembership>, Error | axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApiParams">, unknown>;
2419
2426
 
2420
2427
  interface UpdateSelfParams extends MutationParams {
2421
2428
  username?: string;
@@ -2442,8 +2449,8 @@ interface UpdateSelfParams extends MutationParams {
2442
2449
  video?: string | null;
2443
2450
  website?: string | null;
2444
2451
  }
2445
- declare const UpdateSelf: ({ clientApi, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
2446
- 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>;
2452
+ declare const UpdateSelf: ({ clientApiParams, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
2453
+ declare const useUpdateSelf: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Self>, Error | axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApiParams">, unknown>;
2447
2454
 
2448
2455
  interface UpdateListing {
2449
2456
  eventType: keyof typeof EventType;
@@ -2473,16 +2480,16 @@ interface UpdateSelfEventListingParams extends MutationParams {
2473
2480
  event: UpdateListing;
2474
2481
  base64?: any;
2475
2482
  }
2476
- declare const UpdateSelfEventListing: ({ eventId, event, base64, clientApi, queryClient, locale, }: UpdateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
2477
- declare const useUpdateSelfEventListing: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListing>>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApi">, unknown>;
2483
+ declare const UpdateSelfEventListing: ({ eventId, event, base64, clientApiParams, queryClient, locale, }: UpdateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
2484
+ declare const useUpdateSelfEventListing: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListing>>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApiParams">, unknown>;
2478
2485
 
2479
2486
  interface UpdateSelfEventListingSessionParams extends MutationParams {
2480
2487
  eventId: string;
2481
2488
  session: any;
2482
2489
  sessionId: string;
2483
2490
  }
2484
- declare const UpdateSelfEventListingSession: ({ eventId, session, sessionId, clientApi, queryClient, locale, }: UpdateSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2485
- declare const useUpdateSelfEventListingSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSession>>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApi">, unknown>;
2491
+ declare const UpdateSelfEventListingSession: ({ eventId, session, sessionId, clientApiParams, queryClient, locale, }: UpdateSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
2492
+ declare const useUpdateSelfEventListingSession: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSession>>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApiParams">, unknown>;
2486
2493
 
2487
2494
  interface UpdateSelfEventListingSpeakerParams extends MutationParams {
2488
2495
  eventId: string;
@@ -2490,21 +2497,21 @@ interface UpdateSelfEventListingSpeakerParams extends MutationParams {
2490
2497
  speakerId: string;
2491
2498
  buffer?: string;
2492
2499
  }
2493
- declare const UpdateSelfEventListingSpeaker: ({ eventId, speaker, speakerId, buffer, clientApi, queryClient, locale, }: UpdateSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2494
- declare const useUpdateSelfEventListingSpeaker: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSpeaker>>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApi">, unknown>;
2500
+ declare const UpdateSelfEventListingSpeaker: ({ eventId, speaker, speakerId, buffer, clientApiParams, queryClient, locale, }: UpdateSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
2501
+ declare const useUpdateSelfEventListingSpeaker: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSpeaker>>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApiParams">, unknown>;
2495
2502
 
2496
2503
  interface UpdateSelfImageParams extends MutationParams {
2497
2504
  base64: string;
2498
2505
  }
2499
- declare const UpdateSelfImage: ({ base64, clientApi, queryClient, }: UpdateSelfImageParams) => Promise<ConnectedXMResponse<Self>>;
2500
- declare const useUpdateSelfImage: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfImage>>, Omit<UpdateSelfImageParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Self>, Error | axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfImageParams, "queryClient" | "clientApi">, unknown>;
2506
+ declare const UpdateSelfImage: ({ base64, clientApiParams, queryClient, }: UpdateSelfImageParams) => Promise<ConnectedXMResponse<Self>>;
2507
+ declare const useUpdateSelfImage: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfImage>>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Self>, Error | axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">, unknown>;
2501
2508
 
2502
2509
  interface UpdateSelfLeadParams extends MutationParams {
2503
2510
  leadId: string;
2504
2511
  note: string;
2505
2512
  }
2506
- declare const UpdateSelfLead: ({ leadId, note, clientApi, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
2507
- declare const useUpdateSelfLead: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Lead>, Error | axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApi">, unknown>;
2513
+ declare const UpdateSelfLead: ({ leadId, note, clientApiParams, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
2514
+ declare const useUpdateSelfLead: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Lead>, Error | axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
2508
2515
 
2509
2516
  interface UpdateSelfNotificationPreferencesParams extends MutationParams {
2510
2517
  newFollowerPush?: boolean;
@@ -2527,15 +2534,15 @@ interface UpdateSelfNotificationPreferencesParams extends MutationParams {
2527
2534
  communityAnnouncementPush?: boolean;
2528
2535
  communityAnnouncementEmail?: boolean;
2529
2536
  }
2530
- declare const UpdateSelfNotificationPreferences: ({ clientApi, queryClient, locale, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
2531
- 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>;
2537
+ declare const UpdateSelfNotificationPreferences: ({ clientApiParams, queryClient, locale, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
2538
+ declare const useUpdateSelfNotificationPreferences: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfNotificationPreferences>>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<NotificationPreferences>, Error | axios.AxiosError<ConnectedXMResponse<NotificationPreferences>, any>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApiParams">, unknown>;
2532
2539
 
2533
2540
  interface UpdateSelfPushDeviceParams extends MutationParams {
2534
2541
  pushDeviceId: string;
2535
2542
  pushDevice: PushDevice;
2536
2543
  }
2537
- declare const UpdateSelfPushDevice: ({ pushDeviceId, pushDevice, clientApi, queryClient, }: UpdateSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
2538
- declare const useUpdateSelfPushDevice: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfPushDevice>>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<PushDevice>, Error | axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApi">, unknown>;
2544
+ declare const UpdateSelfPushDevice: ({ pushDeviceId, pushDevice, clientApiParams, queryClient, }: UpdateSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
2545
+ declare const useUpdateSelfPushDevice: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfPushDevice>>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<PushDevice>, Error | axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApiParams">, unknown>;
2539
2546
 
2540
2547
  interface CreateSupportTicketParams extends MutationParams {
2541
2548
  type: "support" | "inquiry";
@@ -2544,14 +2551,14 @@ interface CreateSupportTicketParams extends MutationParams {
2544
2551
  eventId?: string;
2545
2552
  productId?: string;
2546
2553
  }
2547
- declare const CreateSupportTicket: ({ type, email, request, eventId, productId, clientApi, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
2548
- declare const useCreateSupportTicket: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicket>>, Omit<CreateSupportTicketParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<SupportTicket>, Error | axios.AxiosError<ConnectedXMResponse<SupportTicket>, any>, Omit<CreateSupportTicketParams, "queryClient" | "clientApi">, unknown>;
2554
+ declare const CreateSupportTicket: ({ type, email, request, eventId, productId, clientApiParams, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
2555
+ declare const useCreateSupportTicket: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicket>>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<SupportTicket>, Error | axios.AxiosError<ConnectedXMResponse<SupportTicket>, any>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">, unknown>;
2549
2556
 
2550
2557
  interface CreateTeamAccountParams extends MutationParams {
2551
2558
  name: string;
2552
2559
  email: string;
2553
2560
  }
2554
- declare const CreateTeamAccount: ({ name, email, clientApi, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
2555
- 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>;
2561
+ declare const CreateTeamAccount: ({ name, email, clientApiParams, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
2562
+ declare const useCreateTeamAccount: (params?: Omit<MutationParams, "queryClient" | "clientApiParams">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">, unknown>;
2556
2563
 
2557
- 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 };
2564
+ 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 ClientApiParams, 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, GetClientAPI, 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, 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, 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 };