@connectedxm/client 1.3.19 → 1.4.1
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 +439 -363
- package/dist/index.d.ts +439 -363
- package/dist/index.js +1187 -1255
- package/dist/index.mjs +1078 -1161
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -158,8 +158,6 @@ interface Account extends BaseAccount {
|
|
|
158
158
|
youtube: string | null;
|
|
159
159
|
discord: string | null;
|
|
160
160
|
video: string | null;
|
|
161
|
-
state: string | null;
|
|
162
|
-
country: string | null;
|
|
163
161
|
timezone: string | null;
|
|
164
162
|
createdAt: string;
|
|
165
163
|
_count: {
|
|
@@ -179,10 +177,6 @@ interface Self extends Omit<Account, "_count"> {
|
|
|
179
177
|
email: string | null;
|
|
180
178
|
phone: string | null;
|
|
181
179
|
dietaryRestrictions: string | null;
|
|
182
|
-
address1: string | null;
|
|
183
|
-
address2: string | null;
|
|
184
|
-
city: string | null;
|
|
185
|
-
zip: string | null;
|
|
186
180
|
shareCode: string;
|
|
187
181
|
chatToken?: string;
|
|
188
182
|
locale: string;
|
|
@@ -192,6 +186,19 @@ interface Self extends Omit<Account, "_count"> {
|
|
|
192
186
|
};
|
|
193
187
|
}
|
|
194
188
|
declare const isSelf: (account: Self | Account | BaseAccount) => account is Self;
|
|
189
|
+
interface BaseAccountAddress {
|
|
190
|
+
id: string;
|
|
191
|
+
primary: boolean;
|
|
192
|
+
name: string;
|
|
193
|
+
address1: string;
|
|
194
|
+
address2: string;
|
|
195
|
+
city: string;
|
|
196
|
+
state: string;
|
|
197
|
+
country: string;
|
|
198
|
+
zip: string;
|
|
199
|
+
}
|
|
200
|
+
interface AccountAddress extends BaseAccountAddress {
|
|
201
|
+
}
|
|
195
202
|
interface AccountShare extends Account {
|
|
196
203
|
email: string | null;
|
|
197
204
|
phone: string | null;
|
|
@@ -322,6 +329,7 @@ interface Event extends BaseEvent {
|
|
|
322
329
|
speakers: BaseSpeaker[];
|
|
323
330
|
sponsors: BaseAccount[];
|
|
324
331
|
faqSections: BaseFaqSection[];
|
|
332
|
+
reservationDescription: string | null;
|
|
325
333
|
_count: {
|
|
326
334
|
sessions: number;
|
|
327
335
|
speakers: number;
|
|
@@ -330,6 +338,7 @@ interface Event extends BaseEvent {
|
|
|
330
338
|
}
|
|
331
339
|
declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
|
|
332
340
|
interface RegistrationEventDetails extends BaseEvent {
|
|
341
|
+
reservationDescription: string | null;
|
|
333
342
|
externalUrl: string | null;
|
|
334
343
|
registration: boolean;
|
|
335
344
|
registrationCount: number;
|
|
@@ -343,7 +352,7 @@ interface RegistrationEventDetails extends BaseEvent {
|
|
|
343
352
|
sections: number;
|
|
344
353
|
coupons: number;
|
|
345
354
|
addOns: number;
|
|
346
|
-
|
|
355
|
+
roomTypes: number;
|
|
347
356
|
};
|
|
348
357
|
}
|
|
349
358
|
declare enum RegistrationQuestionType {
|
|
@@ -379,7 +388,6 @@ interface BaseRegistrationQuestion {
|
|
|
379
388
|
choices: BaseRegistrationQuestionChoice[];
|
|
380
389
|
}
|
|
381
390
|
interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
382
|
-
response?: string;
|
|
383
391
|
}
|
|
384
392
|
declare const isRegistrationQuestion: (question: RegistrationQuestion | {
|
|
385
393
|
questionId: number;
|
|
@@ -421,7 +429,7 @@ interface BaseRegistrationSection {
|
|
|
421
429
|
}
|
|
422
430
|
interface RegistrationSection extends BaseRegistrationSection {
|
|
423
431
|
accountTiers: BaseAccountTier[];
|
|
424
|
-
eventTickets:
|
|
432
|
+
eventTickets: BasePassType[];
|
|
425
433
|
eventAddOns: BaseEventAddOn[];
|
|
426
434
|
questions: RegistrationQuestion[];
|
|
427
435
|
}
|
|
@@ -460,7 +468,7 @@ declare enum TicketEventAccessLevel {
|
|
|
460
468
|
virtual = "virtual",
|
|
461
469
|
vip = "vip"
|
|
462
470
|
}
|
|
463
|
-
interface
|
|
471
|
+
interface BasePassType {
|
|
464
472
|
id: string;
|
|
465
473
|
slug: string;
|
|
466
474
|
transferable: boolean;
|
|
@@ -473,13 +481,7 @@ interface BaseTicket {
|
|
|
473
481
|
minQuantityPerSale: number;
|
|
474
482
|
maxQuantityPerSale: number;
|
|
475
483
|
supply: number | null;
|
|
476
|
-
|
|
477
|
-
reservationStart: string | null;
|
|
478
|
-
maxReservationStart: string | null;
|
|
479
|
-
minReservationEnd: string | null;
|
|
480
|
-
reservationEnd: string | null;
|
|
481
|
-
maxReservationEnd: string | null;
|
|
482
|
-
priceSchedules: BaseTicketPriceSchedule[];
|
|
484
|
+
priceSchedules: BasePassTypePriceSchedule[];
|
|
483
485
|
refundSchedules: BasePassTypeRefundSchedule[];
|
|
484
486
|
enableCoupons: boolean;
|
|
485
487
|
minCouponQuantity: number | null;
|
|
@@ -487,12 +489,12 @@ interface BaseTicket {
|
|
|
487
489
|
sortOrder: number;
|
|
488
490
|
overrideStartDate: string | null;
|
|
489
491
|
}
|
|
490
|
-
interface
|
|
492
|
+
interface PassType extends BasePassType {
|
|
491
493
|
visibility: TicketVisibility;
|
|
492
494
|
active: boolean;
|
|
493
495
|
event: BaseEvent;
|
|
494
496
|
}
|
|
495
|
-
interface
|
|
497
|
+
interface BasePassTypePriceSchedule {
|
|
496
498
|
id: string;
|
|
497
499
|
ticketId: string;
|
|
498
500
|
price: number;
|
|
@@ -502,7 +504,7 @@ interface BaseTicketPriceSchedule {
|
|
|
502
504
|
createdAt: string;
|
|
503
505
|
updatedAt: string;
|
|
504
506
|
}
|
|
505
|
-
interface TicketPriceSchedule extends
|
|
507
|
+
interface TicketPriceSchedule extends BasePassTypePriceSchedule {
|
|
506
508
|
}
|
|
507
509
|
interface BaseTicketRefundSchedule {
|
|
508
510
|
id: string;
|
|
@@ -512,43 +514,39 @@ interface BaseTicketRefundSchedule {
|
|
|
512
514
|
}
|
|
513
515
|
interface TicketRefundSchedule extends BaseTicketRefundSchedule {
|
|
514
516
|
}
|
|
515
|
-
declare const isTypeTicket: (ticket:
|
|
517
|
+
declare const isTypeTicket: (ticket: BasePassType | PassType) => ticket is PassType;
|
|
516
518
|
declare enum PurchaseStatus {
|
|
517
519
|
draft = "draft",
|
|
518
520
|
canceled = "canceled",
|
|
519
521
|
needsInfo = "needsInfo",
|
|
520
522
|
ready = "ready"
|
|
521
523
|
}
|
|
522
|
-
interface
|
|
524
|
+
interface BasePass {
|
|
523
525
|
id: string;
|
|
524
526
|
alternateId: number;
|
|
525
527
|
location: string | null;
|
|
526
528
|
usedAt: string | null;
|
|
527
529
|
status: PurchaseStatus;
|
|
528
|
-
firstName: string;
|
|
529
|
-
lastName: string;
|
|
530
|
-
email: string;
|
|
531
530
|
registrationId: string;
|
|
532
531
|
registration: BaseRegistration;
|
|
533
|
-
ticketId: string
|
|
534
|
-
ticket:
|
|
532
|
+
ticketId: string;
|
|
533
|
+
ticket: BasePassType;
|
|
535
534
|
addOns: BaseEventAddOn[];
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
reservationSectionLocation: BaseEventReservationSectionLocation | null;
|
|
535
|
+
reservationId: string | null;
|
|
536
|
+
reservation: BaseEventRoomTypeReservation | null;
|
|
539
537
|
responses: BaseRegistrationQuestionResponse[];
|
|
540
538
|
couponId: string | null;
|
|
541
539
|
coupon: BaseCoupon | null;
|
|
542
540
|
sessions: BaseSessionPass[];
|
|
543
541
|
createdAt: string;
|
|
544
542
|
}
|
|
545
|
-
interface
|
|
543
|
+
interface Pass extends BasePass {
|
|
546
544
|
updatedAt: string;
|
|
547
545
|
amtPaid: number;
|
|
548
546
|
amtRefunded: number;
|
|
549
547
|
payerId: string | null;
|
|
550
548
|
}
|
|
551
|
-
interface
|
|
549
|
+
interface ListingPass extends BasePass {
|
|
552
550
|
registration: BaseRegistration & {
|
|
553
551
|
account: BaseAccount & {
|
|
554
552
|
email: string | null;
|
|
@@ -557,7 +555,7 @@ interface ListingPurchase extends BasePurchase {
|
|
|
557
555
|
};
|
|
558
556
|
updatedAt: string;
|
|
559
557
|
}
|
|
560
|
-
declare const isTypePurchase: (purchase:
|
|
558
|
+
declare const isTypePurchase: (purchase: BasePass | Pass) => purchase is Pass;
|
|
561
559
|
interface Order {
|
|
562
560
|
id: string;
|
|
563
561
|
alternateId: number;
|
|
@@ -567,7 +565,7 @@ interface Order {
|
|
|
567
565
|
grandTotal: number;
|
|
568
566
|
coupon: BaseCoupon | null;
|
|
569
567
|
paymentConfirmationId: string | null;
|
|
570
|
-
purchases:
|
|
568
|
+
purchases: BasePass[];
|
|
571
569
|
accountId: string;
|
|
572
570
|
account: BaseAccount;
|
|
573
571
|
createdAt: string;
|
|
@@ -610,7 +608,7 @@ interface BaseCoupon {
|
|
|
610
608
|
code: string;
|
|
611
609
|
eventId: string;
|
|
612
610
|
ticketId: string | null;
|
|
613
|
-
ticket:
|
|
611
|
+
ticket: BasePassType | null;
|
|
614
612
|
prePaid: boolean;
|
|
615
613
|
active: boolean;
|
|
616
614
|
startDate: string | null;
|
|
@@ -650,7 +648,7 @@ interface ManagedCouponOrder {
|
|
|
650
648
|
coupon: BaseCoupon | null;
|
|
651
649
|
account: BaseAccount;
|
|
652
650
|
}
|
|
653
|
-
interface
|
|
651
|
+
interface ManagedCouponPass {
|
|
654
652
|
id: string;
|
|
655
653
|
status: PurchaseStatus;
|
|
656
654
|
coupon: BaseCoupon;
|
|
@@ -693,7 +691,7 @@ interface BaseTransferLog {
|
|
|
693
691
|
}
|
|
694
692
|
interface TransferLog extends BaseTransferLog {
|
|
695
693
|
purchaseId: string;
|
|
696
|
-
purchase:
|
|
694
|
+
purchase: BasePass;
|
|
697
695
|
createdAt: string;
|
|
698
696
|
}
|
|
699
697
|
interface BaseSpeaker {
|
|
@@ -795,7 +793,7 @@ interface BaseSessionPass {
|
|
|
795
793
|
session: BaseSession;
|
|
796
794
|
}
|
|
797
795
|
interface SessionPass extends BaseSessionPass {
|
|
798
|
-
pass:
|
|
796
|
+
pass: BasePass;
|
|
799
797
|
createdAt: string;
|
|
800
798
|
updatedAt: string;
|
|
801
799
|
}
|
|
@@ -843,7 +841,7 @@ interface SponsorshipLevel extends BaseSponsorshipLevel {
|
|
|
843
841
|
declare const isTypeSponsorshipLevel: (sponsorshipLevel: BaseSponsorshipLevel | SponsorshipLevel) => sponsorshipLevel is SponsorshipLevel;
|
|
844
842
|
interface BaseComplimentaryTicket {
|
|
845
843
|
ticketId: string;
|
|
846
|
-
complimentaryTicket:
|
|
844
|
+
complimentaryTicket: BasePassType;
|
|
847
845
|
quantity: number;
|
|
848
846
|
}
|
|
849
847
|
interface ComplimentaryTicket extends BaseComplimentaryTicket {
|
|
@@ -896,7 +894,7 @@ interface SupportTicket extends BaseSupportTicket {
|
|
|
896
894
|
request: string;
|
|
897
895
|
account: BaseAccount | null;
|
|
898
896
|
event: BaseEvent | null;
|
|
899
|
-
ticket:
|
|
897
|
+
ticket: BasePassType | null;
|
|
900
898
|
status: string;
|
|
901
899
|
createdAt: string;
|
|
902
900
|
updatedAt: string;
|
|
@@ -1093,12 +1091,13 @@ interface ContentGuest extends BaseContentGuest {
|
|
|
1093
1091
|
interface BaseRegistration {
|
|
1094
1092
|
id: string;
|
|
1095
1093
|
alternateId: number;
|
|
1094
|
+
accountId: string;
|
|
1096
1095
|
eventId: string;
|
|
1097
1096
|
}
|
|
1098
1097
|
interface Registration extends BaseRegistration {
|
|
1099
1098
|
event: RegistrationEventDetails;
|
|
1100
1099
|
account: BaseAccount;
|
|
1101
|
-
purchases:
|
|
1100
|
+
purchases: BasePass[];
|
|
1102
1101
|
payments: Payment[];
|
|
1103
1102
|
coupons: ManagedCoupon[];
|
|
1104
1103
|
createdAt: string;
|
|
@@ -1111,7 +1110,7 @@ interface ListingRegistration extends BaseRegistration {
|
|
|
1111
1110
|
};
|
|
1112
1111
|
couponId: string | null;
|
|
1113
1112
|
coupon: BaseCoupon | null;
|
|
1114
|
-
purchases:
|
|
1113
|
+
purchases: BasePass[];
|
|
1115
1114
|
payments: Payment[];
|
|
1116
1115
|
createdAt: string;
|
|
1117
1116
|
}
|
|
@@ -1122,6 +1121,15 @@ declare enum RegistrationPaymentType {
|
|
|
1122
1121
|
interface BasePayment {
|
|
1123
1122
|
id: string;
|
|
1124
1123
|
type: RegistrationPaymentType;
|
|
1124
|
+
address1: string;
|
|
1125
|
+
address2: string;
|
|
1126
|
+
city: string;
|
|
1127
|
+
state: string;
|
|
1128
|
+
country: string;
|
|
1129
|
+
zip: string;
|
|
1130
|
+
subTotal: number;
|
|
1131
|
+
salesTax: number;
|
|
1132
|
+
salesTaxRate: string | null;
|
|
1125
1133
|
chargedAmt: number;
|
|
1126
1134
|
last4: string | null;
|
|
1127
1135
|
stripeId: string | null;
|
|
@@ -1129,9 +1137,15 @@ interface BasePayment {
|
|
|
1129
1137
|
}
|
|
1130
1138
|
interface Payment extends BasePayment {
|
|
1131
1139
|
addOns: BaseEventAddOn[];
|
|
1132
|
-
purchases:
|
|
1140
|
+
purchases: BasePass[];
|
|
1133
1141
|
coupons: BaseCoupon[];
|
|
1134
1142
|
}
|
|
1143
|
+
declare enum LeadStatus {
|
|
1144
|
+
new = "new",
|
|
1145
|
+
favorited = "favorited",
|
|
1146
|
+
archived = "archived",
|
|
1147
|
+
deleted = "deleted"
|
|
1148
|
+
}
|
|
1135
1149
|
interface BaseLead {
|
|
1136
1150
|
id: string;
|
|
1137
1151
|
firstName: string | null;
|
|
@@ -1142,6 +1156,7 @@ interface BaseLead {
|
|
|
1142
1156
|
id: string;
|
|
1143
1157
|
image: BaseImage | null;
|
|
1144
1158
|
};
|
|
1159
|
+
status: LeadStatus;
|
|
1145
1160
|
createdAt: string;
|
|
1146
1161
|
}
|
|
1147
1162
|
interface Lead extends BaseLead {
|
|
@@ -1459,16 +1474,11 @@ interface BaseEventAddOn {
|
|
|
1459
1474
|
name: string;
|
|
1460
1475
|
shortDescription: string;
|
|
1461
1476
|
longDescription: string | null;
|
|
1462
|
-
supply: number;
|
|
1477
|
+
supply: number | null;
|
|
1463
1478
|
price: number;
|
|
1479
|
+
pricePerNight: boolean;
|
|
1464
1480
|
sortOrder: number;
|
|
1465
1481
|
eventId: string;
|
|
1466
|
-
minReservationStart: string | null;
|
|
1467
|
-
reservationStart: string | null;
|
|
1468
|
-
maxReservationStart: string | null;
|
|
1469
|
-
minReservationEnd: string | null;
|
|
1470
|
-
reservationEnd: string | null;
|
|
1471
|
-
maxReservationEnd: string | null;
|
|
1472
1482
|
image: BaseImage | null;
|
|
1473
1483
|
createdAt: string;
|
|
1474
1484
|
updatedAt: string;
|
|
@@ -1476,44 +1486,6 @@ interface BaseEventAddOn {
|
|
|
1476
1486
|
interface EventAddOn extends BaseEventAddOn {
|
|
1477
1487
|
event: BaseEvent;
|
|
1478
1488
|
}
|
|
1479
|
-
interface BaseEventReservationSection {
|
|
1480
|
-
id: string;
|
|
1481
|
-
eventId: string;
|
|
1482
|
-
name: string;
|
|
1483
|
-
price: number;
|
|
1484
|
-
pricePerDay: boolean;
|
|
1485
|
-
shortDescription: string;
|
|
1486
|
-
image: BaseImage | null;
|
|
1487
|
-
createdAt: string;
|
|
1488
|
-
updatedAt: string;
|
|
1489
|
-
}
|
|
1490
|
-
interface EventReservationSection extends BaseEventReservationSection {
|
|
1491
|
-
event: BaseEvent;
|
|
1492
|
-
locations: BaseEventReservationSectionLocation[];
|
|
1493
|
-
}
|
|
1494
|
-
interface BaseEventReservationSectionLocation {
|
|
1495
|
-
id: string;
|
|
1496
|
-
eventId: string;
|
|
1497
|
-
reservationSectionId: string;
|
|
1498
|
-
name: string;
|
|
1499
|
-
shortDescription: string;
|
|
1500
|
-
supply: number;
|
|
1501
|
-
premium: number;
|
|
1502
|
-
createdAt: string;
|
|
1503
|
-
updatedAt: string;
|
|
1504
|
-
reservationSection: {
|
|
1505
|
-
name: string;
|
|
1506
|
-
pricePerDay: boolean;
|
|
1507
|
-
price: number;
|
|
1508
|
-
image: BaseImage | null;
|
|
1509
|
-
};
|
|
1510
|
-
_count: {
|
|
1511
|
-
purchases: number;
|
|
1512
|
-
};
|
|
1513
|
-
}
|
|
1514
|
-
interface EventReservationSectionLocation extends BaseEventReservationSectionLocation {
|
|
1515
|
-
reservationSection: BaseEventReservationSection;
|
|
1516
|
-
}
|
|
1517
1489
|
declare enum GroupRequestStatus {
|
|
1518
1490
|
requested = "requested",
|
|
1519
1491
|
rejected = "rejected"
|
|
@@ -1588,6 +1560,11 @@ interface BasePaymentIntent {
|
|
|
1588
1560
|
eventId: string | null;
|
|
1589
1561
|
registrationId: string | null;
|
|
1590
1562
|
invoiceId: string | null;
|
|
1563
|
+
salesTax: number;
|
|
1564
|
+
salesTaxRate: number;
|
|
1565
|
+
country: string;
|
|
1566
|
+
state: string;
|
|
1567
|
+
zip: string;
|
|
1591
1568
|
createdAt: string;
|
|
1592
1569
|
}
|
|
1593
1570
|
interface PaymentIntent extends BasePaymentIntent {
|
|
@@ -1853,6 +1830,74 @@ interface BasePassTypeRefundSchedule {
|
|
|
1853
1830
|
}
|
|
1854
1831
|
interface PassTypeRefundSchedule extends BasePassTypeRefundSchedule {
|
|
1855
1832
|
}
|
|
1833
|
+
interface BaseEventRoomType {
|
|
1834
|
+
id: string;
|
|
1835
|
+
name: string;
|
|
1836
|
+
price: number;
|
|
1837
|
+
pricePerNight: boolean;
|
|
1838
|
+
image: BaseImage;
|
|
1839
|
+
minPasses: number | null;
|
|
1840
|
+
maxPasses: number | null;
|
|
1841
|
+
minStart: string | null;
|
|
1842
|
+
defaultStart: string | null;
|
|
1843
|
+
maxStart: string | null;
|
|
1844
|
+
minEnd: string | null;
|
|
1845
|
+
defaultEnd: string | null;
|
|
1846
|
+
maxEnd: string | null;
|
|
1847
|
+
sortOrder: number;
|
|
1848
|
+
passTypes: BaseEventRoomTypePassTypeDetails[];
|
|
1849
|
+
addOns: BaseEventRoomTypeAddOnDetails[];
|
|
1850
|
+
supply: number | null;
|
|
1851
|
+
}
|
|
1852
|
+
interface EventRoomType extends BaseEventRoomType {
|
|
1853
|
+
description: string | null;
|
|
1854
|
+
createdAt: string;
|
|
1855
|
+
updatedAt: string;
|
|
1856
|
+
}
|
|
1857
|
+
interface BaseEventRoomTypeReservation {
|
|
1858
|
+
id: string;
|
|
1859
|
+
start: string | null;
|
|
1860
|
+
end: string | null;
|
|
1861
|
+
eventRoomTypeId: string;
|
|
1862
|
+
eventRoomType: BaseEventRoomType;
|
|
1863
|
+
}
|
|
1864
|
+
interface EventRoomTypeReservation extends BaseEventRoomTypeReservation {
|
|
1865
|
+
createdAt: string;
|
|
1866
|
+
updatedAt: string;
|
|
1867
|
+
}
|
|
1868
|
+
interface BaseEventRoomTypePassTypeDetails {
|
|
1869
|
+
id: string;
|
|
1870
|
+
passTypeId: string;
|
|
1871
|
+
enabled: boolean;
|
|
1872
|
+
premium: number;
|
|
1873
|
+
includedNights: number;
|
|
1874
|
+
minPasses: number | null;
|
|
1875
|
+
maxPasses: number | null;
|
|
1876
|
+
minStart: string | null;
|
|
1877
|
+
defaultStart: string | null;
|
|
1878
|
+
maxStart: string | null;
|
|
1879
|
+
minEnd: string | null;
|
|
1880
|
+
defaultEnd: string | null;
|
|
1881
|
+
maxEnd: string | null;
|
|
1882
|
+
}
|
|
1883
|
+
interface EventRoomTypePassTypeDetails extends BaseEventRoomTypePassTypeDetails {
|
|
1884
|
+
createdAt: string;
|
|
1885
|
+
updatedAt: string;
|
|
1886
|
+
}
|
|
1887
|
+
interface BaseEventRoomTypeAddOnDetails {
|
|
1888
|
+
id: string;
|
|
1889
|
+
addOnId: string;
|
|
1890
|
+
minStart: string | null;
|
|
1891
|
+
defaultStart: string | null;
|
|
1892
|
+
maxStart: string | null;
|
|
1893
|
+
minEnd: string | null;
|
|
1894
|
+
defaultEnd: string | null;
|
|
1895
|
+
maxEnd: string | null;
|
|
1896
|
+
}
|
|
1897
|
+
interface EventRoomTypeAddOnDetails extends BaseEventRoomTypeAddOnDetails {
|
|
1898
|
+
createdAt: string;
|
|
1899
|
+
updatedAt: string;
|
|
1900
|
+
}
|
|
1856
1901
|
|
|
1857
1902
|
interface ConnectedXMClientContextState {
|
|
1858
1903
|
queryClient: QueryClient;
|
|
@@ -1892,6 +1937,7 @@ declare const ERR_FEATURE_NOT_AVAILABLE = 456;
|
|
|
1892
1937
|
declare const ERR_TIER_REQUIRED = 457;
|
|
1893
1938
|
declare const ERR_SUBSCRIPTION_REQUIRED = 458;
|
|
1894
1939
|
declare const ERR_INTEGRATION_PERMISSION_DENIED = 459;
|
|
1940
|
+
declare const ERR_KNOWN_ERROR = 460;
|
|
1895
1941
|
declare const CUSTOM_ERROR_CODES: number[];
|
|
1896
1942
|
declare const GetErrorMessage: (error: any, fallback?: string) => string;
|
|
1897
1943
|
|
|
@@ -2545,15 +2591,6 @@ interface GetEventSponsorsProps extends InfiniteQueryParams {
|
|
|
2545
2591
|
declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
2546
2592
|
declare const useGetEventSponsors: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2547
2593
|
|
|
2548
|
-
declare const EVENT_PASS_TYPES_QUERY_KEY: (eventId: string, passTypeId?: string) => QueryKey;
|
|
2549
|
-
declare const SET_EVENT_PASS_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypes>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2550
|
-
interface GetEventPassTypesProps extends SingleQueryParams {
|
|
2551
|
-
eventId: string;
|
|
2552
|
-
passTypeId?: string;
|
|
2553
|
-
}
|
|
2554
|
-
declare const GetEventPassTypes: ({ eventId, passTypeId, clientApiParams, }: GetEventPassTypesProps) => Promise<ConnectedXMResponse<Ticket[]>>;
|
|
2555
|
-
declare const useGetEventPassTypes: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Ticket[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2556
|
-
|
|
2557
2594
|
declare const EVENTS_FEATURED_QUERY_KEY: () => QueryKey;
|
|
2558
2595
|
declare const SET_EVENTS_FEATURED_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_FEATURED_QUERY_KEY>, response: Awaited<ReturnType<typeof GetFeaturedEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
2559
2596
|
interface GetFeaturedEventsProps extends InfiniteQueryParams {
|
|
@@ -2561,15 +2598,6 @@ interface GetFeaturedEventsProps extends InfiniteQueryParams {
|
|
|
2561
2598
|
declare const GetFeaturedEvents: ({ pageParam, pageSize, orderBy, queryClient, clientApiParams, locale, }: GetFeaturedEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
|
|
2562
2599
|
declare const useGetFeaturedEvents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetFeaturedEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2563
2600
|
|
|
2564
|
-
declare const EVENT_PASS_TYPE_QUERY_KEY: (eventId: string, passTypeId: string) => QueryKey;
|
|
2565
|
-
declare const SET_EVENT_PASS_TYPE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_TYPE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassType>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2566
|
-
interface GetEventPassTypeProps extends SingleQueryParams {
|
|
2567
|
-
eventId: string;
|
|
2568
|
-
passTypeId: string;
|
|
2569
|
-
}
|
|
2570
|
-
declare const GetEventPassType: ({ eventId, passTypeId, clientApiParams, }: GetEventPassTypeProps) => Promise<ConnectedXMResponse<Ticket>>;
|
|
2571
|
-
declare const useGetEventPassType: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Ticket>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2572
|
-
|
|
2573
2601
|
declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
|
|
2574
2602
|
interface GetOrganizationParams extends SingleQueryParams {
|
|
2575
2603
|
}
|
|
@@ -2603,6 +2631,32 @@ interface GetOrganizationSubscriptionProductsProps extends InfiniteQueryParams {
|
|
|
2603
2631
|
declare const GetOrganizationSubscriptionProducts: ({ clientApiParams, }: GetOrganizationSubscriptionProductsProps) => Promise<ConnectedXMResponse<SubscriptionProduct[]>>;
|
|
2604
2632
|
declare const useGetOrganizationSubscriptionProducts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetOrganizationSubscriptionProducts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SubscriptionProduct[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2605
2633
|
|
|
2634
|
+
declare const SELF_ADDRESS_QUERY_KEY: (addressId: string) => QueryKey;
|
|
2635
|
+
interface GetSelfAddressProps extends SingleQueryParams {
|
|
2636
|
+
addressId: string;
|
|
2637
|
+
}
|
|
2638
|
+
declare const GetSelfAddress: ({ addressId, clientApiParams, }: GetSelfAddressProps) => Promise<ConnectedXMResponse<AccountAddress>>;
|
|
2639
|
+
declare const useGetSelfAddress: (addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfAddress>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2640
|
+
|
|
2641
|
+
declare const SELF_ADDRESSES_QUERY_KEY: () => QueryKey;
|
|
2642
|
+
interface GetSelfAddressesProps extends InfiniteQueryParams {
|
|
2643
|
+
}
|
|
2644
|
+
declare const GetSelfAddresses: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfAddressesProps) => Promise<ConnectedXMResponse<AccountAddress[]>>;
|
|
2645
|
+
declare const useGetSelfAddresses: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfAddresses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<AccountAddress[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2646
|
+
|
|
2647
|
+
declare const SELF_LEAD_QUERY_KEY: (leadId: string) => QueryKey;
|
|
2648
|
+
interface GetSelfLeadProps extends SingleQueryParams {
|
|
2649
|
+
leadId: string;
|
|
2650
|
+
}
|
|
2651
|
+
declare const GetSelfLead: ({ leadId, clientApiParams, }: GetSelfLeadProps) => Promise<ConnectedXMResponse<Lead>>;
|
|
2652
|
+
declare const useGetSelfLead: (leadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfLead>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2653
|
+
|
|
2654
|
+
declare const SELF_LEADS_QUERY_KEY: () => QueryKey;
|
|
2655
|
+
interface GetSelfLeadsProps extends InfiniteQueryParams {
|
|
2656
|
+
}
|
|
2657
|
+
declare const GetSelfLeads: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfLeadsProps) => Promise<ConnectedXMResponse<Lead[]>>;
|
|
2658
|
+
declare const useGetSelfLeads: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfLeads>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Lead[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2659
|
+
|
|
2606
2660
|
declare const SELF_CHAT_CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
|
|
2607
2661
|
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;
|
|
2608
2662
|
interface GetSelfChatChannelProps extends SingleQueryParams {
|
|
@@ -2642,138 +2696,151 @@ interface GetSelfEventRegistrationProps extends SingleQueryParams {
|
|
|
2642
2696
|
declare const GetSelfEventRegistration: ({ eventId, clientApiParams, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
|
|
2643
2697
|
declare const useGetSelfEventRegistration: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2644
2698
|
|
|
2645
|
-
declare const
|
|
2646
|
-
|
|
2699
|
+
declare const SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY: (eventId: string, passTypeId?: string) => QueryKey;
|
|
2700
|
+
declare const SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPassTypes>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2701
|
+
interface GetSelfEventRegistrationPassTypesProps extends SingleQueryParams {
|
|
2647
2702
|
eventId: string;
|
|
2648
|
-
|
|
2703
|
+
passTypeId?: string;
|
|
2649
2704
|
}
|
|
2650
|
-
declare const
|
|
2651
|
-
declare const
|
|
2705
|
+
declare const GetSelfEventRegistrationPassTypes: ({ eventId, passTypeId, clientApiParams, }: GetSelfEventRegistrationPassTypesProps) => Promise<ConnectedXMResponse<PassType[]>>;
|
|
2706
|
+
declare const useGetSelfEventRegistrationPassTypes: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2652
2707
|
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2708
|
+
interface PassTypeWithAddOns extends BasePassType {
|
|
2709
|
+
addOns: EventAddOn[];
|
|
2710
|
+
}
|
|
2711
|
+
declare const SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2712
|
+
declare const SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2713
|
+
interface GetSelfEventRegistrationAddOnsProps extends SingleQueryParams {
|
|
2656
2714
|
eventId: string;
|
|
2657
|
-
registrationId: string;
|
|
2658
|
-
paymentId: string;
|
|
2659
2715
|
}
|
|
2660
|
-
declare const
|
|
2661
|
-
declare const
|
|
2716
|
+
declare const GetSelfEventRegistrationAddOns: ({ eventId, clientApiParams, }: GetSelfEventRegistrationAddOnsProps) => Promise<ConnectedXMResponse<PassTypeWithAddOns[]>>;
|
|
2717
|
+
declare const useGetSelfEventRegistrationAddOns: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassTypeWithAddOns[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2662
2718
|
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
interface PurchaseWithResponseQuestions extends Purchase {
|
|
2667
|
-
responses: ResponseWithQuestion[];
|
|
2668
|
-
}
|
|
2669
|
-
declare const SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
|
|
2670
|
-
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchase>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2671
|
-
interface GetSelfEventRegistrationPurchaseProps extends SingleQueryParams {
|
|
2719
|
+
declare const SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2720
|
+
declare const SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationRoomTypes>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2721
|
+
interface GetSelfEventRegistrationRoomTypesProps extends SingleQueryParams {
|
|
2672
2722
|
eventId: string;
|
|
2673
|
-
registrationId: string;
|
|
2674
|
-
purchaseId: string;
|
|
2675
2723
|
}
|
|
2676
|
-
declare const
|
|
2677
|
-
declare const
|
|
2724
|
+
declare const GetSelfEventRegistrationRoomTypes: ({ eventId, clientApiParams, }: GetSelfEventRegistrationRoomTypesProps) => Promise<ConnectedXMResponse<EventRoomType[]>>;
|
|
2725
|
+
declare const useGetSelfEventRegistrationRoomTypes: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationRoomTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2678
2726
|
|
|
2679
|
-
declare const
|
|
2680
|
-
declare const
|
|
2681
|
-
interface
|
|
2727
|
+
declare const SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2728
|
+
declare const SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationQuestions>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2729
|
+
interface GetSelfEventRegistrationQuestionsProps extends SingleQueryParams {
|
|
2682
2730
|
eventId: string;
|
|
2683
|
-
registrationId: string;
|
|
2684
|
-
purchaseId: string;
|
|
2685
2731
|
}
|
|
2686
|
-
declare const
|
|
2687
|
-
|
|
2732
|
+
declare const GetSelfEventRegistrationQuestions: ({ eventId, clientApiParams, }: GetSelfEventRegistrationQuestionsProps) => Promise<ConnectedXMResponse<{
|
|
2733
|
+
passId: string;
|
|
2734
|
+
sections: RegistrationSection[];
|
|
2735
|
+
}[]>>;
|
|
2736
|
+
declare const useGetSelfEventRegistrationQuestions: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationQuestions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
|
|
2737
|
+
passId: string;
|
|
2738
|
+
sections: RegistrationSection[];
|
|
2739
|
+
}[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2688
2740
|
|
|
2689
|
-
declare const
|
|
2690
|
-
|
|
2691
|
-
interface GetSelfEventRegistrationPurchaseAddOnsProps extends SingleQueryParams {
|
|
2741
|
+
declare const SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY: (eventId: string, ticketId: string, quantity: number, addressId: string) => unknown[];
|
|
2742
|
+
interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
|
|
2692
2743
|
eventId: string;
|
|
2693
|
-
|
|
2694
|
-
|
|
2744
|
+
ticketId: string;
|
|
2745
|
+
quantity: number;
|
|
2746
|
+
addressId: string;
|
|
2695
2747
|
}
|
|
2696
|
-
declare const
|
|
2697
|
-
declare const
|
|
2748
|
+
declare const GetSelfEventTicketCouponIntent: ({ eventId, ticketId, quantity, addressId, clientApiParams, }: GetSelfEventTicketCouponIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
2749
|
+
declare const useGetSelfEventTicketCouponIntent: (eventId?: string, ticketId?: string, quantity?: number, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventTicketCouponIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2698
2750
|
|
|
2699
|
-
declare const
|
|
2700
|
-
|
|
2701
|
-
interface GetSelfEventRegistrationPurchaseReservationSectionsProps extends SingleQueryParams {
|
|
2751
|
+
declare const SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, addressId?: string) => unknown[];
|
|
2752
|
+
interface GetSelfEventRegistrationIntentProps extends SingleQueryParams {
|
|
2702
2753
|
eventId: string;
|
|
2703
|
-
|
|
2704
|
-
purchaseId: string;
|
|
2754
|
+
addressId: string;
|
|
2705
2755
|
}
|
|
2706
|
-
declare const
|
|
2707
|
-
declare const
|
|
2756
|
+
declare const GetSelfEventRegistrationIntent: ({ eventId, addressId, clientApiParams, }: GetSelfEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
2757
|
+
declare const useGetSelfEventRegistrationIntent: (eventId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2708
2758
|
|
|
2709
|
-
declare const
|
|
2710
|
-
interface
|
|
2711
|
-
|
|
2712
|
-
registrationId: string;
|
|
2713
|
-
purchaseId: string;
|
|
2714
|
-
addOnIds: string[];
|
|
2759
|
+
declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
|
|
2760
|
+
interface GetSelfSubcriptionProps extends SingleQueryParams {
|
|
2761
|
+
subscriptionId: string;
|
|
2715
2762
|
}
|
|
2716
|
-
declare const
|
|
2717
|
-
declare const
|
|
2763
|
+
declare const GetSelfSubcription: ({ subscriptionId, clientApiParams, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
|
|
2764
|
+
declare const useGetSelfSubcription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfSubcription>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2718
2765
|
|
|
2719
|
-
declare const
|
|
2720
|
-
interface
|
|
2766
|
+
declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unknown[];
|
|
2767
|
+
interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
|
|
2768
|
+
status?: SubscriptionStatus;
|
|
2769
|
+
}
|
|
2770
|
+
declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
|
|
2771
|
+
declare const useGetSelfSubscriptions: (status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2772
|
+
|
|
2773
|
+
declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
|
|
2774
|
+
interface GetSelfSubscriptionPaymentsProps extends InfiniteQueryParams {
|
|
2775
|
+
subscriptionId: string;
|
|
2776
|
+
}
|
|
2777
|
+
declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
|
|
2778
|
+
declare const useGetSelfSubscriptionPayments: (subscriptionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptionPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2779
|
+
|
|
2780
|
+
declare const SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
|
|
2781
|
+
declare const SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2782
|
+
interface GetSelfEventAttendeePaymentProps extends SingleQueryParams {
|
|
2721
2783
|
eventId: string;
|
|
2722
|
-
|
|
2723
|
-
ticketId: string;
|
|
2724
|
-
quantity: number;
|
|
2784
|
+
paymentId: string;
|
|
2725
2785
|
}
|
|
2726
|
-
declare const
|
|
2727
|
-
declare const
|
|
2786
|
+
declare const GetSelfEventAttendeePayment: ({ eventId, paymentId, clientApiParams, }: GetSelfEventAttendeePaymentProps) => Promise<ConnectedXMResponse<Payment>>;
|
|
2787
|
+
declare const useGetSelfEventAttendeePayment: (eventId: string, paymentId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2728
2788
|
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2789
|
+
interface ResponseWithQuestion extends RegistrationQuestionResponse {
|
|
2790
|
+
question: RegistrationQuestion;
|
|
2791
|
+
}
|
|
2792
|
+
interface PassWithResponseQuestions extends Pass {
|
|
2793
|
+
responses: ResponseWithQuestion[];
|
|
2794
|
+
}
|
|
2795
|
+
declare const SELF_EVENT_ATTENDEE_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
|
|
2796
|
+
declare const SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePass>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2797
|
+
interface GetSelfEventAttendeePassProps extends SingleQueryParams {
|
|
2732
2798
|
eventId: string;
|
|
2733
|
-
|
|
2734
|
-
couponId: string;
|
|
2799
|
+
passId: string;
|
|
2735
2800
|
}
|
|
2736
|
-
declare const
|
|
2737
|
-
declare const
|
|
2801
|
+
declare const GetSelfEventAttendeePass: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassProps) => Promise<ConnectedXMResponse<PassWithResponseQuestions>>;
|
|
2802
|
+
declare const useGetSelfEventAttendeePass: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassWithResponseQuestions>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2738
2803
|
|
|
2739
|
-
declare const
|
|
2740
|
-
interface
|
|
2804
|
+
declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, addOnIds: string[]) => QueryKey;
|
|
2805
|
+
interface GetSelfEventAttendeePassAddOnsIntentProps extends SingleQueryParams {
|
|
2741
2806
|
eventId: string;
|
|
2742
|
-
|
|
2807
|
+
passId: string;
|
|
2808
|
+
addOnIds: string[];
|
|
2809
|
+
addressId: string;
|
|
2743
2810
|
}
|
|
2744
|
-
declare const
|
|
2745
|
-
declare const
|
|
2811
|
+
declare const GetSelfEventAttendeePassAddOnsIntent: ({ eventId, passId, addOnIds, addressId, clientApiParams, }: GetSelfEventAttendeePassAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
|
|
2812
|
+
declare const useGetSelfEventAttendeePassAddOnsIntent: (eventId: string, passId: string, addressId: string, addOnIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassAddOnsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2746
2813
|
|
|
2747
|
-
declare const
|
|
2748
|
-
|
|
2814
|
+
declare const SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
|
|
2815
|
+
declare const SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeeCoupon>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2816
|
+
interface GetSelfEventAttendeeCouponProps extends SingleQueryParams {
|
|
2749
2817
|
eventId: string;
|
|
2750
|
-
registrationId: string;
|
|
2751
2818
|
couponId: string;
|
|
2752
2819
|
}
|
|
2753
|
-
declare const
|
|
2754
|
-
declare const
|
|
2820
|
+
declare const GetSelfEventAttendeeCoupon: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponProps) => Promise<ConnectedXMResponse<ManagedCoupon>>;
|
|
2821
|
+
declare const useGetSelfEventAttendeeCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ManagedCoupon>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2755
2822
|
|
|
2756
|
-
declare const
|
|
2757
|
-
|
|
2758
|
-
interface GetSelfEventPassesProps extends SingleQueryParams {
|
|
2823
|
+
declare const SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
|
|
2824
|
+
interface GetSelfEventAttendeeCouponPassesProps extends InfiniteQueryParams {
|
|
2759
2825
|
eventId: string;
|
|
2826
|
+
couponId: string;
|
|
2760
2827
|
}
|
|
2761
|
-
declare const
|
|
2762
|
-
declare const
|
|
2828
|
+
declare const GetSelfEventAttendeeCouponPasses: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponPassesProps) => Promise<ConnectedXMResponse<ManagedCouponPass[]>>;
|
|
2829
|
+
declare const useGetSelfEventAttendeeCouponPasses: (eventId?: string, couponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeeCouponPasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCouponPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2763
2830
|
|
|
2764
|
-
declare const
|
|
2765
|
-
interface
|
|
2831
|
+
declare const SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2832
|
+
interface GetSelfEventAttendeeCouponsProps extends InfiniteQueryParams {
|
|
2766
2833
|
eventId: string;
|
|
2767
2834
|
}
|
|
2768
|
-
declare const
|
|
2769
|
-
declare const
|
|
2835
|
+
declare const GetSelfEventAttendeeCoupons: ({ eventId, clientApiParams, }: GetSelfEventAttendeeCouponsProps) => Promise<ConnectedXMResponse<ManagedCoupon[]>>;
|
|
2836
|
+
declare const useGetSelfEventAttendeeCoupons: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeeCoupons>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCoupon[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2770
2837
|
|
|
2771
|
-
declare const
|
|
2772
|
-
interface
|
|
2838
|
+
declare const SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2839
|
+
interface GetSelfEventAttendeeTransfersLogsProps extends InfiniteQueryParams {
|
|
2773
2840
|
eventId: string;
|
|
2774
2841
|
}
|
|
2775
|
-
declare const
|
|
2776
|
-
declare const
|
|
2842
|
+
declare const GetSelfEventAttendeeTransfersLogs: ({ pageParam, pageSize, orderBy, search, eventId, clientApiParams, }: GetSelfEventAttendeeTransfersLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
|
|
2843
|
+
declare const useGetSelfEventAttendeeTransfersLogs: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeeTransfersLogs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<TransferLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2777
2844
|
|
|
2778
2845
|
declare const SELF_EVENT_ATTENDEE_QUERY_KEY: (eventId: string) => QueryKey;
|
|
2779
2846
|
declare const SET_SELF_EVENT_ATTENDEE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendee>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
@@ -2783,7 +2850,25 @@ interface GetSelfEventAttendeeProps extends SingleQueryParams {
|
|
|
2783
2850
|
declare const GetSelfEventAttendee: ({ eventId, clientApiParams, }: GetSelfEventAttendeeProps) => Promise<ConnectedXMResponse<Registration>>;
|
|
2784
2851
|
declare const useGetSelfEventAttendee: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2785
2852
|
|
|
2786
|
-
declare const
|
|
2853
|
+
declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
|
|
2854
|
+
declare const SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2855
|
+
interface GetSelfEventAttendeePassQuestionSectionsProps extends SingleQueryParams {
|
|
2856
|
+
eventId: string;
|
|
2857
|
+
passId: string;
|
|
2858
|
+
}
|
|
2859
|
+
declare const GetSelfEventAttendeePassQuestionSections: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
|
|
2860
|
+
declare const useGetSelfEventAttendeePassQuestionSections: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2861
|
+
|
|
2862
|
+
declare const SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
|
|
2863
|
+
declare const SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
2864
|
+
interface GetSelfEventAttendeePassAddOnsProps extends SingleQueryParams {
|
|
2865
|
+
eventId: string;
|
|
2866
|
+
passId: string;
|
|
2867
|
+
}
|
|
2868
|
+
declare const GetSelfEventAttendeePassAddOns: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
|
|
2869
|
+
declare const useGetSelfEventAttendeePassAddOns: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2870
|
+
|
|
2871
|
+
declare const SELF_EVENT_ATTENDEE_SESSION_PASSES_INTENT_QUERY_KEY: (eventId: string, sessionId: string, addressId: string, sessionPassIds: string[]) => unknown[];
|
|
2787
2872
|
type SessionPassesInput = {
|
|
2788
2873
|
passId: string;
|
|
2789
2874
|
responses: {
|
|
@@ -2791,35 +2876,14 @@ type SessionPassesInput = {
|
|
|
2791
2876
|
value: string;
|
|
2792
2877
|
}[];
|
|
2793
2878
|
}[];
|
|
2794
|
-
interface
|
|
2879
|
+
interface GetSelfEventAttendeeSessionPassesIntentProps extends SingleQueryParams {
|
|
2795
2880
|
eventId: string;
|
|
2796
|
-
registrationId: string;
|
|
2797
2881
|
sessionId: string;
|
|
2882
|
+
addressId: string;
|
|
2798
2883
|
sessionPasses: SessionPassesInput;
|
|
2799
2884
|
}
|
|
2800
|
-
declare const
|
|
2801
|
-
declare const
|
|
2802
|
-
|
|
2803
|
-
declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
|
|
2804
|
-
interface GetSelfSubcriptionProps extends SingleQueryParams {
|
|
2805
|
-
subscriptionId: string;
|
|
2806
|
-
}
|
|
2807
|
-
declare const GetSelfSubcription: ({ subscriptionId, clientApiParams, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
|
|
2808
|
-
declare const useGetSelfSubcription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfSubcription>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2809
|
-
|
|
2810
|
-
declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unknown[];
|
|
2811
|
-
interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
|
|
2812
|
-
status?: SubscriptionStatus;
|
|
2813
|
-
}
|
|
2814
|
-
declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
|
|
2815
|
-
declare const useGetSelfSubscriptions: (status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2816
|
-
|
|
2817
|
-
declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
|
|
2818
|
-
interface GetSelfSubscriptionPaymentsProps extends InfiniteQueryParams {
|
|
2819
|
-
subscriptionId: string;
|
|
2820
|
-
}
|
|
2821
|
-
declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
|
|
2822
|
-
declare const useGetSelfSubscriptionPayments: (subscriptionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptionPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
2885
|
+
declare const GetSelfEventAttendeeSessionPassesIntent: ({ eventId, sessionId, addressId, sessionPasses, clientApiParams, }: GetSelfEventAttendeeSessionPassesIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
2886
|
+
declare const useGetSelfEventAttendeeSessionPassesIntent: (eventId: string, sessionId: string, addressId: string, sessionPasses: SessionPassesInput, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeSessionPassesIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
2823
2887
|
|
|
2824
2888
|
declare const SELF_QUERY_KEY: (ignoreExecuteAs?: boolean) => QueryKey;
|
|
2825
2889
|
declare const SET_SELF_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelf>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
@@ -2998,12 +3062,13 @@ interface GetInvoiceProps extends SingleQueryParams {
|
|
|
2998
3062
|
declare const GetInvoice: ({ invoiceId, clientApiParams, }: GetInvoiceProps) => Promise<ConnectedXMResponse<Invoice>>;
|
|
2999
3063
|
declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3000
3064
|
|
|
3001
|
-
declare const SELF_INVOICE_INTENT_QUERY_KEY: (invoiceId: string) => unknown[];
|
|
3065
|
+
declare const SELF_INVOICE_INTENT_QUERY_KEY: (invoiceId: string, addressId: string) => unknown[];
|
|
3002
3066
|
interface GetInvoiceIntentProps extends SingleQueryParams {
|
|
3003
3067
|
invoiceId: string;
|
|
3068
|
+
addressId: string;
|
|
3004
3069
|
}
|
|
3005
|
-
declare const GetInvoiceIntent: ({ invoiceId, clientApiParams, }: GetInvoiceIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
3006
|
-
declare const useGetInvoiceIntent: (invoiceId
|
|
3070
|
+
declare const GetInvoiceIntent: ({ invoiceId, addressId, clientApiParams, }: GetInvoiceIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
|
|
3071
|
+
declare const useGetInvoiceIntent: (invoiceId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3007
3072
|
|
|
3008
3073
|
declare const LISTING_QUERY_KEY: (eventId: string) => QueryKey;
|
|
3009
3074
|
declare const SET_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
@@ -3045,39 +3110,39 @@ interface GetSelfEventListingQuestionsProps extends InfiniteQueryParams {
|
|
|
3045
3110
|
declare const GetSelfEventListingQuestions: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestion[]>>;
|
|
3046
3111
|
declare const useGetSelfEventListingQuestions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestion[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3047
3112
|
|
|
3048
|
-
declare const
|
|
3049
|
-
declare const
|
|
3113
|
+
declare const LISTING_ATTENDEE_QUERY_KEY: (eventId: string, accountId: string) => QueryKey;
|
|
3114
|
+
declare const SET_LISTING_ATTENDEE_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_ATTENDEE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
3050
3115
|
interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
|
|
3051
3116
|
eventId: string;
|
|
3052
|
-
|
|
3117
|
+
accountId: string;
|
|
3053
3118
|
}
|
|
3054
|
-
declare const GetSelfEventListingRegistration: ({ eventId,
|
|
3055
|
-
declare const useGetSelfEventListingRegistration: (eventId?: string,
|
|
3119
|
+
declare const GetSelfEventListingRegistration: ({ eventId, accountId, clientApiParams, }: GetSelfEventListingRegistrationProps) => Promise<ConnectedXMResponse<ListingRegistration>>;
|
|
3120
|
+
declare const useGetSelfEventListingRegistration: (eventId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingRegistration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3056
3121
|
|
|
3057
|
-
declare const
|
|
3058
|
-
interface
|
|
3122
|
+
declare const LISTING_ATTENDEES_QUERY_KEY: (eventId: string, status?: keyof typeof PurchaseStatus) => unknown[];
|
|
3123
|
+
interface GetSelfEventListingAttendeesProps extends InfiniteQueryParams {
|
|
3059
3124
|
eventId: string;
|
|
3060
3125
|
status?: keyof typeof PurchaseStatus;
|
|
3061
3126
|
}
|
|
3062
|
-
declare const
|
|
3063
|
-
declare const useGetSelfEventListingsRegistrations: (eventId: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof
|
|
3127
|
+
declare const GetSelfEventListingAttendees: ({ eventId, pageParam, pageSize, orderBy, search, status, clientApiParams, }: GetSelfEventListingAttendeesProps) => Promise<ConnectedXMResponse<ListingRegistration[]>>;
|
|
3128
|
+
declare const useGetSelfEventListingsRegistrations: (eventId: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingAttendees>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ListingRegistration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3064
3129
|
|
|
3065
|
-
declare const
|
|
3066
|
-
declare const
|
|
3067
|
-
interface
|
|
3130
|
+
declare const LISTING_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
|
|
3131
|
+
declare const SET_LISTING_PASS_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_PASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingPass>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
3132
|
+
interface GetSelfEventListingPassProps extends SingleQueryParams {
|
|
3068
3133
|
eventId: string;
|
|
3069
|
-
|
|
3134
|
+
passId: string;
|
|
3070
3135
|
}
|
|
3071
|
-
declare const
|
|
3072
|
-
declare const
|
|
3136
|
+
declare const GetSelfEventListingPass: ({ eventId, passId, clientApiParams, }: GetSelfEventListingPassProps) => Promise<ConnectedXMResponse<ListingPass>>;
|
|
3137
|
+
declare const useGetSelfEventListingPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3073
3138
|
|
|
3074
|
-
declare const
|
|
3075
|
-
interface
|
|
3139
|
+
declare const LISTING_PASSES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => unknown[];
|
|
3140
|
+
interface GetSelfEventListingPassesProps extends InfiniteQueryParams {
|
|
3076
3141
|
eventId: string;
|
|
3077
3142
|
checkedIn?: boolean;
|
|
3078
3143
|
}
|
|
3079
|
-
declare const
|
|
3080
|
-
declare const
|
|
3144
|
+
declare const GetSelfEventListingPasses: ({ eventId, checkedIn, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingPassesProps) => Promise<ConnectedXMResponse<ListingPass[]>>;
|
|
3145
|
+
declare const useGetSelfEventListingPasses: (eventId: string, checkedIn?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingPasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ListingPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
3081
3146
|
|
|
3082
3147
|
declare const LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
|
|
3083
3148
|
interface GetSelfEventListingsProps extends InfiniteQueryParams {
|
|
@@ -3100,15 +3165,15 @@ interface GetSelfEventListingReportProps extends SingleQueryParams {
|
|
|
3100
3165
|
declare const GetSelfEventListingReport: ({ eventId, clientApiParams, }: GetSelfEventListingReportProps) => Promise<ConnectedXMResponse<any>>;
|
|
3101
3166
|
declare const useGetSelfEventListingReport: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3102
3167
|
|
|
3103
|
-
declare const
|
|
3104
|
-
declare const
|
|
3105
|
-
interface
|
|
3168
|
+
declare const LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, accountId: string, passId: string) => QueryKey;
|
|
3169
|
+
declare const SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetListingAttendeePassQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
3170
|
+
interface GetListingAttendeePassQuestionSectionsProps extends SingleQueryParams {
|
|
3106
3171
|
eventId: string;
|
|
3107
|
-
|
|
3108
|
-
|
|
3172
|
+
accountId: string;
|
|
3173
|
+
passId: string;
|
|
3109
3174
|
}
|
|
3110
|
-
declare const
|
|
3111
|
-
declare const
|
|
3175
|
+
declare const GetListingAttendeePassQuestionSections: ({ eventId, accountId, passId, clientApiParams, }: GetListingAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
|
|
3176
|
+
declare const useGetListingAttendeePassQuestionSections: (eventId: string, accountId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetListingAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
3112
3177
|
|
|
3113
3178
|
declare const INTERESTS_QUERY_KEY: () => QueryKey;
|
|
3114
3179
|
declare const SET_INTERESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTERESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInterests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
@@ -3597,20 +3662,53 @@ interface CompleteEventActivationParams extends MutationParams {
|
|
|
3597
3662
|
declare const CompleteEventActivation: ({ eventId, activationId, code, clientApiParams, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
|
|
3598
3663
|
declare const useCompleteEventActivation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CompleteEventActivation>>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventActivation>, axios.AxiosError<ConnectedXMResponse<EventActivation>, any>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3599
3664
|
|
|
3600
|
-
interface CreateEventLeadParams extends MutationParams {
|
|
3601
|
-
eventId: string;
|
|
3602
|
-
purchaseId: string;
|
|
3603
|
-
note?: string;
|
|
3604
|
-
}
|
|
3605
|
-
declare const CreateEventLead: ({ eventId, purchaseId, note, clientApiParams, queryClient, }: CreateEventLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
3606
|
-
declare const useCreateEventLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateEventLead>>, Omit<CreateEventLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<CreateEventLeadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3607
|
-
|
|
3608
3665
|
interface CapturePaymentIntentParams extends MutationParams {
|
|
3609
3666
|
intent: PaymentIntent;
|
|
3610
3667
|
}
|
|
3611
3668
|
declare const CapturePaymentIntent: ({ intent, clientApiParams, queryClient, }: CapturePaymentIntentParams) => Promise<ConnectedXMResponse<Activity>>;
|
|
3612
3669
|
declare const useCapturePaymentIntent: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CapturePaymentIntent>>, Omit<CapturePaymentIntentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<Activity>, any>, Omit<CapturePaymentIntentParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3613
3670
|
|
|
3671
|
+
interface CreateSelfAddressParams extends MutationParams {
|
|
3672
|
+
address: any;
|
|
3673
|
+
}
|
|
3674
|
+
declare const CreateSelfAddress: ({ address, clientApiParams, queryClient, }: CreateSelfAddressParams) => Promise<ConnectedXMResponse<AccountAddress>>;
|
|
3675
|
+
declare const useCreateSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfAddress>>, Omit<CreateSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<AccountAddress>, any>, Omit<CreateSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3676
|
+
|
|
3677
|
+
interface DeleteSelfAddressParams extends MutationParams {
|
|
3678
|
+
addressId: string;
|
|
3679
|
+
}
|
|
3680
|
+
declare const DeleteSelfAddress: ({ addressId, clientApiParams, queryClient, }: DeleteSelfAddressParams) => Promise<ConnectedXMResponse<null>>;
|
|
3681
|
+
declare const useDeleteSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfAddress>>, Omit<DeleteSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3682
|
+
|
|
3683
|
+
interface UpdateSelfAddressParams extends MutationParams {
|
|
3684
|
+
addressId: string;
|
|
3685
|
+
address: any;
|
|
3686
|
+
}
|
|
3687
|
+
declare const UpdateSelfAddress: ({ addressId, address, queryClient, clientApiParams, }: UpdateSelfAddressParams) => Promise<ConnectedXMResponse<AccountAddress>>;
|
|
3688
|
+
declare const useUpdateSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfAddress>>, Omit<UpdateSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<AccountAddress>, any>, Omit<UpdateSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3689
|
+
|
|
3690
|
+
interface CreateSelfLeadParams extends MutationParams {
|
|
3691
|
+
passId: string;
|
|
3692
|
+
}
|
|
3693
|
+
declare const CreateSelfLead: ({ passId, clientApiParams, queryClient, }: CreateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
3694
|
+
declare const useCreateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfLead>>, Omit<CreateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<CreateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3695
|
+
|
|
3696
|
+
interface DeleteSelfLeadParams extends MutationParams {
|
|
3697
|
+
leadId: string;
|
|
3698
|
+
}
|
|
3699
|
+
declare const DeleteSelfLead: ({ leadId, clientApiParams, queryClient, }: DeleteSelfLeadParams) => Promise<ConnectedXMResponse<null>>;
|
|
3700
|
+
declare const useDeleteSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfLead>>, Omit<DeleteSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3701
|
+
|
|
3702
|
+
interface UpdateSelfLeadParams extends MutationParams {
|
|
3703
|
+
leadId: string;
|
|
3704
|
+
lead: {
|
|
3705
|
+
status?: "new" | "favorited" | "archived" | "deleted";
|
|
3706
|
+
note?: string;
|
|
3707
|
+
};
|
|
3708
|
+
}
|
|
3709
|
+
declare const UpdateSelfLead: ({ leadId, lead, queryClient, clientApiParams, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
3710
|
+
declare const useUpdateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3711
|
+
|
|
3614
3712
|
interface AddSelfChatChannelMemberParams extends MutationParams {
|
|
3615
3713
|
channelId: string;
|
|
3616
3714
|
accountId: string;
|
|
@@ -3660,35 +3758,66 @@ declare const useUpdateSelfChatChannelNotifications: (options?: Omit<MutationOpt
|
|
|
3660
3758
|
|
|
3661
3759
|
interface SelectSelfEventRegistrationCouponParams extends MutationParams {
|
|
3662
3760
|
eventId: string;
|
|
3663
|
-
registrationId: string;
|
|
3664
3761
|
couponId: string;
|
|
3665
3762
|
}
|
|
3666
|
-
declare const SelectSelfEventRegistrationCoupon: ({ eventId,
|
|
3763
|
+
declare const SelectSelfEventRegistrationCoupon: ({ eventId, couponId, clientApiParams, queryClient, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
3667
3764
|
declare const useSelectSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3668
3765
|
|
|
3669
3766
|
interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
|
|
3670
3767
|
eventId: string;
|
|
3671
|
-
registrationId: string;
|
|
3672
3768
|
}
|
|
3673
|
-
declare const RemoveSelfEventRegistrationCoupon: ({ eventId,
|
|
3769
|
+
declare const RemoveSelfEventRegistrationCoupon: ({ eventId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
3674
3770
|
declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3675
3771
|
|
|
3676
|
-
interface
|
|
3772
|
+
interface UpdateSelfEventRegistrationPassesParams extends MutationParams {
|
|
3677
3773
|
eventId: string;
|
|
3678
|
-
|
|
3679
|
-
|
|
3774
|
+
passes: {
|
|
3775
|
+
id: string;
|
|
3776
|
+
ticketId: string;
|
|
3777
|
+
}[];
|
|
3680
3778
|
}
|
|
3681
|
-
declare const
|
|
3682
|
-
declare const
|
|
3779
|
+
declare const UpdateSelfEventRegistrationPasses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3780
|
+
declare const useUpdateSelfEventRegistrationPasses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPasses>>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3683
3781
|
|
|
3684
|
-
interface
|
|
3782
|
+
interface UpdateSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
|
|
3685
3783
|
eventId: string;
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3784
|
+
passes: {
|
|
3785
|
+
id: string;
|
|
3786
|
+
addOns: {
|
|
3787
|
+
id: string;
|
|
3788
|
+
}[];
|
|
3789
|
+
}[];
|
|
3689
3790
|
}
|
|
3690
|
-
declare const
|
|
3691
|
-
declare const
|
|
3791
|
+
declare const UpdateSelfEventRegistrationPurchaseAddOn: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<null>>;
|
|
3792
|
+
declare const useUpdateSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPurchaseAddOn>>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3793
|
+
|
|
3794
|
+
interface UpdateSelfEventRegistrationReservationsParams extends MutationParams {
|
|
3795
|
+
eventId: string;
|
|
3796
|
+
passes: {
|
|
3797
|
+
id: string;
|
|
3798
|
+
reservation: {
|
|
3799
|
+
id: string;
|
|
3800
|
+
eventRoomTypeId: string;
|
|
3801
|
+
start?: Date | string;
|
|
3802
|
+
end?: Date | string;
|
|
3803
|
+
};
|
|
3804
|
+
}[];
|
|
3805
|
+
}
|
|
3806
|
+
declare const UpdateSelfEventRegistrationReservations: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationReservationsParams) => Promise<ConnectedXMResponse<null>>;
|
|
3807
|
+
declare const useUpdateSelfEventRegistrationReservations: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationReservations>>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3808
|
+
|
|
3809
|
+
interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
|
|
3810
|
+
eventId: string;
|
|
3811
|
+
passes: {
|
|
3812
|
+
id: string;
|
|
3813
|
+
responses: {
|
|
3814
|
+
questionId: number;
|
|
3815
|
+
value: string;
|
|
3816
|
+
}[];
|
|
3817
|
+
}[];
|
|
3818
|
+
}
|
|
3819
|
+
declare const UpdateSelfEventRegistrationResponses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3820
|
+
declare const useUpdateSelfEventRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3692
3821
|
|
|
3693
3822
|
interface SubmitStripe {
|
|
3694
3823
|
type: "stripe";
|
|
@@ -3710,111 +3839,65 @@ interface SubmitPaypalResponse {
|
|
|
3710
3839
|
type SubmitResponse = SubmitStripeResponse | SubmitPaypalResponse;
|
|
3711
3840
|
interface SubmitSelfEventRegistrationParams extends MutationParams {
|
|
3712
3841
|
eventId: string;
|
|
3713
|
-
registrationId: string;
|
|
3714
3842
|
payment?: SubmitPayment;
|
|
3715
3843
|
}
|
|
3716
|
-
declare const SubmitSelfEventRegistration: ({ eventId,
|
|
3844
|
+
declare const SubmitSelfEventRegistration: ({ eventId, payment, clientApiParams, queryClient, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
3717
3845
|
declare const useSubmitSelfEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistration>>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3718
3846
|
|
|
3719
|
-
interface
|
|
3847
|
+
interface AddFreePassAddOnsParams extends MutationParams {
|
|
3720
3848
|
eventId: string;
|
|
3721
|
-
|
|
3722
|
-
purchaseId: string;
|
|
3723
|
-
questionId: number;
|
|
3724
|
-
value: string;
|
|
3725
|
-
update?: boolean;
|
|
3726
|
-
}
|
|
3727
|
-
declare const UpdateSelfEventRegistrationQuestionResponse: ({ eventId, registrationId, purchaseId, questionId, value, update, clientApiParams, queryClient, }: UpdateSelfEventRegistrationQuestionResponseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
3728
|
-
declare const useUpdateSelfEventRegistrationQuestionResponse: (update?: boolean, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationQuestionResponse>>, Omit<UpdateSelfEventRegistrationQuestionResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationQuestionResponseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3729
|
-
|
|
3730
|
-
interface AddSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
|
|
3731
|
-
eventId: string;
|
|
3732
|
-
registrationId: string;
|
|
3733
|
-
purchaseId: string;
|
|
3734
|
-
addOnId: string;
|
|
3735
|
-
}
|
|
3736
|
-
declare const AddSelfEventRegistrationPurchaseAddOn: ({ eventId, registrationId, purchaseId, addOnId, clientApiParams, queryClient, }: AddSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
3737
|
-
declare const useAddSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventRegistrationPurchaseAddOn>>, Omit<AddSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<AddSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3738
|
-
|
|
3739
|
-
interface RemoveSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
|
|
3740
|
-
eventId: string;
|
|
3741
|
-
registrationId: string;
|
|
3742
|
-
purchaseId: string;
|
|
3743
|
-
addOnId: string;
|
|
3744
|
-
}
|
|
3745
|
-
declare const RemoveSelfEventRegistrationPurchaseAddOn: ({ eventId, registrationId, purchaseId, addOnId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
3746
|
-
declare const useRemoveSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationPurchaseAddOn>>, Omit<RemoveSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3747
|
-
|
|
3748
|
-
interface SelectSelfEventRegistrationPurchaseReservationParams extends MutationParams {
|
|
3749
|
-
eventId: string;
|
|
3750
|
-
registrationId: string;
|
|
3751
|
-
purchaseId: string;
|
|
3752
|
-
locationId: string;
|
|
3753
|
-
reservationStart?: string;
|
|
3754
|
-
reservationEnd?: string;
|
|
3755
|
-
}
|
|
3756
|
-
declare const SelectSelfEventRegistrationPurchaseReservation: ({ eventId, registrationId, purchaseId, locationId, reservationStart, reservationEnd, clientApiParams, queryClient, }: SelectSelfEventRegistrationPurchaseReservationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
3757
|
-
declare const useSelectSelfEventRegistrationPurchaseReservation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationPurchaseReservation>>, Omit<SelectSelfEventRegistrationPurchaseReservationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationPurchaseReservationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3758
|
-
|
|
3759
|
-
interface AddFreePurchaseAddOnsParams extends MutationParams {
|
|
3760
|
-
eventId: string;
|
|
3761
|
-
registrationId: string;
|
|
3762
|
-
purchaseId: string;
|
|
3849
|
+
passId: string;
|
|
3763
3850
|
addOnIds: string[];
|
|
3764
3851
|
}
|
|
3765
|
-
declare const
|
|
3766
|
-
declare const
|
|
3852
|
+
declare const AddFreePassAddOns: ({ eventId, passId, addOnIds, clientApiParams, queryClient, }: AddFreePassAddOnsParams) => Promise<ConnectedXMResponse<Pass>>;
|
|
3853
|
+
declare const useAddFreePassAddOns: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddFreePassAddOns>>, Omit<AddFreePassAddOnsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<AddFreePassAddOnsParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3767
3854
|
|
|
3768
|
-
interface
|
|
3855
|
+
interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
|
|
3769
3856
|
eventId: string;
|
|
3770
|
-
|
|
3771
|
-
purchaseId: string;
|
|
3857
|
+
passId: string;
|
|
3772
3858
|
questions: {
|
|
3773
3859
|
id: number;
|
|
3774
3860
|
value: string;
|
|
3775
3861
|
}[];
|
|
3776
3862
|
}
|
|
3777
|
-
declare const
|
|
3778
|
-
declare const
|
|
3863
|
+
declare const UpdateSelfEventAttendeePassResponses: ({ eventId, passId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassResponsesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3864
|
+
declare const useUpdateSelfEventAttendeePassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeePassResponses>>, Omit<UpdateSelfEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3779
3865
|
|
|
3780
|
-
interface
|
|
3866
|
+
interface TransferPassParams extends MutationParams {
|
|
3781
3867
|
passId: string;
|
|
3782
3868
|
eventId: string;
|
|
3783
|
-
registrationId: string;
|
|
3784
3869
|
receiverId: string;
|
|
3785
3870
|
}
|
|
3786
|
-
declare const
|
|
3787
|
-
declare const
|
|
3871
|
+
declare const TransferPass: ({ passId, eventId, receiverId, clientApiParams, queryClient, }: TransferPassParams) => Promise<ConnectedXMResponse<null>>;
|
|
3872
|
+
declare const useTransferPass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPass>>, Omit<TransferPassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<TransferPassParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3788
3873
|
|
|
3789
|
-
interface
|
|
3790
|
-
|
|
3874
|
+
interface CancelPassParams extends MutationParams {
|
|
3875
|
+
passId: string;
|
|
3791
3876
|
eventId: string;
|
|
3792
3877
|
registrationId: string;
|
|
3793
3878
|
issueRefund?: boolean;
|
|
3794
3879
|
}
|
|
3795
|
-
declare const
|
|
3796
|
-
declare const
|
|
3880
|
+
declare const CancelPass: ({ passId, eventId, issueRefund, clientApiParams, queryClient, }: CancelPassParams) => Promise<ConnectedXMResponse<Pass>>;
|
|
3881
|
+
declare const useCancelPass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelPass>>, Omit<CancelPassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<CancelPassParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3797
3882
|
|
|
3798
3883
|
interface SubmitSelfEventRegistrationSessionPassesParams extends MutationParams {
|
|
3799
3884
|
eventId: string;
|
|
3800
|
-
registrationId: string;
|
|
3801
3885
|
sessionId: string;
|
|
3802
3886
|
sessionPasses: SessionPassesInput;
|
|
3803
3887
|
}
|
|
3804
|
-
declare const SubmitSelfEventRegistrationSessionPasses: ({ eventId,
|
|
3888
|
+
declare const SubmitSelfEventRegistrationSessionPasses: ({ eventId, sessionId, sessionPasses, clientApiParams, queryClient, }: SubmitSelfEventRegistrationSessionPassesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3805
3889
|
declare const useSubmitSelfEventRegistrationSessionPasses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistrationSessionPasses>>, Omit<SubmitSelfEventRegistrationSessionPassesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<SubmitSelfEventRegistrationSessionPassesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3806
3890
|
|
|
3807
3891
|
interface UpdateSelfEventRegistrationPurchaseSessionResponsesParams extends MutationParams {
|
|
3808
3892
|
eventId: string;
|
|
3809
|
-
|
|
3810
|
-
purchaseId: string;
|
|
3893
|
+
passId: string;
|
|
3811
3894
|
sessionPassId: string;
|
|
3812
3895
|
responses: {
|
|
3813
3896
|
questionId: string;
|
|
3814
3897
|
value: string | undefined;
|
|
3815
3898
|
}[];
|
|
3816
3899
|
}
|
|
3817
|
-
declare const UpdateSelfEventRegistrationPurchaseSessionResponses: ({ eventId,
|
|
3900
|
+
declare const UpdateSelfEventRegistrationPurchaseSessionResponses: ({ eventId, passId, sessionPassId, responses, clientApiParams, }: UpdateSelfEventRegistrationPurchaseSessionResponsesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3818
3901
|
declare const useUpdateSelfEventRegistrationPurchaseSessionResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPurchaseSessionResponses>>, Omit<UpdateSelfEventRegistrationPurchaseSessionResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPurchaseSessionResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3819
3902
|
|
|
3820
3903
|
interface CancelSubscriptionParams extends MutationParams {
|
|
@@ -3945,13 +4028,6 @@ interface UpdateSelfImageParams extends MutationParams {
|
|
|
3945
4028
|
declare const UpdateSelfImage: ({ base64, clientApiParams, queryClient, }: UpdateSelfImageParams) => Promise<ConnectedXMResponse<Self>>;
|
|
3946
4029
|
declare const useUpdateSelfImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfImage>>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3947
4030
|
|
|
3948
|
-
interface UpdateSelfLeadParams extends MutationParams {
|
|
3949
|
-
leadId: string;
|
|
3950
|
-
note: string;
|
|
3951
|
-
}
|
|
3952
|
-
declare const UpdateSelfLead: ({ leadId, note, clientApiParams, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
3953
|
-
declare const useUpdateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3954
|
-
|
|
3955
4031
|
interface UpdateSelfNotificationPreferencesParams extends MutationParams {
|
|
3956
4032
|
newFollowerPush?: boolean;
|
|
3957
4033
|
newFollowerEmail?: boolean;
|
|
@@ -4270,21 +4346,21 @@ interface RemoveListingSponsorParams extends MutationParams {
|
|
|
4270
4346
|
declare const RemoveListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, }: RemoveListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
4271
4347
|
declare const useRemoveListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingSponsor>>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4272
4348
|
|
|
4273
|
-
interface
|
|
4349
|
+
interface CheckinListingAttendeePassParams extends MutationParams {
|
|
4274
4350
|
eventId: string;
|
|
4275
|
-
|
|
4276
|
-
|
|
4351
|
+
accountId: string;
|
|
4352
|
+
passId: string;
|
|
4277
4353
|
}
|
|
4278
|
-
declare const
|
|
4279
|
-
declare const
|
|
4354
|
+
declare const CheckinListingAttendeePass: ({ eventId, accountId, passId, clientApiParams, queryClient, }: CheckinListingAttendeePassParams) => Promise<ConnectedXMResponse<Pass>>;
|
|
4355
|
+
declare const useCheckinListingAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckinListingAttendeePass>>, Omit<CheckinListingAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<CheckinListingAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4280
4356
|
|
|
4281
|
-
interface
|
|
4357
|
+
interface UndoCheckinListingAttendeePassParams extends MutationParams {
|
|
4282
4358
|
eventId: string;
|
|
4283
|
-
|
|
4284
|
-
|
|
4359
|
+
accountId: string;
|
|
4360
|
+
passId: string;
|
|
4285
4361
|
}
|
|
4286
|
-
declare const
|
|
4287
|
-
declare const
|
|
4362
|
+
declare const UndoCheckinListingAttendeePass: ({ eventId, accountId, passId, clientApiParams, queryClient, }: UndoCheckinListingAttendeePassParams) => Promise<ConnectedXMResponse<ListingPass>>;
|
|
4363
|
+
declare const useUndoCheckinListingAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UndoCheckinListingAttendeePass>>, Omit<UndoCheckinListingAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<ListingPass>, any>, Omit<UndoCheckinListingAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4288
4364
|
|
|
4289
4365
|
interface UpdateListingParams extends MutationParams {
|
|
4290
4366
|
eventId: string;
|
|
@@ -4394,17 +4470,17 @@ interface RemoveListingCoHostParams extends MutationParams {
|
|
|
4394
4470
|
declare const RemoveListingCoHost: ({ eventId, accountId, clientApiParams, queryClient, }: RemoveListingCoHostParams) => Promise<ConnectedXMResponse<EventListing>>;
|
|
4395
4471
|
declare const useRemoveListingCoHost: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingCoHost>>, Omit<RemoveListingCoHostParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveListingCoHostParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4396
4472
|
|
|
4397
|
-
interface
|
|
4473
|
+
interface UpdateListingRegistrationPassResponsesParams extends MutationParams {
|
|
4398
4474
|
eventId: string;
|
|
4399
|
-
|
|
4400
|
-
|
|
4475
|
+
accountId: string;
|
|
4476
|
+
passId: string;
|
|
4401
4477
|
questions: {
|
|
4402
4478
|
id: number;
|
|
4403
4479
|
value: string;
|
|
4404
4480
|
}[];
|
|
4405
4481
|
}
|
|
4406
|
-
declare const
|
|
4407
|
-
declare const
|
|
4482
|
+
declare const UpdateListingRegistrationPassResponses: ({ eventId, accountId, passId, questions, clientApiParams, queryClient, }: UpdateListingRegistrationPassResponsesParams) => Promise<ConnectedXMResponse<null>>;
|
|
4483
|
+
declare const useUpdateListingRegistrationPassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingRegistrationPassResponses>>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4408
4484
|
|
|
4409
4485
|
interface UploadFileParams extends MutationParams {
|
|
4410
4486
|
dataUri: string;
|
|
@@ -4543,4 +4619,4 @@ interface EnableIntegrationParams extends MutationParams {
|
|
|
4543
4619
|
declare const EnableIntegration: ({ type, clientApiParams, queryClient, }: EnableIntegrationParams) => Promise<ConnectedXMResponse<Integration>>;
|
|
4544
4620
|
declare const useEnableIntegration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof EnableIntegration>>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<Integration>, any>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
4545
4621
|
|
|
4546
|
-
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, ALL_GROUP_EVENTS, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, AddContentInterest, type AddContentInterestParams, AddFreePurchaseAddOns, type AddFreePurchaseAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventRegistrationPurchase, AddSelfEventRegistrationPurchaseAddOn, type AddSelfEventRegistrationPurchaseAddOnParams, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadMember, type AddThreadMemberParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, AddThreadMessageReply, type AddThreadMessageReplyParams, 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 BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSessionPass, type BaseSessionQuestion, type BaseSessionQuestionResponse, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseTicket, type BaseTicketPriceSchedule, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockIntegration, type BlockIntegrationParams, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_INTERESTS_QUERY_KEY, CONTENT_QUERY_KEY, CUSTOM_ERROR_CODES, CacheIndividualQueries, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPurchase, type CancelPurchaseParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingRegistrationPurchase, type CheckinListingRegistrationPurchaseParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, CreateChannelContent, type CreateChannelContentParams, type CreateChannelParams, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, CreateEventLead, type CreateEventLeadParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThread, CreateThreadMessage, type CreateThreadMessageParams, type CreateThreadParams, Currency, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadMember, type DeleteThreadMemberParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, 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_PASS_TYPES_QUERY_KEY, EVENT_PASS_TYPE_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_TRANSFER_LOGS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventReservationSection, type EventReservationSectionLocation, EventSource, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetAllGroupEvents, type GetAllGroupEventsProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentInterests, type GetContentInterestsParams, type GetContentParams, 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, GetEventPassType, type GetEventPassTypeProps, GetEventPassTypes, type GetEventPassTypesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingRegistrationPurchaseSections, type GetListingRegistrationPurchaseSectionsProps, GetManagedChannel, GetManagedChannelCollection, GetManagedChannelCollectionContents, type GetManagedChannelCollectionContentsParams, type GetManagedChannelCollectionParams, GetManagedChannelCollections, type GetManagedChannelCollectionsParams, GetManagedChannelContent, GetManagedChannelContentActivities, type GetManagedChannelContentActivitiesParams, GetManagedChannelContentGuests, type GetManagedChannelContentGuestsParams, GetManagedChannelContentInterests, type GetManagedChannelContentInterestsParams, type GetManagedChannelContentParams, GetManagedChannelContents, type GetManagedChannelContentsParams, GetManagedChannelInterests, type GetManagedChannelInterestsParams, type GetManagedChannelParams, GetManagedChannelSubscribers, type GetManagedChannelSubscribersParams, GetManagedChannels, type GetManagedChannelsParams, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventAttendee, type GetSelfEventAttendeeProps, GetSelfEventCoupons, type GetSelfEventCouponsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, type GetSelfEventListingProps, GetSelfEventListingPurchase, type GetSelfEventListingPurchaseProps, GetSelfEventListingPurchases, type GetSelfEventListingPurchasesProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventPasses, type GetSelfEventPassesProps, GetSelfEventRegistration, GetSelfEventRegistrationCoupon, type GetSelfEventRegistrationCouponProps, GetSelfEventRegistrationCouponPurchases, type GetSelfEventRegistrationCouponPurchasesProps, GetSelfEventRegistrationCoupons, type GetSelfEventRegistrationCouponsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPayment, type GetSelfEventRegistrationPaymentProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, GetSelfEventRegistrationPurchaseAddOns, GetSelfEventRegistrationPurchaseAddOnsIntent, type GetSelfEventRegistrationPurchaseAddOnsIntentProps, type GetSelfEventRegistrationPurchaseAddOnsProps, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseReservationSections, type GetSelfEventRegistrationPurchaseReservationSectionsProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventRegistrationSessionPassesIntent, type GetSelfEventRegistrationSessionPassesIntentProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEventTransfersLogs, type GetSelfEventTransfersLogsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetThread, GetThreadEvent, type GetThreadEventProps, GetThreadEvents, type GetThreadEventsProps, GetThreadGroup, type GetThreadGroupProps, GetThreadGroups, type GetThreadGroupsProps, GetThreadMember, type GetThreadMemberProps, GetThreadMembers, type GetThreadMembersProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessageReplies, type GetThreadMessageRepliesProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetThreads, type GetThreadsProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PURCHASES_QUERY_KEY, LISTING_PURCHASE_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REGISTRATIONS_QUERY_KEY, LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, LISTING_REGISTRATION_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkPreview, type ListingPurchase, type ListingRegistration, MANAGED_CHANNELS_QUERY_KEY, MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_QUERY_KEY, MANAGED_CHANNEL_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_QUERY_KEY, MANAGED_CHANNEL_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_QUERY_KEY, MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPurchase, MarkUnread, type MarkUnreadParams, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, type Purchase, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationPurchase, RemoveSelfEventRegistrationPurchaseAddOn, type RemoveSelfEventRegistrationPurchaseAddOnParams, type RemoveSelfEventRegistrationPurchaseParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, 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_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_COUPONS_QUERY_KEY, SELF_EVENT_PASSES_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_SESSION_PASSES_INTENT_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ALL_GROUP_EVENTS_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_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_PASS_TYPES_QUERY_DATA, SET_EVENT_PASS_TYPE_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_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PURCHASE_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_LISTING_REGISTRATION_QUERY_KEY, SET_MANAGED_CHANNELS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTION_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENT_QUERY_DATA, SET_MANAGED_CHANNEL_QUERY_DATA, SET_MANAGED_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_MANAGED_CONTENT_ACTIVITIES_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_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_PASSES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_EVENTS_QUERY_DATA, SET_THREAD_EVENT_QUERY_DATA, SET_THREAD_GROUPS_QUERY_DATA, SET_THREAD_GROUP_QUERY_DATA, SET_THREAD_MEMBERS_QUERY_DATA, SET_THREAD_MEMBER_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REPLIES_QUERY_DATA, SET_THREAD_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, type Scan, type Schedule, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationPurchaseReservation, type SelectSelfEventRegistrationPurchaseReservationParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SessionLocation, type SessionPass, SessionPassStatus, type SessionPassesInput, type SessionQuestion, type SessionQuestionResponse, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, SubmitSelfEventRegistrationSessionPasses, type SubmitSelfEventRegistrationSessionPassesParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, THREADS_QUERY_KEY, THREAD_EVENTS_QUERY_KEY, THREAD_EVENT_QUERY_KEY, THREAD_GROUPS_QUERY_KEY, THREAD_GROUP_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MEMBER_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REPLIES_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, ThreadAccessLevel, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, ThreadMemberRole, type ThreadMessage, type ThreadMessageReaction, ThreadMessageType, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPurchase, type TransferPurchaseParams, UndoCheckinListingRegistrationPurchase, type UndoCheckinListingRegistrationPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPurchaseResponses, type UpdateListingRegistrationPurchaseResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventRegistrationPurchaseResponses, type UpdateSelfEventRegistrationPurchaseResponsesParams, UpdateSelfEventRegistrationPurchaseSessionResponses, type UpdateSelfEventRegistrationPurchaseSessionResponsesParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateThread, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadChannelContentImage, type UploadChannelContentImageParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePurchaseAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventRegistrationPurchase, useAddSelfEventRegistrationPurchaseAddOn, useAddSelfEventSession, useAddSelfInterests, useAddThreadMember, useAddThreadMessageReaction, useAddThreadMessageReply, useBlockIntegration, useCancelGroupInvitation, useCancelGroupRequest, useCancelPurchase, useCancelSubscription, useCapturePaymentIntent, useCheckinListingRegistrationPurchase, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateEventLead, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThread, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useDeleteThreadMember, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannels, useGetContent, useGetContentInterests, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventPassType, useGetEventPassTypes, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingRegistrationPurchaseSections, useGetManagedChannel, useGetManagedChannelCollection, useGetManagedChannelCollectionContents, useGetManagedChannelCollections, useGetManagedChannelContent, useGetManagedChannelContentActivities, useGetManagedChannelContentGuests, useGetManagedChannelContentInterests, useGetManagedChannelContents, useGetManagedChannelInterests, useGetManagedChannelSubscribers, useGetManagedChannels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventCoupons, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPurchase, useGetSelfEventListingPurchases, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventPasses, useGetSelfEventRegistration, useGetSelfEventRegistrationCoupon, useGetSelfEventRegistrationCouponPurchases, useGetSelfEventRegistrationCoupons, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPayment, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseAddOns, useGetSelfEventRegistrationPurchaseAddOnsIntent, useGetSelfEventRegistrationPurchaseReservationSections, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventRegistrationSessionPassesIntent, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEventTransfersLogs, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetThread, useGetThreadEvent, useGetThreadEvents, useGetThreadGroup, useGetThreadGroups, useGetThreadMember, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageReplies, useGetThreadMessages, useGetThreads, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, useMarkUnread, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationPurchase, useRemoveSelfEventRegistrationPurchaseAddOn, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationPurchaseReservation, useSelfCreateActivity, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useSubmitSelfEventRegistration, useSubmitSelfEventRegistrationSessionPasses, useTransferPurchase, useUndoCheckinListingRegistrationPurchase, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPurchaseResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationPurchaseResponses, useUpdateSelfEventRegistrationPurchaseSessionResponses, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateThread, useUpdateThreadMember, useUpdateThreadMessage, useUploadChannelContentImage, useUploadFile };
|
|
4622
|
+
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, ALL_GROUP_EVENTS, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountShare, type AccountTier, AccountType, type Activity, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, AddContentInterest, type AddContentInterestParams, AddFreePassAddOns, type AddFreePassAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadMember, type AddThreadMemberParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, AddThreadMessageReply, type AddThreadMessageReplyParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePass, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSessionPass, type BaseSessionQuestion, type BaseSessionQuestionResponse, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockIntegration, type BlockIntegrationParams, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_INTERESTS_QUERY_KEY, CONTENT_QUERY_KEY, CUSTOM_ERROR_CODES, CacheIndividualQueries, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, CreateChannelContent, type CreateChannelContentParams, type CreateChannelParams, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThread, CreateThreadMessage, type CreateThreadMessageParams, type CreateThreadParams, Currency, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadMember, type DeleteThreadMemberParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, 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, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, EventSource, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetAllGroupEvents, type GetAllGroupEventsProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentInterests, type GetContentInterestsParams, type GetContentParams, 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, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetManagedChannel, GetManagedChannelCollection, GetManagedChannelCollectionContents, type GetManagedChannelCollectionContentsParams, type GetManagedChannelCollectionParams, GetManagedChannelCollections, type GetManagedChannelCollectionsParams, GetManagedChannelContent, GetManagedChannelContentActivities, type GetManagedChannelContentActivitiesParams, GetManagedChannelContentGuests, type GetManagedChannelContentGuestsParams, GetManagedChannelContentInterests, type GetManagedChannelContentInterestsParams, type GetManagedChannelContentParams, GetManagedChannelContents, type GetManagedChannelContentsParams, GetManagedChannelInterests, type GetManagedChannelInterestsParams, type GetManagedChannelParams, GetManagedChannelSubscribers, type GetManagedChannelSubscribersParams, GetManagedChannels, type GetManagedChannelsParams, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventAttendee, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeSessionPassesIntent, type GetSelfEventAttendeeSessionPassesIntentProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetThread, GetThreadEvent, type GetThreadEventProps, GetThreadEvents, type GetThreadEventsProps, GetThreadGroup, type GetThreadGroupProps, GetThreadGroups, type GetThreadGroupsProps, GetThreadMember, type GetThreadMemberProps, GetThreadMembers, type GetThreadMembersProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessageReplies, type GetThreadMessageRepliesProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetThreads, type GetThreadsProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkPreview, type ListingPass, type ListingRegistration, MANAGED_CHANNELS_QUERY_KEY, MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_QUERY_KEY, MANAGED_CHANNEL_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_QUERY_KEY, MANAGED_CHANNEL_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_QUERY_KEY, MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, MarkUnread, type MarkUnreadParams, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Pass, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_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_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_SESSION_PASSES_INTENT_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ALL_GROUP_EVENTS_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_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_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_MANAGED_CHANNELS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTION_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENT_QUERY_DATA, SET_MANAGED_CHANNEL_QUERY_DATA, SET_MANAGED_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_MANAGED_CONTENT_ACTIVITIES_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_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_EVENTS_QUERY_DATA, SET_THREAD_EVENT_QUERY_DATA, SET_THREAD_GROUPS_QUERY_DATA, SET_THREAD_GROUP_QUERY_DATA, SET_THREAD_MEMBERS_QUERY_DATA, SET_THREAD_MEMBER_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REPLIES_QUERY_DATA, SET_THREAD_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, type Scan, type Schedule, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SessionLocation, type SessionPass, SessionPassStatus, type SessionPassesInput, type SessionQuestion, type SessionQuestionResponse, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, SubmitSelfEventRegistrationSessionPasses, type SubmitSelfEventRegistrationSessionPassesParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, THREADS_QUERY_KEY, THREAD_EVENTS_QUERY_KEY, THREAD_EVENT_QUERY_KEY, THREAD_GROUPS_QUERY_KEY, THREAD_GROUP_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MEMBER_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REPLIES_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, ThreadAccessLevel, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, ThreadMemberRole, type ThreadMessage, type ThreadMessageReaction, ThreadMessageType, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationPurchaseSessionResponses, type UpdateSelfEventRegistrationPurchaseSessionResponsesParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateThread, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadChannelContentImage, type UploadChannelContentImageParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePassAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventSession, useAddSelfInterests, useAddThreadMember, useAddThreadMessageReaction, useAddThreadMessageReply, useBlockIntegration, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThread, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadMember, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannels, useGetContent, useGetContentInterests, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetManagedChannel, useGetManagedChannelCollection, useGetManagedChannelCollectionContents, useGetManagedChannelCollections, useGetManagedChannelContent, useGetManagedChannelContentActivities, useGetManagedChannelContentGuests, useGetManagedChannelContentInterests, useGetManagedChannelContents, useGetManagedChannelInterests, useGetManagedChannelSubscribers, useGetManagedChannels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeSessionPassesIntent, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetThread, useGetThreadEvent, useGetThreadEvents, useGetThreadGroup, useGetThreadGroups, useGetThreadMember, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageReplies, useGetThreadMessages, useGetThreads, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, useMarkUnread, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelfCreateActivity, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useSubmitSelfEventRegistration, useSubmitSelfEventRegistrationSessionPasses, useTransferPass, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationPurchaseSessionResponses, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateThread, useUpdateThreadMember, useUpdateThreadMessage, useUploadChannelContentImage, useUploadFile };
|