@connectedxm/client 0.0.55 → 0.0.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2556 -0
- package/dist/index.d.ts +2556 -0
- package/dist/index.js +10768 -0
- package/dist/index.mjs +8570 -0
- package/package.json +3 -2
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,2556 @@
|
|
|
1
|
+
import * as axios from 'axios';
|
|
2
|
+
import { AxiosError, AxiosInstance } from 'axios';
|
|
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';
|
|
7
|
+
|
|
8
|
+
interface ConnectedXMResponse<TData> {
|
|
9
|
+
status: "ok" | "error" | "redirect";
|
|
10
|
+
message: string;
|
|
11
|
+
data: TData;
|
|
12
|
+
count?: number;
|
|
13
|
+
url?: string;
|
|
14
|
+
}
|
|
15
|
+
declare enum RegistrationStatus {
|
|
16
|
+
registered = "registered",
|
|
17
|
+
checkedIn = "checkedIn",
|
|
18
|
+
checkedOut = "checkedOut",
|
|
19
|
+
waitlisted = "waitlisted",
|
|
20
|
+
cancelled = "cancelled",
|
|
21
|
+
transferred = "transferred",
|
|
22
|
+
invited = "invited",
|
|
23
|
+
rejected = "rejected",
|
|
24
|
+
draft = "draft"
|
|
25
|
+
}
|
|
26
|
+
interface BaseImage {
|
|
27
|
+
id: string;
|
|
28
|
+
uri: string;
|
|
29
|
+
width: number;
|
|
30
|
+
height: number;
|
|
31
|
+
moderation: "safe" | "warning";
|
|
32
|
+
}
|
|
33
|
+
declare enum ImageType {
|
|
34
|
+
admin = "admin",
|
|
35
|
+
people = "people",
|
|
36
|
+
activity = "activity",
|
|
37
|
+
banner = "banner"
|
|
38
|
+
}
|
|
39
|
+
interface Image extends BaseImage {
|
|
40
|
+
type: ImageType;
|
|
41
|
+
name: string | null;
|
|
42
|
+
description: string | null;
|
|
43
|
+
createdAt: string;
|
|
44
|
+
updatedAt: string;
|
|
45
|
+
}
|
|
46
|
+
declare const isTypeImage: (image: BaseImage | Image) => image is Image;
|
|
47
|
+
interface BaseIntegrations {
|
|
48
|
+
}
|
|
49
|
+
interface Integrations extends BaseIntegrations {
|
|
50
|
+
ghost: boolean;
|
|
51
|
+
ghostUrl: string | null;
|
|
52
|
+
ghostContentKey: string | null;
|
|
53
|
+
}
|
|
54
|
+
declare const isTypeIntegrations: (integrations: BaseIntegrations | Integrations) => integrations is Integrations;
|
|
55
|
+
interface BaseOrganization {
|
|
56
|
+
id: string;
|
|
57
|
+
slug: string;
|
|
58
|
+
name: string;
|
|
59
|
+
}
|
|
60
|
+
declare enum Currency {
|
|
61
|
+
USD = "USD"
|
|
62
|
+
}
|
|
63
|
+
interface Organization extends BaseOrganization {
|
|
64
|
+
email: string;
|
|
65
|
+
phone: string | null;
|
|
66
|
+
website: string | null;
|
|
67
|
+
address1: string | null;
|
|
68
|
+
address2: string | null;
|
|
69
|
+
city: string | null;
|
|
70
|
+
state: string | null;
|
|
71
|
+
country: string | null;
|
|
72
|
+
zip: string | null;
|
|
73
|
+
primaryColor: string | null;
|
|
74
|
+
secondaryColor: string | null;
|
|
75
|
+
userPoolId: string;
|
|
76
|
+
userPoolClientId: string;
|
|
77
|
+
logo: BaseImage | null;
|
|
78
|
+
logoId: string | null;
|
|
79
|
+
currency: Currency;
|
|
80
|
+
facebook: string | null;
|
|
81
|
+
twitter: string | null;
|
|
82
|
+
instagram: string | null;
|
|
83
|
+
linkedIn: string | null;
|
|
84
|
+
tikTok: string | null;
|
|
85
|
+
discord: string | null;
|
|
86
|
+
youtube: string | null;
|
|
87
|
+
timezone: string;
|
|
88
|
+
iosAppLink: string | null;
|
|
89
|
+
androidAppLink: string | null;
|
|
90
|
+
createdAt: string;
|
|
91
|
+
updatedAt: string;
|
|
92
|
+
integrations: Integrations;
|
|
93
|
+
}
|
|
94
|
+
declare const isTypeOrganization: (organization: BaseOrganization | Organization) => organization is Organization;
|
|
95
|
+
interface BaseAccountTier {
|
|
96
|
+
id: string;
|
|
97
|
+
slug: string;
|
|
98
|
+
priority: number;
|
|
99
|
+
name: string;
|
|
100
|
+
iconName: string;
|
|
101
|
+
color: string | null;
|
|
102
|
+
image: BaseImage;
|
|
103
|
+
}
|
|
104
|
+
interface AccountTier extends BaseAccountTier {
|
|
105
|
+
description: string | null;
|
|
106
|
+
createdAt: string;
|
|
107
|
+
updatedAt: string;
|
|
108
|
+
}
|
|
109
|
+
declare const isTypeAccountTier: (accountTier: BaseAccountTier | AccountTier) => accountTier is AccountTier;
|
|
110
|
+
declare enum AccountType {
|
|
111
|
+
account = "account",
|
|
112
|
+
team = "team"
|
|
113
|
+
}
|
|
114
|
+
interface BaseAccount {
|
|
115
|
+
id: string;
|
|
116
|
+
username: string;
|
|
117
|
+
accountType: AccountType;
|
|
118
|
+
firstName: string | null;
|
|
119
|
+
lastName: string | null;
|
|
120
|
+
title: string | null;
|
|
121
|
+
company: string | null;
|
|
122
|
+
image: BaseImage | null;
|
|
123
|
+
chatConnected: boolean;
|
|
124
|
+
accountTiers: BaseAccountTier[];
|
|
125
|
+
}
|
|
126
|
+
interface Account extends BaseAccount {
|
|
127
|
+
bio: string | null;
|
|
128
|
+
website: string | null;
|
|
129
|
+
facebook: string | null;
|
|
130
|
+
instagram: string | null;
|
|
131
|
+
linkedIn: string | null;
|
|
132
|
+
twitter: string | null;
|
|
133
|
+
tikTok: string | null;
|
|
134
|
+
youtube: string | null;
|
|
135
|
+
discord: string | null;
|
|
136
|
+
video: string | null;
|
|
137
|
+
state: string | null;
|
|
138
|
+
country: string | null;
|
|
139
|
+
timezone: string | null;
|
|
140
|
+
createdAt: string;
|
|
141
|
+
followers?: Account[];
|
|
142
|
+
following?: Account[];
|
|
143
|
+
_count: {
|
|
144
|
+
followers: number;
|
|
145
|
+
following: number;
|
|
146
|
+
};
|
|
147
|
+
}
|
|
148
|
+
declare const isTypeAccount: (account: BaseAccount | Account) => account is Account;
|
|
149
|
+
interface Self extends Account {
|
|
150
|
+
email: string | null;
|
|
151
|
+
phone: string | null;
|
|
152
|
+
dietaryRestrictions: string | null;
|
|
153
|
+
address1: string | null;
|
|
154
|
+
address2: string | null;
|
|
155
|
+
city: string | null;
|
|
156
|
+
zip: string | null;
|
|
157
|
+
shareCode: string;
|
|
158
|
+
chatToken?: string;
|
|
159
|
+
}
|
|
160
|
+
declare const isSelf: (account: Self | Account | BaseAccount) => account is Self;
|
|
161
|
+
interface AccountShare extends Account {
|
|
162
|
+
email: string | null;
|
|
163
|
+
phone: string | null;
|
|
164
|
+
}
|
|
165
|
+
interface BaseActivity {
|
|
166
|
+
id: string;
|
|
167
|
+
message: string;
|
|
168
|
+
readMore: boolean;
|
|
169
|
+
image: BaseImage | null;
|
|
170
|
+
video: BaseVideo | null;
|
|
171
|
+
linkPreview: LinkPreview | null;
|
|
172
|
+
account: BaseAccount;
|
|
173
|
+
createdAt: string;
|
|
174
|
+
}
|
|
175
|
+
interface Activity extends BaseActivity {
|
|
176
|
+
html: string;
|
|
177
|
+
text: string;
|
|
178
|
+
community: BaseCommunity | null;
|
|
179
|
+
event: BaseEvent | null;
|
|
180
|
+
content: BaseContent | null;
|
|
181
|
+
commented: BaseActivity | null;
|
|
182
|
+
reshared: BaseActivity | null;
|
|
183
|
+
updatedAt: string;
|
|
184
|
+
likes?: {
|
|
185
|
+
createdAt: string;
|
|
186
|
+
}[];
|
|
187
|
+
comments?: {
|
|
188
|
+
id: string;
|
|
189
|
+
}[];
|
|
190
|
+
reshares?: {
|
|
191
|
+
id: string;
|
|
192
|
+
}[];
|
|
193
|
+
_count: {
|
|
194
|
+
likes: number;
|
|
195
|
+
comments: number;
|
|
196
|
+
reshares: number;
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
interface SingleActivity extends Activity {
|
|
200
|
+
html: string;
|
|
201
|
+
text: string;
|
|
202
|
+
}
|
|
203
|
+
declare const isTypeActivity: (activity: BaseActivity | Activity) => activity is Activity;
|
|
204
|
+
interface BaseLike {
|
|
205
|
+
account: BaseAccount;
|
|
206
|
+
activity: BaseActivity;
|
|
207
|
+
createdAt: string;
|
|
208
|
+
}
|
|
209
|
+
interface Like extends BaseLike {
|
|
210
|
+
}
|
|
211
|
+
declare enum CommunityAccess {
|
|
212
|
+
public = "public",
|
|
213
|
+
private = "private"
|
|
214
|
+
}
|
|
215
|
+
interface BaseCommunity {
|
|
216
|
+
id: string;
|
|
217
|
+
slug: string;
|
|
218
|
+
name: string;
|
|
219
|
+
image: BaseImage | null;
|
|
220
|
+
access: CommunityAccess;
|
|
221
|
+
}
|
|
222
|
+
interface Community extends BaseCommunity {
|
|
223
|
+
description: string;
|
|
224
|
+
externalUrl: string | null;
|
|
225
|
+
active: boolean;
|
|
226
|
+
members?: BaseCommunityMembership[];
|
|
227
|
+
_count: {
|
|
228
|
+
members: number;
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
declare const isTypeCommunity: (community: BaseCommunity | Community) => community is Community;
|
|
232
|
+
interface BaseEvent {
|
|
233
|
+
id: string;
|
|
234
|
+
slug: string;
|
|
235
|
+
name: string;
|
|
236
|
+
shortDescription: string;
|
|
237
|
+
featured: boolean;
|
|
238
|
+
timezone: string | null;
|
|
239
|
+
eventStart: string;
|
|
240
|
+
eventEnd: string;
|
|
241
|
+
image: BaseImage | null;
|
|
242
|
+
}
|
|
243
|
+
declare enum EventSource {
|
|
244
|
+
admin = "admin",
|
|
245
|
+
moderator = "moderator",
|
|
246
|
+
account = "account"
|
|
247
|
+
}
|
|
248
|
+
declare enum EventType {
|
|
249
|
+
physical = "physical",
|
|
250
|
+
virtual = "virtual",
|
|
251
|
+
hybrid = "hybrid"
|
|
252
|
+
}
|
|
253
|
+
interface Event extends BaseEvent {
|
|
254
|
+
approved: boolean;
|
|
255
|
+
eventType: EventType;
|
|
256
|
+
longDescription: string | null;
|
|
257
|
+
externalUrl: string | null;
|
|
258
|
+
meetingUrl: string | null;
|
|
259
|
+
venue: string | null;
|
|
260
|
+
venueMap: BaseImage | null;
|
|
261
|
+
location: string | null;
|
|
262
|
+
address1: string | null;
|
|
263
|
+
address2: string | null;
|
|
264
|
+
city: string | null;
|
|
265
|
+
state: string | null;
|
|
266
|
+
country: string | null;
|
|
267
|
+
zip: string | null;
|
|
268
|
+
communities: BaseCommunity[];
|
|
269
|
+
creatorId: string | null;
|
|
270
|
+
creator: BaseAccount;
|
|
271
|
+
registration: boolean;
|
|
272
|
+
registrationStart: string;
|
|
273
|
+
registrationEnd: string;
|
|
274
|
+
publicRegistrants: boolean;
|
|
275
|
+
chatBotNumber: string | null;
|
|
276
|
+
iosAppLink: string | null;
|
|
277
|
+
androidAppLink: string | null;
|
|
278
|
+
pages: BaseEventPage[];
|
|
279
|
+
streamInput: StreamInput | null;
|
|
280
|
+
createdAt: string;
|
|
281
|
+
updatedAt: string;
|
|
282
|
+
_count: {
|
|
283
|
+
sessions: number;
|
|
284
|
+
speakers: number;
|
|
285
|
+
sponsors: number;
|
|
286
|
+
faqSections: number;
|
|
287
|
+
};
|
|
288
|
+
}
|
|
289
|
+
declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
|
|
290
|
+
interface RegistrationEventDetails {
|
|
291
|
+
id: string;
|
|
292
|
+
slug: string;
|
|
293
|
+
name: string;
|
|
294
|
+
eventStart: string;
|
|
295
|
+
eventEnd: string;
|
|
296
|
+
registration: boolean;
|
|
297
|
+
registrationCount: number;
|
|
298
|
+
registrationLimit: number;
|
|
299
|
+
registrationStart: string;
|
|
300
|
+
registrationEnd: string;
|
|
301
|
+
tickets: BaseTicket[];
|
|
302
|
+
sections?: RegistrationSection[];
|
|
303
|
+
_count: {
|
|
304
|
+
sections: number;
|
|
305
|
+
tickets: number;
|
|
306
|
+
coupons: number;
|
|
307
|
+
};
|
|
308
|
+
}
|
|
309
|
+
declare enum RegistrationQuestionType {
|
|
310
|
+
text = "text",
|
|
311
|
+
textarea = "textarea",
|
|
312
|
+
number = "number",
|
|
313
|
+
time = "time",
|
|
314
|
+
date = "date",
|
|
315
|
+
toggle = "toggle",
|
|
316
|
+
select = "select",
|
|
317
|
+
radio = "radio",
|
|
318
|
+
checkbox = "checkbox",
|
|
319
|
+
search = "search",
|
|
320
|
+
file = "file"
|
|
321
|
+
}
|
|
322
|
+
interface BaseRegistrationQuestion {
|
|
323
|
+
id: number;
|
|
324
|
+
eventId: string;
|
|
325
|
+
type: RegistrationQuestionType;
|
|
326
|
+
name: string;
|
|
327
|
+
required: boolean;
|
|
328
|
+
description: string | null;
|
|
329
|
+
label: string | null;
|
|
330
|
+
placeholder: string | null;
|
|
331
|
+
default: string | null;
|
|
332
|
+
span: number;
|
|
333
|
+
mutable: boolean;
|
|
334
|
+
min: string | null;
|
|
335
|
+
max: string | null;
|
|
336
|
+
validation: string | null;
|
|
337
|
+
validationMessage: string | null;
|
|
338
|
+
primary: boolean;
|
|
339
|
+
guest: boolean;
|
|
340
|
+
}
|
|
341
|
+
interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
342
|
+
choices: BaseRegistrationQuestionChoice[];
|
|
343
|
+
}
|
|
344
|
+
interface RegistrationSectionQuestion {
|
|
345
|
+
questionId: number;
|
|
346
|
+
question: RegistrationQuestion;
|
|
347
|
+
sortOrder: number;
|
|
348
|
+
}
|
|
349
|
+
interface BaseRegistrationQuestionChoice {
|
|
350
|
+
id: number;
|
|
351
|
+
value: string;
|
|
352
|
+
supply: number | null;
|
|
353
|
+
description: string | null;
|
|
354
|
+
sortOrder: number;
|
|
355
|
+
question: RegistrationQuestion;
|
|
356
|
+
subQuestions: RegistrationQuestion[];
|
|
357
|
+
}
|
|
358
|
+
interface RegistrationQuestionChoice extends BaseRegistrationQuestionChoice {
|
|
359
|
+
}
|
|
360
|
+
interface BaseRegistrationQuestionSearchValue {
|
|
361
|
+
id: string;
|
|
362
|
+
value: string;
|
|
363
|
+
}
|
|
364
|
+
interface RegistrationQuestionSearchValue extends BaseRegistrationQuestionSearchValue {
|
|
365
|
+
}
|
|
366
|
+
interface BaseRegistrationQuestionResponse {
|
|
367
|
+
questionId: number;
|
|
368
|
+
value: string;
|
|
369
|
+
}
|
|
370
|
+
interface RegistrationQuestionResponse extends BaseRegistrationQuestionResponse {
|
|
371
|
+
question: RegistrationQuestion;
|
|
372
|
+
createdAt: string;
|
|
373
|
+
updatedAt: string;
|
|
374
|
+
}
|
|
375
|
+
interface BaseRegistrationSection {
|
|
376
|
+
id: number;
|
|
377
|
+
name: string;
|
|
378
|
+
description: string | null;
|
|
379
|
+
guestDescription: string | null;
|
|
380
|
+
sortOrder: number;
|
|
381
|
+
}
|
|
382
|
+
interface RegistrationSection extends BaseRegistrationSection {
|
|
383
|
+
questions: RegistrationSectionQuestion[];
|
|
384
|
+
}
|
|
385
|
+
interface EventListing extends Event {
|
|
386
|
+
newActivityCreatorEmailNotification: boolean;
|
|
387
|
+
newActivityCreatorPushNotification: boolean;
|
|
388
|
+
registrationLimit: number;
|
|
389
|
+
registrationStart: string;
|
|
390
|
+
registrationEnd: string;
|
|
391
|
+
sponsors: BaseAccount[];
|
|
392
|
+
speakers: BaseSpeaker[];
|
|
393
|
+
sessions: BaseSession[];
|
|
394
|
+
}
|
|
395
|
+
declare const isListing: (event: EventListing | BaseEvent | Event) => event is Event;
|
|
396
|
+
interface BaseInterest {
|
|
397
|
+
id: string;
|
|
398
|
+
name: string;
|
|
399
|
+
}
|
|
400
|
+
interface Interest extends BaseInterest {
|
|
401
|
+
}
|
|
402
|
+
declare enum TicketVisibility {
|
|
403
|
+
public = "public",
|
|
404
|
+
private = "private"
|
|
405
|
+
}
|
|
406
|
+
declare enum TicketEventAccessLevel {
|
|
407
|
+
regular = "regular",
|
|
408
|
+
virtual = "virtual",
|
|
409
|
+
vip = "vip"
|
|
410
|
+
}
|
|
411
|
+
interface BaseTicket {
|
|
412
|
+
id: string;
|
|
413
|
+
slug: string;
|
|
414
|
+
transferable: boolean;
|
|
415
|
+
name: string;
|
|
416
|
+
shortDescription: string;
|
|
417
|
+
longDescription: string | null;
|
|
418
|
+
price: number;
|
|
419
|
+
accessLevel: TicketEventAccessLevel;
|
|
420
|
+
featuredImage: BaseImage | null;
|
|
421
|
+
minQuantityPerSale: number;
|
|
422
|
+
maxQuantityPerSale: number;
|
|
423
|
+
minGuests: number;
|
|
424
|
+
maxGuests: number;
|
|
425
|
+
supply: number | null;
|
|
426
|
+
}
|
|
427
|
+
interface Ticket extends BaseTicket {
|
|
428
|
+
visibility: TicketVisibility;
|
|
429
|
+
active: boolean;
|
|
430
|
+
event: BaseEvent;
|
|
431
|
+
}
|
|
432
|
+
declare const isTypeTicket: (ticket: BaseTicket | Ticket) => ticket is Ticket;
|
|
433
|
+
interface BasePurchase {
|
|
434
|
+
id: string;
|
|
435
|
+
orderId: string;
|
|
436
|
+
location: string | null;
|
|
437
|
+
usedAt: string | null;
|
|
438
|
+
alternateId: number;
|
|
439
|
+
transfer: {
|
|
440
|
+
id: string;
|
|
441
|
+
email: string;
|
|
442
|
+
createdAt: string;
|
|
443
|
+
};
|
|
444
|
+
ticket: Ticket;
|
|
445
|
+
}
|
|
446
|
+
interface Purchase extends BasePurchase {
|
|
447
|
+
createdAt: string;
|
|
448
|
+
updatedAt: string;
|
|
449
|
+
}
|
|
450
|
+
declare const isTypePurchase: (purchase: BasePurchase | Purchase) => purchase is Purchase;
|
|
451
|
+
interface Order {
|
|
452
|
+
id: string;
|
|
453
|
+
alternateId: number;
|
|
454
|
+
subTotal: number;
|
|
455
|
+
tax: number;
|
|
456
|
+
discount: number;
|
|
457
|
+
grandTotal: number;
|
|
458
|
+
coupon: BaseCoupon | null;
|
|
459
|
+
paymentConfirmationId: string | null;
|
|
460
|
+
purchases: BasePurchase[];
|
|
461
|
+
accountId: string;
|
|
462
|
+
account: BaseAccount;
|
|
463
|
+
createdAt: string;
|
|
464
|
+
updatedAt: string;
|
|
465
|
+
}
|
|
466
|
+
interface BaseTransfer {
|
|
467
|
+
id: string;
|
|
468
|
+
email: string;
|
|
469
|
+
}
|
|
470
|
+
interface Transfer extends BaseTransfer {
|
|
471
|
+
purchase: BasePurchase;
|
|
472
|
+
createdAt: string;
|
|
473
|
+
updatedAt: string;
|
|
474
|
+
}
|
|
475
|
+
declare const isTypeTransfer: (transfer: BaseTransfer | Transfer) => transfer is Transfer;
|
|
476
|
+
declare enum NotificationType {
|
|
477
|
+
ANNOUNCEMENT = "ANNOUNCEMENT",
|
|
478
|
+
FOLLOW = "FOLLOW",
|
|
479
|
+
INVITATION = "INVITATION",
|
|
480
|
+
TRANSFER = "TRANSFER",
|
|
481
|
+
LIKE = "LIKE",
|
|
482
|
+
COMMENT = "COMMENT",
|
|
483
|
+
RESHARE = "RESHARE",
|
|
484
|
+
EVENT = "EVENT",
|
|
485
|
+
ACTIVITY = "ACTIVITY"
|
|
486
|
+
}
|
|
487
|
+
interface BaseNotification {
|
|
488
|
+
id: string;
|
|
489
|
+
type: NotificationType;
|
|
490
|
+
read: boolean;
|
|
491
|
+
sender: BaseAccount | null;
|
|
492
|
+
}
|
|
493
|
+
interface Notification$1 extends BaseNotification {
|
|
494
|
+
transfer: BaseTransfer | null;
|
|
495
|
+
like: BaseLike | null;
|
|
496
|
+
activity: BaseActivity | null;
|
|
497
|
+
event: BaseEvent | null;
|
|
498
|
+
announcement: BaseAnnouncement | null;
|
|
499
|
+
createdAt: string;
|
|
500
|
+
updatedAt: string;
|
|
501
|
+
}
|
|
502
|
+
declare const isTypeNotification: (notification: BaseNotification | Notification$1) => notification is Notification$1;
|
|
503
|
+
interface BaseCoupon {
|
|
504
|
+
id: string;
|
|
505
|
+
code: string;
|
|
506
|
+
discountAmount: number;
|
|
507
|
+
discountPercent: number;
|
|
508
|
+
}
|
|
509
|
+
declare enum CouponType {
|
|
510
|
+
order = "order",
|
|
511
|
+
ticket = "ticket"
|
|
512
|
+
}
|
|
513
|
+
interface Coupon extends BaseCoupon {
|
|
514
|
+
description: string | null;
|
|
515
|
+
ticket: BaseTicket | null;
|
|
516
|
+
}
|
|
517
|
+
declare const isTypeCoupon: (coupon: BaseCoupon | Coupon) => coupon is Coupon;
|
|
518
|
+
interface ManagedCoupon extends Coupon {
|
|
519
|
+
active: boolean;
|
|
520
|
+
type: CouponType;
|
|
521
|
+
startDate: string | null;
|
|
522
|
+
endDate: string | null;
|
|
523
|
+
quantityMin: number;
|
|
524
|
+
quantityMax: number | null;
|
|
525
|
+
amountMin: number;
|
|
526
|
+
amountMax: number | null;
|
|
527
|
+
useLimit: number | null;
|
|
528
|
+
limitOnePerAccount: boolean;
|
|
529
|
+
studentDiscount: boolean;
|
|
530
|
+
_count: {
|
|
531
|
+
instances: number;
|
|
532
|
+
uses: number;
|
|
533
|
+
};
|
|
534
|
+
}
|
|
535
|
+
declare const isManagedCoupon: (coupon: BaseCoupon | Coupon | ManagedCoupon) => coupon is ManagedCoupon;
|
|
536
|
+
interface ManagedCouponOrder {
|
|
537
|
+
id: string;
|
|
538
|
+
alternateId: number;
|
|
539
|
+
createdAt: string;
|
|
540
|
+
coupon: BaseCoupon | null;
|
|
541
|
+
account: BaseAccount;
|
|
542
|
+
}
|
|
543
|
+
interface BaseInstance {
|
|
544
|
+
id: string;
|
|
545
|
+
code: string;
|
|
546
|
+
}
|
|
547
|
+
interface Instance extends BaseInstance {
|
|
548
|
+
coupon: BaseCoupon;
|
|
549
|
+
}
|
|
550
|
+
declare const isTypeInstance: (instance: BaseInstance | Instance) => instance is Instance;
|
|
551
|
+
interface BaseTrack {
|
|
552
|
+
id: string;
|
|
553
|
+
slug: string;
|
|
554
|
+
name: string;
|
|
555
|
+
color: string;
|
|
556
|
+
}
|
|
557
|
+
interface Track extends BaseTrack {
|
|
558
|
+
description: string | null;
|
|
559
|
+
_count: {
|
|
560
|
+
sessions: number;
|
|
561
|
+
};
|
|
562
|
+
}
|
|
563
|
+
declare const isTypeTrack: (track: BaseTrack | Track) => track is Track;
|
|
564
|
+
interface BaseSpeaker {
|
|
565
|
+
id: string;
|
|
566
|
+
slug: string;
|
|
567
|
+
firstName: string;
|
|
568
|
+
lastName: string | null;
|
|
569
|
+
title: string | null;
|
|
570
|
+
company: string | null;
|
|
571
|
+
bio: string | null;
|
|
572
|
+
image: BaseImage | null;
|
|
573
|
+
priority: number;
|
|
574
|
+
isHost: boolean;
|
|
575
|
+
}
|
|
576
|
+
interface Speaker extends BaseSpeaker {
|
|
577
|
+
label: string | null;
|
|
578
|
+
website: string | null;
|
|
579
|
+
facebook: string | null;
|
|
580
|
+
twitter: string | null;
|
|
581
|
+
instagram: string | null;
|
|
582
|
+
linkedIn: string | null;
|
|
583
|
+
discord: string | null;
|
|
584
|
+
youtube: string | null;
|
|
585
|
+
tikTok: string | null;
|
|
586
|
+
sessions: BaseSession[];
|
|
587
|
+
}
|
|
588
|
+
declare const isTypeSpeaker: (speaker: BaseSpeaker | Speaker) => speaker is Speaker;
|
|
589
|
+
interface BaseSession {
|
|
590
|
+
id: string;
|
|
591
|
+
slug: string;
|
|
592
|
+
name: string;
|
|
593
|
+
description: string | null;
|
|
594
|
+
location: string | null;
|
|
595
|
+
image: BaseImage | null;
|
|
596
|
+
startTime: string;
|
|
597
|
+
endTime: string;
|
|
598
|
+
sortOrder: number | null;
|
|
599
|
+
nonSession: boolean;
|
|
600
|
+
}
|
|
601
|
+
interface Session extends BaseSession {
|
|
602
|
+
longDescription: string | null;
|
|
603
|
+
tracks: BaseTrack[];
|
|
604
|
+
speakers: BaseSpeaker[];
|
|
605
|
+
sponsors: BaseAccount[];
|
|
606
|
+
accounts?: BaseAccount[];
|
|
607
|
+
streamInput: StreamInput | null;
|
|
608
|
+
}
|
|
609
|
+
declare const isTypeSession: (session: BaseSession | Session) => session is Session;
|
|
610
|
+
interface BaseEventPage {
|
|
611
|
+
id: string;
|
|
612
|
+
slug: string;
|
|
613
|
+
title: string;
|
|
614
|
+
sortOrder: number;
|
|
615
|
+
}
|
|
616
|
+
interface EventPage extends BaseEventPage {
|
|
617
|
+
html: string;
|
|
618
|
+
subtitle: string;
|
|
619
|
+
images: BaseImage[];
|
|
620
|
+
}
|
|
621
|
+
declare const isTypeEventPage: (page: BaseEventPage | EventPage) => page is EventPage;
|
|
622
|
+
interface BaseScan {
|
|
623
|
+
id: string;
|
|
624
|
+
}
|
|
625
|
+
interface Scan extends BaseScan {
|
|
626
|
+
event: BaseEvent;
|
|
627
|
+
createdAt: string;
|
|
628
|
+
updatedAt: string;
|
|
629
|
+
}
|
|
630
|
+
declare const isTypeScan: (scan: BaseScan | Scan) => scan is Scan;
|
|
631
|
+
interface User {
|
|
632
|
+
}
|
|
633
|
+
interface OrgMembership {
|
|
634
|
+
}
|
|
635
|
+
interface BaseSponsorshipLevel {
|
|
636
|
+
id: string;
|
|
637
|
+
slug: string;
|
|
638
|
+
name: string;
|
|
639
|
+
subtitle: string | null;
|
|
640
|
+
color: string;
|
|
641
|
+
scale: number;
|
|
642
|
+
image: BaseImage | null;
|
|
643
|
+
}
|
|
644
|
+
interface SponsorshipLevel extends BaseSponsorshipLevel {
|
|
645
|
+
description: string | null;
|
|
646
|
+
sortOrder: number;
|
|
647
|
+
accounts: BaseAccount[];
|
|
648
|
+
updatedAt: string;
|
|
649
|
+
createdAt: string;
|
|
650
|
+
}
|
|
651
|
+
declare const isTypeSponsorshipLevel: (sponsorshipLevel: BaseSponsorshipLevel | SponsorshipLevel) => sponsorshipLevel is SponsorshipLevel;
|
|
652
|
+
interface BaseComplimentaryTicket {
|
|
653
|
+
ticketId: string;
|
|
654
|
+
complimentaryTicket: BaseTicket;
|
|
655
|
+
quantity: number;
|
|
656
|
+
}
|
|
657
|
+
interface ComplimentaryTicket extends BaseComplimentaryTicket {
|
|
658
|
+
}
|
|
659
|
+
declare enum PageType$1 {
|
|
660
|
+
about = "about",
|
|
661
|
+
privacy = "privacy",
|
|
662
|
+
terms = "terms",
|
|
663
|
+
team = "team"
|
|
664
|
+
}
|
|
665
|
+
interface BasePage {
|
|
666
|
+
type: PageType$1;
|
|
667
|
+
title: string | null;
|
|
668
|
+
subtitle: string | null;
|
|
669
|
+
html: string | null;
|
|
670
|
+
updatedAt: string;
|
|
671
|
+
}
|
|
672
|
+
interface Page extends BasePage {
|
|
673
|
+
}
|
|
674
|
+
interface BaseFaq {
|
|
675
|
+
id: string;
|
|
676
|
+
slug: string;
|
|
677
|
+
question: string;
|
|
678
|
+
answer: string;
|
|
679
|
+
}
|
|
680
|
+
interface Faq extends BaseFaq {
|
|
681
|
+
section: BaseFaqSection | null;
|
|
682
|
+
}
|
|
683
|
+
declare const isTypeFaq: (faq: BaseFaq | Faq) => faq is Faq;
|
|
684
|
+
interface BaseFaqSection {
|
|
685
|
+
id: string;
|
|
686
|
+
slug: string;
|
|
687
|
+
name: string;
|
|
688
|
+
}
|
|
689
|
+
interface FaqSection extends BaseFaqSection {
|
|
690
|
+
faqs: BaseFaq[];
|
|
691
|
+
}
|
|
692
|
+
declare const isTypeFaqSection: (faqSection: BaseFaqSection | FaqSection) => faqSection is FaqSection;
|
|
693
|
+
interface BaseSupportTicket {
|
|
694
|
+
id: string;
|
|
695
|
+
}
|
|
696
|
+
declare enum SupportTicketType {
|
|
697
|
+
support = "support",
|
|
698
|
+
inquiry = "inquiry"
|
|
699
|
+
}
|
|
700
|
+
interface SupportTicket extends BaseSupportTicket {
|
|
701
|
+
type: SupportTicketType;
|
|
702
|
+
email: string;
|
|
703
|
+
request: string;
|
|
704
|
+
account: BaseAccount | null;
|
|
705
|
+
event: BaseEvent | null;
|
|
706
|
+
ticket: BaseTicket | null;
|
|
707
|
+
status: string;
|
|
708
|
+
createdAt: string;
|
|
709
|
+
updatedAt: string;
|
|
710
|
+
}
|
|
711
|
+
declare const isTypeSupportTicket: (supportTicket: BaseSupportTicket | SupportTicket) => supportTicket is SupportTicket;
|
|
712
|
+
interface BaseSupportTicketNote {
|
|
713
|
+
id: string;
|
|
714
|
+
supportTicketId: string;
|
|
715
|
+
}
|
|
716
|
+
interface SupportTicketNote extends BaseSupportTicketNote {
|
|
717
|
+
createdAt: string;
|
|
718
|
+
updatedAt: string;
|
|
719
|
+
}
|
|
720
|
+
declare const isTypeSupportTicketNote: (supportTicketNote: BaseSupportTicketNote | SupportTicketNote) => supportTicketNote is SupportTicketNote;
|
|
721
|
+
declare enum AdvertisementType {
|
|
722
|
+
square = "square",
|
|
723
|
+
rectangle = "rectangle"
|
|
724
|
+
}
|
|
725
|
+
interface BaseAdvertisement {
|
|
726
|
+
id: string;
|
|
727
|
+
type: AdvertisementType;
|
|
728
|
+
link: string;
|
|
729
|
+
image: BaseImage | null;
|
|
730
|
+
}
|
|
731
|
+
interface Advertisement extends BaseAdvertisement {
|
|
732
|
+
title: string;
|
|
733
|
+
description: string | null;
|
|
734
|
+
}
|
|
735
|
+
declare const isTypeAdvertisement: (advertisement: BaseAdvertisement | Advertisement) => advertisement is Advertisement;
|
|
736
|
+
interface AdvertisementClick {
|
|
737
|
+
}
|
|
738
|
+
interface AdvertisementView {
|
|
739
|
+
}
|
|
740
|
+
interface BaseTeamMember {
|
|
741
|
+
id: string;
|
|
742
|
+
slug: string;
|
|
743
|
+
firstName: string | null;
|
|
744
|
+
lastName: string | null;
|
|
745
|
+
title: true;
|
|
746
|
+
image: BaseImage | null;
|
|
747
|
+
}
|
|
748
|
+
interface TeamMember extends BaseTeamMember {
|
|
749
|
+
nickName: true;
|
|
750
|
+
email: true;
|
|
751
|
+
phone: true;
|
|
752
|
+
bio: true;
|
|
753
|
+
linkedIn: true;
|
|
754
|
+
facebook: true;
|
|
755
|
+
instagram: true;
|
|
756
|
+
twitter: true;
|
|
757
|
+
tikTok: true;
|
|
758
|
+
discord: true;
|
|
759
|
+
startDate: true;
|
|
760
|
+
}
|
|
761
|
+
declare const isTypeTeamMember: (teamMember: BaseTeamMember | TeamMember) => teamMember is TeamMember;
|
|
762
|
+
declare enum CommunityMembershipRole {
|
|
763
|
+
member = "member",
|
|
764
|
+
moderator = "moderator"
|
|
765
|
+
}
|
|
766
|
+
interface BaseCommunityMembership {
|
|
767
|
+
accountId: string;
|
|
768
|
+
community: BaseCommunity;
|
|
769
|
+
role: CommunityMembershipRole;
|
|
770
|
+
}
|
|
771
|
+
interface CommunityMembership extends BaseCommunityMembership {
|
|
772
|
+
account: BaseAccount;
|
|
773
|
+
following: boolean;
|
|
774
|
+
activityEmailNotification: boolean;
|
|
775
|
+
activityPushNotification: boolean;
|
|
776
|
+
announcementEmailNotification: boolean;
|
|
777
|
+
announcementPushNotification: boolean;
|
|
778
|
+
eventEmailNotification: boolean;
|
|
779
|
+
eventPushNotification: boolean;
|
|
780
|
+
chatPushNotification: boolean;
|
|
781
|
+
createdAt: string;
|
|
782
|
+
updatedAt: string;
|
|
783
|
+
}
|
|
784
|
+
declare const isTypeCommunityMembership: (communityMembership: BaseCommunityMembership | CommunityMembership) => communityMembership is CommunityMembership;
|
|
785
|
+
declare enum ContentTypeFormat {
|
|
786
|
+
article = "article",
|
|
787
|
+
podcast = "podcast",
|
|
788
|
+
video = "video"
|
|
789
|
+
}
|
|
790
|
+
interface BaseContentType {
|
|
791
|
+
id: string;
|
|
792
|
+
slug: string;
|
|
793
|
+
name: string;
|
|
794
|
+
description: string | null;
|
|
795
|
+
format: ContentTypeFormat;
|
|
796
|
+
image: BaseImage;
|
|
797
|
+
}
|
|
798
|
+
interface ContentType extends BaseContentType {
|
|
799
|
+
priority: number;
|
|
800
|
+
externalUrl: string | null;
|
|
801
|
+
appleUrl: string | null;
|
|
802
|
+
spotifyUrl: string | null;
|
|
803
|
+
googleUrl: string | null;
|
|
804
|
+
youtubeUrl: string | null;
|
|
805
|
+
hosts: BaseAccount[];
|
|
806
|
+
subscribers?: {
|
|
807
|
+
id: string;
|
|
808
|
+
}[];
|
|
809
|
+
}
|
|
810
|
+
declare const isTypeContentType: (contentType: BaseContentType | ContentType) => contentType is ContentType;
|
|
811
|
+
interface BaseContent {
|
|
812
|
+
id: string;
|
|
813
|
+
featured: boolean;
|
|
814
|
+
slug: string;
|
|
815
|
+
title: string | null;
|
|
816
|
+
description: string | null;
|
|
817
|
+
imageUrl: string | null;
|
|
818
|
+
audioUrl: string | null;
|
|
819
|
+
videoUrl: string | null;
|
|
820
|
+
duration: string | null;
|
|
821
|
+
contentType: BaseContentType;
|
|
822
|
+
published: string | null;
|
|
823
|
+
}
|
|
824
|
+
interface Content extends BaseContent {
|
|
825
|
+
body: string | null;
|
|
826
|
+
externalUrl: string | null;
|
|
827
|
+
appleUrl: string | null;
|
|
828
|
+
spotifyUrl: string | null;
|
|
829
|
+
googleUrl: string | null;
|
|
830
|
+
youtubeUrl: string | null;
|
|
831
|
+
authors: BaseAccount[];
|
|
832
|
+
mentions: BaseAccount[];
|
|
833
|
+
createdAt: string;
|
|
834
|
+
updatedAt: string;
|
|
835
|
+
}
|
|
836
|
+
declare const isTypeContent: (content: BaseContent | Content) => content is Content;
|
|
837
|
+
interface Registration {
|
|
838
|
+
id: string;
|
|
839
|
+
alternateId: number;
|
|
840
|
+
eventId: string;
|
|
841
|
+
event: RegistrationEventDetails | undefined;
|
|
842
|
+
account: BaseAccount;
|
|
843
|
+
status: RegistrationStatus;
|
|
844
|
+
selectedTicketId: string | null;
|
|
845
|
+
selectedTicket: BaseTicket | null;
|
|
846
|
+
selectedQuantity: number;
|
|
847
|
+
couponId: string | null;
|
|
848
|
+
coupon: BaseCoupon | null;
|
|
849
|
+
purchases: BasePurchase[];
|
|
850
|
+
payments: Payment[];
|
|
851
|
+
responses: BaseRegistrationQuestionResponse[];
|
|
852
|
+
guests: BaseRegistrationGuest[];
|
|
853
|
+
createdAt: string;
|
|
854
|
+
}
|
|
855
|
+
interface BaseRegistrationGuest {
|
|
856
|
+
id: number;
|
|
857
|
+
firstName: string;
|
|
858
|
+
lastName: string;
|
|
859
|
+
email: string;
|
|
860
|
+
responses: BaseRegistrationQuestionResponse[];
|
|
861
|
+
}
|
|
862
|
+
interface RegistrationGuest extends BaseRegistrationGuest {
|
|
863
|
+
}
|
|
864
|
+
declare enum RegistrationPaymentType {
|
|
865
|
+
charge = "charge",
|
|
866
|
+
refund = "refund"
|
|
867
|
+
}
|
|
868
|
+
interface BasePayment {
|
|
869
|
+
id: string;
|
|
870
|
+
type: RegistrationPaymentType;
|
|
871
|
+
chargedAmt: number;
|
|
872
|
+
ticketId: string | null;
|
|
873
|
+
ticket: BaseTicket | null;
|
|
874
|
+
last4: string | null;
|
|
875
|
+
stripeId: string | null;
|
|
876
|
+
createdAt: string;
|
|
877
|
+
}
|
|
878
|
+
interface Payment extends BasePayment {
|
|
879
|
+
}
|
|
880
|
+
interface BaseLead {
|
|
881
|
+
id: string;
|
|
882
|
+
firstName: string | null;
|
|
883
|
+
lastName: string | null;
|
|
884
|
+
company: string | null;
|
|
885
|
+
title: string | null;
|
|
886
|
+
shareAccount: {
|
|
887
|
+
id: string;
|
|
888
|
+
image: BaseImage | null;
|
|
889
|
+
};
|
|
890
|
+
createdAt: string;
|
|
891
|
+
}
|
|
892
|
+
interface Lead extends BaseLead {
|
|
893
|
+
email: string | null;
|
|
894
|
+
phone: string | null;
|
|
895
|
+
state: string | null;
|
|
896
|
+
country: string | null;
|
|
897
|
+
website: string | null;
|
|
898
|
+
facebook: string | null;
|
|
899
|
+
instagram: string | null;
|
|
900
|
+
linkedIn: string | null;
|
|
901
|
+
twitter: string | null;
|
|
902
|
+
tikTok: string | null;
|
|
903
|
+
note: string | null;
|
|
904
|
+
eventId: string | null;
|
|
905
|
+
event: BaseEvent | null;
|
|
906
|
+
updatedAt: string;
|
|
907
|
+
}
|
|
908
|
+
declare const isTypeLead: (lead: BaseLead | Lead) => lead is Lead;
|
|
909
|
+
interface NotificationPreferences {
|
|
910
|
+
newFollowerPush: boolean;
|
|
911
|
+
newFollowerEmail: boolean;
|
|
912
|
+
likePush: boolean;
|
|
913
|
+
resharePush: boolean;
|
|
914
|
+
commentPush: boolean;
|
|
915
|
+
commentEmail: boolean;
|
|
916
|
+
transferPush: boolean;
|
|
917
|
+
transferEmail: boolean;
|
|
918
|
+
supportTicketConfirmationEmail: boolean;
|
|
919
|
+
chatPush: boolean;
|
|
920
|
+
chatUnreadPush: boolean;
|
|
921
|
+
chatUnreadEmail: boolean;
|
|
922
|
+
eventAnnouncementEmail: boolean;
|
|
923
|
+
eventAnnouncementPush: boolean;
|
|
924
|
+
}
|
|
925
|
+
declare enum PushDeviceAppType {
|
|
926
|
+
EVENTXM = "EVENTXM",
|
|
927
|
+
COMMUNITYXM = "COMMUNITYXM"
|
|
928
|
+
}
|
|
929
|
+
declare enum PushService {
|
|
930
|
+
apn = "apn",
|
|
931
|
+
firebase = "firebase",
|
|
932
|
+
huawei = "huawei",
|
|
933
|
+
xiaomi = "xiaomi"
|
|
934
|
+
}
|
|
935
|
+
interface PushDevice {
|
|
936
|
+
id: string;
|
|
937
|
+
deviceToken: string | null;
|
|
938
|
+
accountId: string | null;
|
|
939
|
+
account: BaseAccount | null;
|
|
940
|
+
name: string | null;
|
|
941
|
+
model: string | null;
|
|
942
|
+
brand: string | null;
|
|
943
|
+
manufacturer: string | null;
|
|
944
|
+
appType: PushDeviceAppType;
|
|
945
|
+
pushService: PushService;
|
|
946
|
+
createdAt: string;
|
|
947
|
+
}
|
|
948
|
+
interface BaseAnnouncement {
|
|
949
|
+
id: string;
|
|
950
|
+
slug: string;
|
|
951
|
+
title: string | null;
|
|
952
|
+
message: string | null;
|
|
953
|
+
html: string | null;
|
|
954
|
+
event: BaseEvent | null;
|
|
955
|
+
community: BaseCommunity | null;
|
|
956
|
+
creator: BaseAccount | null;
|
|
957
|
+
createdAt: string;
|
|
958
|
+
}
|
|
959
|
+
interface Announcement extends BaseAnnouncement {
|
|
960
|
+
updatedAt: string;
|
|
961
|
+
}
|
|
962
|
+
declare const isTypeAnnouncement: (announcement: BaseAnnouncement | Announcement) => announcement is Announcement;
|
|
963
|
+
interface EventAllowlistMember {
|
|
964
|
+
id: string;
|
|
965
|
+
}
|
|
966
|
+
interface TicketAllowlistMember {
|
|
967
|
+
id: string;
|
|
968
|
+
}
|
|
969
|
+
interface BaseBenefit {
|
|
970
|
+
id: string;
|
|
971
|
+
slug: string;
|
|
972
|
+
title: string;
|
|
973
|
+
description: string | null;
|
|
974
|
+
image: BaseImage | null;
|
|
975
|
+
priority: number;
|
|
976
|
+
}
|
|
977
|
+
interface Benefit extends BaseBenefit {
|
|
978
|
+
startDate: string;
|
|
979
|
+
endDate: string | null;
|
|
980
|
+
eventId: string | null;
|
|
981
|
+
event: BaseEvent | null;
|
|
982
|
+
managerId: string | null;
|
|
983
|
+
manager: Account | null;
|
|
984
|
+
createdAt: string;
|
|
985
|
+
updatedAt: string;
|
|
986
|
+
}
|
|
987
|
+
declare const isTypeBenefit: (benefit: BaseBenefit | Benefit) => benefit is Benefit;
|
|
988
|
+
interface BaseEventActivation {
|
|
989
|
+
id: string;
|
|
990
|
+
slug: string;
|
|
991
|
+
name: string;
|
|
992
|
+
shortDescription: string;
|
|
993
|
+
maxPoints: number;
|
|
994
|
+
startAfter: string;
|
|
995
|
+
image: BaseImage | null;
|
|
996
|
+
}
|
|
997
|
+
interface EventActivation extends BaseEventActivation {
|
|
998
|
+
event: BaseEvent;
|
|
999
|
+
manager: BaseAccount | null;
|
|
1000
|
+
longDescription: string | null;
|
|
1001
|
+
protected: boolean;
|
|
1002
|
+
createdAt: string;
|
|
1003
|
+
updatedAt: string;
|
|
1004
|
+
completions?: BaseEventActivationCompletion[];
|
|
1005
|
+
}
|
|
1006
|
+
declare const isTypeEventActivation: (eventActivation: BaseEventActivation | EventActivation) => eventActivation is EventActivation;
|
|
1007
|
+
interface BaseEventActivationCompletion {
|
|
1008
|
+
id: string;
|
|
1009
|
+
eventId: string;
|
|
1010
|
+
earnedPoints: number;
|
|
1011
|
+
createdAt: string;
|
|
1012
|
+
}
|
|
1013
|
+
interface EventActivationCompletion extends BaseEventActivationCompletion {
|
|
1014
|
+
eventActivationId: string;
|
|
1015
|
+
eventActivation: BaseEventActivation;
|
|
1016
|
+
account: BaseAccount;
|
|
1017
|
+
updatedAt: string;
|
|
1018
|
+
}
|
|
1019
|
+
declare const isTypeEventActivationCompletion: (eventActivationCompletion: BaseEventActivationCompletion | EventActivationCompletion) => eventActivationCompletion is EventActivationCompletion;
|
|
1020
|
+
interface LinkPreview {
|
|
1021
|
+
id: number;
|
|
1022
|
+
activityId: string;
|
|
1023
|
+
url: string;
|
|
1024
|
+
title: string | null;
|
|
1025
|
+
siteName: string | null;
|
|
1026
|
+
description: string | null;
|
|
1027
|
+
mediaType: string | null;
|
|
1028
|
+
contentType: string | null;
|
|
1029
|
+
image: string | null;
|
|
1030
|
+
imageWidth: number | null;
|
|
1031
|
+
imageHeight: number | null;
|
|
1032
|
+
video: string | null;
|
|
1033
|
+
favicon: string | null;
|
|
1034
|
+
}
|
|
1035
|
+
interface StreamInput {
|
|
1036
|
+
cloudflareId: string;
|
|
1037
|
+
connected: boolean;
|
|
1038
|
+
}
|
|
1039
|
+
interface BaseChatChannel {
|
|
1040
|
+
id: number;
|
|
1041
|
+
name: string | null;
|
|
1042
|
+
image: BaseImage | null;
|
|
1043
|
+
lastMessageAt: string | null;
|
|
1044
|
+
}
|
|
1045
|
+
interface ChatChannel extends BaseChatChannel {
|
|
1046
|
+
messages: BaseChatChannelMessage[];
|
|
1047
|
+
members: BaseChatChannelMember[];
|
|
1048
|
+
_count: {
|
|
1049
|
+
members: number;
|
|
1050
|
+
};
|
|
1051
|
+
}
|
|
1052
|
+
interface BaseChatChannelMessage {
|
|
1053
|
+
id: number;
|
|
1054
|
+
text: string;
|
|
1055
|
+
html: string;
|
|
1056
|
+
type: "user" | "system";
|
|
1057
|
+
accountId: string;
|
|
1058
|
+
account: BaseAccount | null;
|
|
1059
|
+
createdAt: string;
|
|
1060
|
+
updatedAt: string;
|
|
1061
|
+
}
|
|
1062
|
+
interface ChatChannelMessage extends BaseChatChannelMessage {
|
|
1063
|
+
}
|
|
1064
|
+
interface BaseChatChannelMember {
|
|
1065
|
+
accountId: string;
|
|
1066
|
+
account: BaseAccount;
|
|
1067
|
+
role: "moderator" | "member";
|
|
1068
|
+
read: boolean;
|
|
1069
|
+
notifications: boolean;
|
|
1070
|
+
createdAt: string;
|
|
1071
|
+
updatedAt: string;
|
|
1072
|
+
}
|
|
1073
|
+
interface ChatChannelMember extends BaseChatChannelMember {
|
|
1074
|
+
channelId: number;
|
|
1075
|
+
channel: ChatChannel;
|
|
1076
|
+
}
|
|
1077
|
+
interface BaseSeries {
|
|
1078
|
+
id: string;
|
|
1079
|
+
sortOrder: number;
|
|
1080
|
+
name: string;
|
|
1081
|
+
slug: string;
|
|
1082
|
+
description: string | null;
|
|
1083
|
+
image: BaseImage | null;
|
|
1084
|
+
createdAt: string;
|
|
1085
|
+
updatedAt: string;
|
|
1086
|
+
}
|
|
1087
|
+
interface Series extends BaseSeries {
|
|
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 | undefined) => 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;
|
|
1171
|
+
|
|
1172
|
+
declare const getClientAPI: (apiUrl: "https://client-api.connectedxm.com" | "https://staging-client-api.connectedxm.com" | "http://localhost:4001", organizationId: string, token?: string, executeAs?: string, locale?: string) => AxiosInstance;
|
|
1173
|
+
declare const useClientAPI: (locale?: string) => AxiosInstance;
|
|
1174
|
+
|
|
1175
|
+
declare const AppendInfiniteQuery: <TData = unknown>(queryClient: QueryClient, key: QueryKey, newData: TData) => void;
|
|
1176
|
+
|
|
1177
|
+
declare const GetErrorMessage: (error: any, fallback?: string) => string;
|
|
1178
|
+
|
|
1179
|
+
declare function MergeInfinitePages<TData>(data: InfiniteData<ConnectedXMResponse<TData[]>>): TData[];
|
|
1180
|
+
|
|
1181
|
+
interface ItemWithId {
|
|
1182
|
+
id: string;
|
|
1183
|
+
alternateId?: number;
|
|
1184
|
+
slug?: string;
|
|
1185
|
+
username?: string;
|
|
1186
|
+
name?: string | null;
|
|
1187
|
+
code?: string;
|
|
1188
|
+
}
|
|
1189
|
+
declare const CacheIndividualQueries: <TData extends ItemWithId>(page: ConnectedXMResponse<TData[]>, queryClient: QueryClient, queryKeyFn: (id: string) => QueryKey, locale?: string, itemMap?: ((item: TData) => TData) | undefined) => void;
|
|
1190
|
+
|
|
1191
|
+
interface SingleQueryParams {
|
|
1192
|
+
clientApi: AxiosInstance;
|
|
1193
|
+
}
|
|
1194
|
+
interface SingleQueryOptions<TQueryData = unknown> extends Omit<UseQueryOptions<TQueryData, AxiosError<ConnectedXMResponse<any>>, Awaited<TQueryData>, QueryKey>, "queryFn" | "queryKey"> {
|
|
1195
|
+
}
|
|
1196
|
+
declare const GetBaseSingleQueryKeys: (locale: string) => QueryKey;
|
|
1197
|
+
|
|
1198
|
+
declare const ACCOUNT_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1199
|
+
declare const SET_ACCOUNT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccount>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1200
|
+
interface GetAccountProps extends SingleQueryParams {
|
|
1201
|
+
accountId: string;
|
|
1202
|
+
}
|
|
1203
|
+
declare const GetAccount: ({ accountId, clientApi, }: GetAccountProps) => Promise<ConnectedXMResponse<Account>>;
|
|
1204
|
+
declare const useGetAccount: (accountId: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1205
|
+
|
|
1206
|
+
interface InfiniteQueryParams {
|
|
1207
|
+
pageSize?: number;
|
|
1208
|
+
orderBy?: string;
|
|
1209
|
+
search?: string;
|
|
1210
|
+
locale?: string;
|
|
1211
|
+
pageParam: number;
|
|
1212
|
+
clientApi: AxiosInstance;
|
|
1213
|
+
queryClient?: QueryClient;
|
|
1214
|
+
}
|
|
1215
|
+
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"> {
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
declare const ACCOUNT_ACTIVITIES_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1219
|
+
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;
|
|
1220
|
+
interface GetAccountActivitiesProps extends InfiniteQueryParams {
|
|
1221
|
+
accountId: string;
|
|
1222
|
+
}
|
|
1223
|
+
declare const GetAccountActivities: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1224
|
+
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>>;
|
|
1225
|
+
|
|
1226
|
+
declare const ACCOUNT_BY_SHARE_CODE_QUERY_KEY: (shareCode: string) => QueryKey;
|
|
1227
|
+
declare const SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountByShareCode>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1228
|
+
interface GetAccountByShareCodeProps extends SingleQueryParams {
|
|
1229
|
+
shareCode: string;
|
|
1230
|
+
}
|
|
1231
|
+
declare const GetAccountByShareCode: ({ shareCode, clientApi, }: GetAccountByShareCodeProps) => Promise<ConnectedXMResponse<AccountShare>>;
|
|
1232
|
+
declare const useGetAccountByShareCode: (shareCode: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountByShareCode>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<AccountShare>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1233
|
+
|
|
1234
|
+
declare const ACCOUNT_COMMUNITIES_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1235
|
+
declare const SET_ACCOUNT_COMMUNITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_COMMUNITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountCommunities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1236
|
+
interface GetAccountCommunitiesProps extends InfiniteQueryParams {
|
|
1237
|
+
accountId: string;
|
|
1238
|
+
}
|
|
1239
|
+
declare const GetAccountCommunities: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountCommunitiesProps) => Promise<ConnectedXMResponse<Community[]>>;
|
|
1240
|
+
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>>;
|
|
1241
|
+
|
|
1242
|
+
declare const ACCOUNT_FOLLOWERS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1243
|
+
declare const SET_ACCOUNT_FOLLOWERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1244
|
+
interface GetAccountFollowersProps extends InfiniteQueryParams {
|
|
1245
|
+
accountId: string;
|
|
1246
|
+
}
|
|
1247
|
+
declare const GetAccountFollowers: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountFollowersProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1248
|
+
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>>;
|
|
1249
|
+
|
|
1250
|
+
declare const ACCOUNT_FOLLOWINGS_QUERY_KEY: (accountId: string) => QueryKey;
|
|
1251
|
+
declare const SET_ACCOUNT_FOLLOWINGS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWINGS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowings>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1252
|
+
interface GetAccountFollowingsProps extends InfiniteQueryParams {
|
|
1253
|
+
accountId: string;
|
|
1254
|
+
}
|
|
1255
|
+
declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, accountId, queryClient, clientApi, locale, }: GetAccountFollowingsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1256
|
+
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>>;
|
|
1257
|
+
|
|
1258
|
+
declare const ACCOUNTS_QUERY_KEY: () => QueryKey;
|
|
1259
|
+
declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccounts>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1260
|
+
interface GetAccountsProps extends InfiniteQueryParams {
|
|
1261
|
+
}
|
|
1262
|
+
declare const GetAccounts: ({ pageSize, orderBy, search, queryClient, clientApi, locale, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1263
|
+
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>>;
|
|
1264
|
+
|
|
1265
|
+
declare const ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
1266
|
+
declare const SET_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1267
|
+
interface GetActivitiesProps extends InfiniteQueryParams {
|
|
1268
|
+
}
|
|
1269
|
+
declare const GetActivities: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1270
|
+
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>>;
|
|
1271
|
+
|
|
1272
|
+
declare const ACTIVITY_QUERY_KEY: (activityId: string) => QueryKey;
|
|
1273
|
+
declare const SET_ACTIVITY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivity>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1274
|
+
interface GetActivityProps extends SingleQueryParams {
|
|
1275
|
+
activityId: string;
|
|
1276
|
+
}
|
|
1277
|
+
declare const GetActivity: ({ activityId, clientApi, }: GetActivityProps) => Promise<ConnectedXMResponse<SingleActivity>>;
|
|
1278
|
+
declare const useGetActivity: (activityId: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<SingleActivity>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1279
|
+
|
|
1280
|
+
declare const ACTIVITY_COMMENTS_QUERY_KEY: (activityId: string) => QueryKey;
|
|
1281
|
+
declare const SET_ACTIVITY_COMMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACTIVITY_COMMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetActivityComments>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1282
|
+
interface GetActivityCommentsProps extends InfiniteQueryParams {
|
|
1283
|
+
activityId: string;
|
|
1284
|
+
}
|
|
1285
|
+
declare const GetActivityComments: ({ activityId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetActivityCommentsProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1286
|
+
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>>;
|
|
1287
|
+
|
|
1288
|
+
declare const ADVERTISEMENT_QUERY_KEY: (position: string) => QueryKey;
|
|
1289
|
+
declare const SET_ADVERTISEMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ADVERTISEMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAdvertisement>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1290
|
+
interface GetAdvertisementProps extends SingleQueryParams {
|
|
1291
|
+
}
|
|
1292
|
+
declare const GetAdvertisement: ({ clientApi, }: GetAdvertisementProps) => Promise<ConnectedXMResponse<Advertisement>>;
|
|
1293
|
+
declare const useGetAdvertisement: (position: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Advertisement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1294
|
+
|
|
1295
|
+
declare const BENEFITS_QUERY_KEY: () => QueryKey;
|
|
1296
|
+
declare const SET_BENEFITS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BENEFITS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBenefits>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1297
|
+
interface GetBenefitsProps extends InfiniteQueryParams {
|
|
1298
|
+
}
|
|
1299
|
+
declare const GetBenefits: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetBenefitsProps) => Promise<ConnectedXMResponse<Benefit[]>>;
|
|
1300
|
+
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>>;
|
|
1301
|
+
|
|
1302
|
+
declare const COMMUNITIES_QUERY_KEY: () => QueryKey;
|
|
1303
|
+
declare const SET_COMMUNITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1304
|
+
interface GetCommunitiesProps extends InfiniteQueryParams {
|
|
1305
|
+
privateCommunities?: boolean;
|
|
1306
|
+
}
|
|
1307
|
+
declare const GetCommunities: ({ pageParam, pageSize, orderBy, search, privateCommunities, queryClient, clientApi, locale, }: GetCommunitiesProps) => Promise<ConnectedXMResponse<Community[]>>;
|
|
1308
|
+
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>>;
|
|
1309
|
+
|
|
1310
|
+
declare const COMMUNITY_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1311
|
+
declare const SET_COMMUNITY_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunity>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>, options?: SetDataOptions) => void;
|
|
1312
|
+
interface GetCommunityProps extends SingleQueryParams {
|
|
1313
|
+
communityId: string;
|
|
1314
|
+
}
|
|
1315
|
+
declare const GetCommunity: ({ communityId, clientApi, }: GetCommunityProps) => Promise<ConnectedXMResponse<Community>>;
|
|
1316
|
+
declare const useGetCommunity: (communityId: string, options?: SingleQueryOptions<ReturnType<typeof GetCommunity>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Community>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1317
|
+
|
|
1318
|
+
declare const COMMUNITY_ACTIVITIES_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1319
|
+
declare const SET_COMMUNITY_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1320
|
+
interface GetCommunityActivitiesProps extends InfiniteQueryParams {
|
|
1321
|
+
communityId: string;
|
|
1322
|
+
}
|
|
1323
|
+
declare const GetCommunityActivities: ({ pageParam, pageSize, orderBy, search, communityId, queryClient, clientApi, locale, }: GetCommunityActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1324
|
+
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>>;
|
|
1325
|
+
|
|
1326
|
+
declare const COMMUNITY_ANNOUNCEMENTS_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1327
|
+
declare const SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_ANNOUNCEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityAnnouncements>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1328
|
+
interface GetCommunityAnnouncementsProps extends InfiniteQueryParams {
|
|
1329
|
+
communityId: string;
|
|
1330
|
+
}
|
|
1331
|
+
declare const GetCommunityAnnouncements: ({ communityId, pageParam, pageSize, orderBy, search, clientApi, }: GetCommunityAnnouncementsProps) => Promise<ConnectedXMResponse<Announcement[]>>;
|
|
1332
|
+
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>>;
|
|
1333
|
+
|
|
1334
|
+
declare const COMMUNITY_EVENTS_QUERY_KEY: (communityId: string, past?: boolean) => QueryKey;
|
|
1335
|
+
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;
|
|
1336
|
+
interface GetCommunityEventsProps extends InfiniteQueryParams {
|
|
1337
|
+
communityId: string;
|
|
1338
|
+
past?: boolean;
|
|
1339
|
+
}
|
|
1340
|
+
declare const GetCommunityEvents: ({ pageParam, pageSize, orderBy, search, communityId, past, queryClient, clientApi, locale, }: GetCommunityEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1341
|
+
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>>;
|
|
1342
|
+
|
|
1343
|
+
declare const COMMUNITY_MEMBERS_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1344
|
+
declare const SET_COMMUNITY_MEMBERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_MEMBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityMembers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1345
|
+
interface GetCommunityMembersProps extends InfiniteQueryParams {
|
|
1346
|
+
communityId: string;
|
|
1347
|
+
}
|
|
1348
|
+
declare const GetCommunityMembers: ({ pageParam, pageSize, orderBy, search, communityId, clientApi, }: GetCommunityMembersProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
|
|
1349
|
+
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>>;
|
|
1350
|
+
|
|
1351
|
+
declare const COMMUNITY_MODERATORS_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1352
|
+
declare const SET_COMMUNITY_MODERATORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_MODERATORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunityModerators>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1353
|
+
interface GetCommunityModeratorsProps extends InfiniteQueryParams {
|
|
1354
|
+
communityId: string;
|
|
1355
|
+
}
|
|
1356
|
+
declare const GetCommunityModerators: ({ pageParam, pageSize, orderBy, search, communityId, clientApi, }: GetCommunityModeratorsProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
|
|
1357
|
+
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>>;
|
|
1358
|
+
|
|
1359
|
+
declare const COMMUNITY_SPONSORS_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1360
|
+
declare const SET_COMMUNITY_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof COMMUNITY_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetCommunitySponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1361
|
+
interface GetCommunitySponsorsProps extends InfiniteQueryParams {
|
|
1362
|
+
communityId: string;
|
|
1363
|
+
}
|
|
1364
|
+
declare const GetCommunitySponsors: ({ pageParam, pageSize, orderBy, search, communityId, queryClient, clientApi, locale, }: GetCommunitySponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1365
|
+
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>>;
|
|
1366
|
+
|
|
1367
|
+
declare const CONTENT_QUERY_KEY: (contentId: string) => QueryKey;
|
|
1368
|
+
declare const SET_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1369
|
+
interface GetContentParams extends SingleQueryParams {
|
|
1370
|
+
contentId: string;
|
|
1371
|
+
}
|
|
1372
|
+
declare const GetContent: ({ contentId, clientApi, }: GetContentParams) => Promise<ConnectedXMResponse<Content>>;
|
|
1373
|
+
declare const useGetContent: (contentId: string, options?: SingleQueryOptions<ReturnType<typeof GetContent>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Content>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1374
|
+
|
|
1375
|
+
declare const CONTENT_ACTIVITIES_QUERY_KEY: (contentId: string) => QueryKey;
|
|
1376
|
+
declare const SET_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1377
|
+
interface GetContentActivitiesParams extends InfiniteQueryParams {
|
|
1378
|
+
contentId: string;
|
|
1379
|
+
}
|
|
1380
|
+
declare const GetContentActivities: ({ pageParam, pageSize, orderBy, search, contentId, queryClient, clientApi, locale, }: GetContentActivitiesParams) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1381
|
+
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>>;
|
|
1382
|
+
|
|
1383
|
+
declare const CONTENTS_QUERY_KEY: () => QueryKey;
|
|
1384
|
+
declare const SET_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1385
|
+
interface GetContentsParams extends InfiniteQueryParams {
|
|
1386
|
+
}
|
|
1387
|
+
declare const GetContents: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
1388
|
+
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>>;
|
|
1389
|
+
|
|
1390
|
+
declare const CONTENT_TYPE_QUERY_KEY: (contentTypeId: string) => QueryKey;
|
|
1391
|
+
declare const SET_CONTENT_TYPE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentType>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1392
|
+
interface GetContentTypeParams extends SingleQueryParams {
|
|
1393
|
+
contentTypeId: string;
|
|
1394
|
+
}
|
|
1395
|
+
declare const GetContentType: ({ contentTypeId, clientApi, }: GetContentTypeParams) => Promise<ConnectedXMResponse<ContentType>>;
|
|
1396
|
+
declare const useGetContentType: (contentTypeId: string, options?: SingleQueryOptions<ReturnType<typeof GetContentType>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<ContentType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1397
|
+
|
|
1398
|
+
declare const CONTENT_TYPE_CONTENTS_QUERY_KEY: (contentTypeId: string) => QueryKey;
|
|
1399
|
+
declare const SET_CONTENT_TYPE_CONTENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPE_CONTENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentTypeContents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1400
|
+
interface GetContentTypeContentsParams extends InfiniteQueryParams {
|
|
1401
|
+
contentTypeId: string;
|
|
1402
|
+
}
|
|
1403
|
+
declare const GetContentTypeContents: ({ pageParam, pageSize, orderBy, search, contentTypeId, queryClient, clientApi, locale, }: GetContentTypeContentsParams) => Promise<ConnectedXMResponse<Content[]>>;
|
|
1404
|
+
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>>;
|
|
1405
|
+
|
|
1406
|
+
declare const CONTENT_TYPES_QUERY_KEY: () => QueryKey;
|
|
1407
|
+
declare const SET_CONTENT_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CONTENT_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetContentTypes>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1408
|
+
interface GetContentTypesParams extends InfiniteQueryParams {
|
|
1409
|
+
}
|
|
1410
|
+
declare const GetContentTypes: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetContentTypesParams) => Promise<ConnectedXMResponse<ContentType[]>>;
|
|
1411
|
+
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>>;
|
|
1412
|
+
|
|
1413
|
+
declare const EVENT_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1414
|
+
declare const SET_EVENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvent>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1415
|
+
interface GetEventProps extends SingleQueryParams {
|
|
1416
|
+
eventId: string;
|
|
1417
|
+
}
|
|
1418
|
+
declare const GetEvent: ({ eventId, clientApi, }: GetEventProps) => Promise<ConnectedXMResponse<Event>>;
|
|
1419
|
+
declare const useGetEvent: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1420
|
+
|
|
1421
|
+
declare const EVENT_ACTIVITIES_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1422
|
+
declare const SET_EVENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventActivities>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1423
|
+
interface GetEventActivitiesProps extends InfiniteQueryParams {
|
|
1424
|
+
eventId: string;
|
|
1425
|
+
}
|
|
1426
|
+
declare const GetEventActivities: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1427
|
+
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>>;
|
|
1428
|
+
|
|
1429
|
+
declare const EVENT_FAQ_SECTION_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
|
|
1430
|
+
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;
|
|
1431
|
+
interface GetEventFAQSectionProps extends SingleQueryParams {
|
|
1432
|
+
eventId: string;
|
|
1433
|
+
sectionId: string;
|
|
1434
|
+
}
|
|
1435
|
+
declare const GetEventFAQSection: ({ eventId, sectionId, clientApi, }: GetEventFAQSectionProps) => Promise<ConnectedXMResponse<FaqSection>>;
|
|
1436
|
+
declare const useGetEventFAQSection: (eventId: string, sectionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSection>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<FaqSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1437
|
+
|
|
1438
|
+
declare const EVENT_FAQ_SECTION_QUESTION_QUERY_KEY: (eventId: string, sectionId: string, questionId: string) => QueryKey;
|
|
1439
|
+
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;
|
|
1440
|
+
interface GetEventFAQSectionQuestionProps extends SingleQueryParams {
|
|
1441
|
+
eventId: string;
|
|
1442
|
+
sectionId: string;
|
|
1443
|
+
questionId: string;
|
|
1444
|
+
}
|
|
1445
|
+
declare const GetEventFAQSectionQuestion: ({ eventId, sectionId, questionId, clientApi, }: GetEventFAQSectionQuestionProps) => Promise<ConnectedXMResponse<Faq>>;
|
|
1446
|
+
declare const useGetEventFAQSectionQuestion: (eventId: string, sectionId: string, questionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFAQSectionQuestion>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Faq>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1447
|
+
|
|
1448
|
+
declare const EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY: (eventId: string, sectionId: string) => QueryKey;
|
|
1449
|
+
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;
|
|
1450
|
+
interface GetEventFaqsProps extends InfiniteQueryParams {
|
|
1451
|
+
eventId: string;
|
|
1452
|
+
sectionId: string;
|
|
1453
|
+
}
|
|
1454
|
+
declare const GetEventFaqs: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventFaqsProps) => Promise<ConnectedXMResponse<Faq[]>>;
|
|
1455
|
+
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>>;
|
|
1456
|
+
|
|
1457
|
+
declare const EVENT_FAQ_SECTIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1458
|
+
declare const SET_EVENT_FAQ_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_FAQ_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventFaqSections>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1459
|
+
interface GetEventFaqSectionsProps extends InfiniteQueryParams {
|
|
1460
|
+
eventId: string;
|
|
1461
|
+
}
|
|
1462
|
+
declare const GetEventFaqSections: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventFaqSectionsProps) => Promise<ConnectedXMResponse<FaqSection[]>>;
|
|
1463
|
+
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>>;
|
|
1464
|
+
|
|
1465
|
+
declare const EVENT_PAGE_QUERY_KEY: (eventId: string, pageId: string) => QueryKey;
|
|
1466
|
+
declare const SET_EVENT_PAGE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, pageId: string], response: Awaited<ReturnType<typeof GetEventPage>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1467
|
+
interface GetEventPageProps extends SingleQueryParams {
|
|
1468
|
+
eventId: string;
|
|
1469
|
+
pageId: string;
|
|
1470
|
+
}
|
|
1471
|
+
declare const GetEventPage: ({ eventId, pageId, clientApi, }: GetEventPageProps) => Promise<ConnectedXMResponse<EventPage>>;
|
|
1472
|
+
declare const useGetEventPage: (eventId: string, pageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<EventPage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1473
|
+
|
|
1474
|
+
declare const EVENT_PAGES_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1475
|
+
declare const SET_EVENT_PAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPages>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1476
|
+
interface GetEventPagesProps extends InfiniteQueryParams {
|
|
1477
|
+
eventId: string;
|
|
1478
|
+
}
|
|
1479
|
+
declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventPagesProps) => Promise<ConnectedXMResponse<BaseEventPage[]>>;
|
|
1480
|
+
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>>;
|
|
1481
|
+
|
|
1482
|
+
declare const EVENT_QUESTION_VALUES_QUERY_KEY: (eventId: string, questionId: string) => unknown[];
|
|
1483
|
+
interface GetEventQuestionSearchValuesProps extends InfiniteQueryParams {
|
|
1484
|
+
eventId: string;
|
|
1485
|
+
questionId: string;
|
|
1486
|
+
}
|
|
1487
|
+
declare const GetEventQuestionSearchValues: ({ eventId, questionId, pageParam, pageSize, orderBy, search, clientApi, }: GetEventQuestionSearchValuesProps) => Promise<ConnectedXMResponse<RegistrationQuestionSearchValue[]>>;
|
|
1488
|
+
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>>;
|
|
1489
|
+
|
|
1490
|
+
declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1491
|
+
declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1492
|
+
interface GetEventSessionsProps extends InfiniteQueryParams {
|
|
1493
|
+
eventId: string;
|
|
1494
|
+
}
|
|
1495
|
+
declare const GetEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventSessionsProps) => Promise<ConnectedXMResponse<Session[]>>;
|
|
1496
|
+
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>>;
|
|
1497
|
+
|
|
1498
|
+
declare const EVENT_REGISTRANTS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1499
|
+
declare const SET_EVENT_REGISTRANTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_REGISTRANTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1500
|
+
interface GetEventRegistrantsProps extends InfiniteQueryParams {
|
|
1501
|
+
eventId: string;
|
|
1502
|
+
}
|
|
1503
|
+
declare const GetEventRegistrants: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventRegistrantsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1504
|
+
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>>;
|
|
1505
|
+
|
|
1506
|
+
declare const EVENTS_QUERY_KEY: (past?: boolean) => QueryKey;
|
|
1507
|
+
declare const SET_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEvents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1508
|
+
interface GetEventsProps extends InfiniteQueryParams {
|
|
1509
|
+
past?: boolean;
|
|
1510
|
+
}
|
|
1511
|
+
declare const GetEvents: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApi, locale, }: GetEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1512
|
+
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>>;
|
|
1513
|
+
|
|
1514
|
+
declare const EVENT_SESSION_QUERY_KEY: (eventId: string, sessionId: string) => QueryKey;
|
|
1515
|
+
declare const SET_EVENT_SESSION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSession>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1516
|
+
interface GetEventSessionProps extends SingleQueryParams {
|
|
1517
|
+
eventId: string;
|
|
1518
|
+
sessionId: string;
|
|
1519
|
+
}
|
|
1520
|
+
declare const GetEventSession: ({ eventId, sessionId, clientApi, }: GetEventSessionProps) => Promise<ConnectedXMResponse<Session>>;
|
|
1521
|
+
declare const useGetEventSession: (eventId: string, sessionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSession>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Session>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1522
|
+
|
|
1523
|
+
declare const EVENT_SPEAKER_QUERY_KEY: (eventId: string, speakerId: string) => QueryKey;
|
|
1524
|
+
declare const SET_EVENT_SPEAKER_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, speakerId: string], response: Awaited<ReturnType<typeof GetEventSpeaker>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1525
|
+
interface GetEventSpeakerProps extends SingleQueryParams {
|
|
1526
|
+
eventId: string;
|
|
1527
|
+
speakerId: string;
|
|
1528
|
+
}
|
|
1529
|
+
declare const GetEventSpeaker: ({ eventId, speakerId, clientApi, }: GetEventSpeakerProps) => Promise<ConnectedXMResponse<Speaker>>;
|
|
1530
|
+
declare const useGetEventSpeaker: (eventId: string, speakerId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Speaker>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1531
|
+
|
|
1532
|
+
declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1533
|
+
declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakers>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1534
|
+
interface GetEventSpeakersProps extends InfiniteQueryParams {
|
|
1535
|
+
eventId: string;
|
|
1536
|
+
}
|
|
1537
|
+
declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventSpeakersProps) => Promise<ConnectedXMResponse<Speaker[]>>;
|
|
1538
|
+
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>>;
|
|
1539
|
+
|
|
1540
|
+
declare const EVENT_SPONSORS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1541
|
+
declare const SET_EVENT_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1542
|
+
interface GetEventSponsorsProps extends InfiniteQueryParams {
|
|
1543
|
+
eventId: string;
|
|
1544
|
+
}
|
|
1545
|
+
declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1546
|
+
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>>;
|
|
1547
|
+
|
|
1548
|
+
declare const EVENT_TICKETS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1549
|
+
declare const SET_EVENT_TICKETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTickets>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1550
|
+
interface GetEventTicketsProps extends InfiniteQueryParams {
|
|
1551
|
+
eventId: string;
|
|
1552
|
+
}
|
|
1553
|
+
declare const GetEventTickets: ({ eventId, pageParam, pageSize, orderBy, search, clientApi, }: GetEventTicketsProps) => Promise<ConnectedXMResponse<Ticket[]>>;
|
|
1554
|
+
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>>;
|
|
1555
|
+
|
|
1556
|
+
declare const EVENTS_FEATURED_QUERY_KEY: () => QueryKey;
|
|
1557
|
+
declare const SET_EVENTS_FEATURED_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_FEATURED_QUERY_KEY>, response: Awaited<ReturnType<typeof GetFeaturedEvents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1558
|
+
interface GetFeaturedEventsProps extends InfiniteQueryParams {
|
|
1559
|
+
}
|
|
1560
|
+
declare const GetFeaturedEvents: ({ pageParam, pageSize, orderBy, queryClient, clientApi, locale, }: GetFeaturedEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1561
|
+
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>>;
|
|
1562
|
+
|
|
1563
|
+
declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
|
|
1564
|
+
interface GetOrganizationParams extends SingleQueryParams {
|
|
1565
|
+
}
|
|
1566
|
+
declare const GetOrganization: ({ clientApi, }: GetOrganizationParams) => Promise<ConnectedXMResponse<Organization>>;
|
|
1567
|
+
declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Organization>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1568
|
+
|
|
1569
|
+
declare const ORGANIZATION_EXPLORE_QUERY_KEY: () => QueryKey;
|
|
1570
|
+
interface Explore {
|
|
1571
|
+
contents: Content[];
|
|
1572
|
+
events: BaseEvent[];
|
|
1573
|
+
communities: BaseCommunity[];
|
|
1574
|
+
recommendations: BaseAccount[];
|
|
1575
|
+
}
|
|
1576
|
+
interface GetOrganizationExploreProps extends SingleQueryParams {
|
|
1577
|
+
}
|
|
1578
|
+
declare const GetOrganizationExplore: ({ clientApi, }: GetOrganizationExploreProps) => Promise<ConnectedXMResponse<Explore>>;
|
|
1579
|
+
declare const useGetOrganizationExplore: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationExplore>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Explore>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1580
|
+
|
|
1581
|
+
declare const ORGANIZATION_PAGE_QUERY_KEY: (type: PageType) => QueryKey;
|
|
1582
|
+
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;
|
|
1583
|
+
type PageType = "about" | "team" | "privacy" | "terms";
|
|
1584
|
+
interface GetOrganizationPageProps extends SingleQueryParams {
|
|
1585
|
+
type: PageType;
|
|
1586
|
+
}
|
|
1587
|
+
declare const GetOrganizationPage: ({ type, clientApi, }: GetOrganizationPageProps) => Promise<ConnectedXMResponse<Page | null>>;
|
|
1588
|
+
declare const useGetOrganizationPage: (type: PageType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPage>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Page | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1589
|
+
|
|
1590
|
+
declare const ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY: () => unknown[];
|
|
1591
|
+
interface GetOrganizationSubscriptionProductsProps extends InfiniteQueryParams {
|
|
1592
|
+
}
|
|
1593
|
+
declare const GetOrganizationSubscriptionProducts: ({ clientApi, }: GetOrganizationSubscriptionProductsProps) => Promise<ConnectedXMResponse<SubscriptionProduct[]>>;
|
|
1594
|
+
declare const useGetOrganizationSubscriptionProducts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetOrganizationSubscriptionProducts>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<SubscriptionProduct[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1595
|
+
|
|
1596
|
+
declare const ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY: () => unknown[];
|
|
1597
|
+
interface GetOrganizationPaymentIntegrationParams extends SingleQueryParams {
|
|
1598
|
+
}
|
|
1599
|
+
declare const GetOrganizationPaymentIntegration: ({ clientApi, }: GetOrganizationPaymentIntegrationParams) => Promise<ConnectedXMResponse<{
|
|
1600
|
+
connectionId: string;
|
|
1601
|
+
type: "stripe" | "paypal";
|
|
1602
|
+
}>>;
|
|
1603
|
+
declare const useGetOrganizationPaymentIntegration: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentIntegration>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<{
|
|
1604
|
+
connectionId: string;
|
|
1605
|
+
type: "stripe" | "paypal";
|
|
1606
|
+
}>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1607
|
+
|
|
1608
|
+
declare const SELF_CHAT_CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1609
|
+
declare const SET_SELF_CHAT_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetSelfChatChannel>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1610
|
+
interface GetSelfChatChannelProps extends SingleQueryParams {
|
|
1611
|
+
channelId: string;
|
|
1612
|
+
}
|
|
1613
|
+
declare const GetSelfChatChannel: ({ channelId, clientApi, }: GetSelfChatChannelProps) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
1614
|
+
declare const useGetSelfChatChannel: (channelId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfChatChannel>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<ChatChannelMember>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1615
|
+
|
|
1616
|
+
declare const SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1617
|
+
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;
|
|
1618
|
+
interface GetSelfChatChannelMembersProps extends InfiniteQueryParams {
|
|
1619
|
+
channelId: string;
|
|
1620
|
+
}
|
|
1621
|
+
declare const GetSelfChatChannelMembers: ({ channelId, pageParam, pageSize, orderBy, search, clientApi, }: GetSelfChatChannelMembersProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
|
|
1622
|
+
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>>;
|
|
1623
|
+
|
|
1624
|
+
declare const SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY: (channelId: string) => QueryKey;
|
|
1625
|
+
declare const SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannelMessages>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1626
|
+
interface GetSelfChatChannelMessagesProps extends InfiniteQueryParams {
|
|
1627
|
+
channelId: string;
|
|
1628
|
+
}
|
|
1629
|
+
declare const GetSelfChatChannelMessages: ({ channelId, pageParam, pageSize, orderBy, search, queryClient, clientApi, }: GetSelfChatChannelMessagesProps) => Promise<ConnectedXMResponse<ChatChannelMessage[]>>;
|
|
1630
|
+
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>>;
|
|
1631
|
+
|
|
1632
|
+
declare const SELF_CHAT_CHANNELS_QUERY_KEY: () => QueryKey;
|
|
1633
|
+
declare const SET_SELF_CHAT_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfChatChannels>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1634
|
+
interface GetSelfChatChannelsProps extends InfiniteQueryParams {
|
|
1635
|
+
}
|
|
1636
|
+
declare const GetSelfChatChannels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfChatChannelsProps) => Promise<ConnectedXMResponse<ChatChannelMember[]>>;
|
|
1637
|
+
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>>;
|
|
1638
|
+
|
|
1639
|
+
declare const SELF_EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1640
|
+
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;
|
|
1641
|
+
interface GetSelfEventRegistrationProps extends SingleQueryParams {
|
|
1642
|
+
eventId: string;
|
|
1643
|
+
ticket?: string;
|
|
1644
|
+
quantity?: number;
|
|
1645
|
+
coupon?: string;
|
|
1646
|
+
}
|
|
1647
|
+
declare const GetSelfEventRegistration: ({ eventId, ticket, quantity, coupon, clientApi, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
|
|
1648
|
+
declare const useGetSelfEventRegistration: (eventId: string, ticket?: string, quantity?: number, coupon?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistration>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1649
|
+
|
|
1650
|
+
interface CheckoutResponse {
|
|
1651
|
+
type: "stripe" | "paypal";
|
|
1652
|
+
connectionId: string;
|
|
1653
|
+
intentId: string;
|
|
1654
|
+
secret: string;
|
|
1655
|
+
}
|
|
1656
|
+
declare const SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY: (eventId: string, registrationId: string) => unknown[];
|
|
1657
|
+
interface GetSelfEventRegistrationCheckoutProps extends SingleQueryParams {
|
|
1658
|
+
eventId: string;
|
|
1659
|
+
registrationId: string;
|
|
1660
|
+
}
|
|
1661
|
+
declare const GetSelfEventRegistrationCheckout: ({ eventId, registrationId, clientApi, }: GetSelfEventRegistrationCheckoutProps) => Promise<Awaited<ConnectedXMResponse<CheckoutResponse>>>;
|
|
1662
|
+
declare const useGetSelfEventRegistrationCheckout: (eventId: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationCheckout>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<CheckoutResponse>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1663
|
+
|
|
1664
|
+
declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
|
|
1665
|
+
interface GetSelfSubcriptionProps extends SingleQueryParams {
|
|
1666
|
+
subscriptionId: string;
|
|
1667
|
+
}
|
|
1668
|
+
declare const GetSelfSubcription: ({ subscriptionId, clientApi, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
|
|
1669
|
+
declare const useGetSelfSubcription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfSubcription>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1670
|
+
|
|
1671
|
+
declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unknown[];
|
|
1672
|
+
interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
|
|
1673
|
+
status?: SubscriptionStatus;
|
|
1674
|
+
}
|
|
1675
|
+
declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
|
|
1676
|
+
declare const useGetSelfSubscriptions: (status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptions>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1677
|
+
|
|
1678
|
+
declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
|
|
1679
|
+
interface GetSelfSubscriptionPaymentsProps extends InfiniteQueryParams {
|
|
1680
|
+
subscriptionId: string;
|
|
1681
|
+
}
|
|
1682
|
+
declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApi, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
|
|
1683
|
+
declare const useGetSelfSubscriptionPayments: (subscriptionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApi">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptionPayments>>>) => _tanstack_react_query_build_legacy_types.UseInfiniteQueryResult<_tanstack_query_core_build_legacy_queryClient_Ho_z40Sw.B<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
1684
|
+
|
|
1685
|
+
declare const SELF_QUERY_KEY: (authenticated?: boolean) => QueryKey;
|
|
1686
|
+
declare const SET_SELF_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelf>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1687
|
+
interface GetSelfProps extends SingleQueryParams {
|
|
1688
|
+
authenticated?: boolean;
|
|
1689
|
+
}
|
|
1690
|
+
declare const GetSelf: ({ authenticated, clientApi, }: GetSelfProps) => Promise<ConnectedXMResponse<Self>>;
|
|
1691
|
+
declare const useGetSelf: (authenticated?: boolean, options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1692
|
+
|
|
1693
|
+
declare const SELF_ACTIVITIES_QUERY_KEY: () => QueryKey;
|
|
1694
|
+
interface GetSelfActivitiesProps extends InfiniteQueryParams {
|
|
1695
|
+
}
|
|
1696
|
+
declare const GetSelfActivities: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1697
|
+
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>>;
|
|
1698
|
+
|
|
1699
|
+
declare const SELF_ANNOUNCEMENT_QUERY_KEY: (announcementId: string) => QueryKey;
|
|
1700
|
+
interface GetSelfAnnouncementProps extends SingleQueryParams {
|
|
1701
|
+
announcementId: string;
|
|
1702
|
+
}
|
|
1703
|
+
declare const GetSelfAnnouncement: ({ announcementId, clientApi, }: GetSelfAnnouncementProps) => Promise<ConnectedXMResponse<Announcement>>;
|
|
1704
|
+
declare const useGetSelfAnnouncement: (announcementId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfAnnouncement>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1705
|
+
|
|
1706
|
+
declare const SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY: (communityId: string) => QueryKey;
|
|
1707
|
+
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;
|
|
1708
|
+
interface GetSelfCommunityMembershipProps extends SingleQueryParams {
|
|
1709
|
+
communityId: string;
|
|
1710
|
+
}
|
|
1711
|
+
declare const GetSelfCommunityMembership: ({ communityId, clientApi, }: GetSelfCommunityMembershipProps) => Promise<ConnectedXMResponse<CommunityMembership>>;
|
|
1712
|
+
declare const useGetSelfCommunityMembership: (communityId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfCommunityMembership>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<CommunityMembership>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1713
|
+
|
|
1714
|
+
declare const SELF_COMMUNITY_MEMBERSHIPS_QUERY_KEY: () => QueryKey;
|
|
1715
|
+
interface GetSelfCommunityMembershipsProps extends InfiniteQueryParams {
|
|
1716
|
+
}
|
|
1717
|
+
declare const GetSelfCommunityMemberships: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSelfCommunityMembershipsProps) => Promise<ConnectedXMResponse<CommunityMembership[]>>;
|
|
1718
|
+
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>>;
|
|
1719
|
+
|
|
1720
|
+
declare const SELF_DELEGATE_OF_QUERY_KEY: () => QueryKey;
|
|
1721
|
+
interface GetSelfDelegateOfProps extends InfiniteQueryParams {
|
|
1722
|
+
}
|
|
1723
|
+
declare const GetSelfDelegateOf: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfDelegateOfProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1724
|
+
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>>;
|
|
1725
|
+
|
|
1726
|
+
declare const SELF_DELEGATES_QUERY_KEY: () => QueryKey;
|
|
1727
|
+
interface GetSelfDelegatesProps extends InfiniteQueryParams {
|
|
1728
|
+
}
|
|
1729
|
+
declare const GetSelfDelegates: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfDelegatesProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1730
|
+
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>>;
|
|
1731
|
+
|
|
1732
|
+
declare const SELF_EVENT_LISTING_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1733
|
+
declare const SET_SELF_EVENT_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1734
|
+
interface GetSelfEventListingProps extends SingleQueryParams {
|
|
1735
|
+
eventId: string;
|
|
1736
|
+
}
|
|
1737
|
+
declare const GetSelfEventListing: ({ eventId, clientApi, }: GetSelfEventListingProps) => Promise<ConnectedXMResponse<EventListing>>;
|
|
1738
|
+
declare const useGetSelfEventListing: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListing>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1739
|
+
|
|
1740
|
+
declare const SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY: (eventId: string, checkedIn: boolean) => unknown[];
|
|
1741
|
+
interface GetSelfEventListingRegistrationsProps extends InfiniteQueryParams {
|
|
1742
|
+
eventId: string;
|
|
1743
|
+
checkedIn?: boolean;
|
|
1744
|
+
}
|
|
1745
|
+
declare const GetSelfEventListingRegistrations: ({ eventId, pageParam, pageSize, orderBy, search, checkedIn, clientApi, }: GetSelfEventListingRegistrationsProps) => Promise<ConnectedXMResponse<Registration[]>>;
|
|
1746
|
+
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>>;
|
|
1747
|
+
|
|
1748
|
+
declare const SELF_EVENT_LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
|
|
1749
|
+
interface GetSelfEventListingsProps extends InfiniteQueryParams {
|
|
1750
|
+
past?: boolean;
|
|
1751
|
+
}
|
|
1752
|
+
declare const GetSelfEventListings: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApi, locale, }: GetSelfEventListingsProps) => Promise<ConnectedXMResponse<EventListing[]>>;
|
|
1753
|
+
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>>;
|
|
1754
|
+
|
|
1755
|
+
declare const SELF_EVENTS_QUERY_KEY: (past: boolean) => QueryKey;
|
|
1756
|
+
interface GetSelfEventsProps extends InfiniteQueryParams {
|
|
1757
|
+
past?: boolean;
|
|
1758
|
+
}
|
|
1759
|
+
declare const GetSelfEvents: ({ pageParam, pageSize, orderBy, search, past, queryClient, clientApi, locale, }: GetSelfEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1760
|
+
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>>;
|
|
1761
|
+
|
|
1762
|
+
declare const SELF_EVENT_SESSIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
1763
|
+
interface GetSelfEventSessionsProps extends InfiniteQueryParams {
|
|
1764
|
+
eventId: string;
|
|
1765
|
+
}
|
|
1766
|
+
declare const GetSelfEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfEventSessionsProps) => Promise<ConnectedXMResponse<Session[]>>;
|
|
1767
|
+
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>>;
|
|
1768
|
+
|
|
1769
|
+
declare const SELF_FEED_QUERY_KEY: () => QueryKey;
|
|
1770
|
+
interface GetSelfFeedProps extends InfiniteQueryParams {
|
|
1771
|
+
}
|
|
1772
|
+
declare const GetSelfFeed: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfFeedProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
1773
|
+
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>>;
|
|
1774
|
+
|
|
1775
|
+
declare const SELF_INTERESTS_QUERY_KEY: () => QueryKey;
|
|
1776
|
+
interface GetSelfInterestsProps extends InfiniteQueryParams {
|
|
1777
|
+
}
|
|
1778
|
+
declare const GetSelfInterests: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSelfInterestsProps) => Promise<ConnectedXMResponse<Interest[]>>;
|
|
1779
|
+
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>>;
|
|
1780
|
+
|
|
1781
|
+
declare const SELF_PREFERENCES_QUERY_KEY: () => QueryKey;
|
|
1782
|
+
interface GetSelfNotificationPreferencesProps extends SingleQueryParams {
|
|
1783
|
+
}
|
|
1784
|
+
declare const GetSelfNotificationPreferences: ({ clientApi, }: GetSelfNotificationPreferencesProps) => Promise<ConnectedXMResponse<NotificationPreferences>>;
|
|
1785
|
+
declare const useGetSelfNotificationPreferences: (options?: SingleQueryOptions<ReturnType<typeof GetSelfNotificationPreferences>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<NotificationPreferences>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1786
|
+
|
|
1787
|
+
declare const SELF_NOTIFICATIONS_QUERY_KEY: (filters: string) => QueryKey;
|
|
1788
|
+
interface GetSelfNotificationsProps extends InfiniteQueryParams {
|
|
1789
|
+
filters?: string;
|
|
1790
|
+
}
|
|
1791
|
+
declare const GetSelfNotifications: ({ pageParam, pageSize, orderBy, search, filters, clientApi, }: GetSelfNotificationsProps) => Promise<ConnectedXMResponse<Notification$1[]>>;
|
|
1792
|
+
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>>;
|
|
1793
|
+
|
|
1794
|
+
declare const SELF_NOTIFICATION_COUNT_QUERY_KEY: (filters: string) => QueryKey;
|
|
1795
|
+
interface GetSelfNewNotificationsCountProps extends SingleQueryParams {
|
|
1796
|
+
filters?: string;
|
|
1797
|
+
}
|
|
1798
|
+
declare const GetSelfNewNotificationsCount: ({ filters, clientApi, }: GetSelfNewNotificationsCountProps) => Promise<ConnectedXMResponse<Notification[]>>;
|
|
1799
|
+
declare const useGetSelfNewNotificationsCount: (filters?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfNewNotificationsCount>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Notification[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1800
|
+
|
|
1801
|
+
declare const SELF_PUSH_DEVICE_QUERY_KEY: (pushDeviceId: string) => QueryKey;
|
|
1802
|
+
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;
|
|
1803
|
+
interface GetSelfPushDeviceProps extends SingleQueryParams {
|
|
1804
|
+
pushDeviceId: string;
|
|
1805
|
+
}
|
|
1806
|
+
declare const GetSelfPushDevice: ({ pushDeviceId, clientApi, }: GetSelfPushDeviceProps) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
1807
|
+
declare const useGetSelfPushDevice: (pushDeviceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfPushDevice>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1808
|
+
|
|
1809
|
+
declare const SELF_PUSH_DEVICES_QUERY_KEY: () => QueryKey;
|
|
1810
|
+
interface GetSelfPushDevicesProps extends InfiniteQueryParams {
|
|
1811
|
+
}
|
|
1812
|
+
declare const GetSelfPushDevices: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSelfPushDevicesProps) => Promise<ConnectedXMResponse<PushDevice[]>>;
|
|
1813
|
+
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>>;
|
|
1814
|
+
|
|
1815
|
+
declare const SELF_RECOMMENDATIONS_QUERY_KEY: (type: string, eventId?: string) => unknown[];
|
|
1816
|
+
type RecomendationType = "following" | "contacts" | "popular";
|
|
1817
|
+
interface GetSelfRecommendationsProps extends InfiniteQueryParams {
|
|
1818
|
+
eventId?: string;
|
|
1819
|
+
type?: RecomendationType;
|
|
1820
|
+
}
|
|
1821
|
+
declare const GetSelfRecommendations: ({ pageParam, pageSize, orderBy, search, eventId, type, queryClient, clientApi, locale, }: GetSelfRecommendationsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1822
|
+
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>>;
|
|
1823
|
+
|
|
1824
|
+
declare const SELF_PENDING_TRANSFER_QUERY_KEY: (transferId: string) => QueryKey;
|
|
1825
|
+
interface GetSelfTransferProps extends SingleQueryParams {
|
|
1826
|
+
transferId: string;
|
|
1827
|
+
}
|
|
1828
|
+
declare const GetSelfTransfer: ({ transferId, clientApi, }: GetSelfTransferProps) => Promise<ConnectedXMResponse<Transfer>>;
|
|
1829
|
+
declare const useGetSelfTransfer: (transferId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfTransfer>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1830
|
+
|
|
1831
|
+
declare const SELF_TRANSFERS_QUERY_KEY: () => QueryKey;
|
|
1832
|
+
interface GetSelfTransfersProps extends InfiniteQueryParams {
|
|
1833
|
+
}
|
|
1834
|
+
declare const GetSelfTransfers: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSelfTransfersProps) => Promise<ConnectedXMResponse<Transfer[]>>;
|
|
1835
|
+
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>>;
|
|
1836
|
+
|
|
1837
|
+
declare const SERIES_QUERY_KEY: (seriesId: string) => QueryKey;
|
|
1838
|
+
declare const SET_SERIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeries>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1839
|
+
interface GetSeriesProps extends SingleQueryParams {
|
|
1840
|
+
seriesId: string;
|
|
1841
|
+
}
|
|
1842
|
+
declare const GetSeries: ({ seriesId, clientApi, }: GetSeriesProps) => Promise<ConnectedXMResponse<Series>>;
|
|
1843
|
+
declare const useGetSeries: (seriesId: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Series>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1844
|
+
|
|
1845
|
+
declare const SERIES_EVENTS_QUERY_KEY: (seriesId: string) => QueryKey;
|
|
1846
|
+
declare const SET_SERIES_EVENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_EVENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesEvents>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1847
|
+
interface GetSeriesEventsProps extends InfiniteQueryParams {
|
|
1848
|
+
seriesId: string;
|
|
1849
|
+
}
|
|
1850
|
+
declare const GetSeriesEvents: ({ seriesId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSeriesEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
1851
|
+
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>>;
|
|
1852
|
+
|
|
1853
|
+
declare const SERIES_LIST_QUERY_KEY: () => QueryKey;
|
|
1854
|
+
declare const SET_SERIES_LIST_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SERIES_LIST_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSeriesList>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1855
|
+
interface GetSeriesListProps extends InfiniteQueryParams {
|
|
1856
|
+
past?: boolean;
|
|
1857
|
+
}
|
|
1858
|
+
declare const GetSeriesList: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetSeriesListProps) => Promise<ConnectedXMResponse<Series[]>>;
|
|
1859
|
+
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>>;
|
|
1860
|
+
|
|
1861
|
+
declare const LEVEL_QUERY_KEY: (levelId: string) => QueryKey;
|
|
1862
|
+
declare const SET_LEVEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevel>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1863
|
+
interface GetLevelProps extends SingleQueryParams {
|
|
1864
|
+
levelId: string;
|
|
1865
|
+
}
|
|
1866
|
+
declare const GetLevel: ({ levelId, clientApi, }: GetLevelProps) => Promise<ConnectedXMResponse<SponsorshipLevel>>;
|
|
1867
|
+
declare const useGetLevel: (levelId: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<SponsorshipLevel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1868
|
+
|
|
1869
|
+
declare const LEVELS_QUERY_KEY: () => QueryKey;
|
|
1870
|
+
declare const SET_LEVELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevels>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1871
|
+
interface GetLevelsProps extends InfiniteQueryParams {
|
|
1872
|
+
}
|
|
1873
|
+
declare const GetLevels: ({ pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetLevelsProps) => Promise<ConnectedXMResponse<SponsorshipLevel[]>>;
|
|
1874
|
+
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>>;
|
|
1875
|
+
|
|
1876
|
+
declare const LEVEL_SPONSORS_QUERY_KEY: (levelId: string) => QueryKey;
|
|
1877
|
+
declare const SET_LEVEL_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LEVEL_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLevelSponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1878
|
+
interface GetLevelSponsorsProps extends InfiniteQueryParams {
|
|
1879
|
+
levelId: string;
|
|
1880
|
+
}
|
|
1881
|
+
declare const GetLevelSponsors: ({ levelId, pageParam, pageSize, orderBy, search, queryClient, clientApi, locale, }: GetLevelSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1882
|
+
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>>;
|
|
1883
|
+
|
|
1884
|
+
declare const SPONSOR_QUERY_KEY: (sponsorId: string) => QueryKey;
|
|
1885
|
+
declare const SET_SPONSOR_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SPONSOR_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSponsor>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1886
|
+
interface GetSponsorProps extends SingleQueryParams {
|
|
1887
|
+
accountId: string;
|
|
1888
|
+
}
|
|
1889
|
+
declare const GetSponsor: ({ accountId, clientApi, }: GetSponsorProps) => Promise<ConnectedXMResponse<Account>>;
|
|
1890
|
+
declare const useGetSponsor: (accountId: string, options?: SingleQueryOptions<ReturnType<typeof GetSponsor>>) => _tanstack_react_query_build_legacy_types.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1891
|
+
|
|
1892
|
+
declare const SPONSORS_QUERY_KEY: () => QueryKey;
|
|
1893
|
+
declare const SET_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSponsors>>, baseKeys?: [locale: string, search?: string | undefined]) => void;
|
|
1894
|
+
interface GetSponsorsProps extends InfiniteQueryParams {
|
|
1895
|
+
}
|
|
1896
|
+
declare const GetSponsors: ({ pageParam, pageSize, orderBy, search, clientApi, }: GetSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
1897
|
+
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>>;
|
|
1898
|
+
|
|
1899
|
+
interface MutationParams {
|
|
1900
|
+
clientApi: AxiosInstance;
|
|
1901
|
+
locale?: string;
|
|
1902
|
+
queryClient?: QueryClient;
|
|
1903
|
+
}
|
|
1904
|
+
interface MutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<TResponseData> | Error, TMutationParams> {
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
interface FollowAccountParams extends MutationParams {
|
|
1908
|
+
accountId: string;
|
|
1909
|
+
}
|
|
1910
|
+
declare const FollowAccount: ({ accountId, clientApi, queryClient, locale, }: FollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
1911
|
+
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>;
|
|
1912
|
+
|
|
1913
|
+
interface UnfollowAccountParams extends MutationParams {
|
|
1914
|
+
accountId: string;
|
|
1915
|
+
}
|
|
1916
|
+
declare const UnfollowAccount: ({ accountId, clientApi, queryClient, locale, }: UnfollowAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
1917
|
+
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>;
|
|
1918
|
+
|
|
1919
|
+
interface DeleteReshareParams extends MutationParams {
|
|
1920
|
+
activityId: string;
|
|
1921
|
+
}
|
|
1922
|
+
declare const DeleteReshare: ({ activityId, clientApi, queryClient, }: DeleteReshareParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1923
|
+
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>;
|
|
1924
|
+
|
|
1925
|
+
interface LikeActivityParams extends MutationParams {
|
|
1926
|
+
activityId: string;
|
|
1927
|
+
}
|
|
1928
|
+
declare const LikeActivity: ({ activityId, clientApi, queryClient, }: LikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1929
|
+
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>;
|
|
1930
|
+
|
|
1931
|
+
interface ReshareActivityParams extends MutationParams {
|
|
1932
|
+
activityId: string;
|
|
1933
|
+
}
|
|
1934
|
+
declare const ReshareActivity: ({ activityId, queryClient, clientApi, }: ReshareActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1935
|
+
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>;
|
|
1936
|
+
|
|
1937
|
+
interface UnlikeActivityParams extends MutationParams {
|
|
1938
|
+
activityId: string;
|
|
1939
|
+
}
|
|
1940
|
+
declare const UnlikeActivity: ({ activityId, clientApi, queryClient, }: UnlikeActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
1941
|
+
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>;
|
|
1942
|
+
|
|
1943
|
+
interface AddCommunityEventParams extends MutationParams {
|
|
1944
|
+
communityId: string;
|
|
1945
|
+
eventId: string;
|
|
1946
|
+
}
|
|
1947
|
+
declare const AddCommunityEvent: ({ communityId, eventId, clientApi, queryClient, }: AddCommunityEventParams) => Promise<ConnectedXMResponse<Event>>;
|
|
1948
|
+
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>;
|
|
1949
|
+
|
|
1950
|
+
interface CreateCommunityAnnouncementParams extends MutationParams {
|
|
1951
|
+
communityId: string;
|
|
1952
|
+
title: string;
|
|
1953
|
+
html: string;
|
|
1954
|
+
email: boolean;
|
|
1955
|
+
push: boolean;
|
|
1956
|
+
}
|
|
1957
|
+
declare const CreateCommunityAnnouncement: ({ communityId, title, html, email, push, clientApi, queryClient, }: CreateCommunityAnnouncementParams) => Promise<ConnectedXMResponse<Announcement>>;
|
|
1958
|
+
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>;
|
|
1959
|
+
|
|
1960
|
+
interface RemoveCommunityEventParams extends MutationParams {
|
|
1961
|
+
communityId: string;
|
|
1962
|
+
eventId: string;
|
|
1963
|
+
}
|
|
1964
|
+
declare const RemoveCommunityEvent: ({ communityId, eventId, clientApi, queryClient, }: RemoveCommunityEventParams) => Promise<ConnectedXMResponse<null>>;
|
|
1965
|
+
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>;
|
|
1966
|
+
|
|
1967
|
+
interface UpdateCommunityParams extends MutationParams {
|
|
1968
|
+
communityId: string;
|
|
1969
|
+
description?: string;
|
|
1970
|
+
externalUrl?: string;
|
|
1971
|
+
base64?: string;
|
|
1972
|
+
}
|
|
1973
|
+
declare const UpdateCommunity: ({ communityId, description, externalUrl, base64, clientApi, queryClient, locale, }: UpdateCommunityParams) => Promise<ConnectedXMResponse<Community>>;
|
|
1974
|
+
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>;
|
|
1975
|
+
|
|
1976
|
+
interface CompleteEventActivationParams extends MutationParams {
|
|
1977
|
+
eventId: string;
|
|
1978
|
+
activationId: string;
|
|
1979
|
+
code?: string;
|
|
1980
|
+
}
|
|
1981
|
+
declare const CompleteEventActivation: ({ eventId, activationId, code, clientApi, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
|
|
1982
|
+
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>;
|
|
1983
|
+
|
|
1984
|
+
interface CreateEventLeadParams extends MutationParams {
|
|
1985
|
+
eventId: string;
|
|
1986
|
+
purchaseId: string;
|
|
1987
|
+
note?: string;
|
|
1988
|
+
}
|
|
1989
|
+
declare const CreateEventLead: ({ eventId, purchaseId, note, clientApi, queryClient, }: CreateEventLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
1990
|
+
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>;
|
|
1991
|
+
|
|
1992
|
+
interface AddSelfChatChannelMemberParams extends MutationParams {
|
|
1993
|
+
channelId: string;
|
|
1994
|
+
accountId: string;
|
|
1995
|
+
}
|
|
1996
|
+
declare const AddSelfChatChannelMember: ({ channelId, accountId, clientApi, queryClient, }: AddSelfChatChannelMemberParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
1997
|
+
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>;
|
|
1998
|
+
|
|
1999
|
+
interface CreateSelfChatChannelParams extends MutationParams {
|
|
2000
|
+
name: string;
|
|
2001
|
+
accountIds: string[];
|
|
2002
|
+
}
|
|
2003
|
+
declare const CreateSelfChatChannel: ({ name, accountIds, clientApi, queryClient, }: CreateSelfChatChannelParams) => Promise<ConnectedXMResponse<ChatChannel>>;
|
|
2004
|
+
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>;
|
|
2005
|
+
|
|
2006
|
+
interface CreateSelfChatChannelMessageParams extends MutationParams {
|
|
2007
|
+
channelId: string;
|
|
2008
|
+
text: string;
|
|
2009
|
+
}
|
|
2010
|
+
declare const CreateSelfChatChannelMessage: ({ channelId, text, queryClient, clientApi, }: CreateSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<ChatChannelMessage>>;
|
|
2011
|
+
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>;
|
|
2012
|
+
|
|
2013
|
+
interface DeleteSelfChatChannelParams extends MutationParams {
|
|
2014
|
+
channelId: string;
|
|
2015
|
+
}
|
|
2016
|
+
declare const DeleteSelfChatChannel: ({ channelId, clientApi, queryClient, }: DeleteSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
|
|
2017
|
+
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>;
|
|
2018
|
+
|
|
2019
|
+
interface DeleteSelfChatChannelMessageParams extends MutationParams {
|
|
2020
|
+
channelId: string;
|
|
2021
|
+
messageId: string;
|
|
2022
|
+
}
|
|
2023
|
+
declare const DeleteSelfChatChannelMessage: ({ channelId, messageId, clientApi, queryClient, }: DeleteSelfChatChannelMessageParams) => Promise<ConnectedXMResponse<null>>;
|
|
2024
|
+
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>;
|
|
2025
|
+
|
|
2026
|
+
interface LeaveSelfChatChannelParams extends MutationParams {
|
|
2027
|
+
channelId: string;
|
|
2028
|
+
}
|
|
2029
|
+
declare const LeaveSelfChatChannel: ({ channelId, clientApi, queryClient, }: LeaveSelfChatChannelParams) => Promise<ConnectedXMResponse<null>>;
|
|
2030
|
+
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>;
|
|
2031
|
+
|
|
2032
|
+
interface UpdateSelfChatChannelNotificationsParams extends MutationParams {
|
|
2033
|
+
channelId: string;
|
|
2034
|
+
notifications: boolean;
|
|
2035
|
+
}
|
|
2036
|
+
declare const UpdateSelfChatChannelNotifications: ({ channelId, notifications, clientApi, queryClient, locale, }: UpdateSelfChatChannelNotificationsParams) => Promise<ConnectedXMResponse<ChatChannelMember>>;
|
|
2037
|
+
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>;
|
|
2038
|
+
|
|
2039
|
+
interface RegisterCancelledEventRegistrationParams extends MutationParams {
|
|
2040
|
+
eventId: string;
|
|
2041
|
+
registrationId: string;
|
|
2042
|
+
}
|
|
2043
|
+
declare const RegisterCancelledEventRegistration: ({ eventId, registrationId, clientApi, queryClient, locale, }: RegisterCancelledEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2044
|
+
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>;
|
|
2045
|
+
|
|
2046
|
+
interface SelectSelfEventRegistrationCouponParams extends MutationParams {
|
|
2047
|
+
eventId: string;
|
|
2048
|
+
registrationId: string;
|
|
2049
|
+
couponId: string;
|
|
2050
|
+
}
|
|
2051
|
+
declare const SelectSelfEventRegistrationCoupon: ({ eventId, registrationId, couponId, clientApi, queryClient, locale, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2052
|
+
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>;
|
|
2053
|
+
|
|
2054
|
+
interface CaptureSelfEventRegistrationPaymentParams extends MutationParams {
|
|
2055
|
+
eventId: string;
|
|
2056
|
+
registrationId: string;
|
|
2057
|
+
}
|
|
2058
|
+
declare const CaptureSelfEventRegistrationPayment: ({ eventId, registrationId, clientApi, queryClient, locale, }: CaptureSelfEventRegistrationPaymentParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2059
|
+
declare const useCaptureSelfEventRegistrationPayment: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CaptureSelfEventRegistrationPayment>>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApi">, unknown>;
|
|
2060
|
+
|
|
2061
|
+
interface CreateGuest {
|
|
2062
|
+
firstName: string;
|
|
2063
|
+
lastName: string;
|
|
2064
|
+
email: string;
|
|
2065
|
+
}
|
|
2066
|
+
interface CreateSelfEventRegistrationGuestParams extends MutationParams {
|
|
2067
|
+
eventId: string;
|
|
2068
|
+
registrationId: string;
|
|
2069
|
+
guest: CreateGuest;
|
|
2070
|
+
}
|
|
2071
|
+
declare const CreateSelfEventRegistrationGuest: ({ eventId, registrationId, guest, clientApi, queryClient, locale, }: CreateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2072
|
+
declare const useCreateSelfEventRegistrationGuest: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventRegistrationGuest>>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApi">, unknown>;
|
|
2073
|
+
|
|
2074
|
+
interface DeleteSelfEventRegistrationGuestParams extends MutationParams {
|
|
2075
|
+
eventId: string;
|
|
2076
|
+
registrationId: string;
|
|
2077
|
+
guestId: string;
|
|
2078
|
+
}
|
|
2079
|
+
declare const DeleteSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, clientApi, queryClient, locale, }: DeleteSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2080
|
+
declare const useDeleteSelfEventRegistrationGuest: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfEventRegistrationGuest>>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApi">, unknown>;
|
|
2081
|
+
|
|
2082
|
+
interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
|
|
2083
|
+
eventId: string;
|
|
2084
|
+
registrationId: string;
|
|
2085
|
+
}
|
|
2086
|
+
declare const RemoveSelfEventRegistrationCoupon: ({ eventId, registrationId, clientApi, queryClient, locale, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2087
|
+
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>;
|
|
2088
|
+
|
|
2089
|
+
interface RemoveSelfEventRegistrationTicketParams extends MutationParams {
|
|
2090
|
+
eventId: string;
|
|
2091
|
+
registrationId: string;
|
|
2092
|
+
}
|
|
2093
|
+
declare const RemoveSelfEventRegistrationTicket: ({ eventId, registrationId, clientApi, queryClient, locale, }: RemoveSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2094
|
+
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>;
|
|
2095
|
+
|
|
2096
|
+
interface SelectSelfEventRegistrationTicketParams extends MutationParams {
|
|
2097
|
+
eventId: string;
|
|
2098
|
+
registrationId: string;
|
|
2099
|
+
ticketId: string;
|
|
2100
|
+
}
|
|
2101
|
+
declare const SelectSelfEventRegistrationTicket: ({ eventId, registrationId, ticketId, clientApi, queryClient, locale, }: SelectSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2102
|
+
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>;
|
|
2103
|
+
|
|
2104
|
+
interface SubmitStripe {
|
|
2105
|
+
type: "stripe";
|
|
2106
|
+
paymentMethodId: string;
|
|
2107
|
+
}
|
|
2108
|
+
interface SubmitPaypal {
|
|
2109
|
+
type: "paypal";
|
|
2110
|
+
orderId: string;
|
|
2111
|
+
}
|
|
2112
|
+
type SubmitPayment = SubmitStripe | SubmitPaypal;
|
|
2113
|
+
interface SubmitStripeResponse {
|
|
2114
|
+
status: string;
|
|
2115
|
+
clientSecret: string;
|
|
2116
|
+
registration: Registration;
|
|
2117
|
+
}
|
|
2118
|
+
interface SubmitPaypalResponse {
|
|
2119
|
+
registration: Registration;
|
|
2120
|
+
}
|
|
2121
|
+
type SubmitResponse = SubmitStripeResponse | SubmitPaypalResponse;
|
|
2122
|
+
interface SubmitSelfEventRegistrationParams extends MutationParams {
|
|
2123
|
+
eventId: string;
|
|
2124
|
+
registrationId: string;
|
|
2125
|
+
payment?: SubmitPayment;
|
|
2126
|
+
}
|
|
2127
|
+
declare const SubmitSelfEventRegistration: ({ eventId, registrationId, payment, clientApi, queryClient, locale, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2128
|
+
declare const useSubmitSelfEventRegistration: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistration>>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApi">, unknown>;
|
|
2129
|
+
|
|
2130
|
+
interface UpdateSelfEventRegistrationGuestParams extends MutationParams {
|
|
2131
|
+
eventId: string;
|
|
2132
|
+
registrationId: string;
|
|
2133
|
+
guestId: string;
|
|
2134
|
+
guest: BaseRegistrationGuest;
|
|
2135
|
+
}
|
|
2136
|
+
declare const UpdateSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, guest, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2137
|
+
declare const useUpdateSelfEventRegistrationGuest: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuest>>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApi">, unknown>;
|
|
2138
|
+
|
|
2139
|
+
interface UpdateSelfEventRegistrationGuestResponseFileParams extends MutationParams {
|
|
2140
|
+
eventId: string;
|
|
2141
|
+
registrationId: string;
|
|
2142
|
+
questionId: string;
|
|
2143
|
+
guestId?: string;
|
|
2144
|
+
dataUrl: string;
|
|
2145
|
+
name: string;
|
|
2146
|
+
}
|
|
2147
|
+
declare const UpdateSelfEventRegistrationGuestResponseFile: ({ eventId, registrationId, questionId, guestId, dataUrl, name, clientApi, }: UpdateSelfEventRegistrationGuestResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
|
|
2148
|
+
declare const useUpdateSelfEventRegistrationGuestResponseFile: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponseFile>>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, Error | axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApi">, unknown>;
|
|
2149
|
+
|
|
2150
|
+
interface UpdateSelfEventRegistrationGuestResponsesParams extends MutationParams {
|
|
2151
|
+
eventId: string;
|
|
2152
|
+
registrationId: string;
|
|
2153
|
+
guestId: string;
|
|
2154
|
+
responses: BaseRegistrationQuestionResponse[];
|
|
2155
|
+
}
|
|
2156
|
+
declare const UpdateSelfEventRegistrationGuestResponses: ({ eventId, registrationId, guestId, responses, clientApi, }: UpdateSelfEventRegistrationGuestResponsesParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
|
|
2157
|
+
declare const useUpdateSelfEventRegistrationGuestResponses: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponses>>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, Error | axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApi">, unknown>;
|
|
2158
|
+
|
|
2159
|
+
interface UpdateSelfEventRegistrationResponseFileParams extends MutationParams {
|
|
2160
|
+
eventId: string;
|
|
2161
|
+
registrationId: string;
|
|
2162
|
+
dataUrl: string;
|
|
2163
|
+
name: string;
|
|
2164
|
+
questionId: string;
|
|
2165
|
+
}
|
|
2166
|
+
declare const UpdateSelfEventRegistrationResponseFile: ({ eventId, registrationId, dataUrl, name, questionId, clientApi, }: UpdateSelfEventRegistrationResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
|
|
2167
|
+
declare const useUpdateSelfEventRegistrationResponseFile: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponseFile>>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, Error | axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApi">, unknown>;
|
|
2168
|
+
|
|
2169
|
+
interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
|
|
2170
|
+
eventId: string;
|
|
2171
|
+
registrationId: string;
|
|
2172
|
+
responses: BaseRegistrationQuestionResponse[];
|
|
2173
|
+
}
|
|
2174
|
+
declare const UpdateSelfEventRegistrationResponses: ({ eventId, registrationId, responses, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2175
|
+
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>;
|
|
2176
|
+
|
|
2177
|
+
interface CancelEventRegistrationParams extends MutationParams {
|
|
2178
|
+
eventId: string;
|
|
2179
|
+
registrationId: string;
|
|
2180
|
+
}
|
|
2181
|
+
declare const CancelEventRegistration: ({ eventId, registrationId, clientApi, queryClient, locale, }: CancelEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2182
|
+
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>;
|
|
2183
|
+
|
|
2184
|
+
interface CancelTransferParams extends MutationParams {
|
|
2185
|
+
transferId: string;
|
|
2186
|
+
eventId: string;
|
|
2187
|
+
registrationId: string;
|
|
2188
|
+
}
|
|
2189
|
+
declare const CancelTransfer: ({ transferId, eventId, registrationId, clientApi, queryClient, }: CancelTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2190
|
+
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>;
|
|
2191
|
+
|
|
2192
|
+
interface TransferPurchaseParams extends MutationParams {
|
|
2193
|
+
email: string;
|
|
2194
|
+
purchaseId: string;
|
|
2195
|
+
eventId: string;
|
|
2196
|
+
registrationId: string;
|
|
2197
|
+
}
|
|
2198
|
+
declare const TransferPurchase: ({ email, purchaseId, eventId, registrationId, clientApi, queryClient, }: TransferPurchaseParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2199
|
+
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>;
|
|
2200
|
+
|
|
2201
|
+
interface UpdateSelfEventRegistrationResponseParams extends MutationParams {
|
|
2202
|
+
eventId: string;
|
|
2203
|
+
registrationId: string;
|
|
2204
|
+
questionId: string;
|
|
2205
|
+
response: string;
|
|
2206
|
+
}
|
|
2207
|
+
declare const UpdateSelfEventRegistrationResponse: ({ eventId, registrationId, questionId, response, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationResponseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2208
|
+
declare const useUpdateSelfEventRegistrationResponse: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponse>>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApi">, unknown>;
|
|
2209
|
+
|
|
2210
|
+
interface UpdateSelfEventRegistrationGuestResponseParams extends MutationParams {
|
|
2211
|
+
eventId: string;
|
|
2212
|
+
registrationId: string;
|
|
2213
|
+
questionId: string;
|
|
2214
|
+
guestId: string;
|
|
2215
|
+
response: string;
|
|
2216
|
+
}
|
|
2217
|
+
declare const UpdateSelfEventRegistrationGuestResponse: ({ eventId, registrationId, questionId, guestId, response, clientApi, queryClient, locale, }: UpdateSelfEventRegistrationGuestResponseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2218
|
+
declare const useUpdateSelfEventRegistrationGuestResponse: (params?: Omit<MutationParams, "clientApi" | "queryClient">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponse>>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Registration>, Error | axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApi">, unknown>;
|
|
2219
|
+
|
|
2220
|
+
interface CancelSubscriptionParams extends MutationParams {
|
|
2221
|
+
subscriptionId: string;
|
|
2222
|
+
}
|
|
2223
|
+
declare const CancelSubscription: ({ subscriptionId, clientApi, queryClient, }: CancelSubscriptionParams) => Promise<ConnectedXMResponse<null>>;
|
|
2224
|
+
declare const useCancelSubscription: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSubscription>>, Omit<CancelSubscriptionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CancelSubscriptionParams, "queryClient" | "clientApi">, unknown>;
|
|
2225
|
+
|
|
2226
|
+
interface CreateSubscriptionParams extends MutationParams {
|
|
2227
|
+
subscriptionId: string;
|
|
2228
|
+
productId: string;
|
|
2229
|
+
priceId: string;
|
|
2230
|
+
}
|
|
2231
|
+
interface CreateSubscriptionResponse {
|
|
2232
|
+
type: string;
|
|
2233
|
+
clientSecret: string;
|
|
2234
|
+
}
|
|
2235
|
+
declare const CreateSubscription: ({ productId, priceId, clientApi, }: CreateSubscriptionParams) => Promise<ConnectedXMResponse<CreateSubscriptionResponse>>;
|
|
2236
|
+
declare const useCreateSubscription: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSubscription>>, Omit<CreateSubscriptionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CreateSubscriptionResponse>, Error | axios.AxiosError<ConnectedXMResponse<CreateSubscriptionResponse>, any>, Omit<CreateSubscriptionParams, "queryClient" | "clientApi">, unknown>;
|
|
2237
|
+
|
|
2238
|
+
interface UpdateSubscriptionPaymentMethodParams extends MutationParams {
|
|
2239
|
+
subscriptionId: string;
|
|
2240
|
+
paymentMethodId: string;
|
|
2241
|
+
}
|
|
2242
|
+
declare const UpdateSubscriptionPaymentMethod: ({ subscriptionId, paymentMethodId, clientApi, queryClient, }: UpdateSubscriptionPaymentMethodParams) => Promise<ConnectedXMResponse<null>>;
|
|
2243
|
+
declare const useUpdateSubscriptionPaymentMethod: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSubscriptionPaymentMethod>>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<null>, Error | axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApi">, unknown>;
|
|
2244
|
+
|
|
2245
|
+
interface AcceptTransferParams extends MutationParams {
|
|
2246
|
+
transferId: string;
|
|
2247
|
+
}
|
|
2248
|
+
declare const AcceptTransfer: ({ transferId, clientApi, queryClient, }: AcceptTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2249
|
+
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>;
|
|
2250
|
+
|
|
2251
|
+
interface AddSelfDelegateParams extends MutationParams {
|
|
2252
|
+
email: string;
|
|
2253
|
+
}
|
|
2254
|
+
declare const AddSelfDelegate: ({ email, clientApi, queryClient, }: AddSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2255
|
+
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>;
|
|
2256
|
+
|
|
2257
|
+
interface AddSelfEventListingSessionParams extends MutationParams {
|
|
2258
|
+
eventId: string;
|
|
2259
|
+
session: Omit<Session, "id" | "slug" | "event" | "sortOrder" | "tracks" | "nonSession" | "createdAt" | "updatedAt" | "speakers" | "sponsors" | "longDescription" | "image" | "streamInput">;
|
|
2260
|
+
}
|
|
2261
|
+
declare const AddSelfEventListingSession: ({ eventId, session, clientApi, queryClient, locale, }: AddSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2262
|
+
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>;
|
|
2263
|
+
|
|
2264
|
+
interface EventListingSpeaker {
|
|
2265
|
+
firstName: string | null;
|
|
2266
|
+
lastName: string | null;
|
|
2267
|
+
title: string | null;
|
|
2268
|
+
company: string | null;
|
|
2269
|
+
bio: string | null;
|
|
2270
|
+
}
|
|
2271
|
+
interface AddSelfEventListingSpeakerParams extends MutationParams {
|
|
2272
|
+
eventId: string;
|
|
2273
|
+
speaker: EventListingSpeaker;
|
|
2274
|
+
}
|
|
2275
|
+
declare const AddSelfEventListingSpeaker: ({ eventId, speaker, clientApi, queryClient, locale, }: AddSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2276
|
+
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>;
|
|
2277
|
+
|
|
2278
|
+
interface AddSelfEventListingSponsorParams extends MutationParams {
|
|
2279
|
+
eventId: string;
|
|
2280
|
+
sponsor: Account;
|
|
2281
|
+
}
|
|
2282
|
+
declare const AddSelfEventListingSponsor: ({ eventId, sponsor, clientApi, queryClient, locale, }: AddSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2283
|
+
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>;
|
|
2284
|
+
|
|
2285
|
+
interface AddSelfEventSessionParams extends MutationParams {
|
|
2286
|
+
eventId: string;
|
|
2287
|
+
sessionId: string;
|
|
2288
|
+
}
|
|
2289
|
+
declare const AddSelfEventSession: ({ eventId, sessionId, clientApi, queryClient, }: AddSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2290
|
+
declare const useAddSelfEventSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventSession>>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfEventSessionParams, "queryClient" | "clientApi">, unknown>;
|
|
2291
|
+
|
|
2292
|
+
interface CreateEventListing {
|
|
2293
|
+
name: string;
|
|
2294
|
+
shortDescription: string;
|
|
2295
|
+
eventStart: string;
|
|
2296
|
+
eventEnd: string;
|
|
2297
|
+
eventType: keyof typeof EventType;
|
|
2298
|
+
venue?: string;
|
|
2299
|
+
address1?: string;
|
|
2300
|
+
address2?: string;
|
|
2301
|
+
city?: string;
|
|
2302
|
+
state?: string;
|
|
2303
|
+
zip?: string;
|
|
2304
|
+
country?: string;
|
|
2305
|
+
externalUrl?: string;
|
|
2306
|
+
meetingUrl?: string;
|
|
2307
|
+
registration?: boolean;
|
|
2308
|
+
registrationLimit?: string;
|
|
2309
|
+
}
|
|
2310
|
+
interface CreateSelfEventListingParams extends MutationParams {
|
|
2311
|
+
event: CreateEventListing;
|
|
2312
|
+
base64?: any;
|
|
2313
|
+
communityId?: string;
|
|
2314
|
+
sponsorIds?: string[];
|
|
2315
|
+
speakers?: Speaker[];
|
|
2316
|
+
sessions?: Session[];
|
|
2317
|
+
}
|
|
2318
|
+
declare const CreateSelfEventListing: ({ event, base64, communityId, sponsorIds, speakers, sessions, clientApi, queryClient, locale, }: CreateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2319
|
+
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>;
|
|
2320
|
+
|
|
2321
|
+
interface DeleteSelfParams extends MutationParams {
|
|
2322
|
+
}
|
|
2323
|
+
declare const DeleteSelf: ({ clientApi, queryClient, }: DeleteSelfParams) => Promise<any>;
|
|
2324
|
+
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>;
|
|
2325
|
+
|
|
2326
|
+
interface DeleteSelfPushDeviceParams extends MutationParams {
|
|
2327
|
+
pushDeviceId: string;
|
|
2328
|
+
}
|
|
2329
|
+
declare const DeleteSelfPushDevice: ({ pushDeviceId, clientApi, queryClient, }: DeleteSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
2330
|
+
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>;
|
|
2331
|
+
|
|
2332
|
+
interface RejectTransferParams extends MutationParams {
|
|
2333
|
+
transferId: string;
|
|
2334
|
+
}
|
|
2335
|
+
declare const RejectTransfer: ({ transferId, clientApi, queryClient, }: RejectTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2336
|
+
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>;
|
|
2337
|
+
|
|
2338
|
+
interface RemoveSelfDelegateParams extends MutationParams {
|
|
2339
|
+
accountId: string;
|
|
2340
|
+
}
|
|
2341
|
+
declare const RemoveSelfDelegate: ({ accountId, clientApi, queryClient, }: RemoveSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2342
|
+
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>;
|
|
2343
|
+
|
|
2344
|
+
interface RemoveSelfEventListingSessionParams extends MutationParams {
|
|
2345
|
+
eventId: string;
|
|
2346
|
+
sessionId: string;
|
|
2347
|
+
}
|
|
2348
|
+
declare const RemoveSelfEventListingSession: ({ eventId, sessionId, clientApi, queryClient, locale, }: RemoveSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2349
|
+
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>;
|
|
2350
|
+
|
|
2351
|
+
interface RemoveSelfEventListingSpeakerParams extends MutationParams {
|
|
2352
|
+
eventId: string;
|
|
2353
|
+
speakerId: string;
|
|
2354
|
+
}
|
|
2355
|
+
declare const RemoveSelfEventListingSpeaker: ({ eventId, speakerId, clientApi, queryClient, locale, }: RemoveSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2356
|
+
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>;
|
|
2357
|
+
|
|
2358
|
+
interface RemoveSelfEventListingSponsorParams extends MutationParams {
|
|
2359
|
+
eventId: string;
|
|
2360
|
+
sponsorId: string;
|
|
2361
|
+
}
|
|
2362
|
+
declare const RemoveSelfEventListingSponsor: ({ eventId, sponsorId, clientApi, queryClient, locale, }: RemoveSelfEventListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2363
|
+
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>;
|
|
2364
|
+
|
|
2365
|
+
interface RemoveSelfEventSessionParams extends MutationParams {
|
|
2366
|
+
eventId: string;
|
|
2367
|
+
sessionId: string;
|
|
2368
|
+
}
|
|
2369
|
+
declare const RemoveSelfEventSession: ({ eventId, sessionId, clientApi, queryClient, }: RemoveSelfEventSessionParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2370
|
+
declare const useRemoveSelfEventSession: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventSession>>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfEventSessionParams, "queryClient" | "clientApi">, unknown>;
|
|
2371
|
+
|
|
2372
|
+
interface SelfCheckinRegistrationParams extends MutationParams {
|
|
2373
|
+
accountId: string;
|
|
2374
|
+
eventId: string;
|
|
2375
|
+
}
|
|
2376
|
+
declare const SelfCheckinRegistration: ({ accountId, eventId, clientApi, queryClient, }: SelfCheckinRegistrationParams) => Promise<any>;
|
|
2377
|
+
declare const useSelfCheckinRegistration: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCheckinRegistration>>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<any, Error | axios.AxiosError<any, any>, Omit<SelfCheckinRegistrationParams, "queryClient" | "clientApi">, unknown>;
|
|
2378
|
+
|
|
2379
|
+
interface CreateActivity {
|
|
2380
|
+
message: string;
|
|
2381
|
+
contentId?: string;
|
|
2382
|
+
eventId?: string;
|
|
2383
|
+
communityId?: string;
|
|
2384
|
+
commentedId?: string;
|
|
2385
|
+
}
|
|
2386
|
+
interface SelfCreateActivityParams extends MutationParams {
|
|
2387
|
+
activity: CreateActivity;
|
|
2388
|
+
base64Image?: any;
|
|
2389
|
+
videoUri?: string;
|
|
2390
|
+
}
|
|
2391
|
+
declare const SelfCreateActivity: ({ activity, base64Image, videoUri, clientApi, queryClient, locale, }: SelfCreateActivityParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
2392
|
+
declare const useSelfCreateActivity: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfCreateActivity>>, Omit<SelfCreateActivityParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Activity>, Error | axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<SelfCreateActivityParams, "queryClient" | "clientApi">, unknown>;
|
|
2393
|
+
|
|
2394
|
+
interface DeleteActivityParams extends MutationParams {
|
|
2395
|
+
activityId: string;
|
|
2396
|
+
}
|
|
2397
|
+
declare const DeleteActivity: ({ activityId, clientApi, queryClient, }: DeleteActivityParams) => Promise<ConnectedXMResponse<null>>;
|
|
2398
|
+
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>;
|
|
2399
|
+
|
|
2400
|
+
interface SelfJoinCommunityParams extends MutationParams {
|
|
2401
|
+
communityId: string;
|
|
2402
|
+
}
|
|
2403
|
+
declare const SelfJoinCommunity: ({ communityId, clientApi, queryClient, }: SelfJoinCommunityParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
|
|
2404
|
+
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>;
|
|
2405
|
+
|
|
2406
|
+
interface SelfLeaveCommunityParams extends MutationParams {
|
|
2407
|
+
communityId: string;
|
|
2408
|
+
}
|
|
2409
|
+
declare const SelfLeaveCommunity: ({ communityId, clientApi, queryClient, }: SelfLeaveCommunityParams) => Promise<ConnectedXMResponse<null>>;
|
|
2410
|
+
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>;
|
|
2411
|
+
|
|
2412
|
+
interface SelfUpdateCommunityMembershipParams extends MutationParams {
|
|
2413
|
+
communityId: string;
|
|
2414
|
+
membership: Partial<CommunityMembership>;
|
|
2415
|
+
}
|
|
2416
|
+
declare const SelfUpdateCommunityMembership: ({ communityId, membership, clientApi, queryClient, locale, }: SelfUpdateCommunityMembershipParams) => Promise<ConnectedXMResponse<CommunityMembership>>;
|
|
2417
|
+
declare const useSelfUpdateCommunityMembership: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelfUpdateCommunityMembership>>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<CommunityMembership>, Error | axios.AxiosError<ConnectedXMResponse<CommunityMembership>, any>, Omit<SelfUpdateCommunityMembershipParams, "queryClient" | "clientApi">, unknown>;
|
|
2418
|
+
|
|
2419
|
+
interface UpdateSelfParams extends MutationParams {
|
|
2420
|
+
username?: string;
|
|
2421
|
+
firstName?: string | null;
|
|
2422
|
+
lastName?: string | null;
|
|
2423
|
+
phone?: string | null;
|
|
2424
|
+
title?: string | null;
|
|
2425
|
+
company?: string | null;
|
|
2426
|
+
bio?: string | null;
|
|
2427
|
+
dietaryRestrictions?: string | null;
|
|
2428
|
+
address1?: string | null;
|
|
2429
|
+
address2?: string | null;
|
|
2430
|
+
city?: string | null;
|
|
2431
|
+
state?: string | null;
|
|
2432
|
+
zip?: string | null;
|
|
2433
|
+
country?: string | null;
|
|
2434
|
+
facebook?: string | null;
|
|
2435
|
+
twitter?: string | null;
|
|
2436
|
+
instagram?: string | null;
|
|
2437
|
+
tikTok?: string | null;
|
|
2438
|
+
linkedIn?: string | null;
|
|
2439
|
+
youtube?: string | null;
|
|
2440
|
+
discord?: string | null;
|
|
2441
|
+
video?: string | null;
|
|
2442
|
+
website?: string | null;
|
|
2443
|
+
}
|
|
2444
|
+
declare const UpdateSelf: ({ clientApi, queryClient, ...params }: UpdateSelfParams) => Promise<ConnectedXMResponse<Self>>;
|
|
2445
|
+
declare const useUpdateSelf: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelf>>, Omit<UpdateSelfParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Self>, Error | axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfParams, "queryClient" | "clientApi">, unknown>;
|
|
2446
|
+
|
|
2447
|
+
interface UpdateListing {
|
|
2448
|
+
eventType: keyof typeof EventType;
|
|
2449
|
+
name: string;
|
|
2450
|
+
shortDescription: string;
|
|
2451
|
+
longDescription: string;
|
|
2452
|
+
eventStart: string;
|
|
2453
|
+
eventEnd: string;
|
|
2454
|
+
registration: boolean;
|
|
2455
|
+
publicRegistrants: boolean;
|
|
2456
|
+
newActivityCreatorEmailNotification: boolean;
|
|
2457
|
+
newActivityCreatorPushNotification: boolean;
|
|
2458
|
+
timezone: string | null;
|
|
2459
|
+
meetingUrl: string | null;
|
|
2460
|
+
venue: string | null;
|
|
2461
|
+
address1: string | null;
|
|
2462
|
+
address2: string | null;
|
|
2463
|
+
city: string | null;
|
|
2464
|
+
state: string | null;
|
|
2465
|
+
zip: string | null;
|
|
2466
|
+
country: string | null;
|
|
2467
|
+
registrationLimit: number | null;
|
|
2468
|
+
externalUrl: string | null;
|
|
2469
|
+
}
|
|
2470
|
+
interface UpdateSelfEventListingParams extends MutationParams {
|
|
2471
|
+
eventId: string;
|
|
2472
|
+
event: UpdateListing;
|
|
2473
|
+
base64?: any;
|
|
2474
|
+
}
|
|
2475
|
+
declare const UpdateSelfEventListing: ({ eventId, event, base64, clientApi, queryClient, locale, }: UpdateSelfEventListingParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2476
|
+
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>;
|
|
2477
|
+
|
|
2478
|
+
interface UpdateSelfEventListingSessionParams extends MutationParams {
|
|
2479
|
+
eventId: string;
|
|
2480
|
+
session: any;
|
|
2481
|
+
sessionId: string;
|
|
2482
|
+
}
|
|
2483
|
+
declare const UpdateSelfEventListingSession: ({ eventId, session, sessionId, clientApi, queryClient, locale, }: UpdateSelfEventListingSessionParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2484
|
+
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>;
|
|
2485
|
+
|
|
2486
|
+
interface UpdateSelfEventListingSpeakerParams extends MutationParams {
|
|
2487
|
+
eventId: string;
|
|
2488
|
+
speaker: any;
|
|
2489
|
+
speakerId: string;
|
|
2490
|
+
buffer?: string;
|
|
2491
|
+
}
|
|
2492
|
+
declare const UpdateSelfEventListingSpeaker: ({ eventId, speaker, speakerId, buffer, clientApi, queryClient, locale, }: UpdateSelfEventListingSpeakerParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
2493
|
+
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>;
|
|
2494
|
+
|
|
2495
|
+
interface UpdateSelfImageParams extends MutationParams {
|
|
2496
|
+
base64: string;
|
|
2497
|
+
}
|
|
2498
|
+
declare const UpdateSelfImage: ({ base64, clientApi, queryClient, }: UpdateSelfImageParams) => Promise<ConnectedXMResponse<Self>>;
|
|
2499
|
+
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>;
|
|
2500
|
+
|
|
2501
|
+
interface UpdateSelfLeadParams extends MutationParams {
|
|
2502
|
+
leadId: string;
|
|
2503
|
+
note: string;
|
|
2504
|
+
}
|
|
2505
|
+
declare const UpdateSelfLead: ({ leadId, note, clientApi, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
2506
|
+
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>;
|
|
2507
|
+
|
|
2508
|
+
interface UpdateSelfNotificationPreferencesParams extends MutationParams {
|
|
2509
|
+
newFollowerPush?: boolean;
|
|
2510
|
+
newFollowerEmail?: boolean;
|
|
2511
|
+
likePush?: boolean;
|
|
2512
|
+
resharePush?: boolean;
|
|
2513
|
+
commentPush?: boolean;
|
|
2514
|
+
commentEmail?: boolean;
|
|
2515
|
+
transferPush?: boolean;
|
|
2516
|
+
transferEmail?: boolean;
|
|
2517
|
+
supportTicketConfirmationEmail?: boolean;
|
|
2518
|
+
chatPush?: boolean;
|
|
2519
|
+
chatUnreadPush?: boolean;
|
|
2520
|
+
chatUnreadEmail?: boolean;
|
|
2521
|
+
eventReminderEmail?: boolean;
|
|
2522
|
+
eventAnnouncementPush?: boolean;
|
|
2523
|
+
eventAnnouncementEmail?: boolean;
|
|
2524
|
+
organizationAnnouncementPush?: boolean;
|
|
2525
|
+
organizationAnnouncementEmail?: boolean;
|
|
2526
|
+
communityAnnouncementPush?: boolean;
|
|
2527
|
+
communityAnnouncementEmail?: boolean;
|
|
2528
|
+
}
|
|
2529
|
+
declare const UpdateSelfNotificationPreferences: ({ clientApi, queryClient, locale, ...params }: UpdateSelfNotificationPreferencesParams) => Promise<ConnectedXMResponse<NotificationPreferences>>;
|
|
2530
|
+
declare const useUpdateSelfNotificationPreferences: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfNotificationPreferences>>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<NotificationPreferences>, Error | axios.AxiosError<ConnectedXMResponse<NotificationPreferences>, any>, Omit<UpdateSelfNotificationPreferencesParams, "queryClient" | "clientApi">, unknown>;
|
|
2531
|
+
|
|
2532
|
+
interface UpdateSelfPushDeviceParams extends MutationParams {
|
|
2533
|
+
pushDeviceId: string;
|
|
2534
|
+
pushDevice: PushDevice;
|
|
2535
|
+
}
|
|
2536
|
+
declare const UpdateSelfPushDevice: ({ pushDeviceId, pushDevice, clientApi, queryClient, }: UpdateSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
2537
|
+
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>;
|
|
2538
|
+
|
|
2539
|
+
interface CreateSupportTicketParams extends MutationParams {
|
|
2540
|
+
type: "support" | "inquiry";
|
|
2541
|
+
email: string;
|
|
2542
|
+
request: any;
|
|
2543
|
+
eventId?: string;
|
|
2544
|
+
productId?: string;
|
|
2545
|
+
}
|
|
2546
|
+
declare const CreateSupportTicket: ({ type, email, request, eventId, productId, clientApi, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
|
|
2547
|
+
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>;
|
|
2548
|
+
|
|
2549
|
+
interface CreateTeamAccountParams extends MutationParams {
|
|
2550
|
+
name: string;
|
|
2551
|
+
email: string;
|
|
2552
|
+
}
|
|
2553
|
+
declare const CreateTeamAccount: ({ name, email, clientApi, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2554
|
+
declare const useCreateTeamAccount: (params?: Omit<MutationParams, "queryClient" | "clientApi">, options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApi">>, "mutationFn">) => _tanstack_react_query_build_legacy_types.UseMutationResult<ConnectedXMResponse<Account>, Error | axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApi">, unknown>;
|
|
2555
|
+
|
|
2556
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventPage, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationGuest, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, type CheckoutResponse, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, type CreateGuest, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSelfEventRegistrationGuest, type CreateSelfEventRegistrationGuestParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfEventRegistrationGuest, type DeleteSelfEventRegistrationGuestParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBenefits, type GetBenefitsProps, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, type Image, ImageType, type Instance, type Integrations, type Interest, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationGuest, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, type RegistrationSectionQuestion, RegistrationStatus, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationTicket, type RemoveSelfEventRegistrationTicketParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationTicket, type SelectSelfEventRegistrationTicketParams, type Self, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, UpdateSelfEventRegistrationGuest, type UpdateSelfEventRegistrationGuestParams, UpdateSelfEventRegistrationGuestResponse, UpdateSelfEventRegistrationGuestResponseFile, type UpdateSelfEventRegistrationGuestResponseFileParams, type UpdateSelfEventRegistrationGuestResponseParams, UpdateSelfEventRegistrationGuestResponses, UpdateSelfEventRegistrationResponse, UpdateSelfEventRegistrationResponseFile, type UpdateSelfEventRegistrationResponseFileParams, type UpdateSelfEventRegistrationResponseParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, getClientAPI, isListing, isManagedCoupon, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureSelfEventRegistrationPayment, useClientAPI, useCompleteEventActivation, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSelfEventRegistrationGuest, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfEventRegistrationGuest, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationTicket, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationGuest, useUpdateSelfEventRegistrationGuestResponse, useUpdateSelfEventRegistrationGuestResponseFile, useUpdateSelfEventRegistrationGuestResponses, useUpdateSelfEventRegistrationResponse, useUpdateSelfEventRegistrationResponseFile, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|