@connectedxm/client 0.0.5 → 0.0.56
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/.vscode/settings.json +4 -0
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +1337 -25
- package/dist/index.d.ts +1337 -25
- package/dist/index.js +9632 -330
- package/dist/index.mjs +7944 -401
- package/package.json +9 -6
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as axios from 'axios';
|
|
2
|
+
import { AxiosError, AxiosInstance } from 'axios';
|
|
2
3
|
import React from 'react';
|
|
4
|
+
import { QueryClient, QueryKey, InfiniteData, UseQueryOptions, UseInfiniteQueryOptions, SetDataOptions, Updater, UseMutationOptions } from '@tanstack/react-query';
|
|
5
|
+
import * as _tanstack_react_query_build_legacy_types from '@tanstack/react-query/build/legacy/types';
|
|
6
|
+
import * as _tanstack_query_core_build_legacy_queryClient_Ho_z40Sw from '@tanstack/query-core/build/legacy/queryClient-Ho-z40Sw';
|
|
3
7
|
|
|
4
8
|
interface ConnectedXMResponse<TData> {
|
|
5
9
|
status: "ok" | "error" | "redirect";
|
|
@@ -24,6 +28,7 @@ interface BaseImage {
|
|
|
24
28
|
uri: string;
|
|
25
29
|
width: number;
|
|
26
30
|
height: number;
|
|
31
|
+
moderation: "safe" | "warning";
|
|
27
32
|
}
|
|
28
33
|
declare enum ImageType {
|
|
29
34
|
admin = "admin",
|
|
@@ -160,12 +165,16 @@ interface AccountShare extends Account {
|
|
|
160
165
|
interface BaseActivity {
|
|
161
166
|
id: string;
|
|
162
167
|
message: string;
|
|
168
|
+
readMore: boolean;
|
|
163
169
|
image: BaseImage | null;
|
|
170
|
+
video: BaseVideo | null;
|
|
164
171
|
linkPreview: LinkPreview | null;
|
|
165
172
|
account: BaseAccount;
|
|
166
173
|
createdAt: string;
|
|
167
174
|
}
|
|
168
175
|
interface Activity extends BaseActivity {
|
|
176
|
+
html: string;
|
|
177
|
+
text: string;
|
|
169
178
|
community: BaseCommunity | null;
|
|
170
179
|
event: BaseEvent | null;
|
|
171
180
|
content: BaseContent | null;
|
|
@@ -187,6 +196,10 @@ interface Activity extends BaseActivity {
|
|
|
187
196
|
reshares: number;
|
|
188
197
|
};
|
|
189
198
|
}
|
|
199
|
+
interface SingleActivity extends Activity {
|
|
200
|
+
html: string;
|
|
201
|
+
text: string;
|
|
202
|
+
}
|
|
190
203
|
declare const isTypeActivity: (activity: BaseActivity | Activity) => activity is Activity;
|
|
191
204
|
interface BaseLike {
|
|
192
205
|
account: BaseAccount;
|
|
@@ -290,6 +303,7 @@ interface RegistrationEventDetails {
|
|
|
290
303
|
_count: {
|
|
291
304
|
sections: number;
|
|
292
305
|
tickets: number;
|
|
306
|
+
coupons: number;
|
|
293
307
|
};
|
|
294
308
|
}
|
|
295
309
|
declare enum RegistrationQuestionType {
|
|
@@ -302,7 +316,8 @@ declare enum RegistrationQuestionType {
|
|
|
302
316
|
select = "select",
|
|
303
317
|
radio = "radio",
|
|
304
318
|
checkbox = "checkbox",
|
|
305
|
-
search = "search"
|
|
319
|
+
search = "search",
|
|
320
|
+
file = "file"
|
|
306
321
|
}
|
|
307
322
|
interface BaseRegistrationQuestion {
|
|
308
323
|
id: number;
|
|
@@ -318,6 +333,10 @@ interface BaseRegistrationQuestion {
|
|
|
318
333
|
mutable: boolean;
|
|
319
334
|
min: string | null;
|
|
320
335
|
max: string | null;
|
|
336
|
+
validation: string | null;
|
|
337
|
+
validationMessage: string | null;
|
|
338
|
+
primary: boolean;
|
|
339
|
+
guest: boolean;
|
|
321
340
|
}
|
|
322
341
|
interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
323
342
|
choices: BaseRegistrationQuestionChoice[];
|
|
@@ -330,6 +349,7 @@ interface RegistrationSectionQuestion {
|
|
|
330
349
|
interface BaseRegistrationQuestionChoice {
|
|
331
350
|
id: number;
|
|
332
351
|
value: string;
|
|
352
|
+
supply: number | null;
|
|
333
353
|
description: string | null;
|
|
334
354
|
sortOrder: number;
|
|
335
355
|
question: RegistrationQuestion;
|
|
@@ -356,6 +376,7 @@ interface BaseRegistrationSection {
|
|
|
356
376
|
id: number;
|
|
357
377
|
name: string;
|
|
358
378
|
description: string | null;
|
|
379
|
+
guestDescription: string | null;
|
|
359
380
|
sortOrder: number;
|
|
360
381
|
}
|
|
361
382
|
interface RegistrationSection extends BaseRegistrationSection {
|
|
@@ -397,8 +418,8 @@ interface BaseTicket {
|
|
|
397
418
|
price: number;
|
|
398
419
|
accessLevel: TicketEventAccessLevel;
|
|
399
420
|
featuredImage: BaseImage | null;
|
|
400
|
-
minQuantityPerSale: number
|
|
401
|
-
maxQuantityPerSale: number
|
|
421
|
+
minQuantityPerSale: number;
|
|
422
|
+
maxQuantityPerSale: number;
|
|
402
423
|
minGuests: number;
|
|
403
424
|
maxGuests: number;
|
|
404
425
|
supply: number | null;
|
|
@@ -469,7 +490,7 @@ interface BaseNotification {
|
|
|
469
490
|
read: boolean;
|
|
470
491
|
sender: BaseAccount | null;
|
|
471
492
|
}
|
|
472
|
-
interface Notification extends BaseNotification {
|
|
493
|
+
interface Notification$1 extends BaseNotification {
|
|
473
494
|
transfer: BaseTransfer | null;
|
|
474
495
|
like: BaseLike | null;
|
|
475
496
|
activity: BaseActivity | null;
|
|
@@ -478,7 +499,7 @@ interface Notification extends BaseNotification {
|
|
|
478
499
|
createdAt: string;
|
|
479
500
|
updatedAt: string;
|
|
480
501
|
}
|
|
481
|
-
declare const isTypeNotification: (notification: BaseNotification | Notification) => notification is Notification;
|
|
502
|
+
declare const isTypeNotification: (notification: BaseNotification | Notification$1) => notification is Notification$1;
|
|
482
503
|
interface BaseCoupon {
|
|
483
504
|
id: string;
|
|
484
505
|
code: string;
|
|
@@ -635,14 +656,14 @@ interface BaseComplimentaryTicket {
|
|
|
635
656
|
}
|
|
636
657
|
interface ComplimentaryTicket extends BaseComplimentaryTicket {
|
|
637
658
|
}
|
|
638
|
-
declare enum PageType {
|
|
659
|
+
declare enum PageType$1 {
|
|
639
660
|
about = "about",
|
|
640
661
|
privacy = "privacy",
|
|
641
662
|
terms = "terms",
|
|
642
663
|
team = "team"
|
|
643
664
|
}
|
|
644
665
|
interface BasePage {
|
|
645
|
-
type: PageType;
|
|
666
|
+
type: PageType$1;
|
|
646
667
|
title: string | null;
|
|
647
668
|
subtitle: string | null;
|
|
648
669
|
html: string | null;
|
|
@@ -826,7 +847,7 @@ interface Registration {
|
|
|
826
847
|
couponId: string | null;
|
|
827
848
|
coupon: BaseCoupon | null;
|
|
828
849
|
purchases: BasePurchase[];
|
|
829
|
-
payments:
|
|
850
|
+
payments: Payment[];
|
|
830
851
|
responses: BaseRegistrationQuestionResponse[];
|
|
831
852
|
guests: BaseRegistrationGuest[];
|
|
832
853
|
createdAt: string;
|
|
@@ -840,16 +861,21 @@ interface BaseRegistrationGuest {
|
|
|
840
861
|
}
|
|
841
862
|
interface RegistrationGuest extends BaseRegistrationGuest {
|
|
842
863
|
}
|
|
843
|
-
|
|
864
|
+
declare enum RegistrationPaymentType {
|
|
865
|
+
charge = "charge",
|
|
866
|
+
refund = "refund"
|
|
867
|
+
}
|
|
868
|
+
interface BasePayment {
|
|
844
869
|
id: string;
|
|
870
|
+
type: RegistrationPaymentType;
|
|
845
871
|
chargedAmt: number;
|
|
846
|
-
ticketId: string;
|
|
847
|
-
ticket: BaseTicket;
|
|
848
|
-
|
|
872
|
+
ticketId: string | null;
|
|
873
|
+
ticket: BaseTicket | null;
|
|
874
|
+
last4: string | null;
|
|
849
875
|
stripeId: string | null;
|
|
850
876
|
createdAt: string;
|
|
851
877
|
}
|
|
852
|
-
interface
|
|
878
|
+
interface Payment extends BasePayment {
|
|
853
879
|
}
|
|
854
880
|
interface BaseLead {
|
|
855
881
|
id: string;
|
|
@@ -1060,8 +1086,92 @@ interface BaseSeries {
|
|
|
1060
1086
|
}
|
|
1061
1087
|
interface Series extends BaseSeries {
|
|
1062
1088
|
}
|
|
1089
|
+
interface BaseVideo {
|
|
1090
|
+
id: string;
|
|
1091
|
+
width: number;
|
|
1092
|
+
height: number;
|
|
1093
|
+
thumbnailUrl: string;
|
|
1094
|
+
previewUrl: string;
|
|
1095
|
+
readyToStream: string;
|
|
1096
|
+
}
|
|
1097
|
+
declare enum SubscriptionStatus {
|
|
1098
|
+
active = "active",
|
|
1099
|
+
canceled = "canceled",
|
|
1100
|
+
paused = "paused",
|
|
1101
|
+
trialing = "trialing",
|
|
1102
|
+
past_due = "past_due",
|
|
1103
|
+
unpaid = "unpaid"
|
|
1104
|
+
}
|
|
1105
|
+
interface BaseSubscription {
|
|
1106
|
+
id: string;
|
|
1107
|
+
status: SubscriptionStatus;
|
|
1108
|
+
expiresAt: string;
|
|
1109
|
+
cancelAtEnd: boolean;
|
|
1110
|
+
subscriptionProduct: BaseSubscriptionProduct;
|
|
1111
|
+
}
|
|
1112
|
+
interface Subscription extends BaseSubscription {
|
|
1113
|
+
account: BaseAccount;
|
|
1114
|
+
price: BaseSubscriptionProductPrice;
|
|
1115
|
+
paymentMethod?: {
|
|
1116
|
+
brand: "amex" | "discover" | "mastercard" | "visa" | "unknown" | null;
|
|
1117
|
+
last4: string | null;
|
|
1118
|
+
expMonth: number | null;
|
|
1119
|
+
expYear: number | null;
|
|
1120
|
+
};
|
|
1121
|
+
createdAt: string;
|
|
1122
|
+
updatedAt: string;
|
|
1123
|
+
}
|
|
1124
|
+
interface BaseSubscriptionProduct {
|
|
1125
|
+
id: string;
|
|
1126
|
+
active: boolean;
|
|
1127
|
+
name: string;
|
|
1128
|
+
description: string | null;
|
|
1129
|
+
featured: boolean;
|
|
1130
|
+
}
|
|
1131
|
+
interface SubscriptionProduct extends BaseSubscriptionProduct {
|
|
1132
|
+
prices: SubscriptionProductPrice[];
|
|
1133
|
+
features: string[];
|
|
1134
|
+
createdAt: string;
|
|
1135
|
+
updatedAt: string;
|
|
1136
|
+
}
|
|
1137
|
+
interface BaseSubscriptionProductPrice {
|
|
1138
|
+
id: string;
|
|
1139
|
+
active: boolean;
|
|
1140
|
+
amount: number;
|
|
1141
|
+
interval: "day" | "week" | "month" | "year";
|
|
1142
|
+
intervalCount: number;
|
|
1143
|
+
maxAmount: number;
|
|
1144
|
+
minAmount: number;
|
|
1145
|
+
type: string;
|
|
1146
|
+
}
|
|
1147
|
+
interface SubscriptionProductPrice extends BaseSubscriptionProductPrice {
|
|
1148
|
+
subscriptionProduct: BaseSubscriptionProduct;
|
|
1149
|
+
createdAt: string;
|
|
1150
|
+
updatedAt: string;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
interface ConnectedXMClientContextState {
|
|
1154
|
+
organizationId: string;
|
|
1155
|
+
apiUrl: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com" | "http://localhost:4001";
|
|
1156
|
+
token: string | undefined;
|
|
1157
|
+
setToken: (token: string) => void;
|
|
1158
|
+
executeAs: string | undefined;
|
|
1159
|
+
setExecuteAs: (accountId: string) => void;
|
|
1160
|
+
locale: string;
|
|
1161
|
+
onNotAuthorized?: (error: AxiosError<ConnectedXMResponse<any>>) => void;
|
|
1162
|
+
onModuleForbidden?: (error: AxiosError<ConnectedXMResponse<any>>) => void;
|
|
1163
|
+
onNotFound?: (error: AxiosError<ConnectedXMResponse<any>>) => void;
|
|
1164
|
+
}
|
|
1165
|
+
interface ConnectedXMProviderProps extends Omit<ConnectedXMClientContextState, "token" | "setToken" | "executeAs" | "setExecuteAs"> {
|
|
1166
|
+
children: React.ReactNode;
|
|
1167
|
+
}
|
|
1168
|
+
declare const ConnectedXMProvider: ({ children, ...state }: ConnectedXMProviderProps) => React.JSX.Element;
|
|
1169
|
+
|
|
1170
|
+
declare const useConnectedXM: () => ConnectedXMClientContextState;
|
|
1063
1171
|
|
|
1064
|
-
declare const
|
|
1172
|
+
declare const useClientAPI: (locale?: string) => AxiosInstance;
|
|
1173
|
+
|
|
1174
|
+
declare const AppendInfiniteQuery: <TData = unknown>(queryClient: QueryClient, key: QueryKey, newData: TData) => void;
|
|
1065
1175
|
|
|
1066
1176
|
declare const GetErrorMessage: (error: any, fallback?: string) => string;
|
|
1067
1177
|
|
|
@@ -1075,18 +1185,1220 @@ interface ItemWithId {
|
|
|
1075
1185
|
name?: string | null;
|
|
1076
1186
|
code?: string;
|
|
1077
1187
|
}
|
|
1078
|
-
declare const CacheIndividualQueries: <TData extends ItemWithId>(
|
|
1188
|
+
declare const CacheIndividualQueries: <TData extends ItemWithId>(page: ConnectedXMResponse<TData[]>, queryClient: QueryClient, queryKeyFn: (id: string) => QueryKey, locale?: string, itemMap?: ((item: TData) => TData) | undefined) => void;
|
|
1189
|
+
|
|
1190
|
+
interface SingleQueryParams {
|
|
1191
|
+
clientApi: AxiosInstance;
|
|
1192
|
+
}
|
|
1193
|
+
interface SingleQueryOptions<TQueryData = unknown> extends Omit<UseQueryOptions<TQueryData, AxiosError<ConnectedXMResponse<any>>, Awaited<TQueryData>, QueryKey>, "queryFn" | "queryKey"> {
|
|
1194
|
+
}
|
|
1195
|
+
declare const GetBaseSingleQueryKeys: (locale: string) => QueryKey;
|
|
1079
1196
|
|
|
1080
|
-
declare const
|
|
1197
|
+
declare const ACCOUNT_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1198
|
+
declare const SET_ACCOUNT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccount>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1199
|
+
interface GetAccountProps extends SingleQueryParams {
|
|
1200
|
+
accountId: string;
|
|
1201
|
+
}
|
|
1202
|
+
declare const GetAccount: ({ accountId, clientApi, }: GetAccountProps) => Promise<ConnectedXMResponse<Account>>;
|
|
1203
|
+
declare const useGetAccount: (accountId: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1081
1204
|
|
|
1082
|
-
interface
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1205
|
+
interface InfiniteQueryParams {
|
|
1206
|
+
pageSize?: number;
|
|
1207
|
+
orderBy?: string;
|
|
1208
|
+
search?: string;
|
|
1209
|
+
locale?: string;
|
|
1210
|
+
pageParam: number;
|
|
1211
|
+
clientApi: AxiosInstance;
|
|
1212
|
+
queryClient?: QueryClient;
|
|
1213
|
+
}
|
|
1214
|
+
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"> {
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
declare const ACCOUNT_ACTIVITIES_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1218
|
+
declare const SET_ACCOUNT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1219
|
+
interface GetAccountActivitiesProps extends InfiniteQueryParams {
|
|
1220
|
+
accountId: string;
|
|
1221
|
+
}
|
|
1222
|
+
declare const GetAccountActivities: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1223
|
+
declare const useGetAccountActivities: (accountId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1224
|
+
|
|
1225
|
+
declare const ACCOUNT_BY_SHARE_CODE_QUERY_KEY: (shareCode: string) => QueryKey;
|
|
1226
|
+
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;
|
|
1227
|
+
interface GetAccountByShareCodeProps extends SingleQueryParams {
|
|
1228
|
+
shareCode: string;
|
|
1229
|
+
}
|
|
1230
|
+
declare const GetAccountByShareCode: ({ shareCode, clientApi, }: GetAccountByShareCodeProps) => Promise<ConnectedXMResponse<AccountShare>>;
|
|
1231
|
+
declare const useGetAccountByShareCode: (shareCode: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountByShareCode>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<AccountShare>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1232
|
+
|
|
1233
|
+
declare const ACCOUNT_COMMUNITIES_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1234
|
+
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;
|
|
1235
|
+
interface GetAccountCommunitiesProps extends InfiniteQueryParams {
|
|
1236
|
+
accountId: string;
|
|
1237
|
+
}
|
|
1238
|
+
declare const GetAccountCommunities: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountCommunitiesProps) => Promise<ConnectedXMResponse<Community[]>>;
|
|
1239
|
+
declare const useGetAccountCommunities: (accountId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountCommunities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Community[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1240
|
+
|
|
1241
|
+
declare const ACCOUNT_FOLLOWERS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1242
|
+
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;
|
|
1243
|
+
interface GetAccountFollowersProps extends InfiniteQueryParams {
|
|
1244
|
+
accountId: string;
|
|
1245
|
+
}
|
|
1246
|
+
declare const GetAccountFollowers: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountFollowersProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1247
|
+
declare const useGetAccountFollowers: (accountId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountFollowers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1248
|
+
|
|
1249
|
+
declare const ACCOUNT_FOLLOWINGS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1250
|
+
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;
|
|
1251
|
+
interface GetAccountFollowingsProps extends InfiniteQueryParams {
|
|
1252
|
+
accountId: string;
|
|
1253
|
+
}
|
|
1254
|
+
declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountFollowingsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1255
|
+
declare const useGetAccountFollowings: (accountId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountFollowings>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1256
|
+
|
|
1257
|
+
declare const ACCOUNTS_QUERY_KEY: () => QueryKey;
|
|
1258
|
+
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;
|
|
1259
|
+
interface GetAccountsProps extends InfiniteQueryParams {
|
|
1260
|
+
}
|
|
1261
|
+
declare const GetAccounts: ({ pageSize, orderBy, search, queryClient, clientApi, locale, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1262
|
+
declare const useGetAccounts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccounts>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1263
|
+
|
|
1264
|
+
declare const ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
1265
|
+
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;
|
|
1266
|
+
interface GetActivitiesProps extends InfiniteQueryParams {
|
|
1267
|
+
}
|
|
1268
|
+
declare const GetActivities: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1269
|
+
declare const useGetActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1270
|
+
|
|
1271
|
+
declare const ACTIVITY_QUERY_KEY: (activityId: string) => QueryKey;
|
|
1272
|
+
declare const SET_ACTIVITY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivity>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1273
|
+
interface GetActivityProps extends SingleQueryParams {
|
|
1274
|
+
activityId: string;
|
|
1275
|
+
}
|
|
1276
|
+
declare const GetActivity: ({ activityId, clientApi, }: GetActivityProps) => Promise<ConnectedXMResponse<SingleActivity>>;
|
|
1277
|
+
declare const useGetActivity: (activityId: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<SingleActivity>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1278
|
+
|
|
1279
|
+
declare const ACTIVITY_COMMENTS_QUERY_KEY: (activityId: string) => QueryKey;
|
|
1280
|
+
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;
|
|
1281
|
+
interface GetActivityCommentsProps extends InfiniteQueryParams {
|
|
1282
|
+
activityId: string;
|
|
1283
|
+
}
|
|
1284
|
+
declare const GetActivityComments: ({ activityId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetActivityCommentsProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1285
|
+
declare const useGetActivityComments: (activityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetActivityComments>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1286
|
+
|
|
1287
|
+
declare const ADVERTISEMENT_QUERY_KEY: (position: string) => QueryKey;
|
|
1288
|
+
declare const SET_ADVERTISEMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ADVERTISEMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAdvertisement>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1289
|
+
interface GetAdvertisementProps extends SingleQueryParams {
|
|
1290
|
+
}
|
|
1291
|
+
declare const GetAdvertisement: ({ clientApi, }: GetAdvertisementProps) => Promise<ConnectedXMResponse<Advertisement>>;
|
|
1292
|
+
declare const useGetAdvertisement: (position: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Advertisement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1293
|
+
|
|
1294
|
+
declare const BENEFITS_QUERY_KEY: () => QueryKey;
|
|
1295
|
+
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;
|
|
1296
|
+
interface GetBenefitsProps extends InfiniteQueryParams {
|
|
1297
|
+
}
|
|
1298
|
+
declare const GetBenefits: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetBenefitsProps) => Promise<ConnectedXMResponse<Benefit[]>>;
|
|
1299
|
+
declare const useGetBenefits: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBenefits>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Benefit[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1300
|
+
|
|
1301
|
+
declare const COMMUNITIES_QUERY_KEY: () => QueryKey;
|
|
1302
|
+
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;
|
|
1303
|
+
interface GetCommunitiesProps extends InfiniteQueryParams {
|
|
1304
|
+
privateCommunities?: boolean;
|
|
1305
|
+
}
|
|
1306
|
+
declare const GetCommunities: ({ pageParam, pageSize, orderBy, search, privateCommunities, queryClient, clientApi, locale, }: GetCommunitiesProps) => Promise<ConnectedXMResponse<Community[]>>;
|
|
1307
|
+
declare const useGetCommunities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Community[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1308
|
+
|
|
1309
|
+
declare const COMMUNITY_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1310
|
+
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;
|
|
1311
|
+
interface GetCommunityProps extends SingleQueryParams {
|
|
1312
|
+
communityId: string;
|
|
1313
|
+
}
|
|
1314
|
+
declare const GetCommunity: ({ communityId, clientApi, }: GetCommunityProps) => Promise<ConnectedXMResponse<Community>>;
|
|
1315
|
+
declare const useGetCommunity: (communityId: string, options?: SingleQueryOptions<ReturnType<typeof GetCommunity>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1316
|
+
|
|
1317
|
+
declare const COMMUNITY_ACTIVITIES_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1318
|
+
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;
|
|
1319
|
+
interface GetCommunityActivitiesProps extends InfiniteQueryParams {
|
|
1320
|
+
communityId: string;
|
|
1321
|
+
}
|
|
1322
|
+
declare const GetCommunityActivities: ({ pageParam, pageSize, orderBy, search, communityId, queryClient, clientApi, locale, }: GetCommunityActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1323
|
+
declare const useGetCommunityActivities: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1324
|
+
|
|
1325
|
+
declare const COMMUNITY_ANNOUNCEMENTS_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1326
|
+
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;
|
|
1327
|
+
interface GetCommunityAnnouncementsProps extends InfiniteQueryParams {
|
|
1328
|
+
communityId: string;
|
|
1329
|
+
}
|
|
1330
|
+
declare const GetCommunityAnnouncements: ({ communityId, pageParam, pageSize, orderBy, search, clientApi, }: GetCommunityAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
1331
|
+
declare const useGetCommunityAnnouncements: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityAnnouncements>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Announcement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1332
|
+
|
|
1333
|
+
declare const COMMUNITY_EVENTS_QUERY_KEY: (communityId: string, past?: boolean) => QueryKey;
|
|
1334
|
+
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;
|
|
1335
|
+
interface GetCommunityEventsProps extends InfiniteQueryParams {
|
|
1336
|
+
communityId: string;
|
|
1337
|
+
past?: boolean;
|
|
1338
|
+
}
|
|
1339
|
+
declare const GetCommunityEvents: ({ pageParam, pageSize, orderBy, search, communityId, past, queryClient, clientApi, locale, }: GetCommunityEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1340
|
+
declare const useGetCommunityEvents: (communityId: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1341
|
+
|
|
1342
|
+
declare const COMMUNITY_MEMBERS_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1343
|
+
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;
|
|
1344
|
+
interface GetCommunityMembersProps extends InfiniteQueryParams {
|
|
1345
|
+
communityId: string;
|
|
1346
|
+
}
|
|
1347
|
+
declare const GetCommunityMembers: ({ pageParam, pageSize, orderBy, search, communityId, clientApi, }: GetCommunityMembersProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
|
|
1348
|
+
declare const useGetCommunityMembers: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityMembers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1349
|
+
|
|
1350
|
+
declare const COMMUNITY_MODERATORS_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1351
|
+
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;
|
|
1352
|
+
interface GetCommunityModeratorsProps extends InfiniteQueryParams {
|
|
1353
|
+
communityId: string;
|
|
1354
|
+
}
|
|
1355
|
+
declare const GetCommunityModerators: ({ pageParam, pageSize, orderBy, search, communityId, clientApi, }: GetCommunityModeratorsProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
|
|
1356
|
+
declare const useGetCommunityModerators: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunityModerators>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1357
|
+
|
|
1358
|
+
declare const COMMUNITY_SPONSORS_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1359
|
+
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;
|
|
1360
|
+
interface GetCommunitySponsorsProps extends InfiniteQueryParams {
|
|
1361
|
+
communityId: string;
|
|
1362
|
+
}
|
|
1363
|
+
declare const GetCommunitySponsors: ({ pageParam, pageSize, orderBy, search, communityId, queryClient, clientApi, locale, }: GetCommunitySponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1364
|
+
declare const useGetCommunitySponsors: (communityId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetCommunitySponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1365
|
+
|
|
1366
|
+
declare const CONTENT_QUERY_KEY: (contentId: string) => QueryKey;
|
|
1367
|
+
declare const SET_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1368
|
+
interface GetContentParams extends SingleQueryParams {
|
|
1369
|
+
contentId: string;
|
|
1370
|
+
}
|
|
1371
|
+
declare const GetContent: ({ contentId, clientApi, }: GetContentParams) => Promise<ConnectedXMResponse<Content>>;
|
|
1372
|
+
declare const useGetContent: (contentId: string, options?: SingleQueryOptions<ReturnType<typeof GetContent>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1373
|
+
|
|
1374
|
+
declare const CONTENT_ACTIVITIES_QUERY_KEY: (contentId: string) => QueryKey;
|
|
1375
|
+
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;
|
|
1376
|
+
interface GetContentActivitiesParams extends InfiniteQueryParams {
|
|
1377
|
+
contentId: string;
|
|
1378
|
+
}
|
|
1379
|
+
declare const GetContentActivities: ({ pageParam, pageSize, orderBy, search, contentId, queryClient, clientApi, locale, }: GetContentActivitiesParams) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1380
|
+
declare const useGetContentActivities: (contentId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1381
|
+
|
|
1382
|
+
declare const CONTENTS_QUERY_KEY: () => QueryKey;
|
|
1383
|
+
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;
|
|
1384
|
+
interface GetContentsParams extends InfiniteQueryParams {
|
|
1385
|
+
}
|
|
1386
|
+
declare const GetContents: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
1387
|
+
declare const useGetContents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1388
|
+
|
|
1389
|
+
declare const CONTENT_TYPE_QUERY_KEY: (contentTypeId: string) => QueryKey;
|
|
1390
|
+
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;
|
|
1391
|
+
interface GetContentTypeParams extends SingleQueryParams {
|
|
1392
|
+
contentTypeId: string;
|
|
1393
|
+
}
|
|
1394
|
+
declare const GetContentType: ({ contentTypeId, clientApi, }: GetContentTypeParams) => Promise<ConnectedXMResponse<ContentType>>;
|
|
1395
|
+
declare const useGetContentType: (contentTypeId: string, options?: SingleQueryOptions<ReturnType<typeof GetContentType>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<ContentType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1396
|
+
|
|
1397
|
+
declare const CONTENT_TYPE_CONTENTS_QUERY_KEY: (contentTypeId: string) => QueryKey;
|
|
1398
|
+
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;
|
|
1399
|
+
interface GetContentTypeContentsParams extends InfiniteQueryParams {
|
|
1400
|
+
contentTypeId: string;
|
|
1401
|
+
}
|
|
1402
|
+
declare const GetContentTypeContents: ({ pageParam, pageSize, orderBy, search, contentTypeId, queryClient, clientApi, locale, }: GetContentTypeContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
1403
|
+
declare const useGetContentTypeContents: (contentTypeId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypeContents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Content[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1404
|
+
|
|
1405
|
+
declare const CONTENT_TYPES_QUERY_KEY: () => QueryKey;
|
|
1406
|
+
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;
|
|
1407
|
+
interface GetContentTypesParams extends InfiniteQueryParams {
|
|
1408
|
+
}
|
|
1409
|
+
declare const GetContentTypes: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetContentTypesParams) => Promise<ConnectedXMResponse<ContentType[]>>;
|
|
1410
|
+
declare const useGetContentTypes: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetContentTypes>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ContentType[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1411
|
+
|
|
1412
|
+
declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1413
|
+
declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1414
|
+
interface GetEventProps extends SingleQueryParams {
|
|
1415
|
+
eventId: string;
|
|
1416
|
+
}
|
|
1417
|
+
declare const GetEvent: ({ eventId, clientApi, }: GetEventProps) => Promise<ConnectedXMResponse<Event>>;
|
|
1418
|
+
declare const useGetEvent: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1419
|
+
|
|
1420
|
+
declare const EVENT_ACTIVITIES_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1421
|
+
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;
|
|
1422
|
+
interface GetEventActivitiesProps extends InfiniteQueryParams {
|
|
1423
|
+
eventId: string;
|
|
1424
|
+
}
|
|
1425
|
+
declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1426
|
+
declare const useGetEventActivities: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1427
|
+
|
|
1428
|
+
declare const EVENT_FAQ_SECTION_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
|
|
1429
|
+
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;
|
|
1430
|
+
interface GetEventFAQSectionProps extends SingleQueryParams {
|
|
1431
|
+
eventId: string;
|
|
1432
|
+
sectionId: string;
|
|
1433
|
+
}
|
|
1434
|
+
declare const GetEventFAQSection: ({ eventId, sectionId, clientApi, }: GetEventFAQSectionProps) => Promise<ConnectedXMResponse<FaqSection>>;
|
|
1435
|
+
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>>;
|
|
1436
|
+
|
|
1437
|
+
declare const EVENT_FAQ_SECTION_QUESTION_QUERY_KEY: (eventId: string, sectionId: string, questionId: string) => QueryKey;
|
|
1438
|
+
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;
|
|
1439
|
+
interface GetEventFAQSectionQuestionProps extends SingleQueryParams {
|
|
1440
|
+
eventId: string;
|
|
1441
|
+
sectionId: string;
|
|
1442
|
+
questionId: string;
|
|
1443
|
+
}
|
|
1444
|
+
declare const GetEventFAQSectionQuestion: ({ eventId, sectionId, questionId, clientApi, }: GetEventFAQSectionQuestionProps) => Promise<ConnectedXMResponse<Faq>>;
|
|
1445
|
+
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>>;
|
|
1446
|
+
|
|
1447
|
+
declare const EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
|
|
1448
|
+
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;
|
|
1449
|
+
interface GetEventFaqsProps extends InfiniteQueryParams {
|
|
1450
|
+
eventId: string;
|
|
1451
|
+
sectionId: string;
|
|
1452
|
+
}
|
|
1453
|
+
declare const GetEventFaqs: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventFaqsProps) => Promise<ConnectedXMResponse<Faq[]>>;
|
|
1454
|
+
declare const useGetEventFaqs: (eventId: string, sectionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqs>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Faq[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1455
|
+
|
|
1456
|
+
declare const EVENT_FAQ_SECTIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1457
|
+
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;
|
|
1458
|
+
interface GetEventFaqSectionsProps extends InfiniteQueryParams {
|
|
1459
|
+
eventId: string;
|
|
1460
|
+
}
|
|
1461
|
+
declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventFaqSectionsProps) => Promise<ConnectedXMResponse<FaqSection[]>>;
|
|
1462
|
+
declare const useGetEventFaqSections: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqSections>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<FaqSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1463
|
+
|
|
1464
|
+
declare const EVENT_PAGE_QUERY_KEY: (eventId: string, pageId: string) => QueryKey;
|
|
1465
|
+
declare const SET_EVENT_PAGE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, pageId: string], response: Awaited<ReturnType<typeof GetEventPage>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1466
|
+
interface GetEventPageProps extends SingleQueryParams {
|
|
1467
|
+
eventId: string;
|
|
1468
|
+
pageId: string;
|
|
1469
|
+
}
|
|
1470
|
+
declare const GetEventPage: ({ eventId, pageId, clientApi, }: GetEventPageProps) => Promise<ConnectedXMResponse<EventPage>>;
|
|
1471
|
+
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>>;
|
|
1472
|
+
|
|
1473
|
+
declare const EVENT_PAGES_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1474
|
+
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;
|
|
1475
|
+
interface GetEventPagesProps extends InfiniteQueryParams {
|
|
1476
|
+
eventId: string;
|
|
1477
|
+
}
|
|
1478
|
+
declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventPagesProps) => Promise<ConnectedXMResponse<BaseEventPage[]>>;
|
|
1479
|
+
declare const useGetEventPages: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPages>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<BaseEventPage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1480
|
+
|
|
1481
|
+
declare const EVENT_QUESTION_VALUES_QUERY_KEY: (eventId: string, questionId: string) => unknown[];
|
|
1482
|
+
interface GetEventQuestionSearchValuesProps extends InfiniteQueryParams {
|
|
1483
|
+
eventId: string;
|
|
1484
|
+
questionId: string;
|
|
1485
|
+
}
|
|
1486
|
+
declare const GetEventQuestionSearchValues: ({ eventId, questionId, pageParam, pageSize, orderBy, search, clientApi, }: GetEventQuestionSearchValuesProps) => Promise<ConnectedXMResponse<RegistrationQuestionSearchValue[]>>;
|
|
1487
|
+
declare const useGetEventQuestionSearchValues: (eventId: string, questionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionSearchValues>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<RegistrationQuestionSearchValue[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1488
|
+
|
|
1489
|
+
declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1490
|
+
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;
|
|
1491
|
+
interface GetEventSessionsProps extends InfiniteQueryParams {
|
|
1492
|
+
eventId: string;
|
|
1493
|
+
}
|
|
1494
|
+
declare const GetEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventSessionsProps) => Promise<ConnectedXMResponse<Session[]>>;
|
|
1495
|
+
declare const useGetEventSessions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessions>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Session[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1496
|
+
|
|
1497
|
+
declare const EVENT_REGISTRANTS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1498
|
+
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;
|
|
1499
|
+
interface GetEventRegistrantsProps extends InfiniteQueryParams {
|
|
1500
|
+
eventId: string;
|
|
1501
|
+
}
|
|
1502
|
+
declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventRegistrantsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1503
|
+
declare const useGetEventRegistrants: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrants>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1504
|
+
|
|
1505
|
+
declare const EVENTS_QUERY_KEY: (past?: boolean) => QueryKey;
|
|
1506
|
+
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;
|
|
1507
|
+
interface GetEventsProps extends InfiniteQueryParams {
|
|
1508
|
+
past?: boolean;
|
|
1509
|
+
}
|
|
1510
|
+
declare const GetEvents: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApi, locale, }: GetEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1511
|
+
declare const useGetEvents: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1512
|
+
|
|
1513
|
+
declare const EVENT_SESSION_QUERY_KEY: (eventId: string, sessionId: string) => QueryKey;
|
|
1514
|
+
declare const SET_EVENT_SESSION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSession>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1515
|
+
interface GetEventSessionProps extends SingleQueryParams {
|
|
1516
|
+
eventId: string;
|
|
1517
|
+
sessionId: string;
|
|
1518
|
+
}
|
|
1519
|
+
declare const GetEventSession: ({ eventId, sessionId, clientApi, }: GetEventSessionProps) => Promise<ConnectedXMResponse<Session>>;
|
|
1520
|
+
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>>;
|
|
1521
|
+
|
|
1522
|
+
declare const EVENT_SPEAKER_QUERY_KEY: (eventId: string, speakerId: string) => QueryKey;
|
|
1523
|
+
declare const SET_EVENT_SPEAKER_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, speakerId: string], response: Awaited<ReturnType<typeof GetEventSpeaker>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1524
|
+
interface GetEventSpeakerProps extends SingleQueryParams {
|
|
1525
|
+
eventId: string;
|
|
1526
|
+
speakerId: string;
|
|
1527
|
+
}
|
|
1528
|
+
declare const GetEventSpeaker: ({ eventId, speakerId, clientApi, }: GetEventSpeakerProps) => Promise<ConnectedXMResponse<Speaker>>;
|
|
1529
|
+
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>>;
|
|
1530
|
+
|
|
1531
|
+
declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1532
|
+
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;
|
|
1533
|
+
interface GetEventSpeakersProps extends InfiniteQueryParams {
|
|
1534
|
+
eventId: string;
|
|
1535
|
+
}
|
|
1536
|
+
declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventSpeakersProps) => Promise<ConnectedXMResponse<Speaker[]>>;
|
|
1537
|
+
declare const useGetEventSpeakers: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Speaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1538
|
+
|
|
1539
|
+
declare const EVENT_SPONSORS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1540
|
+
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;
|
|
1541
|
+
interface GetEventSponsorsProps extends InfiniteQueryParams {
|
|
1542
|
+
eventId: string;
|
|
1543
|
+
}
|
|
1544
|
+
declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1545
|
+
declare const useGetEventSponsors: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1546
|
+
|
|
1547
|
+
declare const EVENT_TICKETS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1548
|
+
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;
|
|
1549
|
+
interface GetEventTicketsProps extends InfiniteQueryParams {
|
|
1550
|
+
eventId: string;
|
|
1551
|
+
}
|
|
1552
|
+
declare const GetEventTickets: ({ eventId, pageParam, pageSize, orderBy, search, clientApi, }: GetEventTicketsProps) => Promise<ConnectedXMResponse<Ticket[]>>;
|
|
1553
|
+
declare const useGetEventTickets: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTickets>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Ticket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1554
|
+
|
|
1555
|
+
declare const EVENTS_FEATURED_QUERY_KEY: () => QueryKey;
|
|
1556
|
+
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;
|
|
1557
|
+
interface GetFeaturedEventsProps extends InfiniteQueryParams {
|
|
1558
|
+
}
|
|
1559
|
+
declare const GetFeaturedEvents: ({ pageParam, pageSize, orderBy, queryClient, clientApi, locale, }: GetFeaturedEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1560
|
+
declare const useGetFeaturedEvents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetFeaturedEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1561
|
+
|
|
1562
|
+
declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
|
|
1563
|
+
interface GetOrganizationParams extends SingleQueryParams {
|
|
1564
|
+
}
|
|
1565
|
+
declare const GetOrganization: ({ clientApi, }: GetOrganizationParams) => Promise<ConnectedXMResponse<Organization>>;
|
|
1566
|
+
declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Organization>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1567
|
+
|
|
1568
|
+
declare const ORGANIZATION_EXPLORE_QUERY_KEY: () => QueryKey;
|
|
1569
|
+
interface Explore {
|
|
1570
|
+
contents: Content[];
|
|
1571
|
+
events: BaseEvent[];
|
|
1572
|
+
communities: BaseCommunity[];
|
|
1573
|
+
recommendations: BaseAccount[];
|
|
1574
|
+
}
|
|
1575
|
+
interface GetOrganizationExploreProps extends SingleQueryParams {
|
|
1576
|
+
}
|
|
1577
|
+
declare const GetOrganizationExplore: ({ clientApi, }: GetOrganizationExploreProps) => Promise<ConnectedXMResponse<Explore>>;
|
|
1578
|
+
declare const useGetOrganizationExplore: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationExplore>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Explore>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1579
|
+
|
|
1580
|
+
declare const ORGANIZATION_PAGE_QUERY_KEY: (type: PageType) => QueryKey;
|
|
1581
|
+
declare const SET_ORGANIZATION_PAGE_QUERY_DATA: (queryClient: QueryClient, keyParams: Parameters<typeof ORGANIZATION_PAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetOrganizationPage>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1582
|
+
type PageType = "about" | "team" | "privacy" | "terms";
|
|
1583
|
+
interface GetOrganizationPageProps extends SingleQueryParams {
|
|
1584
|
+
type: PageType;
|
|
1585
|
+
}
|
|
1586
|
+
declare const GetOrganizationPage: ({ type, clientApi, }: GetOrganizationPageProps) => Promise<ConnectedXMResponse<Page | null>>;
|
|
1587
|
+
declare const useGetOrganizationPage: (type: PageType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPage>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Page | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1588
|
+
|
|
1589
|
+
declare const SELF_CHAT_CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1590
|
+
declare const SET_SELF_CHAT_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetSelfChatChannel>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1591
|
+
interface GetSelfChatChannelProps extends SingleQueryParams {
|
|
1592
|
+
channelId: string;
|
|
1593
|
+
}
|
|
1594
|
+
declare const GetSelfChatChannel: ({ channelId, clientApi, }: GetSelfChatChannelProps) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
1595
|
+
declare const useGetSelfChatChannel: (channelId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfChatChannel>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1596
|
+
|
|
1597
|
+
declare const SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1598
|
+
declare const SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMembers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1599
|
+
interface GetSelfChatChannelMembersProps extends InfiniteQueryParams {
|
|
1600
|
+
channelId: string;
|
|
1601
|
+
}
|
|
1602
|
+
declare const GetSelfChatChannelMembers: ({ channelId, pageParam, pageSize, orderBy, search, clientApi, }: GetSelfChatChannelMembersProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
|
|
1603
|
+
declare const useGetSelfChatChannelMembers: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMembers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1604
|
+
|
|
1605
|
+
declare const SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1606
|
+
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;
|
|
1607
|
+
interface GetSelfChatChannelMessagesProps extends InfiniteQueryParams {
|
|
1608
|
+
channelId: string;
|
|
1609
|
+
}
|
|
1610
|
+
declare const GetSelfChatChannelMessages: ({ channelId, pageParam, pageSize, orderBy, search, queryClient, clientApi, }: GetSelfChatChannelMessagesProps) => Promise<ConnectedXMResponse<ChatChannelMessage[]>>;
|
|
1611
|
+
declare const useGetSelfChatChannelMessages: (channelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannelMessages>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ChatChannelMessage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1612
|
+
|
|
1613
|
+
declare const SELF_CHAT_CHANNELS_QUERY_KEY: () => QueryKey;
|
|
1614
|
+
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;
|
|
1615
|
+
interface GetSelfChatChannelsProps extends InfiniteQueryParams {
|
|
1616
|
+
}
|
|
1617
|
+
declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfChatChannelsProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
|
|
1618
|
+
declare const useGetSelfChatChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfChatChannels>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<ChatChannelMember[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1619
|
+
|
|
1620
|
+
declare const SELF_EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1621
|
+
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;
|
|
1622
|
+
interface GetSelfEventRegistrationProps extends SingleQueryParams {
|
|
1623
|
+
eventId: string;
|
|
1624
|
+
ticket?: string;
|
|
1625
|
+
quantity?: number;
|
|
1626
|
+
coupon?: string;
|
|
1627
|
+
}
|
|
1628
|
+
declare const GetSelfEventRegistration: ({ eventId, ticket, quantity, coupon, clientApi, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
|
|
1629
|
+
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>>;
|
|
1630
|
+
|
|
1631
|
+
interface CheckoutResponse {
|
|
1632
|
+
type: "stripe" | "paypal";
|
|
1633
|
+
connectionId: string;
|
|
1634
|
+
intentId: string;
|
|
1635
|
+
secret: string;
|
|
1636
|
+
}
|
|
1637
|
+
declare const SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY: (eventId: string, registrationId: string) => unknown[];
|
|
1638
|
+
interface GetSelfEventRegistrationCheckoutProps extends SingleQueryParams {
|
|
1639
|
+
eventId: string;
|
|
1640
|
+
registrationId: string;
|
|
1641
|
+
}
|
|
1642
|
+
declare const GetSelfEventRegistrationCheckout: ({ eventId, registrationId, clientApi, }: GetSelfEventRegistrationCheckoutProps) => Promise<Awaited<ConnectedXMResponse<CheckoutResponse>>>;
|
|
1643
|
+
declare const useGetSelfEventRegistrationCheckout: (eventId: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationCheckout>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<CheckoutResponse>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1644
|
+
|
|
1645
|
+
declare const SELF_QUERY_KEY: (authenticated?: boolean) => QueryKey;
|
|
1646
|
+
declare const SET_SELF_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelf>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1647
|
+
interface GetSelfProps extends SingleQueryParams {
|
|
1648
|
+
authenticated?: boolean;
|
|
1649
|
+
}
|
|
1650
|
+
declare const GetSelf: ({ authenticated, clientApi, }: GetSelfProps) => Promise<ConnectedXMResponse<Self>>;
|
|
1651
|
+
declare const useGetSelf: (authenticated?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1652
|
+
|
|
1653
|
+
declare const SELF_ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
1654
|
+
interface GetSelfActivitiesProps extends InfiniteQueryParams {
|
|
1655
|
+
}
|
|
1656
|
+
declare const GetSelfActivities: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1657
|
+
declare const useGetSelfActivities: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfActivities>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1658
|
+
|
|
1659
|
+
declare const SELF_ANNOUNCEMENT_QUERY_KEY: (announcementId: string) => QueryKey;
|
|
1660
|
+
interface GetSelfAnnouncementProps extends SingleQueryParams {
|
|
1661
|
+
announcementId: string;
|
|
1662
|
+
}
|
|
1663
|
+
declare const GetSelfAnnouncement: ({ announcementId, clientApi, }: GetSelfAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
|
|
1664
|
+
declare const useGetSelfAnnouncement: (announcementId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfAnnouncement>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1665
|
+
|
|
1666
|
+
declare const SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1667
|
+
declare const SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfCommunityMembership>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1668
|
+
interface GetSelfCommunityMembershipProps extends SingleQueryParams {
|
|
1669
|
+
communityId: string;
|
|
1670
|
+
}
|
|
1671
|
+
declare const GetSelfCommunityMembership: ({ communityId, clientApi, }: GetSelfCommunityMembershipProps) => Promise<ConnectedXMResponse<CommunityMembership>>;
|
|
1672
|
+
declare const useGetSelfCommunityMembership: (communityId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfCommunityMembership>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<CommunityMembership>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1673
|
+
|
|
1674
|
+
declare const SELF_COMMUNITY_MEMBERSHIPS_QUERY_KEY: () => QueryKey;
|
|
1675
|
+
interface GetSelfCommunityMembershipsProps extends InfiniteQueryParams {
|
|
1676
|
+
}
|
|
1677
|
+
declare const GetSelfCommunityMemberships: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSelfCommunityMembershipsProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
|
|
1678
|
+
declare const useGetSelfCommunityMemberships: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfCommunityMemberships>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<CommunityMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1679
|
+
|
|
1680
|
+
declare const SELF_DELEGATE_OF_QUERY_KEY: () => QueryKey;
|
|
1681
|
+
interface GetSelfDelegateOfProps extends InfiniteQueryParams {
|
|
1682
|
+
}
|
|
1683
|
+
declare const GetSelfDelegateOf: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfDelegateOfProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1684
|
+
declare const useGetSelfDelegateOf: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegateOf>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1685
|
+
|
|
1686
|
+
declare const SELF_DELEGATES_QUERY_KEY: () => QueryKey;
|
|
1687
|
+
interface GetSelfDelegatesProps extends InfiniteQueryParams {
|
|
1688
|
+
}
|
|
1689
|
+
declare const GetSelfDelegates: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfDelegatesProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1690
|
+
declare const useGetSelfDelegates: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegates>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1691
|
+
|
|
1692
|
+
declare const SELF_EVENT_LISTING_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1693
|
+
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;
|
|
1694
|
+
interface GetSelfEventListingProps extends SingleQueryParams {
|
|
1695
|
+
eventId: string;
|
|
1696
|
+
}
|
|
1697
|
+
declare const GetSelfEventListing: ({ eventId, clientApi, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
|
|
1698
|
+
declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1699
|
+
|
|
1700
|
+
declare const SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY: (eventId: string, checkedIn: boolean) => unknown[];
|
|
1701
|
+
interface GetSelfEventListingRegistrationsProps extends InfiniteQueryParams {
|
|
1702
|
+
eventId: string;
|
|
1703
|
+
checkedIn?: boolean;
|
|
1704
|
+
}
|
|
1705
|
+
declare const GetSelfEventListingRegistrations: ({ eventId, pageParam, pageSize, orderBy, search, checkedIn, clientApi, }: GetSelfEventListingRegistrationsProps) => Promise<ConnectedXMResponse<Registration[]>>;
|
|
1706
|
+
declare const useGetSelfEventListingsRegistrations: (eventId: string, checkedIn?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingRegistrations>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Registration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1707
|
+
|
|
1708
|
+
declare const SELF_EVENT_LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
|
|
1709
|
+
interface GetSelfEventListingsProps extends InfiniteQueryParams {
|
|
1710
|
+
past?: boolean;
|
|
1711
|
+
}
|
|
1712
|
+
declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApi, locale, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
|
|
1713
|
+
declare const useGetSelfEventListings: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListings>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<EventListing[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1714
|
+
|
|
1715
|
+
declare const SELF_EVENTS_QUERY_KEY: (past: boolean) => QueryKey;
|
|
1716
|
+
interface GetSelfEventsProps extends InfiniteQueryParams {
|
|
1717
|
+
past?: boolean;
|
|
1718
|
+
}
|
|
1719
|
+
declare const GetSelfEvents: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApi, locale, }: GetSelfEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1720
|
+
declare const useGetSelfEvents: (past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1721
|
+
|
|
1722
|
+
declare const SELF_EVENT_SESSIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1723
|
+
interface GetSelfEventSessionsProps extends InfiniteQueryParams {
|
|
1724
|
+
eventId: string;
|
|
1725
|
+
}
|
|
1726
|
+
declare const GetSelfEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfEventSessionsProps) => Promise<ConnectedXMResponse<Session[]>>;
|
|
1727
|
+
declare const useGetSelfEventSessions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventSessions>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Session[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1728
|
+
|
|
1729
|
+
declare const SELF_FEED_QUERY_KEY: () => QueryKey;
|
|
1730
|
+
interface GetSelfFeedProps extends InfiniteQueryParams {
|
|
1731
|
+
}
|
|
1732
|
+
declare const GetSelfFeed: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfFeedProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1733
|
+
declare const useGetSelfFeed: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfFeed>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1734
|
+
|
|
1735
|
+
declare const SELF_INTERESTS_QUERY_KEY: () => QueryKey;
|
|
1736
|
+
interface GetSelfInterestsProps extends InfiniteQueryParams {
|
|
1737
|
+
}
|
|
1738
|
+
declare const GetSelfInterests: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSelfInterestsProps) => Promise<ConnectedXMResponse<Interest[]>>;
|
|
1739
|
+
declare const useGetSelfInterests: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfInterests>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Interest[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1740
|
+
|
|
1741
|
+
declare const SELF_PREFERENCES_QUERY_KEY: () => QueryKey;
|
|
1742
|
+
interface GetSelfNotificationPreferencesProps extends SingleQueryParams {
|
|
1743
|
+
}
|
|
1744
|
+
declare const GetSelfNotificationPreferences: ({ clientApi, }: GetSelfNotificationPreferencesProps) => Promise<ConnectedXMResponse<NotificationPreferences>>;
|
|
1745
|
+
declare const useGetSelfNotificationPreferences: (options?: SingleQueryOptions<ReturnType<typeof GetSelfNotificationPreferences>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<NotificationPreferences>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1746
|
+
|
|
1747
|
+
declare const SELF_NOTIFICATIONS_QUERY_KEY: (filters: string) => QueryKey;
|
|
1748
|
+
interface GetSelfNotificationsProps extends InfiniteQueryParams {
|
|
1749
|
+
filters?: string;
|
|
1750
|
+
}
|
|
1751
|
+
declare const GetSelfNotifications: ({ pageParam, pageSize, orderBy, search, filters, clientApi, }: GetSelfNotificationsProps) => Promise<ConnectedXMResponse<Notification$1[]>>;
|
|
1752
|
+
declare const useGetSelfNotifications: (filters?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfNotifications>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Notification$1[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1753
|
+
|
|
1754
|
+
declare const SELF_NOTIFICATION_COUNT_QUERY_KEY: (filters: string) => QueryKey;
|
|
1755
|
+
interface GetSelfNewNotificationsCountProps extends SingleQueryParams {
|
|
1756
|
+
filters?: string;
|
|
1757
|
+
}
|
|
1758
|
+
declare const GetSelfNewNotificationsCount: ({ filters, clientApi, }: GetSelfNewNotificationsCountProps) => Promise<ConnectedXMResponse<Notification[]>>;
|
|
1759
|
+
declare const useGetSelfNewNotificationsCount: (filters?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfNewNotificationsCount>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Notification[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1760
|
+
|
|
1761
|
+
declare const SELF_PUSH_DEVICE_QUERY_KEY: (pushDeviceId: string) => QueryKey;
|
|
1762
|
+
declare const SET_PUSH_DEVICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_PUSH_DEVICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfPushDevice>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1763
|
+
interface GetSelfPushDeviceProps extends SingleQueryParams {
|
|
1764
|
+
pushDeviceId: string;
|
|
1765
|
+
}
|
|
1766
|
+
declare const GetSelfPushDevice: ({ pushDeviceId, clientApi, }: GetSelfPushDeviceProps) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
1767
|
+
declare const useGetSelfPushDevice: (pushDeviceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfPushDevice>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1768
|
+
|
|
1769
|
+
declare const SELF_PUSH_DEVICES_QUERY_KEY: () => QueryKey;
|
|
1770
|
+
interface GetSelfPushDevicesProps extends InfiniteQueryParams {
|
|
1771
|
+
}
|
|
1772
|
+
declare const GetSelfPushDevices: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfPushDevicesProps) => Promise<ConnectedXMResponse<PushDevice[]>>;
|
|
1773
|
+
declare const useGetSelfPushDevices: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfPushDevices>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<PushDevice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1774
|
+
|
|
1775
|
+
declare const SELF_RECOMMENDATIONS_QUERY_KEY: (type: string, eventId?: string) => unknown[];
|
|
1776
|
+
type RecomendationType = "following" | "contacts" | "popular";
|
|
1777
|
+
interface GetSelfRecommendationsProps extends InfiniteQueryParams {
|
|
1778
|
+
eventId?: string;
|
|
1779
|
+
type?: RecomendationType;
|
|
1780
|
+
}
|
|
1781
|
+
declare const GetSelfRecommendations: ({ pageParam, pageSize, orderBy, search, eventId, type, queryClient, clientApi, locale, }: GetSelfRecommendationsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1782
|
+
declare const useGetSelfRecommendations: (type: RecomendationType, eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfRecommendations>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1783
|
+
|
|
1784
|
+
declare const SELF_PENDING_TRANSFER_QUERY_KEY: (transferId: string) => QueryKey;
|
|
1785
|
+
interface GetSelfTransferProps extends SingleQueryParams {
|
|
1786
|
+
transferId: string;
|
|
1787
|
+
}
|
|
1788
|
+
declare const GetSelfTransfer: ({ transferId, clientApi, }: GetSelfTransferProps) => Promise<ConnectedXMResponse<Transfer>>;
|
|
1789
|
+
declare const useGetSelfTransfer: (transferId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfTransfer>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1790
|
+
|
|
1791
|
+
declare const SELF_TRANSFERS_QUERY_KEY: () => QueryKey;
|
|
1792
|
+
interface GetSelfTransfersProps extends InfiniteQueryParams {
|
|
1793
|
+
}
|
|
1794
|
+
declare const GetSelfTransfers: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSelfTransfersProps) => Promise<ConnectedXMResponse<Transfer[]>>;
|
|
1795
|
+
declare const useGetSelfTransfers: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfTransfers>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Transfer[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1796
|
+
|
|
1797
|
+
declare const SERIES_QUERY_KEY: (seriesId: string) => QueryKey;
|
|
1798
|
+
declare const SET_SERIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeries>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1799
|
+
interface GetSeriesProps extends SingleQueryParams {
|
|
1800
|
+
seriesId: string;
|
|
1801
|
+
}
|
|
1802
|
+
declare const GetSeries: ({ seriesId, clientApi, }: GetSeriesProps) => Promise<ConnectedXMResponse<Series>>;
|
|
1803
|
+
declare const useGetSeries: (seriesId: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Series>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1804
|
+
|
|
1805
|
+
declare const SERIES_EVENTS_QUERY_KEY: (seriesId: string) => QueryKey;
|
|
1806
|
+
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;
|
|
1807
|
+
interface GetSeriesEventsProps extends InfiniteQueryParams {
|
|
1808
|
+
seriesId: string;
|
|
1809
|
+
}
|
|
1810
|
+
declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSeriesEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1811
|
+
declare const useGetSeriesEvents: (seriesId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesEvents>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1812
|
+
|
|
1813
|
+
declare const SERIES_LIST_QUERY_KEY: () => QueryKey;
|
|
1814
|
+
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;
|
|
1815
|
+
interface GetSeriesListProps extends InfiniteQueryParams {
|
|
1816
|
+
past?: boolean;
|
|
1817
|
+
}
|
|
1818
|
+
declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSeriesListProps) => Promise<ConnectedXMResponse<Series[]>>;
|
|
1819
|
+
declare const useGetSeriesList: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSeriesList>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Series[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1820
|
+
|
|
1821
|
+
declare const LEVEL_QUERY_KEY: (levelId: string) => QueryKey;
|
|
1822
|
+
declare const SET_LEVEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1823
|
+
interface GetLevelProps extends SingleQueryParams {
|
|
1824
|
+
levelId: string;
|
|
1825
|
+
}
|
|
1826
|
+
declare const GetLevel: ({ levelId, clientApi, }: GetLevelProps) => Promise<ConnectedXMResponse<SponsorshipLevel>>;
|
|
1827
|
+
declare const useGetLevel: (levelId: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<SponsorshipLevel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1828
|
+
|
|
1829
|
+
declare const LEVELS_QUERY_KEY: () => QueryKey;
|
|
1830
|
+
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;
|
|
1831
|
+
interface GetLevelsProps extends InfiniteQueryParams {
|
|
1832
|
+
}
|
|
1833
|
+
declare const GetLevels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetLevelsProps) => Promise<ConnectedXMResponse<SponsorshipLevel[]>>;
|
|
1834
|
+
declare const useGetLevels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevels>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<SponsorshipLevel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1835
|
+
|
|
1836
|
+
declare const LEVEL_SPONSORS_QUERY_KEY: (levelId: string) => QueryKey;
|
|
1837
|
+
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;
|
|
1838
|
+
interface GetLevelSponsorsProps extends InfiniteQueryParams {
|
|
1839
|
+
levelId: string;
|
|
1840
|
+
}
|
|
1841
|
+
declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1842
|
+
declare const useGetLevelSponsors: (levelId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetLevelSponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1843
|
+
|
|
1844
|
+
declare const SPONSOR_QUERY_KEY: (sponsorId: string) => QueryKey;
|
|
1845
|
+
declare const SET_SPONSOR_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SPONSOR_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSponsor>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1846
|
+
interface GetSponsorProps extends SingleQueryParams {
|
|
1847
|
+
accountId: string;
|
|
1848
|
+
}
|
|
1849
|
+
declare const GetSponsor: ({ accountId, clientApi, }: GetSponsorProps) => Promise<ConnectedXMResponse<Account>>;
|
|
1850
|
+
declare const useGetSponsor: (accountId: string, options?: SingleQueryOptions<ReturnType<typeof GetSponsor>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1851
|
+
|
|
1852
|
+
declare const SPONSORS_QUERY_KEY: () => QueryKey;
|
|
1853
|
+
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;
|
|
1854
|
+
interface GetSponsorsProps extends InfiniteQueryParams {
|
|
1855
|
+
}
|
|
1856
|
+
declare const GetSponsors: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1857
|
+
declare const useGetSponsors: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSponsors>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1858
|
+
|
|
1859
|
+
interface MutationParams {
|
|
1860
|
+
clientApi: AxiosInstance;
|
|
1088
1861
|
locale?: string;
|
|
1862
|
+
queryClient?: QueryClient;
|
|
1863
|
+
}
|
|
1864
|
+
interface MutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<TResponseData> | Error, TMutationParams> {
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1867
|
+
interface FollowAccountParams extends MutationParams {
|
|
1868
|
+
accountId: string;
|
|
1869
|
+
}
|
|
1870
|
+
declare const FollowAccount: ({ accountId, clientApi, queryClient, locale, }: FollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
1871
|
+
declare const useFollowAccount: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof FollowAccount>>, Omit<FollowAccountParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<FollowAccountParams, "queryClient" | "clientApi">, unknown>;
|
|
1872
|
+
|
|
1873
|
+
interface UnfollowAccountParams extends MutationParams {
|
|
1874
|
+
accountId: string;
|
|
1875
|
+
}
|
|
1876
|
+
declare const UnfollowAccount: ({ accountId, clientApi, queryClient, locale, }: UnfollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
1877
|
+
declare const useUnfollowAccount: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnfollowAccount>>, Omit<UnfollowAccountParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<UnfollowAccountParams, "queryClient" | "clientApi">, unknown>;
|
|
1878
|
+
|
|
1879
|
+
interface DeleteReshareParams extends MutationParams {
|
|
1880
|
+
activityId: string;
|
|
1881
|
+
}
|
|
1882
|
+
declare const DeleteReshare: ({ activityId, clientApi, queryClient, }: DeleteReshareParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1883
|
+
declare const useDeleteReshare: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteReshare>>, Omit<DeleteReshareParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<DeleteReshareParams, "queryClient" | "clientApi">, unknown>;
|
|
1884
|
+
|
|
1885
|
+
interface LikeActivityParams extends MutationParams {
|
|
1886
|
+
activityId: string;
|
|
1887
|
+
}
|
|
1888
|
+
declare const LikeActivity: ({ activityId, clientApi, queryClient, }: LikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1889
|
+
declare const useLikeActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof LikeActivity>>, Omit<LikeActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<LikeActivityParams, "queryClient" | "clientApi">, unknown>;
|
|
1890
|
+
|
|
1891
|
+
interface ReshareActivityParams extends MutationParams {
|
|
1892
|
+
activityId: string;
|
|
1893
|
+
}
|
|
1894
|
+
declare const ReshareActivity: ({ activityId, queryClient, clientApi, }: ReshareActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1895
|
+
declare const useReshareActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof ReshareActivity>>, Omit<ReshareActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<ReshareActivityParams, "queryClient" | "clientApi">, unknown>;
|
|
1896
|
+
|
|
1897
|
+
interface UnlikeActivityParams extends MutationParams {
|
|
1898
|
+
activityId: string;
|
|
1899
|
+
}
|
|
1900
|
+
declare const UnlikeActivity: ({ activityId, clientApi, queryClient, }: UnlikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1901
|
+
declare const useUnlikeActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UnlikeActivity>>, Omit<UnlikeActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<UnlikeActivityParams, "queryClient" | "clientApi">, unknown>;
|
|
1902
|
+
|
|
1903
|
+
interface AddCommunityEventParams extends MutationParams {
|
|
1904
|
+
communityId: string;
|
|
1905
|
+
eventId: string;
|
|
1906
|
+
}
|
|
1907
|
+
declare const AddCommunityEvent: ({ communityId, eventId, clientApi, queryClient, }: AddCommunityEventParams) => Promise<ConnectedXMResponse<Event>>;
|
|
1908
|
+
declare const useAddCommunityEvent: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddCommunityEvent>>, Omit<AddCommunityEventParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Event>, Error | axios.AxiosError<ConnectedXMResponse<Event>, any>, Omit<AddCommunityEventParams, "queryClient" | "clientApi">, unknown>;
|
|
1909
|
+
|
|
1910
|
+
interface CreateCommunityAnnouncementParams extends MutationParams {
|
|
1911
|
+
communityId: string;
|
|
1912
|
+
title: string;
|
|
1913
|
+
html: string;
|
|
1914
|
+
email: boolean;
|
|
1915
|
+
push: boolean;
|
|
1916
|
+
}
|
|
1917
|
+
declare const CreateCommunityAnnouncement: ({ communityId, title, html, email, push, clientApi, queryClient, }: CreateCommunityAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
|
|
1918
|
+
declare const useCreateCommunityAnnouncement: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateCommunityAnnouncement>>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Announcement>, Error | axios.AxiosError<ConnectedXMResponse<Announcement>, any>, Omit<CreateCommunityAnnouncementParams, "queryClient" | "clientApi">, unknown>;
|
|
1919
|
+
|
|
1920
|
+
interface RemoveCommunityEventParams extends MutationParams {
|
|
1921
|
+
communityId: string;
|
|
1922
|
+
eventId: string;
|
|
1923
|
+
}
|
|
1924
|
+
declare const RemoveCommunityEvent: ({ communityId, eventId, clientApi, queryClient, }: RemoveCommunityEventParams) => Promise<ConnectedXMResponse<null>>;
|
|
1925
|
+
declare const useRemoveCommunityEvent: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveCommunityEvent>>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<RemoveCommunityEventParams, "queryClient" | "clientApi">, unknown>;
|
|
1926
|
+
|
|
1927
|
+
interface UpdateCommunityParams extends MutationParams {
|
|
1928
|
+
communityId: string;
|
|
1929
|
+
description?: string;
|
|
1930
|
+
externalUrl?: string;
|
|
1931
|
+
base64?: string;
|
|
1932
|
+
}
|
|
1933
|
+
declare const UpdateCommunity: ({ communityId, description, externalUrl, base64, clientApi, queryClient, locale, }: UpdateCommunityParams) => Promise<ConnectedXMResponse<Community>>;
|
|
1934
|
+
declare const useUpdateCommunity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateCommunity>>, Omit<UpdateCommunityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Community>, Error | axios.AxiosError<ConnectedXMResponse<Community>, any>, Omit<UpdateCommunityParams, "queryClient" | "clientApi">, unknown>;
|
|
1935
|
+
|
|
1936
|
+
interface CompleteEventActivationParams extends MutationParams {
|
|
1937
|
+
eventId: string;
|
|
1938
|
+
activationId: string;
|
|
1939
|
+
code?: string;
|
|
1940
|
+
}
|
|
1941
|
+
declare const CompleteEventActivation: ({ eventId, activationId, code, clientApi, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
|
|
1942
|
+
declare const useCompleteEventActivation: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CompleteEventActivation>>, Omit<CompleteEventActivationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventActivation>, Error | axios.AxiosError<ConnectedXMResponse<EventActivation>, any>, Omit<CompleteEventActivationParams, "queryClient" | "clientApi">, unknown>;
|
|
1943
|
+
|
|
1944
|
+
interface CreateEventLeadParams extends MutationParams {
|
|
1945
|
+
eventId: string;
|
|
1946
|
+
purchaseId: string;
|
|
1947
|
+
note?: string;
|
|
1948
|
+
}
|
|
1949
|
+
declare const CreateEventLead: ({ eventId, purchaseId, note, clientApi, queryClient, }: CreateEventLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
1950
|
+
declare const useCreateEventLead: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateEventLead>>, Omit<CreateEventLeadParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Lead>, Error | axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<CreateEventLeadParams, "queryClient" | "clientApi">, unknown>;
|
|
1951
|
+
|
|
1952
|
+
interface AddSelfChatChannelMemberParams extends MutationParams {
|
|
1953
|
+
channelId: string;
|
|
1954
|
+
accountId: string;
|
|
1955
|
+
}
|
|
1956
|
+
declare const AddSelfChatChannelMember: ({ channelId, accountId, clientApi, queryClient, }: AddSelfChatChannelMemberParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
1957
|
+
declare const useAddSelfChatChannelMember: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfChatChannelMember>>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<AddSelfChatChannelMemberParams, "queryClient" | "clientApi">, unknown>;
|
|
1958
|
+
|
|
1959
|
+
interface CreateSelfChatChannelParams extends MutationParams {
|
|
1960
|
+
name: string;
|
|
1961
|
+
accountIds: string[];
|
|
1962
|
+
}
|
|
1963
|
+
declare const CreateSelfChatChannel: ({ name, accountIds, clientApi, queryClient, }: CreateSelfChatChannelParams) => Promise<ConnectedXMResponse<ChatChannel>>;
|
|
1964
|
+
declare const useCreateSelfChatChannel: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannel>>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannel>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannel>, any>, Omit<CreateSelfChatChannelParams, "queryClient" | "clientApi">, unknown>;
|
|
1965
|
+
|
|
1966
|
+
interface CreateSelfChatChannelMessageParams extends MutationParams {
|
|
1967
|
+
channelId: string;
|
|
1968
|
+
text: string;
|
|
1969
|
+
}
|
|
1970
|
+
declare const CreateSelfChatChannelMessage: ({ channelId, text, queryClient, clientApi, }: CreateSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<ChatChannelMessage>>;
|
|
1971
|
+
declare const useCreateSelfChatChannelMessage: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfChatChannelMessage>>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannelMessage>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannelMessage>, any>, Omit<CreateSelfChatChannelMessageParams, "queryClient" | "clientApi">, unknown>;
|
|
1972
|
+
|
|
1973
|
+
interface DeleteSelfChatChannelParams extends MutationParams {
|
|
1974
|
+
channelId: string;
|
|
1975
|
+
}
|
|
1976
|
+
declare const DeleteSelfChatChannel: ({ channelId, clientApi, queryClient, }: DeleteSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
|
|
1977
|
+
declare const useDeleteSelfChatChannel: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannel>>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfChatChannelParams, "queryClient" | "clientApi">, unknown>;
|
|
1978
|
+
|
|
1979
|
+
interface DeleteSelfChatChannelMessageParams extends MutationParams {
|
|
1980
|
+
channelId: string;
|
|
1981
|
+
messageId: string;
|
|
1982
|
+
}
|
|
1983
|
+
declare const DeleteSelfChatChannelMessage: ({ channelId, messageId, clientApi, queryClient, }: DeleteSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<null>>;
|
|
1984
|
+
declare const useDeleteSelfChatChannelMessage: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfChatChannelMessage>>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfChatChannelMessageParams, "queryClient" | "clientApi">, unknown>;
|
|
1985
|
+
|
|
1986
|
+
interface LeaveSelfChatChannelParams extends MutationParams {
|
|
1987
|
+
channelId: string;
|
|
1988
|
+
}
|
|
1989
|
+
declare const LeaveSelfChatChannel: ({ channelId, clientApi, queryClient, }: LeaveSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
|
|
1990
|
+
declare const useLeaveSelfChatChannel: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof LeaveSelfChatChannel>>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<LeaveSelfChatChannelParams, "queryClient" | "clientApi">, unknown>;
|
|
1991
|
+
|
|
1992
|
+
interface UpdateSelfChatChannelNotificationsParams extends MutationParams {
|
|
1993
|
+
channelId: string;
|
|
1994
|
+
notifications: boolean;
|
|
1995
|
+
}
|
|
1996
|
+
declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApi, queryClient, locale, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
1997
|
+
declare const useUpdateSelfChatChannelNotifications: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfChatChannelNotifications>>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<ChatChannelMember>, Error | axios.AxiosError<ConnectedXMResponse<ChatChannelMember>, any>, Omit<UpdateSelfChatChannelNotificationsParams, "queryClient" | "clientApi">, unknown>;
|
|
1998
|
+
|
|
1999
|
+
interface RegisterCancelledEventRegistrationParams extends MutationParams {
|
|
2000
|
+
eventId: string;
|
|
2001
|
+
registrationId: string;
|
|
2002
|
+
}
|
|
2003
|
+
declare const RegisterCancelledEventRegistration: ({ eventId, registrationId, clientApi, queryClient, locale, }: RegisterCancelledEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2004
|
+
declare const useRegisterCancelledEventRegistration: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RegisterCancelledEventRegistration>>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RegisterCancelledEventRegistrationParams, "queryClient" | "clientApi">, unknown>;
|
|
2005
|
+
|
|
2006
|
+
interface SelectSelfEventRegistrationCouponParams extends MutationParams {
|
|
2007
|
+
eventId: string;
|
|
2008
|
+
registrationId: string;
|
|
2009
|
+
couponId: string;
|
|
2010
|
+
}
|
|
2011
|
+
declare const SelectSelfEventRegistrationCoupon: ({ eventId, registrationId, couponId, clientApi, queryClient, locale, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2012
|
+
declare const useSelectSelfEventRegistrationCoupon: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApi">, unknown>;
|
|
2013
|
+
|
|
2014
|
+
interface CaptureSelfEventRegistrationPaymentParams extends MutationParams {
|
|
2015
|
+
eventId: string;
|
|
2016
|
+
registrationId: string;
|
|
2017
|
+
}
|
|
2018
|
+
declare const CaptureSelfEventRegistrationPayment: ({ eventId, registrationId, clientApi, queryClient, locale, }: CaptureSelfEventRegistrationPaymentParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2019
|
+
declare const useCaptureSelfEventRegistrationPayment: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CaptureSelfEventRegistrationPayment>>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApi">, unknown>;
|
|
2020
|
+
|
|
2021
|
+
interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
|
|
2022
|
+
eventId: string;
|
|
2023
|
+
registrationId: string;
|
|
2024
|
+
}
|
|
2025
|
+
declare const RemoveSelfEventRegistrationCoupon: ({ eventId, registrationId, clientApi, queryClient, locale, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2026
|
+
declare const useRemoveSelfEventRegistrationCoupon: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApi">, unknown>;
|
|
2027
|
+
|
|
2028
|
+
interface RemoveSelfEventRegistrationTicketParams extends MutationParams {
|
|
2029
|
+
eventId: string;
|
|
2030
|
+
registrationId: string;
|
|
2031
|
+
}
|
|
2032
|
+
declare const RemoveSelfEventRegistrationTicket: ({ eventId, registrationId, clientApi, queryClient, locale, }: RemoveSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2033
|
+
declare const useRemoveSelfEventRegistrationTicket: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationTicket>>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApi">, unknown>;
|
|
2034
|
+
|
|
2035
|
+
interface SelectSelfEventRegistrationTicketParams extends MutationParams {
|
|
2036
|
+
eventId: string;
|
|
2037
|
+
registrationId: string;
|
|
2038
|
+
ticketId: string;
|
|
2039
|
+
}
|
|
2040
|
+
declare const SelectSelfEventRegistrationTicket: ({ eventId, registrationId, ticketId, clientApi, queryClient, locale, }: SelectSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2041
|
+
declare const useSelectSelfEventRegistrationTicket: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationTicket>>, Omit<SelectSelfEventRegistrationTicketParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationTicketParams, "queryClient" | "clientApi">, unknown>;
|
|
2042
|
+
|
|
2043
|
+
interface SubmitStripe {
|
|
2044
|
+
type: "stripe";
|
|
2045
|
+
paymentMethodId: string;
|
|
2046
|
+
}
|
|
2047
|
+
interface SubmitPaypal {
|
|
2048
|
+
type: "paypal";
|
|
2049
|
+
orderId: string;
|
|
2050
|
+
}
|
|
2051
|
+
type SubmitPayment = SubmitStripe | SubmitPaypal;
|
|
2052
|
+
interface SubmitStripeResponse {
|
|
2053
|
+
status: string;
|
|
2054
|
+
clientSecret: string;
|
|
2055
|
+
registration: Registration;
|
|
2056
|
+
}
|
|
2057
|
+
interface SubmitPaypalResponse {
|
|
2058
|
+
registration: Registration;
|
|
2059
|
+
}
|
|
2060
|
+
type SubmitResponse = SubmitStripeResponse | SubmitPaypalResponse;
|
|
2061
|
+
interface SubmitSelfEventRegistrationParams extends MutationParams {
|
|
2062
|
+
eventId: string;
|
|
2063
|
+
registrationId: string;
|
|
2064
|
+
payment?: SubmitPayment;
|
|
2065
|
+
}
|
|
2066
|
+
declare const SubmitSelfEventRegistration: ({ eventId, registrationId, payment, clientApi, queryClient, locale, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2067
|
+
declare const useSubmitSelfEventRegistration: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistration>>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApi">, unknown>;
|
|
2068
|
+
|
|
2069
|
+
interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
|
|
2070
|
+
eventId: string;
|
|
2071
|
+
registrationId: string;
|
|
2072
|
+
responses: BaseRegistrationQuestionResponse[];
|
|
2073
|
+
}
|
|
2074
|
+
declare const UpdateSelfEventRegistrationResponses: ({ eventId, registrationId, responses, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2075
|
+
declare const useUpdateSelfEventRegistrationResponses: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApi">, unknown>;
|
|
2076
|
+
|
|
2077
|
+
interface CancelEventRegistrationParams extends MutationParams {
|
|
2078
|
+
eventId: string;
|
|
2079
|
+
registrationId: string;
|
|
2080
|
+
}
|
|
2081
|
+
declare const CancelEventRegistration: ({ eventId, registrationId, clientApi, queryClient, locale, }: CancelEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2082
|
+
declare const useCancelEventRegistration: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelEventRegistration>>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CancelEventRegistrationParams, "queryClient" | "clientApi">, unknown>;
|
|
2083
|
+
|
|
2084
|
+
interface CancelTransferParams extends MutationParams {
|
|
2085
|
+
transferId: string;
|
|
2086
|
+
eventId: string;
|
|
2087
|
+
registrationId: string;
|
|
2088
|
+
}
|
|
2089
|
+
declare const CancelTransfer: ({ transferId, eventId, registrationId, clientApi, queryClient, }: CancelTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2090
|
+
declare const useCancelTransfer: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelTransfer>>, Omit<CancelTransferParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<CancelTransferParams, "queryClient" | "clientApi">, unknown>;
|
|
2091
|
+
|
|
2092
|
+
interface TransferPurchaseParams extends MutationParams {
|
|
2093
|
+
email: string;
|
|
2094
|
+
purchaseId: string;
|
|
2095
|
+
eventId: string;
|
|
2096
|
+
registrationId: string;
|
|
2097
|
+
}
|
|
2098
|
+
declare const TransferPurchase: ({ email, purchaseId, eventId, registrationId, clientApi, queryClient, }: TransferPurchaseParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2099
|
+
declare const useTransferPurchase: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPurchase>>, Omit<TransferPurchaseParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<TransferPurchaseParams, "queryClient" | "clientApi">, unknown>;
|
|
2100
|
+
|
|
2101
|
+
interface UpdateSelfEventRegistrationResponseParams extends MutationParams {
|
|
2102
|
+
eventId: string;
|
|
2103
|
+
registrationId: string;
|
|
2104
|
+
questionId: string;
|
|
2105
|
+
response: string;
|
|
2106
|
+
}
|
|
2107
|
+
declare const UpdateSelfEventRegistrationResponse: ({ eventId, registrationId, questionId, response, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationResponseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2108
|
+
declare const useUpdateSelfEventRegistrationResponse: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponse>>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApi">, unknown>;
|
|
2109
|
+
|
|
2110
|
+
interface AcceptTransferParams extends MutationParams {
|
|
2111
|
+
transferId: string;
|
|
2112
|
+
}
|
|
2113
|
+
declare const AcceptTransfer: ({ transferId, clientApi, queryClient, }: AcceptTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2114
|
+
declare const useAcceptTransfer: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AcceptTransfer>>, Omit<AcceptTransferParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<AcceptTransferParams, "queryClient" | "clientApi">, unknown>;
|
|
2115
|
+
|
|
2116
|
+
interface AddSelfDelegateParams extends MutationParams {
|
|
2117
|
+
email: string;
|
|
2118
|
+
}
|
|
2119
|
+
declare const AddSelfDelegate: ({ email, clientApi, queryClient, }: AddSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2120
|
+
declare const useAddSelfDelegate: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfDelegate>>, Omit<AddSelfDelegateParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfDelegateParams, "queryClient" | "clientApi">, unknown>;
|
|
2121
|
+
|
|
2122
|
+
interface AddSelfEventListingSessionParams extends MutationParams {
|
|
2123
|
+
eventId: string;
|
|
2124
|
+
session: Omit<Session, "id" | "slug" | "event" | "sortOrder" | "tracks" | "nonSession" | "createdAt" | "updatedAt" | "speakers" | "sponsors" | "longDescription" | "image" | "streamInput">;
|
|
2125
|
+
}
|
|
2126
|
+
declare const AddSelfEventListingSession: ({ eventId, session, clientApi, queryClient, locale, }: AddSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2127
|
+
declare const useAddSelfEventListingSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSession>>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSessionParams, "queryClient" | "clientApi">, unknown>;
|
|
2128
|
+
|
|
2129
|
+
interface EventListingSpeaker {
|
|
2130
|
+
firstName: string | null;
|
|
2131
|
+
lastName: string | null;
|
|
2132
|
+
title: string | null;
|
|
2133
|
+
company: string | null;
|
|
2134
|
+
bio: string | null;
|
|
2135
|
+
}
|
|
2136
|
+
interface AddSelfEventListingSpeakerParams extends MutationParams {
|
|
2137
|
+
eventId: string;
|
|
2138
|
+
speaker: EventListingSpeaker;
|
|
2139
|
+
}
|
|
2140
|
+
declare const AddSelfEventListingSpeaker: ({ eventId, speaker, clientApi, queryClient, locale, }: AddSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2141
|
+
declare const useAddSelfEventListingSpeaker: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSpeaker>>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSpeakerParams, "queryClient" | "clientApi">, unknown>;
|
|
2142
|
+
|
|
2143
|
+
interface AddSelfEventListingSponsorParams extends MutationParams {
|
|
2144
|
+
eventId: string;
|
|
2145
|
+
sponsor: Account;
|
|
2146
|
+
}
|
|
2147
|
+
declare const AddSelfEventListingSponsor: ({ eventId, sponsor, clientApi, queryClient, locale, }: AddSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2148
|
+
declare const useAddSelfEventListingSponsor: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventListingSponsor>>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<AddSelfEventListingSponsorParams, "queryClient" | "clientApi">, unknown>;
|
|
2149
|
+
|
|
2150
|
+
interface AddSelfEventSessionParams extends MutationParams {
|
|
2151
|
+
eventId: string;
|
|
2152
|
+
sessionId: string;
|
|
2153
|
+
}
|
|
2154
|
+
declare const AddSelfEventSession: ({ eventId, sessionId, clientApi, queryClient, }: AddSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2155
|
+
declare const useAddSelfEventSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventSession>>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApi">, unknown>;
|
|
2156
|
+
|
|
2157
|
+
interface CreateEvent {
|
|
2158
|
+
name: string;
|
|
2159
|
+
shortDescription: string;
|
|
2160
|
+
eventStart: string;
|
|
2161
|
+
eventEnd: string;
|
|
2162
|
+
eventType: keyof typeof EventType;
|
|
2163
|
+
venue?: string;
|
|
2164
|
+
address1?: string;
|
|
2165
|
+
address2?: string;
|
|
2166
|
+
city?: string;
|
|
2167
|
+
state?: string;
|
|
2168
|
+
zip?: string;
|
|
2169
|
+
country?: string;
|
|
2170
|
+
externalUrl?: string;
|
|
2171
|
+
meetingUrl?: string;
|
|
2172
|
+
registration?: boolean;
|
|
2173
|
+
registrationLimit?: string;
|
|
2174
|
+
}
|
|
2175
|
+
interface CreateSelfEventListingParams extends MutationParams {
|
|
2176
|
+
event: CreateEvent;
|
|
2177
|
+
base64?: any;
|
|
2178
|
+
communityId?: string;
|
|
2179
|
+
sponsorIds?: string[];
|
|
2180
|
+
speakers?: Speaker[];
|
|
2181
|
+
sessions?: Session[];
|
|
2182
|
+
}
|
|
2183
|
+
declare const CreateSelfEventListing: ({ event, base64, communityId, sponsorIds, speakers, sessions, clientApi, queryClient, locale, }: CreateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2184
|
+
declare const useCreateSelfEventListing: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventListing>>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<CreateSelfEventListingParams, "queryClient" | "clientApi">, unknown>;
|
|
2185
|
+
|
|
2186
|
+
interface DeleteSelfParams extends MutationParams {
|
|
2187
|
+
}
|
|
2188
|
+
declare const DeleteSelf: ({ clientApi, queryClient, }: DeleteSelfParams) => Promise<any>;
|
|
2189
|
+
declare const useDeleteSelf: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelf>>, Omit<DeleteSelfParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<any, Error | axios.AxiosError<any, any>, Omit<DeleteSelfParams, "queryClient" | "clientApi">, unknown>;
|
|
2190
|
+
|
|
2191
|
+
interface DeleteSelfPushDeviceParams extends MutationParams {
|
|
2192
|
+
pushDeviceId: string;
|
|
2193
|
+
}
|
|
2194
|
+
declare const DeleteSelfPushDevice: ({ pushDeviceId, clientApi, queryClient, }: DeleteSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
2195
|
+
declare const useDeleteSelfPushDevice: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfPushDevice>>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<PushDevice>, Error | axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApi">, unknown>;
|
|
2196
|
+
|
|
2197
|
+
interface RejectTransferParams extends MutationParams {
|
|
2198
|
+
transferId: string;
|
|
2199
|
+
}
|
|
2200
|
+
declare const RejectTransfer: ({ transferId, clientApi, queryClient, }: RejectTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2201
|
+
declare const useRejectTransfer: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RejectTransfer>>, Omit<RejectTransferParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Transfer>, Error | axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<RejectTransferParams, "queryClient" | "clientApi">, unknown>;
|
|
2202
|
+
|
|
2203
|
+
interface RemoveSelfDelegateParams extends MutationParams {
|
|
2204
|
+
accountId: string;
|
|
2205
|
+
}
|
|
2206
|
+
declare const RemoveSelfDelegate: ({ accountId, clientApi, queryClient, }: RemoveSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2207
|
+
declare const useRemoveSelfDelegate: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfDelegate>>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApi">, unknown>;
|
|
2208
|
+
|
|
2209
|
+
interface RemoveSelfEventListingSessionParams extends MutationParams {
|
|
2210
|
+
eventId: string;
|
|
2211
|
+
sessionId: string;
|
|
2212
|
+
}
|
|
2213
|
+
declare const RemoveSelfEventListingSession: ({ eventId, sessionId, clientApi, queryClient, locale, }: RemoveSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2214
|
+
declare const useRemoveSelfEventListingSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSession>>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSessionParams, "queryClient" | "clientApi">, unknown>;
|
|
2215
|
+
|
|
2216
|
+
interface RemoveSelfEventListingSpeakerParams extends MutationParams {
|
|
2217
|
+
eventId: string;
|
|
2218
|
+
speakerId: string;
|
|
2219
|
+
}
|
|
2220
|
+
declare const RemoveSelfEventListingSpeaker: ({ eventId, speakerId, clientApi, queryClient, locale, }: RemoveSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2221
|
+
declare const useRemoveSelfEventListingSpeaker: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSpeaker>>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSpeakerParams, "queryClient" | "clientApi">, unknown>;
|
|
2222
|
+
|
|
2223
|
+
interface RemoveSelfEventListingSponsorParams extends MutationParams {
|
|
2224
|
+
eventId: string;
|
|
2225
|
+
sponsorId: string;
|
|
2226
|
+
}
|
|
2227
|
+
declare const RemoveSelfEventListingSponsor: ({ eventId, sponsorId, clientApi, queryClient, locale, }: RemoveSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2228
|
+
declare const useRemoveSelfEventListingSponsor: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventListingSponsor>>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveSelfEventListingSponsorParams, "queryClient" | "clientApi">, unknown>;
|
|
2229
|
+
|
|
2230
|
+
interface RemoveSelfEventSessionParams extends MutationParams {
|
|
2231
|
+
eventId: string;
|
|
2232
|
+
sessionId: string;
|
|
2233
|
+
}
|
|
2234
|
+
declare const RemoveSelfEventSession: ({ eventId, sessionId, clientApi, queryClient, }: RemoveSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2235
|
+
declare const useRemoveSelfEventSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventSession>>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApi">, unknown>;
|
|
2236
|
+
|
|
2237
|
+
interface CreateActivity {
|
|
2238
|
+
message: string;
|
|
2239
|
+
contentId?: string;
|
|
2240
|
+
eventId?: string;
|
|
2241
|
+
communityId?: string;
|
|
2242
|
+
commentedId?: string;
|
|
2243
|
+
}
|
|
2244
|
+
interface SelfCreateActivityParams extends MutationParams {
|
|
2245
|
+
activity: CreateActivity;
|
|
2246
|
+
base64Image?: any;
|
|
2247
|
+
}
|
|
2248
|
+
declare const SelfCreateActivity: ({ activity, base64Image, clientApi, queryClient, locale, }: SelfCreateActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
2249
|
+
declare const useSelfCreateActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCreateActivity>>, Omit<SelfCreateActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<SelfCreateActivityParams, "queryClient" | "clientApi">, unknown>;
|
|
2250
|
+
|
|
2251
|
+
interface DeleteActivityParams extends MutationParams {
|
|
2252
|
+
activityId: string;
|
|
2253
|
+
}
|
|
2254
|
+
declare const DeleteActivity: ({ activityId, clientApi, queryClient, }: DeleteActivityParams) => Promise<ConnectedXMResponse<null>>;
|
|
2255
|
+
declare const useDeleteActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteActivity>>, Omit<DeleteActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteActivityParams, "queryClient" | "clientApi">, unknown>;
|
|
2256
|
+
|
|
2257
|
+
interface SelfJoinCommunityParams extends MutationParams {
|
|
2258
|
+
communityId: string;
|
|
2259
|
+
}
|
|
2260
|
+
declare const SelfJoinCommunity: ({ communityId, clientApi, queryClient, }: SelfJoinCommunityParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
|
|
2261
|
+
declare const useSelfJoinCommunity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfJoinCommunity>>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CommunityMembership>, Error | axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfJoinCommunityParams, "queryClient" | "clientApi">, unknown>;
|
|
2262
|
+
|
|
2263
|
+
interface SelfLeaveCommunityParams extends MutationParams {
|
|
2264
|
+
communityId: string;
|
|
2265
|
+
}
|
|
2266
|
+
declare const SelfLeaveCommunity: ({ communityId, clientApi, queryClient, }: SelfLeaveCommunityParams) => Promise<ConnectedXMResponse<null>>;
|
|
2267
|
+
declare const useSelfLeaveCommunity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfLeaveCommunity>>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<SelfLeaveCommunityParams, "queryClient" | "clientApi">, unknown>;
|
|
2268
|
+
|
|
2269
|
+
interface SelfUpdateCommunityMembershipParams extends MutationParams {
|
|
2270
|
+
communityId: string;
|
|
2271
|
+
membership: Partial<CommunityMembership>;
|
|
2272
|
+
}
|
|
2273
|
+
declare const SelfUpdateCommunityMembership: ({ communityId, membership, clientApi, queryClient, locale, }: SelfUpdateCommunityMembershipParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
|
|
2274
|
+
declare const useSelfUpdateCommunityMembership: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfUpdateCommunityMembership>>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CommunityMembership>, Error | axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApi">, unknown>;
|
|
2275
|
+
|
|
2276
|
+
interface UpdateSelfParams extends MutationParams {
|
|
2277
|
+
firstName: string;
|
|
2278
|
+
lastName: string;
|
|
2279
|
+
phone: string;
|
|
2280
|
+
title: string;
|
|
2281
|
+
company: string;
|
|
2282
|
+
bio: string;
|
|
2283
|
+
dietaryRestrictions: string;
|
|
2284
|
+
address1: string;
|
|
2285
|
+
address2: string;
|
|
2286
|
+
city: string;
|
|
2287
|
+
state: string;
|
|
2288
|
+
zip: string;
|
|
2289
|
+
country: string;
|
|
2290
|
+
facebook: string;
|
|
2291
|
+
twitter: string;
|
|
2292
|
+
instagram: string;
|
|
2293
|
+
tikTok: string;
|
|
2294
|
+
linkedIn: string;
|
|
2295
|
+
youtube: string;
|
|
2296
|
+
discord: string;
|
|
2297
|
+
video: string;
|
|
2298
|
+
website: string;
|
|
2299
|
+
username: string;
|
|
2300
|
+
}
|
|
2301
|
+
declare const UpdateSelf: ({ clientApi, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
|
|
2302
|
+
declare const useUpdateSelf: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Self>, Error | axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApi">, unknown>;
|
|
2303
|
+
|
|
2304
|
+
interface UpdateListing {
|
|
2305
|
+
eventType: keyof typeof EventType;
|
|
2306
|
+
name: string;
|
|
2307
|
+
shortDescription: string;
|
|
2308
|
+
eventStart: string;
|
|
2309
|
+
eventEnd: string;
|
|
2310
|
+
registration: boolean;
|
|
2311
|
+
publicRegistrants: boolean;
|
|
2312
|
+
newActivityCreatorEmailNotification: boolean;
|
|
2313
|
+
newActivityCreatorPushNotification: boolean;
|
|
2314
|
+
timezone: string | null;
|
|
2315
|
+
meetingUrl: string | null;
|
|
2316
|
+
venue: string | null;
|
|
2317
|
+
address1: string | null;
|
|
2318
|
+
address2: string | null;
|
|
2319
|
+
city: string | null;
|
|
2320
|
+
state: string | null;
|
|
2321
|
+
zip: string | null;
|
|
2322
|
+
country: string | null;
|
|
2323
|
+
registrationLimit: number | null;
|
|
2324
|
+
externalUrl: string | null;
|
|
2325
|
+
}
|
|
2326
|
+
interface UpdateSelfEventListingParams extends MutationParams {
|
|
2327
|
+
eventId: string;
|
|
2328
|
+
event: UpdateListing;
|
|
2329
|
+
base64?: any;
|
|
2330
|
+
}
|
|
2331
|
+
declare const UpdateSelfEventListing: ({ eventId, event, base64, clientApi, queryClient, locale, }: UpdateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2332
|
+
declare const useUpdateSelfEventListing: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListing>>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingParams, "queryClient" | "clientApi">, unknown>;
|
|
2333
|
+
|
|
2334
|
+
interface UpdateSelfEventListingSessionParams extends MutationParams {
|
|
2335
|
+
eventId: string;
|
|
2336
|
+
session: any;
|
|
2337
|
+
sessionId: string;
|
|
2338
|
+
}
|
|
2339
|
+
declare const UpdateSelfEventListingSession: ({ eventId, session, sessionId, clientApi, queryClient, locale, }: UpdateSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2340
|
+
declare const useUpdateSelfEventListingSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSession>>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSessionParams, "queryClient" | "clientApi">, unknown>;
|
|
2341
|
+
|
|
2342
|
+
interface UpdateSelfEventListingSpeakerParams extends MutationParams {
|
|
2343
|
+
eventId: string;
|
|
2344
|
+
speaker: any;
|
|
2345
|
+
speakerId: string;
|
|
2346
|
+
buffer?: string;
|
|
2347
|
+
}
|
|
2348
|
+
declare const UpdateSelfEventListingSpeaker: ({ eventId, speaker, speakerId, buffer, clientApi, queryClient, locale, }: UpdateSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2349
|
+
declare const useUpdateSelfEventListingSpeaker: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventListingSpeaker>>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<EventListing>, Error | axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<UpdateSelfEventListingSpeakerParams, "queryClient" | "clientApi">, unknown>;
|
|
2350
|
+
|
|
2351
|
+
interface UpdateSelfImageParams extends MutationParams {
|
|
2352
|
+
base64: string;
|
|
2353
|
+
}
|
|
2354
|
+
declare const UpdateSelfImage: ({ base64, clientApi, queryClient, }: UpdateSelfImageParams) => Promise<ConnectedXMResponse<Self>>;
|
|
2355
|
+
declare const useUpdateSelfImage: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfImage>>, Omit<UpdateSelfImageParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Self>, Error | axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfImageParams, "queryClient" | "clientApi">, unknown>;
|
|
2356
|
+
|
|
2357
|
+
interface UpdateSelfLeadParams extends MutationParams {
|
|
2358
|
+
leadId: string;
|
|
2359
|
+
note: string;
|
|
2360
|
+
}
|
|
2361
|
+
declare const UpdateSelfLead: ({ leadId, note, clientApi, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
2362
|
+
declare const useUpdateSelfLead: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Lead>, Error | axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApi">, unknown>;
|
|
2363
|
+
|
|
2364
|
+
interface UpdateSelfNotificationPreferencesParams extends MutationParams {
|
|
2365
|
+
newFollowerPush?: boolean;
|
|
2366
|
+
newFollowerEmail?: boolean;
|
|
2367
|
+
likePush?: boolean;
|
|
2368
|
+
resharePush?: boolean;
|
|
2369
|
+
commentPush?: boolean;
|
|
2370
|
+
transferPush?: boolean;
|
|
2371
|
+
transferEmail?: boolean;
|
|
2372
|
+
supportTicketConfirmationEmail?: boolean;
|
|
2373
|
+
chatPush?: boolean;
|
|
2374
|
+
chatUnreadPush?: boolean;
|
|
2375
|
+
chatUnreadEmail?: boolean;
|
|
2376
|
+
}
|
|
2377
|
+
declare const UpdateSelfNotificationPreferences: ({ clientApi, queryClient, locale, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
|
|
2378
|
+
declare const useUpdateSelfNotificationPreferences: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfNotificationPreferences>>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<NotificationPreferences>, Error | axios.AxiosError<ConnectedXMResponse<NotificationPreferences>, any>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApi">, unknown>;
|
|
2379
|
+
|
|
2380
|
+
interface UpdateSelfPushDeviceParams extends MutationParams {
|
|
2381
|
+
pushDeviceId: string;
|
|
2382
|
+
pushDevice: PushDevice;
|
|
2383
|
+
}
|
|
2384
|
+
declare const UpdateSelfPushDevice: ({ pushDeviceId, pushDevice, clientApi, queryClient, }: UpdateSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
2385
|
+
declare const useUpdateSelfPushDevice: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfPushDevice>>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<PushDevice>, Error | axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<UpdateSelfPushDeviceParams, "queryClient" | "clientApi">, unknown>;
|
|
2386
|
+
|
|
2387
|
+
interface CreateSupportTicketParams extends MutationParams {
|
|
2388
|
+
type: "support" | "inquiry";
|
|
2389
|
+
email: string;
|
|
2390
|
+
request: any;
|
|
2391
|
+
eventId?: string;
|
|
2392
|
+
productId?: string;
|
|
2393
|
+
}
|
|
2394
|
+
declare const CreateSupportTicket: ({ type, email, request, eventId, productId, clientApi, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
|
|
2395
|
+
declare const useCreateSupportTicket: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicket>>, Omit<CreateSupportTicketParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<SupportTicket>, Error | axios.AxiosError<ConnectedXMResponse<SupportTicket>, any>, Omit<CreateSupportTicketParams, "queryClient" | "clientApi">, unknown>;
|
|
2396
|
+
|
|
2397
|
+
interface CreateTeamAccountParams extends MutationParams {
|
|
2398
|
+
name: string;
|
|
2399
|
+
email: string;
|
|
1089
2400
|
}
|
|
1090
|
-
declare const
|
|
2401
|
+
declare const CreateTeamAccount: ({ name, email, clientApi, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2402
|
+
declare const useCreateTeamAccount: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApi">, unknown>;
|
|
1091
2403
|
|
|
1092
|
-
export { type Account, type AccountShare, type AccountTier, AccountType, type Activity, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, 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 BasePurchase, type BaseRegistrationGuest, type BaseRegistrationPayment, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type Benefit, CacheIndividualQueries, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, type ComplimentaryTicket, ConnectedXM, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, Currency, type Event, type EventActivation, type EventActivationCompletion, type EventAllowlistMember, type EventListing, type EventPage, EventSource, EventType, type Faq, type FaqSection, GetErrorMessage, type Image, ImageType, type Instance, type Integrations, type Interest, type Lead, type Like, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type Notification, type NotificationPreferences, NotificationType, type Order, type OrgMembership, type Organization, type Page, type Purchase, type PushDevice, PushDeviceAppType, PushService, type Registration, type RegistrationEventDetails, type RegistrationGuest, type RegistrationPayment, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, type RegistrationSectionQuestion, RegistrationStatus, type Scan, type Self, type Series, type Session, type Speaker, type SponsorshipLevel, type StreamInput, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, 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, useSetAuthToken };
|
|
2404
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventPage, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationGuest, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelTransfer, type CancelTransferParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, type CheckoutResponse, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, type CreateEvent, CreateEventLead, type CreateEventLeadParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBenefits, type GetBenefitsProps, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, type Image, ImageType, type Instance, type Integrations, type Interest, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationGuest, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, type RegistrationSectionQuestion, RegistrationStatus, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationTicket, type RemoveSelfEventRegistrationTicketParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationTicket, type SelectSelfEventRegistrationTicketParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, UpdateSelfEventRegistrationResponse, type UpdateSelfEventRegistrationResponseParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, type User, isListing, isManagedCoupon, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventSession, useCancelEventRegistration, useCancelTransfer, useCaptureSelfEventRegistrationPayment, useClientAPI, useCompleteEventActivation, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationTicket, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationResponse, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice };
|