@connectedxm/client 1.4.0 → 1.4.2

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 CHANGED
@@ -329,6 +329,7 @@ interface Event extends BaseEvent {
329
329
  speakers: BaseSpeaker[];
330
330
  sponsors: BaseAccount[];
331
331
  faqSections: BaseFaqSection[];
332
+ reservationDescription: string | null;
332
333
  _count: {
333
334
  sessions: number;
334
335
  speakers: number;
@@ -337,6 +338,7 @@ interface Event extends BaseEvent {
337
338
  }
338
339
  declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
339
340
  interface RegistrationEventDetails extends BaseEvent {
341
+ reservationDescription: string | null;
340
342
  externalUrl: string | null;
341
343
  registration: boolean;
342
344
  registrationCount: number;
@@ -350,7 +352,7 @@ interface RegistrationEventDetails extends BaseEvent {
350
352
  sections: number;
351
353
  coupons: number;
352
354
  addOns: number;
353
- reservationSections: number;
355
+ roomTypes: number;
354
356
  };
355
357
  }
356
358
  declare enum RegistrationQuestionType {
@@ -386,7 +388,6 @@ interface BaseRegistrationQuestion {
386
388
  choices: BaseRegistrationQuestionChoice[];
387
389
  }
388
390
  interface RegistrationQuestion extends BaseRegistrationQuestion {
389
- response?: string;
390
391
  }
391
392
  declare const isRegistrationQuestion: (question: RegistrationQuestion | {
392
393
  questionId: number;
@@ -428,7 +429,7 @@ interface BaseRegistrationSection {
428
429
  }
429
430
  interface RegistrationSection extends BaseRegistrationSection {
430
431
  accountTiers: BaseAccountTier[];
431
- eventTickets: BaseTicket[];
432
+ eventTickets: BasePassType[];
432
433
  eventAddOns: BaseEventAddOn[];
433
434
  questions: RegistrationQuestion[];
434
435
  }
@@ -467,7 +468,7 @@ declare enum TicketEventAccessLevel {
467
468
  virtual = "virtual",
468
469
  vip = "vip"
469
470
  }
470
- interface BaseTicket {
471
+ interface BasePassType {
471
472
  id: string;
472
473
  slug: string;
473
474
  transferable: boolean;
@@ -480,13 +481,7 @@ interface BaseTicket {
480
481
  minQuantityPerSale: number;
481
482
  maxQuantityPerSale: number;
482
483
  supply: number | null;
483
- minReservationStart: string | null;
484
- reservationStart: string | null;
485
- maxReservationStart: string | null;
486
- minReservationEnd: string | null;
487
- reservationEnd: string | null;
488
- maxReservationEnd: string | null;
489
- priceSchedules: BaseTicketPriceSchedule[];
484
+ priceSchedules: BasePassTypePriceSchedule[];
490
485
  refundSchedules: BasePassTypeRefundSchedule[];
491
486
  enableCoupons: boolean;
492
487
  minCouponQuantity: number | null;
@@ -494,12 +489,12 @@ interface BaseTicket {
494
489
  sortOrder: number;
495
490
  overrideStartDate: string | null;
496
491
  }
497
- interface Ticket extends BaseTicket {
492
+ interface PassType extends BasePassType {
498
493
  visibility: TicketVisibility;
499
494
  active: boolean;
500
495
  event: BaseEvent;
501
496
  }
502
- interface BaseTicketPriceSchedule {
497
+ interface BasePassTypePriceSchedule {
503
498
  id: string;
504
499
  ticketId: string;
505
500
  price: number;
@@ -509,7 +504,7 @@ interface BaseTicketPriceSchedule {
509
504
  createdAt: string;
510
505
  updatedAt: string;
511
506
  }
512
- interface TicketPriceSchedule extends BaseTicketPriceSchedule {
507
+ interface TicketPriceSchedule extends BasePassTypePriceSchedule {
513
508
  }
514
509
  interface BaseTicketRefundSchedule {
515
510
  id: string;
@@ -519,43 +514,39 @@ interface BaseTicketRefundSchedule {
519
514
  }
520
515
  interface TicketRefundSchedule extends BaseTicketRefundSchedule {
521
516
  }
522
- declare const isTypeTicket: (ticket: BaseTicket | Ticket) => ticket is Ticket;
517
+ declare const isTypeTicket: (ticket: BasePassType | PassType) => ticket is PassType;
523
518
  declare enum PurchaseStatus {
524
519
  draft = "draft",
525
520
  canceled = "canceled",
526
521
  needsInfo = "needsInfo",
527
522
  ready = "ready"
528
523
  }
529
- interface BasePurchase {
524
+ interface BasePass {
530
525
  id: string;
531
526
  alternateId: number;
532
527
  location: string | null;
533
528
  usedAt: string | null;
534
529
  status: PurchaseStatus;
535
- firstName: string;
536
- lastName: string;
537
- email: string;
538
530
  registrationId: string;
539
531
  registration: BaseRegistration;
540
- ticketId: string | null;
541
- ticket: BaseTicket | null;
532
+ ticketId: string;
533
+ ticket: BasePassType;
542
534
  addOns: BaseEventAddOn[];
543
- reservationStart: string | null;
544
- reservationEnd: string | null;
545
- reservationSectionLocation: BaseEventReservationSectionLocation | null;
535
+ reservationId: string | null;
536
+ reservation: BaseEventRoomTypeReservation | null;
546
537
  responses: BaseRegistrationQuestionResponse[];
547
538
  couponId: string | null;
548
539
  coupon: BaseCoupon | null;
549
540
  sessions: BaseSessionPass[];
550
541
  createdAt: string;
551
542
  }
552
- interface Purchase extends BasePurchase {
543
+ interface Pass extends BasePass {
553
544
  updatedAt: string;
554
545
  amtPaid: number;
555
546
  amtRefunded: number;
556
547
  payerId: string | null;
557
548
  }
558
- interface ListingPurchase extends BasePurchase {
549
+ interface ListingPass extends BasePass {
559
550
  registration: BaseRegistration & {
560
551
  account: BaseAccount & {
561
552
  email: string | null;
@@ -564,7 +555,7 @@ interface ListingPurchase extends BasePurchase {
564
555
  };
565
556
  updatedAt: string;
566
557
  }
567
- declare const isTypePurchase: (purchase: BasePurchase | Purchase) => purchase is Purchase;
558
+ declare const isTypePurchase: (purchase: BasePass | Pass) => purchase is Pass;
568
559
  interface Order {
569
560
  id: string;
570
561
  alternateId: number;
@@ -574,7 +565,7 @@ interface Order {
574
565
  grandTotal: number;
575
566
  coupon: BaseCoupon | null;
576
567
  paymentConfirmationId: string | null;
577
- purchases: BasePurchase[];
568
+ purchases: BasePass[];
578
569
  accountId: string;
579
570
  account: BaseAccount;
580
571
  createdAt: string;
@@ -617,7 +608,7 @@ interface BaseCoupon {
617
608
  code: string;
618
609
  eventId: string;
619
610
  ticketId: string | null;
620
- ticket: BaseTicket | null;
611
+ ticket: BasePassType | null;
621
612
  prePaid: boolean;
622
613
  active: boolean;
623
614
  startDate: string | null;
@@ -657,7 +648,7 @@ interface ManagedCouponOrder {
657
648
  coupon: BaseCoupon | null;
658
649
  account: BaseAccount;
659
650
  }
660
- interface ManagedCouponPurchase {
651
+ interface ManagedCouponPass {
661
652
  id: string;
662
653
  status: PurchaseStatus;
663
654
  coupon: BaseCoupon;
@@ -700,7 +691,7 @@ interface BaseTransferLog {
700
691
  }
701
692
  interface TransferLog extends BaseTransferLog {
702
693
  purchaseId: string;
703
- purchase: BasePurchase;
694
+ purchase: BasePass;
704
695
  createdAt: string;
705
696
  }
706
697
  interface BaseSpeaker {
@@ -802,7 +793,7 @@ interface BaseSessionPass {
802
793
  session: BaseSession;
803
794
  }
804
795
  interface SessionPass extends BaseSessionPass {
805
- pass: BasePurchase;
796
+ pass: BasePass;
806
797
  createdAt: string;
807
798
  updatedAt: string;
808
799
  }
@@ -850,7 +841,7 @@ interface SponsorshipLevel extends BaseSponsorshipLevel {
850
841
  declare const isTypeSponsorshipLevel: (sponsorshipLevel: BaseSponsorshipLevel | SponsorshipLevel) => sponsorshipLevel is SponsorshipLevel;
851
842
  interface BaseComplimentaryTicket {
852
843
  ticketId: string;
853
- complimentaryTicket: BaseTicket;
844
+ complimentaryTicket: BasePassType;
854
845
  quantity: number;
855
846
  }
856
847
  interface ComplimentaryTicket extends BaseComplimentaryTicket {
@@ -903,7 +894,7 @@ interface SupportTicket extends BaseSupportTicket {
903
894
  request: string;
904
895
  account: BaseAccount | null;
905
896
  event: BaseEvent | null;
906
- ticket: BaseTicket | null;
897
+ ticket: BasePassType | null;
907
898
  status: string;
908
899
  createdAt: string;
909
900
  updatedAt: string;
@@ -1100,12 +1091,13 @@ interface ContentGuest extends BaseContentGuest {
1100
1091
  interface BaseRegistration {
1101
1092
  id: string;
1102
1093
  alternateId: number;
1094
+ accountId: string;
1103
1095
  eventId: string;
1104
1096
  }
1105
1097
  interface Registration extends BaseRegistration {
1106
1098
  event: RegistrationEventDetails;
1107
1099
  account: BaseAccount;
1108
- purchases: BasePurchase[];
1100
+ purchases: BasePass[];
1109
1101
  payments: Payment[];
1110
1102
  coupons: ManagedCoupon[];
1111
1103
  createdAt: string;
@@ -1118,7 +1110,7 @@ interface ListingRegistration extends BaseRegistration {
1118
1110
  };
1119
1111
  couponId: string | null;
1120
1112
  coupon: BaseCoupon | null;
1121
- purchases: BasePurchase[];
1113
+ purchases: BasePass[];
1122
1114
  payments: Payment[];
1123
1115
  createdAt: string;
1124
1116
  }
@@ -1129,6 +1121,15 @@ declare enum RegistrationPaymentType {
1129
1121
  interface BasePayment {
1130
1122
  id: string;
1131
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;
1132
1133
  chargedAmt: number;
1133
1134
  last4: string | null;
1134
1135
  stripeId: string | null;
@@ -1136,9 +1137,15 @@ interface BasePayment {
1136
1137
  }
1137
1138
  interface Payment extends BasePayment {
1138
1139
  addOns: BaseEventAddOn[];
1139
- purchases: BasePurchase[];
1140
+ purchases: BasePass[];
1140
1141
  coupons: BaseCoupon[];
1141
1142
  }
1143
+ declare enum LeadStatus {
1144
+ new = "new",
1145
+ favorited = "favorited",
1146
+ archived = "archived",
1147
+ deleted = "deleted"
1148
+ }
1142
1149
  interface BaseLead {
1143
1150
  id: string;
1144
1151
  firstName: string | null;
@@ -1149,13 +1156,12 @@ interface BaseLead {
1149
1156
  id: string;
1150
1157
  image: BaseImage | null;
1151
1158
  };
1159
+ status: LeadStatus;
1152
1160
  createdAt: string;
1153
1161
  }
1154
1162
  interface Lead extends BaseLead {
1155
1163
  email: string | null;
1156
1164
  phone: string | null;
1157
- state: string | null;
1158
- country: string | null;
1159
1165
  website: string | null;
1160
1166
  facebook: string | null;
1161
1167
  instagram: string | null;
@@ -1466,16 +1472,11 @@ interface BaseEventAddOn {
1466
1472
  name: string;
1467
1473
  shortDescription: string;
1468
1474
  longDescription: string | null;
1469
- supply: number;
1475
+ supply: number | null;
1470
1476
  price: number;
1477
+ pricePerNight: boolean;
1471
1478
  sortOrder: number;
1472
1479
  eventId: string;
1473
- minReservationStart: string | null;
1474
- reservationStart: string | null;
1475
- maxReservationStart: string | null;
1476
- minReservationEnd: string | null;
1477
- reservationEnd: string | null;
1478
- maxReservationEnd: string | null;
1479
1480
  image: BaseImage | null;
1480
1481
  createdAt: string;
1481
1482
  updatedAt: string;
@@ -1483,44 +1484,6 @@ interface BaseEventAddOn {
1483
1484
  interface EventAddOn extends BaseEventAddOn {
1484
1485
  event: BaseEvent;
1485
1486
  }
1486
- interface BaseEventReservationSection {
1487
- id: string;
1488
- eventId: string;
1489
- name: string;
1490
- price: number;
1491
- pricePerDay: boolean;
1492
- shortDescription: string;
1493
- image: BaseImage | null;
1494
- createdAt: string;
1495
- updatedAt: string;
1496
- }
1497
- interface EventReservationSection extends BaseEventReservationSection {
1498
- event: BaseEvent;
1499
- locations: BaseEventReservationSectionLocation[];
1500
- }
1501
- interface BaseEventReservationSectionLocation {
1502
- id: string;
1503
- eventId: string;
1504
- reservationSectionId: string;
1505
- name: string;
1506
- shortDescription: string;
1507
- supply: number;
1508
- premium: number;
1509
- createdAt: string;
1510
- updatedAt: string;
1511
- reservationSection: {
1512
- name: string;
1513
- pricePerDay: boolean;
1514
- price: number;
1515
- image: BaseImage | null;
1516
- };
1517
- _count: {
1518
- purchases: number;
1519
- };
1520
- }
1521
- interface EventReservationSectionLocation extends BaseEventReservationSectionLocation {
1522
- reservationSection: BaseEventReservationSection;
1523
- }
1524
1487
  declare enum GroupRequestStatus {
1525
1488
  requested = "requested",
1526
1489
  rejected = "rejected"
@@ -1595,6 +1558,11 @@ interface BasePaymentIntent {
1595
1558
  eventId: string | null;
1596
1559
  registrationId: string | null;
1597
1560
  invoiceId: string | null;
1561
+ salesTax: number;
1562
+ salesTaxRate: number;
1563
+ country: string;
1564
+ state: string;
1565
+ zip: string;
1598
1566
  createdAt: string;
1599
1567
  }
1600
1568
  interface PaymentIntent extends BasePaymentIntent {
@@ -1860,6 +1828,74 @@ interface BasePassTypeRefundSchedule {
1860
1828
  }
1861
1829
  interface PassTypeRefundSchedule extends BasePassTypeRefundSchedule {
1862
1830
  }
1831
+ interface BaseEventRoomType {
1832
+ id: string;
1833
+ name: string;
1834
+ price: number;
1835
+ pricePerNight: boolean;
1836
+ image: BaseImage;
1837
+ minPasses: number | null;
1838
+ maxPasses: number | null;
1839
+ minStart: string | null;
1840
+ defaultStart: string | null;
1841
+ maxStart: string | null;
1842
+ minEnd: string | null;
1843
+ defaultEnd: string | null;
1844
+ maxEnd: string | null;
1845
+ sortOrder: number;
1846
+ passTypes: BaseEventRoomTypePassTypeDetails[];
1847
+ addOns: BaseEventRoomTypeAddOnDetails[];
1848
+ supply: number | null;
1849
+ }
1850
+ interface EventRoomType extends BaseEventRoomType {
1851
+ description: string | null;
1852
+ createdAt: string;
1853
+ updatedAt: string;
1854
+ }
1855
+ interface BaseEventRoomTypeReservation {
1856
+ id: string;
1857
+ start: string | null;
1858
+ end: string | null;
1859
+ eventRoomTypeId: string;
1860
+ eventRoomType: BaseEventRoomType;
1861
+ }
1862
+ interface EventRoomTypeReservation extends BaseEventRoomTypeReservation {
1863
+ createdAt: string;
1864
+ updatedAt: string;
1865
+ }
1866
+ interface BaseEventRoomTypePassTypeDetails {
1867
+ id: string;
1868
+ passTypeId: string;
1869
+ enabled: boolean;
1870
+ premium: number;
1871
+ includedNights: number;
1872
+ minPasses: number | null;
1873
+ maxPasses: number | null;
1874
+ minStart: string | null;
1875
+ defaultStart: string | null;
1876
+ maxStart: string | null;
1877
+ minEnd: string | null;
1878
+ defaultEnd: string | null;
1879
+ maxEnd: string | null;
1880
+ }
1881
+ interface EventRoomTypePassTypeDetails extends BaseEventRoomTypePassTypeDetails {
1882
+ createdAt: string;
1883
+ updatedAt: string;
1884
+ }
1885
+ interface BaseEventRoomTypeAddOnDetails {
1886
+ id: string;
1887
+ addOnId: string;
1888
+ minStart: string | null;
1889
+ defaultStart: string | null;
1890
+ maxStart: string | null;
1891
+ minEnd: string | null;
1892
+ defaultEnd: string | null;
1893
+ maxEnd: string | null;
1894
+ }
1895
+ interface EventRoomTypeAddOnDetails extends BaseEventRoomTypeAddOnDetails {
1896
+ createdAt: string;
1897
+ updatedAt: string;
1898
+ }
1863
1899
 
1864
1900
  interface ConnectedXMClientContextState {
1865
1901
  queryClient: QueryClient;
@@ -1899,6 +1935,7 @@ declare const ERR_FEATURE_NOT_AVAILABLE = 456;
1899
1935
  declare const ERR_TIER_REQUIRED = 457;
1900
1936
  declare const ERR_SUBSCRIPTION_REQUIRED = 458;
1901
1937
  declare const ERR_INTEGRATION_PERMISSION_DENIED = 459;
1938
+ declare const ERR_KNOWN_ERROR = 460;
1902
1939
  declare const CUSTOM_ERROR_CODES: number[];
1903
1940
  declare const GetErrorMessage: (error: any, fallback?: string) => string;
1904
1941
 
@@ -2552,15 +2589,6 @@ interface GetEventSponsorsProps extends InfiniteQueryParams {
2552
2589
  declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
2553
2590
  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>>;
2554
2591
 
2555
- declare const EVENT_PASS_TYPES_QUERY_KEY: (eventId: string, passTypeId?: string) => QueryKey;
2556
- 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;
2557
- interface GetEventPassTypesProps extends SingleQueryParams {
2558
- eventId: string;
2559
- passTypeId?: string;
2560
- }
2561
- declare const GetEventPassTypes: ({ eventId, passTypeId, clientApiParams, }: GetEventPassTypesProps) => Promise<ConnectedXMResponse<Ticket[]>>;
2562
- declare const useGetEventPassTypes: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Ticket[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2563
-
2564
2592
  declare const EVENTS_FEATURED_QUERY_KEY: () => QueryKey;
2565
2593
  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;
2566
2594
  interface GetFeaturedEventsProps extends InfiniteQueryParams {
@@ -2568,15 +2596,6 @@ interface GetFeaturedEventsProps extends InfiniteQueryParams {
2568
2596
  declare const GetFeaturedEvents: ({ pageParam, pageSize, orderBy, queryClient, clientApiParams, locale, }: GetFeaturedEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
2569
2597
  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>>;
2570
2598
 
2571
- declare const EVENT_PASS_TYPE_QUERY_KEY: (eventId: string, passTypeId: string) => QueryKey;
2572
- 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;
2573
- interface GetEventPassTypeProps extends SingleQueryParams {
2574
- eventId: string;
2575
- passTypeId: string;
2576
- }
2577
- declare const GetEventPassType: ({ eventId, passTypeId, clientApiParams, }: GetEventPassTypeProps) => Promise<ConnectedXMResponse<Ticket>>;
2578
- declare const useGetEventPassType: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Ticket>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2579
-
2580
2599
  declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
2581
2600
  interface GetOrganizationParams extends SingleQueryParams {
2582
2601
  }
@@ -2623,6 +2642,25 @@ interface GetSelfAddressesProps extends InfiniteQueryParams {
2623
2642
  declare const GetSelfAddresses: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfAddressesProps) => Promise<ConnectedXMResponse<AccountAddress[]>>;
2624
2643
  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>>;
2625
2644
 
2645
+ declare const SELF_LEAD_QUERY_KEY: (leadId: string) => QueryKey;
2646
+ interface GetSelfLeadProps extends SingleQueryParams {
2647
+ leadId: string;
2648
+ }
2649
+ declare const GetSelfLead: ({ leadId, clientApiParams, }: GetSelfLeadProps) => Promise<ConnectedXMResponse<Lead>>;
2650
+ declare const useGetSelfLead: (leadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfLead>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2651
+
2652
+ declare const SELF_LEADS_QUERY_KEY: () => QueryKey;
2653
+ interface GetSelfLeadsProps extends InfiniteQueryParams {
2654
+ }
2655
+ declare const GetSelfLeads: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfLeadsProps) => Promise<ConnectedXMResponse<Lead[]>>;
2656
+ 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>>;
2657
+
2658
+ declare const SELF_LEAD_COUNTS_QUERY_KEY: () => QueryKey;
2659
+ interface GetSelfLeadCountsProps extends SingleQueryParams {
2660
+ }
2661
+ declare const GetSelfLeadCounts: ({ clientApiParams, }: GetSelfLeadCountsProps) => Promise<ConnectedXMResponse<Record<LeadStatus, number>>>;
2662
+ declare const useGetSelfLeadCounts: (options?: SingleQueryOptions<ReturnType<typeof GetSelfLeadCounts>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<LeadStatus, number>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2663
+
2626
2664
  declare const SELF_CHAT_CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
2627
2665
  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;
2628
2666
  interface GetSelfChatChannelProps extends SingleQueryParams {
@@ -2662,138 +2700,151 @@ interface GetSelfEventRegistrationProps extends SingleQueryParams {
2662
2700
  declare const GetSelfEventRegistration: ({ eventId, clientApiParams, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
2663
2701
  declare const useGetSelfEventRegistration: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2664
2702
 
2665
- declare const SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, registrationId: string) => unknown[];
2666
- interface GetSelfEventRegistrationIntentProps extends SingleQueryParams {
2703
+ declare const SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY: (eventId: string, passTypeId?: string) => QueryKey;
2704
+ 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;
2705
+ interface GetSelfEventRegistrationPassTypesProps extends SingleQueryParams {
2667
2706
  eventId: string;
2668
- registrationId: string;
2707
+ passTypeId?: string;
2669
2708
  }
2670
- declare const GetSelfEventRegistrationIntent: ({ eventId, registrationId, clientApiParams, }: GetSelfEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
2671
- declare const useGetSelfEventRegistrationIntent: (eventId: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2709
+ declare const GetSelfEventRegistrationPassTypes: ({ eventId, passTypeId, clientApiParams, }: GetSelfEventRegistrationPassTypesProps) => Promise<ConnectedXMResponse<PassType[]>>;
2710
+ declare const useGetSelfEventRegistrationPassTypes: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2672
2711
 
2673
- declare const SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
2674
- declare const SET_SELF_EVENT_REGISTRATION_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2675
- interface GetSelfEventRegistrationPaymentProps extends SingleQueryParams {
2712
+ interface PassTypeWithAddOns extends BasePassType {
2713
+ addOns: EventAddOn[];
2714
+ }
2715
+ declare const SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY: (eventId: string) => QueryKey;
2716
+ 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;
2717
+ interface GetSelfEventRegistrationAddOnsProps extends SingleQueryParams {
2676
2718
  eventId: string;
2677
- registrationId: string;
2678
- paymentId: string;
2679
2719
  }
2680
- declare const GetSelfEventRegistrationPayment: ({ eventId, registrationId, paymentId, clientApiParams, }: GetSelfEventRegistrationPaymentProps) => Promise<ConnectedXMResponse<Payment>>;
2681
- declare const useGetSelfEventRegistrationPayment: (eventId: string, registrationId: string, paymentId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2720
+ declare const GetSelfEventRegistrationAddOns: ({ eventId, clientApiParams, }: GetSelfEventRegistrationAddOnsProps) => Promise<ConnectedXMResponse<PassTypeWithAddOns[]>>;
2721
+ declare const useGetSelfEventRegistrationAddOns: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassTypeWithAddOns[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2682
2722
 
2683
- interface ResponseWithQuestion extends RegistrationQuestionResponse {
2684
- question: RegistrationQuestion;
2685
- }
2686
- interface PurchaseWithResponseQuestions extends Purchase {
2687
- responses: ResponseWithQuestion[];
2688
- }
2689
- declare const SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
2690
- 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;
2691
- interface GetSelfEventRegistrationPurchaseProps extends SingleQueryParams {
2723
+ declare const SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY: (eventId: string) => QueryKey;
2724
+ 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;
2725
+ interface GetSelfEventRegistrationRoomTypesProps extends SingleQueryParams {
2692
2726
  eventId: string;
2693
- registrationId: string;
2694
- purchaseId: string;
2695
2727
  }
2696
- declare const GetSelfEventRegistrationPurchase: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseProps) => Promise<ConnectedXMResponse<PurchaseWithResponseQuestions>>;
2697
- declare const useGetSelfEventRegistrationPurchase: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchase>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PurchaseWithResponseQuestions>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2728
+ declare const GetSelfEventRegistrationRoomTypes: ({ eventId, clientApiParams, }: GetSelfEventRegistrationRoomTypesProps) => Promise<ConnectedXMResponse<EventRoomType[]>>;
2729
+ declare const useGetSelfEventRegistrationRoomTypes: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationRoomTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2698
2730
 
2699
- declare const SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
2700
- declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2701
- interface GetSelfEventRegistrationPurchaseSectionsProps extends SingleQueryParams {
2731
+ declare const SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY: (eventId: string) => QueryKey;
2732
+ 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;
2733
+ interface GetSelfEventRegistrationQuestionsProps extends SingleQueryParams {
2702
2734
  eventId: string;
2703
- registrationId: string;
2704
- purchaseId: string;
2705
2735
  }
2706
- declare const GetSelfEventRegistrationPurchaseSections: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
2707
- declare const useGetSelfEventRegistrationPurchaseSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2736
+ declare const GetSelfEventRegistrationQuestions: ({ eventId, clientApiParams, }: GetSelfEventRegistrationQuestionsProps) => Promise<ConnectedXMResponse<{
2737
+ passId: string;
2738
+ sections: RegistrationSection[];
2739
+ }[]>>;
2740
+ declare const useGetSelfEventRegistrationQuestions: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationQuestions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
2741
+ passId: string;
2742
+ sections: RegistrationSection[];
2743
+ }[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2708
2744
 
2709
- declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
2710
- declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2711
- interface GetSelfEventRegistrationPurchaseAddOnsProps extends SingleQueryParams {
2745
+ declare const SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY: (eventId: string, ticketId: string, quantity: number, addressId: string) => unknown[];
2746
+ interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
2712
2747
  eventId: string;
2713
- registrationId: string;
2714
- purchaseId: string;
2748
+ ticketId: string;
2749
+ quantity: number;
2750
+ addressId: string;
2715
2751
  }
2716
- declare const GetSelfEventRegistrationPurchaseAddOns: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
2717
- declare const useGetSelfEventRegistrationPurchaseAddOns: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2752
+ declare const GetSelfEventTicketCouponIntent: ({ eventId, ticketId, quantity, addressId, clientApiParams, }: GetSelfEventTicketCouponIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
2753
+ 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>>;
2718
2754
 
2719
- declare const SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
2720
- declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PURCHASE_RESERVATION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseReservationSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2721
- interface GetSelfEventRegistrationPurchaseReservationSectionsProps extends SingleQueryParams {
2755
+ declare const SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, addressId?: string) => unknown[];
2756
+ interface GetSelfEventRegistrationIntentProps extends SingleQueryParams {
2722
2757
  eventId: string;
2723
- registrationId: string;
2724
- purchaseId: string;
2758
+ addressId: string;
2725
2759
  }
2726
- declare const GetSelfEventRegistrationPurchaseReservationSections: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseReservationSectionsProps) => Promise<ConnectedXMResponse<EventReservationSection[]>>;
2727
- declare const useGetSelfEventRegistrationPurchaseReservationSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseReservationSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventReservationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2760
+ declare const GetSelfEventRegistrationIntent: ({ eventId, addressId, clientApiParams, }: GetSelfEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
2761
+ declare const useGetSelfEventRegistrationIntent: (eventId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2728
2762
 
2729
- declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string, addOnIds?: string[]) => QueryKey;
2730
- interface GetSelfEventRegistrationPurchaseAddOnsIntentProps extends SingleQueryParams {
2731
- eventId: string;
2732
- registrationId: string;
2733
- purchaseId: string;
2734
- addOnIds: string[];
2763
+ declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
2764
+ interface GetSelfSubcriptionProps extends SingleQueryParams {
2765
+ subscriptionId: string;
2735
2766
  }
2736
- declare const GetSelfEventRegistrationPurchaseAddOnsIntent: ({ eventId, registrationId, purchaseId, addOnIds, clientApiParams, }: GetSelfEventRegistrationPurchaseAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
2737
- declare const useGetSelfEventRegistrationPurchaseAddOnsIntent: (eventId: string, registrationId: string, purchaseId: string, addOnIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseAddOnsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2767
+ declare const GetSelfSubcription: ({ subscriptionId, clientApiParams, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
2768
+ declare const useGetSelfSubcription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfSubcription>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2738
2769
 
2739
- declare const SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY: (eventId: string, registrationId: string, ticketId: string, quantity: number) => unknown[];
2740
- interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
2770
+ declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unknown[];
2771
+ interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
2772
+ status?: SubscriptionStatus;
2773
+ }
2774
+ declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
2775
+ 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>>;
2776
+
2777
+ declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
2778
+ interface GetSelfSubscriptionPaymentsProps extends InfiniteQueryParams {
2779
+ subscriptionId: string;
2780
+ }
2781
+ declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
2782
+ 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>>;
2783
+
2784
+ declare const SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
2785
+ 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;
2786
+ interface GetSelfEventAttendeePaymentProps extends SingleQueryParams {
2741
2787
  eventId: string;
2742
- registrationId: string;
2743
- ticketId: string;
2744
- quantity: number;
2788
+ paymentId: string;
2745
2789
  }
2746
- declare const GetSelfEventTicketCouponIntent: ({ eventId, registrationId, ticketId, quantity, clientApiParams, }: GetSelfEventTicketCouponIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
2747
- declare const useGetSelfEventTicketCouponIntent: (eventId?: string, registrationId?: string, ticketId?: string, quantity?: number, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventTicketCouponIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2790
+ declare const GetSelfEventAttendeePayment: ({ eventId, paymentId, clientApiParams, }: GetSelfEventAttendeePaymentProps) => Promise<ConnectedXMResponse<Payment>>;
2791
+ declare const useGetSelfEventAttendeePayment: (eventId: string, paymentId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2748
2792
 
2749
- declare const SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY: (eventId: string, registrationId: string, couponId: string) => QueryKey;
2750
- declare const SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationCoupon>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2751
- interface GetSelfEventRegistrationCouponProps extends SingleQueryParams {
2793
+ interface ResponseWithQuestion extends RegistrationQuestionResponse {
2794
+ question: RegistrationQuestion;
2795
+ }
2796
+ interface PassWithResponseQuestions extends Pass {
2797
+ responses: ResponseWithQuestion[];
2798
+ }
2799
+ declare const SELF_EVENT_ATTENDEE_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
2800
+ 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;
2801
+ interface GetSelfEventAttendeePassProps extends SingleQueryParams {
2752
2802
  eventId: string;
2753
- registrationId: string;
2754
- couponId: string;
2803
+ passId: string;
2755
2804
  }
2756
- declare const GetSelfEventRegistrationCoupon: ({ eventId, registrationId, couponId, clientApiParams, }: GetSelfEventRegistrationCouponProps) => Promise<ConnectedXMResponse<ManagedCoupon>>;
2757
- declare const useGetSelfEventRegistrationCoupon: (eventId?: string, registrationId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ManagedCoupon>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2805
+ declare const GetSelfEventAttendeePass: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassProps) => Promise<ConnectedXMResponse<PassWithResponseQuestions>>;
2806
+ declare const useGetSelfEventAttendeePass: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassWithResponseQuestions>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2758
2807
 
2759
- declare const SELF_EVENT_REGISTRATION_COUPONS_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
2760
- interface GetSelfEventRegistrationCouponsProps extends InfiniteQueryParams {
2808
+ declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, addOnIds: string[]) => QueryKey;
2809
+ interface GetSelfEventAttendeePassAddOnsIntentProps extends SingleQueryParams {
2761
2810
  eventId: string;
2762
- registrationId: string;
2811
+ passId: string;
2812
+ addOnIds: string[];
2813
+ addressId: string;
2763
2814
  }
2764
- declare const GetSelfEventRegistrationCoupons: ({ eventId, registrationId, clientApiParams, queryClient, locale, }: GetSelfEventRegistrationCouponsProps) => Promise<ConnectedXMResponse<ManagedCoupon[]>>;
2765
- declare const useGetSelfEventRegistrationCoupons: (eventId: string, registrationId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventRegistrationCoupons>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCoupon[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2815
+ declare const GetSelfEventAttendeePassAddOnsIntent: ({ eventId, passId, addOnIds, addressId, clientApiParams, }: GetSelfEventAttendeePassAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
2816
+ 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>>;
2766
2817
 
2767
- declare const SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY: (eventId: string, registrationId: string, couponId: string) => QueryKey;
2768
- interface GetSelfEventRegistrationCouponPurchasesProps extends InfiniteQueryParams {
2818
+ declare const SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
2819
+ 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;
2820
+ interface GetSelfEventAttendeeCouponProps extends SingleQueryParams {
2769
2821
  eventId: string;
2770
- registrationId: string;
2771
2822
  couponId: string;
2772
2823
  }
2773
- declare const GetSelfEventRegistrationCouponPurchases: ({ eventId, registrationId, couponId, clientApiParams, }: GetSelfEventRegistrationCouponPurchasesProps) => Promise<ConnectedXMResponse<ManagedCouponPurchase[]>>;
2774
- declare const useGetSelfEventRegistrationCouponPurchases: (eventId?: string, registrationId?: string, couponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventRegistrationCouponPurchases>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCouponPurchase[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2824
+ declare const GetSelfEventAttendeeCoupon: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponProps) => Promise<ConnectedXMResponse<ManagedCoupon>>;
2825
+ declare const useGetSelfEventAttendeeCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ManagedCoupon>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2775
2826
 
2776
- declare const SELF_EVENT_PASSES_QUERY_KEY: (eventId: string) => QueryKey;
2777
- declare const SET_SELF_EVENT_PASSES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_PASSES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventPasses>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2778
- interface GetSelfEventPassesProps extends SingleQueryParams {
2827
+ declare const SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
2828
+ interface GetSelfEventAttendeeCouponPassesProps extends InfiniteQueryParams {
2779
2829
  eventId: string;
2830
+ couponId: string;
2780
2831
  }
2781
- declare const GetSelfEventPasses: ({ eventId, clientApiParams, }: GetSelfEventPassesProps) => Promise<ConnectedXMResponse<Purchase[]>>;
2782
- declare const useGetSelfEventPasses: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventPasses>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Purchase[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2832
+ declare const GetSelfEventAttendeeCouponPasses: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponPassesProps) => Promise<ConnectedXMResponse<ManagedCouponPass[]>>;
2833
+ 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>>;
2783
2834
 
2784
- declare const SELF_EVENT_COUPONS_QUERY_KEY: (eventId: string) => QueryKey;
2785
- interface GetSelfEventCouponsProps extends InfiniteQueryParams {
2835
+ declare const SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY: (eventId: string) => QueryKey;
2836
+ interface GetSelfEventAttendeeCouponsProps extends InfiniteQueryParams {
2786
2837
  eventId: string;
2787
2838
  }
2788
- declare const GetSelfEventCoupons: ({ eventId, clientApiParams, }: GetSelfEventCouponsProps) => Promise<ConnectedXMResponse<ManagedCoupon[]>>;
2789
- declare const useGetSelfEventCoupons: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventCoupons>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCoupon[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2839
+ declare const GetSelfEventAttendeeCoupons: ({ eventId, clientApiParams, }: GetSelfEventAttendeeCouponsProps) => Promise<ConnectedXMResponse<ManagedCoupon[]>>;
2840
+ 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>>;
2790
2841
 
2791
- declare const EVENT_TRANSFER_LOGS_QUERY_KEY: (eventId: string) => QueryKey;
2792
- interface GetSelfEventTransfersLogsProps extends InfiniteQueryParams {
2842
+ declare const SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY: (eventId: string) => QueryKey;
2843
+ interface GetSelfEventAttendeeTransfersLogsProps extends InfiniteQueryParams {
2793
2844
  eventId: string;
2794
2845
  }
2795
- declare const GetSelfEventTransfersLogs: ({ pageParam, pageSize, orderBy, search, eventId, clientApiParams, }: GetSelfEventTransfersLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
2796
- declare const useGetSelfEventTransfersLogs: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventTransfersLogs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<TransferLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2846
+ declare const GetSelfEventAttendeeTransfersLogs: ({ pageParam, pageSize, orderBy, search, eventId, clientApiParams, }: GetSelfEventAttendeeTransfersLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
2847
+ 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>>;
2797
2848
 
2798
2849
  declare const SELF_EVENT_ATTENDEE_QUERY_KEY: (eventId: string) => QueryKey;
2799
2850
  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;
@@ -2803,7 +2854,25 @@ interface GetSelfEventAttendeeProps extends SingleQueryParams {
2803
2854
  declare const GetSelfEventAttendee: ({ eventId, clientApiParams, }: GetSelfEventAttendeeProps) => Promise<ConnectedXMResponse<Registration>>;
2804
2855
  declare const useGetSelfEventAttendee: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2805
2856
 
2806
- declare const SELF_EVENT_REGISTRATION_SESSION_PASSES_INTENT_QUERY_KEY: (eventId: string, registrationId: string, sessionId: string, sessionPassIds: string[]) => unknown[];
2857
+ declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
2858
+ 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;
2859
+ interface GetSelfEventAttendeePassQuestionSectionsProps extends SingleQueryParams {
2860
+ eventId: string;
2861
+ passId: string;
2862
+ }
2863
+ declare const GetSelfEventAttendeePassQuestionSections: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
2864
+ declare const useGetSelfEventAttendeePassQuestionSections: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2865
+
2866
+ declare const SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
2867
+ 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;
2868
+ interface GetSelfEventAttendeePassAddOnsProps extends SingleQueryParams {
2869
+ eventId: string;
2870
+ passId: string;
2871
+ }
2872
+ declare const GetSelfEventAttendeePassAddOns: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
2873
+ declare const useGetSelfEventAttendeePassAddOns: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2874
+
2875
+ declare const SELF_EVENT_ATTENDEE_SESSION_PASSES_INTENT_QUERY_KEY: (eventId: string, sessionId: string, addressId: string, sessionPassIds: string[]) => unknown[];
2807
2876
  type SessionPassesInput = {
2808
2877
  passId: string;
2809
2878
  responses: {
@@ -2811,35 +2880,14 @@ type SessionPassesInput = {
2811
2880
  value: string;
2812
2881
  }[];
2813
2882
  }[];
2814
- interface GetSelfEventRegistrationSessionPassesIntentProps extends SingleQueryParams {
2883
+ interface GetSelfEventAttendeeSessionPassesIntentProps extends SingleQueryParams {
2815
2884
  eventId: string;
2816
- registrationId: string;
2817
2885
  sessionId: string;
2886
+ addressId: string;
2818
2887
  sessionPasses: SessionPassesInput;
2819
2888
  }
2820
- declare const GetSelfEventRegistrationSessionPassesIntent: ({ eventId, registrationId, sessionId, sessionPasses, clientApiParams, }: GetSelfEventRegistrationSessionPassesIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
2821
- declare const useGetSelfEventRegistrationSessionPassesIntent: (eventId: string, registrationId: string, sessionId: string, sessionPasses: SessionPassesInput, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationSessionPassesIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2822
-
2823
- declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
2824
- interface GetSelfSubcriptionProps extends SingleQueryParams {
2825
- subscriptionId: string;
2826
- }
2827
- declare const GetSelfSubcription: ({ subscriptionId, clientApiParams, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
2828
- declare const useGetSelfSubcription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfSubcription>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2829
-
2830
- declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unknown[];
2831
- interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
2832
- status?: SubscriptionStatus;
2833
- }
2834
- declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
2835
- 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>>;
2836
-
2837
- declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
2838
- interface GetSelfSubscriptionPaymentsProps extends InfiniteQueryParams {
2839
- subscriptionId: string;
2840
- }
2841
- declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
2842
- 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>>;
2889
+ declare const GetSelfEventAttendeeSessionPassesIntent: ({ eventId, sessionId, addressId, sessionPasses, clientApiParams, }: GetSelfEventAttendeeSessionPassesIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
2890
+ 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>>;
2843
2891
 
2844
2892
  declare const SELF_QUERY_KEY: (ignoreExecuteAs?: boolean) => QueryKey;
2845
2893
  declare const SET_SELF_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelf>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -3018,12 +3066,13 @@ interface GetInvoiceProps extends SingleQueryParams {
3018
3066
  declare const GetInvoice: ({ invoiceId, clientApiParams, }: GetInvoiceProps) => Promise<ConnectedXMResponse<Invoice>>;
3019
3067
  declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3020
3068
 
3021
- declare const SELF_INVOICE_INTENT_QUERY_KEY: (invoiceId: string) => unknown[];
3069
+ declare const SELF_INVOICE_INTENT_QUERY_KEY: (invoiceId: string, addressId: string) => unknown[];
3022
3070
  interface GetInvoiceIntentProps extends SingleQueryParams {
3023
3071
  invoiceId: string;
3072
+ addressId: string;
3024
3073
  }
3025
- declare const GetInvoiceIntent: ({ invoiceId, clientApiParams, }: GetInvoiceIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
3026
- declare const useGetInvoiceIntent: (invoiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3074
+ declare const GetInvoiceIntent: ({ invoiceId, addressId, clientApiParams, }: GetInvoiceIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
3075
+ declare const useGetInvoiceIntent: (invoiceId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3027
3076
 
3028
3077
  declare const LISTING_QUERY_KEY: (eventId: string) => QueryKey;
3029
3078
  declare const SET_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -3065,39 +3114,39 @@ interface GetSelfEventListingQuestionsProps extends InfiniteQueryParams {
3065
3114
  declare const GetSelfEventListingQuestions: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestion[]>>;
3066
3115
  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>>;
3067
3116
 
3068
- declare const LISTING_REGISTRATION_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
3069
- declare const SET_LISTING_REGISTRATION_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_REGISTRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
3117
+ declare const LISTING_ATTENDEE_QUERY_KEY: (eventId: string, accountId: string) => QueryKey;
3118
+ 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;
3070
3119
  interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
3071
3120
  eventId: string;
3072
- registrationId: string;
3121
+ accountId: string;
3073
3122
  }
3074
- declare const GetSelfEventListingRegistration: ({ eventId, registrationId, clientApiParams, }: GetSelfEventListingRegistrationProps) => Promise<ConnectedXMResponse<ListingRegistration>>;
3075
- declare const useGetSelfEventListingRegistration: (eventId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingRegistration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3123
+ declare const GetSelfEventListingRegistration: ({ eventId, accountId, clientApiParams, }: GetSelfEventListingRegistrationProps) => Promise<ConnectedXMResponse<ListingRegistration>>;
3124
+ declare const useGetSelfEventListingRegistration: (eventId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingRegistration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3076
3125
 
3077
- declare const LISTING_REGISTRATIONS_QUERY_KEY: (eventId: string, status?: keyof typeof PurchaseStatus) => unknown[];
3078
- interface GetSelfEventListingRegistrationsProps extends InfiniteQueryParams {
3126
+ declare const LISTING_ATTENDEES_QUERY_KEY: (eventId: string, status?: keyof typeof PurchaseStatus) => unknown[];
3127
+ interface GetSelfEventListingAttendeesProps extends InfiniteQueryParams {
3079
3128
  eventId: string;
3080
3129
  status?: keyof typeof PurchaseStatus;
3081
3130
  }
3082
- declare const GetSelfEventListingRegistrations: ({ eventId, pageParam, pageSize, orderBy, search, status, clientApiParams, }: GetSelfEventListingRegistrationsProps) => Promise<ConnectedXMResponse<ListingRegistration[]>>;
3083
- declare const useGetSelfEventListingsRegistrations: (eventId: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingRegistrations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ListingRegistration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3131
+ declare const GetSelfEventListingAttendees: ({ eventId, pageParam, pageSize, orderBy, search, status, clientApiParams, }: GetSelfEventListingAttendeesProps) => Promise<ConnectedXMResponse<ListingRegistration[]>>;
3132
+ 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>>;
3084
3133
 
3085
- declare const LISTING_PURCHASE_QUERY_KEY: (eventId: string, purchaseId: string) => QueryKey;
3086
- declare const SET_LISTING_PURCHASE_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_PURCHASE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingPurchase>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
3087
- interface GetSelfEventListingPurchaseProps extends SingleQueryParams {
3134
+ declare const LISTING_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
3135
+ 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;
3136
+ interface GetSelfEventListingPassProps extends SingleQueryParams {
3088
3137
  eventId: string;
3089
- purchaseId: string;
3138
+ passId: string;
3090
3139
  }
3091
- declare const GetSelfEventListingPurchase: ({ eventId, purchaseId, clientApiParams, }: GetSelfEventListingPurchaseProps) => Promise<ConnectedXMResponse<ListingPurchase>>;
3092
- declare const useGetSelfEventListingPurchase: (eventId?: string, purchaseId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingPurchase>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingPurchase>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3140
+ declare const GetSelfEventListingPass: ({ eventId, passId, clientApiParams, }: GetSelfEventListingPassProps) => Promise<ConnectedXMResponse<ListingPass>>;
3141
+ declare const useGetSelfEventListingPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3093
3142
 
3094
- declare const LISTING_PURCHASES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => unknown[];
3095
- interface GetSelfEventListingPurchasesProps extends InfiniteQueryParams {
3143
+ declare const LISTING_PASSES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => unknown[];
3144
+ interface GetSelfEventListingPassesProps extends InfiniteQueryParams {
3096
3145
  eventId: string;
3097
3146
  checkedIn?: boolean;
3098
3147
  }
3099
- declare const GetSelfEventListingPurchases: ({ eventId, checkedIn, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingPurchasesProps) => Promise<ConnectedXMResponse<ListingPurchase[]>>;
3100
- declare const useGetSelfEventListingPurchases: (eventId: string, checkedIn?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingPurchases>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ListingPurchase[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3148
+ declare const GetSelfEventListingPasses: ({ eventId, checkedIn, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingPassesProps) => Promise<ConnectedXMResponse<ListingPass[]>>;
3149
+ 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>>;
3101
3150
 
3102
3151
  declare const LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
3103
3152
  interface GetSelfEventListingsProps extends InfiniteQueryParams {
@@ -3120,15 +3169,15 @@ interface GetSelfEventListingReportProps extends SingleQueryParams {
3120
3169
  declare const GetSelfEventListingReport: ({ eventId, clientApiParams, }: GetSelfEventListingReportProps) => Promise<ConnectedXMResponse<any>>;
3121
3170
  declare const useGetSelfEventListingReport: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3122
3171
 
3123
- declare const LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
3124
- declare const SET_LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetListingRegistrationPurchaseSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
3125
- interface GetListingRegistrationPurchaseSectionsProps extends SingleQueryParams {
3172
+ declare const LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, accountId: string, passId: string) => QueryKey;
3173
+ 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;
3174
+ interface GetListingAttendeePassQuestionSectionsProps extends SingleQueryParams {
3126
3175
  eventId: string;
3127
- registrationId: string;
3128
- purchaseId: string;
3176
+ accountId: string;
3177
+ passId: string;
3129
3178
  }
3130
- declare const GetListingRegistrationPurchaseSections: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetListingRegistrationPurchaseSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
3131
- declare const useGetListingRegistrationPurchaseSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetListingRegistrationPurchaseSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3179
+ declare const GetListingAttendeePassQuestionSections: ({ eventId, accountId, passId, clientApiParams, }: GetListingAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
3180
+ 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>>;
3132
3181
 
3133
3182
  declare const INTERESTS_QUERY_KEY: () => QueryKey;
3134
3183
  declare const SET_INTERESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTERESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInterests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
@@ -3617,14 +3666,6 @@ interface CompleteEventActivationParams extends MutationParams {
3617
3666
  declare const CompleteEventActivation: ({ eventId, activationId, code, clientApiParams, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
3618
3667
  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>;
3619
3668
 
3620
- interface CreateEventLeadParams extends MutationParams {
3621
- eventId: string;
3622
- purchaseId: string;
3623
- note?: string;
3624
- }
3625
- declare const CreateEventLead: ({ eventId, purchaseId, note, clientApiParams, queryClient, }: CreateEventLeadParams) => Promise<ConnectedXMResponse<Lead>>;
3626
- 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>;
3627
-
3628
3669
  interface CapturePaymentIntentParams extends MutationParams {
3629
3670
  intent: PaymentIntent;
3630
3671
  }
@@ -3650,6 +3691,28 @@ interface UpdateSelfAddressParams extends MutationParams {
3650
3691
  declare const UpdateSelfAddress: ({ addressId, address, queryClient, clientApiParams, }: UpdateSelfAddressParams) => Promise<ConnectedXMResponse<AccountAddress>>;
3651
3692
  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>;
3652
3693
 
3694
+ interface CreateSelfLeadParams extends MutationParams {
3695
+ passId: string;
3696
+ }
3697
+ declare const CreateSelfLead: ({ passId, clientApiParams, queryClient, }: CreateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
3698
+ 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>;
3699
+
3700
+ interface DeleteSelfLeadParams extends MutationParams {
3701
+ leadId: string;
3702
+ }
3703
+ declare const DeleteSelfLead: ({ leadId, clientApiParams, queryClient, }: DeleteSelfLeadParams) => Promise<ConnectedXMResponse<null>>;
3704
+ 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>;
3705
+
3706
+ interface UpdateSelfLeadParams extends MutationParams {
3707
+ leadId: string;
3708
+ lead: {
3709
+ status?: "new" | "favorited" | "archived" | "deleted";
3710
+ note?: string;
3711
+ };
3712
+ }
3713
+ declare const UpdateSelfLead: ({ leadId, lead, queryClient, clientApiParams, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
3714
+ 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>;
3715
+
3653
3716
  interface AddSelfChatChannelMemberParams extends MutationParams {
3654
3717
  channelId: string;
3655
3718
  accountId: string;
@@ -3699,35 +3762,66 @@ declare const useUpdateSelfChatChannelNotifications: (options?: Omit<MutationOpt
3699
3762
 
3700
3763
  interface SelectSelfEventRegistrationCouponParams extends MutationParams {
3701
3764
  eventId: string;
3702
- registrationId: string;
3703
3765
  couponId: string;
3704
3766
  }
3705
- declare const SelectSelfEventRegistrationCoupon: ({ eventId, registrationId, couponId, clientApiParams, queryClient, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
3767
+ declare const SelectSelfEventRegistrationCoupon: ({ eventId, couponId, clientApiParams, queryClient, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
3706
3768
  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>;
3707
3769
 
3708
3770
  interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
3709
3771
  eventId: string;
3710
- registrationId: string;
3711
3772
  }
3712
- declare const RemoveSelfEventRegistrationCoupon: ({ eventId, registrationId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
3773
+ declare const RemoveSelfEventRegistrationCoupon: ({ eventId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
3713
3774
  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>;
3714
3775
 
3715
- interface RemoveSelfEventRegistrationPurchaseParams extends MutationParams {
3776
+ interface UpdateSelfEventRegistrationPassesParams extends MutationParams {
3716
3777
  eventId: string;
3717
- registrationId: string;
3718
- purchaseId: string;
3778
+ passes: {
3779
+ id: string;
3780
+ ticketId: string;
3781
+ }[];
3719
3782
  }
3720
- declare const RemoveSelfEventRegistrationPurchase: ({ eventId, registrationId, purchaseId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationPurchaseParams) => Promise<ConnectedXMResponse<Registration>>;
3721
- declare const useRemoveSelfEventRegistrationPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationPurchase>>, Omit<RemoveSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
3783
+ declare const UpdateSelfEventRegistrationPasses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassesParams) => Promise<ConnectedXMResponse<null>>;
3784
+ 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>;
3722
3785
 
3723
- interface AddSelfEventRegistrationPurchaseParams extends MutationParams {
3786
+ interface UpdateSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
3724
3787
  eventId: string;
3725
- registrationId: string;
3726
- ticketId: string;
3727
- quantity: number;
3788
+ passes: {
3789
+ id: string;
3790
+ addOns: {
3791
+ id: string;
3792
+ }[];
3793
+ }[];
3728
3794
  }
3729
- declare const AddSelfEventRegistrationPurchase: ({ eventId, registrationId, ticketId, quantity, clientApiParams, queryClient, }: AddSelfEventRegistrationPurchaseParams) => Promise<ConnectedXMResponse<Registration>>;
3730
- declare const useAddSelfEventRegistrationPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventRegistrationPurchase>>, Omit<AddSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<AddSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
3795
+ declare const UpdateSelfEventRegistrationPurchaseAddOn: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<null>>;
3796
+ 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>;
3797
+
3798
+ interface UpdateSelfEventRegistrationReservationsParams extends MutationParams {
3799
+ eventId: string;
3800
+ passes: {
3801
+ id: string;
3802
+ reservation: {
3803
+ id: string;
3804
+ eventRoomTypeId: string;
3805
+ start?: Date | string;
3806
+ end?: Date | string;
3807
+ };
3808
+ }[];
3809
+ }
3810
+ declare const UpdateSelfEventRegistrationReservations: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationReservationsParams) => Promise<ConnectedXMResponse<null>>;
3811
+ 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>;
3812
+
3813
+ interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
3814
+ eventId: string;
3815
+ passes: {
3816
+ id: string;
3817
+ responses: {
3818
+ questionId: number;
3819
+ value: string;
3820
+ }[];
3821
+ }[];
3822
+ }
3823
+ declare const UpdateSelfEventRegistrationResponses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
3824
+ 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>;
3731
3825
 
3732
3826
  interface SubmitStripe {
3733
3827
  type: "stripe";
@@ -3749,111 +3843,65 @@ interface SubmitPaypalResponse {
3749
3843
  type SubmitResponse = SubmitStripeResponse | SubmitPaypalResponse;
3750
3844
  interface SubmitSelfEventRegistrationParams extends MutationParams {
3751
3845
  eventId: string;
3752
- registrationId: string;
3753
3846
  payment?: SubmitPayment;
3754
3847
  }
3755
- declare const SubmitSelfEventRegistration: ({ eventId, registrationId, payment, clientApiParams, queryClient, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
3848
+ declare const SubmitSelfEventRegistration: ({ eventId, payment, clientApiParams, queryClient, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
3756
3849
  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>;
3757
3850
 
3758
- interface UpdateSelfEventRegistrationQuestionResponseParams extends MutationParams {
3851
+ interface AddFreePassAddOnsParams extends MutationParams {
3759
3852
  eventId: string;
3760
- registrationId: string;
3761
- purchaseId: string;
3762
- questionId: number;
3763
- value: string;
3764
- update?: boolean;
3765
- }
3766
- declare const UpdateSelfEventRegistrationQuestionResponse: ({ eventId, registrationId, purchaseId, questionId, value, update, clientApiParams, queryClient, }: UpdateSelfEventRegistrationQuestionResponseParams) => Promise<ConnectedXMResponse<Registration>>;
3767
- 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>;
3768
-
3769
- interface AddSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
3770
- eventId: string;
3771
- registrationId: string;
3772
- purchaseId: string;
3773
- addOnId: string;
3774
- }
3775
- declare const AddSelfEventRegistrationPurchaseAddOn: ({ eventId, registrationId, purchaseId, addOnId, clientApiParams, queryClient, }: AddSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<Registration>>;
3776
- 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>;
3777
-
3778
- interface RemoveSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
3779
- eventId: string;
3780
- registrationId: string;
3781
- purchaseId: string;
3782
- addOnId: string;
3783
- }
3784
- declare const RemoveSelfEventRegistrationPurchaseAddOn: ({ eventId, registrationId, purchaseId, addOnId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<Registration>>;
3785
- 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>;
3786
-
3787
- interface SelectSelfEventRegistrationPurchaseReservationParams extends MutationParams {
3788
- eventId: string;
3789
- registrationId: string;
3790
- purchaseId: string;
3791
- locationId: string;
3792
- reservationStart?: string;
3793
- reservationEnd?: string;
3794
- }
3795
- declare const SelectSelfEventRegistrationPurchaseReservation: ({ eventId, registrationId, purchaseId, locationId, reservationStart, reservationEnd, clientApiParams, queryClient, }: SelectSelfEventRegistrationPurchaseReservationParams) => Promise<ConnectedXMResponse<Registration>>;
3796
- 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>;
3797
-
3798
- interface AddFreePurchaseAddOnsParams extends MutationParams {
3799
- eventId: string;
3800
- registrationId: string;
3801
- purchaseId: string;
3853
+ passId: string;
3802
3854
  addOnIds: string[];
3803
3855
  }
3804
- declare const AddFreePurchaseAddOns: ({ eventId, registrationId, purchaseId, addOnIds, clientApiParams, queryClient, }: AddFreePurchaseAddOnsParams) => Promise<ConnectedXMResponse<Purchase>>;
3805
- declare const useAddFreePurchaseAddOns: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddFreePurchaseAddOns>>, Omit<AddFreePurchaseAddOnsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Purchase>, axios.AxiosError<ConnectedXMResponse<Purchase>, any>, Omit<AddFreePurchaseAddOnsParams, "queryClient" | "clientApiParams">, unknown>;
3856
+ declare const AddFreePassAddOns: ({ eventId, passId, addOnIds, clientApiParams, queryClient, }: AddFreePassAddOnsParams) => Promise<ConnectedXMResponse<Pass>>;
3857
+ 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>;
3806
3858
 
3807
- interface UpdateSelfEventRegistrationPurchaseResponsesParams extends MutationParams {
3859
+ interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
3808
3860
  eventId: string;
3809
- registrationId: string;
3810
- purchaseId: string;
3861
+ passId: string;
3811
3862
  questions: {
3812
3863
  id: number;
3813
3864
  value: string;
3814
3865
  }[];
3815
3866
  }
3816
- declare const UpdateSelfEventRegistrationPurchaseResponses: ({ eventId, registrationId, purchaseId, questions, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPurchaseResponsesParams) => Promise<ConnectedXMResponse<null>>;
3817
- declare const useUpdateSelfEventRegistrationPurchaseResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPurchaseResponses>>, Omit<UpdateSelfEventRegistrationPurchaseResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPurchaseResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3867
+ declare const UpdateSelfEventAttendeePassResponses: ({ eventId, passId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassResponsesParams) => Promise<ConnectedXMResponse<null>>;
3868
+ 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>;
3818
3869
 
3819
- interface TransferPurchaseParams extends MutationParams {
3870
+ interface TransferPassParams extends MutationParams {
3820
3871
  passId: string;
3821
3872
  eventId: string;
3822
- registrationId: string;
3823
3873
  receiverId: string;
3824
3874
  }
3825
- declare const TransferPurchase: ({ passId, eventId, registrationId, receiverId, clientApiParams, queryClient, }: TransferPurchaseParams) => Promise<ConnectedXMResponse<null>>;
3826
- declare const useTransferPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPurchase>>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
3875
+ declare const TransferPass: ({ passId, eventId, receiverId, clientApiParams, queryClient, }: TransferPassParams) => Promise<ConnectedXMResponse<null>>;
3876
+ 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>;
3827
3877
 
3828
- interface CancelPurchaseParams extends MutationParams {
3829
- purchaseId: string;
3878
+ interface CancelPassParams extends MutationParams {
3879
+ passId: string;
3830
3880
  eventId: string;
3831
3881
  registrationId: string;
3832
3882
  issueRefund?: boolean;
3833
3883
  }
3834
- declare const CancelPurchase: ({ purchaseId, eventId, registrationId, issueRefund, clientApiParams, queryClient, }: CancelPurchaseParams) => Promise<ConnectedXMResponse<Purchase>>;
3835
- declare const useCancelPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelPurchase>>, Omit<CancelPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Purchase>, axios.AxiosError<ConnectedXMResponse<Purchase>, any>, Omit<CancelPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
3884
+ declare const CancelPass: ({ passId, eventId, issueRefund, clientApiParams, queryClient, }: CancelPassParams) => Promise<ConnectedXMResponse<Pass>>;
3885
+ 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>;
3836
3886
 
3837
3887
  interface SubmitSelfEventRegistrationSessionPassesParams extends MutationParams {
3838
3888
  eventId: string;
3839
- registrationId: string;
3840
3889
  sessionId: string;
3841
3890
  sessionPasses: SessionPassesInput;
3842
3891
  }
3843
- declare const SubmitSelfEventRegistrationSessionPasses: ({ eventId, registrationId, sessionId, sessionPasses, clientApiParams, queryClient, }: SubmitSelfEventRegistrationSessionPassesParams) => Promise<ConnectedXMResponse<null>>;
3892
+ declare const SubmitSelfEventRegistrationSessionPasses: ({ eventId, sessionId, sessionPasses, clientApiParams, queryClient, }: SubmitSelfEventRegistrationSessionPassesParams) => Promise<ConnectedXMResponse<null>>;
3844
3893
  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>;
3845
3894
 
3846
3895
  interface UpdateSelfEventRegistrationPurchaseSessionResponsesParams extends MutationParams {
3847
3896
  eventId: string;
3848
- registrationId: string;
3849
- purchaseId: string;
3897
+ passId: string;
3850
3898
  sessionPassId: string;
3851
3899
  responses: {
3852
3900
  questionId: string;
3853
3901
  value: string | undefined;
3854
3902
  }[];
3855
3903
  }
3856
- declare const UpdateSelfEventRegistrationPurchaseSessionResponses: ({ eventId, registrationId, purchaseId, sessionPassId, responses, clientApiParams, }: UpdateSelfEventRegistrationPurchaseSessionResponsesParams) => Promise<ConnectedXMResponse<null>>;
3904
+ declare const UpdateSelfEventRegistrationPurchaseSessionResponses: ({ eventId, passId, sessionPassId, responses, clientApiParams, }: UpdateSelfEventRegistrationPurchaseSessionResponsesParams) => Promise<ConnectedXMResponse<null>>;
3857
3905
  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>;
3858
3906
 
3859
3907
  interface CancelSubscriptionParams extends MutationParams {
@@ -3984,13 +4032,6 @@ interface UpdateSelfImageParams extends MutationParams {
3984
4032
  declare const UpdateSelfImage: ({ base64, clientApiParams, queryClient, }: UpdateSelfImageParams) => Promise<ConnectedXMResponse<Self>>;
3985
4033
  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>;
3986
4034
 
3987
- interface UpdateSelfLeadParams extends MutationParams {
3988
- leadId: string;
3989
- note: string;
3990
- }
3991
- declare const UpdateSelfLead: ({ leadId, note, clientApiParams, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
3992
- 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>;
3993
-
3994
4035
  interface UpdateSelfNotificationPreferencesParams extends MutationParams {
3995
4036
  newFollowerPush?: boolean;
3996
4037
  newFollowerEmail?: boolean;
@@ -4309,21 +4350,21 @@ interface RemoveListingSponsorParams extends MutationParams {
4309
4350
  declare const RemoveListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, }: RemoveListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
4310
4351
  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>;
4311
4352
 
4312
- interface CheckinListingRegistrationPurchaseParams extends MutationParams {
4353
+ interface CheckinListingAttendeePassParams extends MutationParams {
4313
4354
  eventId: string;
4314
- registrationId: string;
4315
- purchaseId: string;
4355
+ accountId: string;
4356
+ passId: string;
4316
4357
  }
4317
- declare const CheckinListingRegistrationPurchase: ({ eventId, registrationId, purchaseId, clientApiParams, queryClient, }: CheckinListingRegistrationPurchaseParams) => Promise<ConnectedXMResponse<Purchase>>;
4318
- declare const useCheckinListingRegistrationPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckinListingRegistrationPurchase>>, Omit<CheckinListingRegistrationPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Purchase>, axios.AxiosError<ConnectedXMResponse<Purchase>, any>, Omit<CheckinListingRegistrationPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
4358
+ declare const CheckinListingAttendeePass: ({ eventId, accountId, passId, clientApiParams, queryClient, }: CheckinListingAttendeePassParams) => Promise<ConnectedXMResponse<Pass>>;
4359
+ 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>;
4319
4360
 
4320
- interface UndoCheckinListingRegistrationPurchaseParams extends MutationParams {
4361
+ interface UndoCheckinListingAttendeePassParams extends MutationParams {
4321
4362
  eventId: string;
4322
- registrationId: string;
4323
- purchaseId: string;
4363
+ accountId: string;
4364
+ passId: string;
4324
4365
  }
4325
- declare const UndoCheckinListingRegistrationPurchase: ({ eventId, registrationId, purchaseId, clientApiParams, queryClient, }: UndoCheckinListingRegistrationPurchaseParams) => Promise<ConnectedXMResponse<Purchase>>;
4326
- declare const useUndoCheckinListingRegistrationPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UndoCheckinListingRegistrationPurchase>>, Omit<UndoCheckinListingRegistrationPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Purchase>, axios.AxiosError<ConnectedXMResponse<Purchase>, any>, Omit<UndoCheckinListingRegistrationPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
4366
+ declare const UndoCheckinListingAttendeePass: ({ eventId, accountId, passId, clientApiParams, queryClient, }: UndoCheckinListingAttendeePassParams) => Promise<ConnectedXMResponse<ListingPass>>;
4367
+ 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>;
4327
4368
 
4328
4369
  interface UpdateListingParams extends MutationParams {
4329
4370
  eventId: string;
@@ -4433,17 +4474,17 @@ interface RemoveListingCoHostParams extends MutationParams {
4433
4474
  declare const RemoveListingCoHost: ({ eventId, accountId, clientApiParams, queryClient, }: RemoveListingCoHostParams) => Promise<ConnectedXMResponse<EventListing>>;
4434
4475
  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>;
4435
4476
 
4436
- interface UpdateListingRegistrationPurchaseResponsesParams extends MutationParams {
4477
+ interface UpdateListingRegistrationPassResponsesParams extends MutationParams {
4437
4478
  eventId: string;
4438
- registrationId: string;
4439
- purchaseId: string;
4479
+ accountId: string;
4480
+ passId: string;
4440
4481
  questions: {
4441
4482
  id: number;
4442
4483
  value: string;
4443
4484
  }[];
4444
4485
  }
4445
- declare const UpdateListingRegistrationPurchaseResponses: ({ eventId, registrationId, purchaseId, questions, clientApiParams, queryClient, }: UpdateListingRegistrationPurchaseResponsesParams) => Promise<ConnectedXMResponse<null>>;
4446
- declare const useUpdateListingRegistrationPurchaseResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingRegistrationPurchaseResponses>>, Omit<UpdateListingRegistrationPurchaseResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateListingRegistrationPurchaseResponsesParams, "queryClient" | "clientApiParams">, unknown>;
4486
+ declare const UpdateListingRegistrationPassResponses: ({ eventId, accountId, passId, questions, clientApiParams, queryClient, }: UpdateListingRegistrationPassResponsesParams) => Promise<ConnectedXMResponse<null>>;
4487
+ 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>;
4447
4488
 
4448
4489
  interface UploadFileParams extends MutationParams {
4449
4490
  dataUri: string;
@@ -4582,4 +4623,4 @@ interface EnableIntegrationParams extends MutationParams {
4582
4623
  declare const EnableIntegration: ({ type, clientApiParams, queryClient, }: EnableIntegrationParams) => Promise<ConnectedXMResponse<Integration>>;
4583
4624
  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>;
4584
4625
 
4585
- 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, 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 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 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, CreateSelfAddress, type CreateSelfAddressParams, 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, DeleteSelfAddress, type DeleteSelfAddressParams, 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, 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, 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_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_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, UpdateSelfAddress, type UpdateSelfAddressParams, 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, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThread, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfAddress, 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, useGetSelfAddress, useGetSelfAddresses, 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, useUpdateSelfAddress, useUpdateSelfChatChannelNotifications, useUpdateSelfEventRegistrationPurchaseResponses, useUpdateSelfEventRegistrationPurchaseSessionResponses, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateThread, useUpdateThreadMember, useUpdateThreadMessage, useUploadChannelContentImage, useUploadFile };
4626
+ 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, GetSelfLeadCounts, type GetSelfLeadCountsProps, 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_COUNTS_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, useGetSelfLeadCounts, 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 };