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