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