@connectedxm/client 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts 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,6 +1156,7 @@ 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 {
@@ -1466,16 +1474,11 @@ interface BaseEventAddOn {
1466
1474
  name: string;
1467
1475
  shortDescription: string;
1468
1476
  longDescription: string | null;
1469
- supply: number;
1477
+ supply: number | null;
1470
1478
  price: number;
1479
+ pricePerNight: boolean;
1471
1480
  sortOrder: number;
1472
1481
  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
1482
  image: BaseImage | null;
1480
1483
  createdAt: string;
1481
1484
  updatedAt: string;
@@ -1483,44 +1486,6 @@ interface BaseEventAddOn {
1483
1486
  interface EventAddOn extends BaseEventAddOn {
1484
1487
  event: BaseEvent;
1485
1488
  }
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
1489
  declare enum GroupRequestStatus {
1525
1490
  requested = "requested",
1526
1491
  rejected = "rejected"
@@ -1595,6 +1560,11 @@ interface BasePaymentIntent {
1595
1560
  eventId: string | null;
1596
1561
  registrationId: string | null;
1597
1562
  invoiceId: string | null;
1563
+ salesTax: number;
1564
+ salesTaxRate: number;
1565
+ country: string;
1566
+ state: string;
1567
+ zip: string;
1598
1568
  createdAt: string;
1599
1569
  }
1600
1570
  interface PaymentIntent extends BasePaymentIntent {
@@ -1860,6 +1830,74 @@ interface BasePassTypeRefundSchedule {
1860
1830
  }
1861
1831
  interface PassTypeRefundSchedule extends BasePassTypeRefundSchedule {
1862
1832
  }
1833
+ interface BaseEventRoomType {
1834
+ id: string;
1835
+ name: string;
1836
+ price: number;
1837
+ pricePerNight: boolean;
1838
+ image: BaseImage;
1839
+ minPasses: number | null;
1840
+ maxPasses: number | null;
1841
+ minStart: string | null;
1842
+ defaultStart: string | null;
1843
+ maxStart: string | null;
1844
+ minEnd: string | null;
1845
+ defaultEnd: string | null;
1846
+ maxEnd: string | null;
1847
+ sortOrder: number;
1848
+ passTypes: BaseEventRoomTypePassTypeDetails[];
1849
+ addOns: BaseEventRoomTypeAddOnDetails[];
1850
+ supply: number | null;
1851
+ }
1852
+ interface EventRoomType extends BaseEventRoomType {
1853
+ description: string | null;
1854
+ createdAt: string;
1855
+ updatedAt: string;
1856
+ }
1857
+ interface BaseEventRoomTypeReservation {
1858
+ id: string;
1859
+ start: string | null;
1860
+ end: string | null;
1861
+ eventRoomTypeId: string;
1862
+ eventRoomType: BaseEventRoomType;
1863
+ }
1864
+ interface EventRoomTypeReservation extends BaseEventRoomTypeReservation {
1865
+ createdAt: string;
1866
+ updatedAt: string;
1867
+ }
1868
+ interface BaseEventRoomTypePassTypeDetails {
1869
+ id: string;
1870
+ passTypeId: string;
1871
+ enabled: boolean;
1872
+ premium: number;
1873
+ includedNights: number;
1874
+ minPasses: number | null;
1875
+ maxPasses: number | null;
1876
+ minStart: string | null;
1877
+ defaultStart: string | null;
1878
+ maxStart: string | null;
1879
+ minEnd: string | null;
1880
+ defaultEnd: string | null;
1881
+ maxEnd: string | null;
1882
+ }
1883
+ interface EventRoomTypePassTypeDetails extends BaseEventRoomTypePassTypeDetails {
1884
+ createdAt: string;
1885
+ updatedAt: string;
1886
+ }
1887
+ interface BaseEventRoomTypeAddOnDetails {
1888
+ id: string;
1889
+ addOnId: string;
1890
+ minStart: string | null;
1891
+ defaultStart: string | null;
1892
+ maxStart: string | null;
1893
+ minEnd: string | null;
1894
+ defaultEnd: string | null;
1895
+ maxEnd: string | null;
1896
+ }
1897
+ interface EventRoomTypeAddOnDetails extends BaseEventRoomTypeAddOnDetails {
1898
+ createdAt: string;
1899
+ updatedAt: string;
1900
+ }
1863
1901
 
1864
1902
  interface ConnectedXMClientContextState {
1865
1903
  queryClient: QueryClient;
@@ -1899,6 +1937,7 @@ declare const ERR_FEATURE_NOT_AVAILABLE = 456;
1899
1937
  declare const ERR_TIER_REQUIRED = 457;
1900
1938
  declare const ERR_SUBSCRIPTION_REQUIRED = 458;
1901
1939
  declare const ERR_INTEGRATION_PERMISSION_DENIED = 459;
1940
+ declare const ERR_KNOWN_ERROR = 460;
1902
1941
  declare const CUSTOM_ERROR_CODES: number[];
1903
1942
  declare const GetErrorMessage: (error: any, fallback?: string) => string;
1904
1943
 
@@ -2552,15 +2591,6 @@ interface GetEventSponsorsProps extends InfiniteQueryParams {
2552
2591
  declare const GetEventSponsors: ({ eventId, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetEventSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
2553
2592
  declare const useGetEventSponsors: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2554
2593
 
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
2594
  declare const EVENTS_FEATURED_QUERY_KEY: () => QueryKey;
2565
2595
  declare const SET_EVENTS_FEATURED_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENTS_FEATURED_QUERY_KEY>, response: Awaited<ReturnType<typeof GetFeaturedEvents>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
2566
2596
  interface GetFeaturedEventsProps extends InfiniteQueryParams {
@@ -2568,15 +2598,6 @@ interface GetFeaturedEventsProps extends InfiniteQueryParams {
2568
2598
  declare const GetFeaturedEvents: ({ pageParam, pageSize, orderBy, queryClient, clientApiParams, locale, }: GetFeaturedEventsProps) => Promise<ConnectedXMResponse<Event[]>>;
2569
2599
  declare const useGetFeaturedEvents: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetFeaturedEvents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Event[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2570
2600
 
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
2601
  declare const ORGANIZATION_QUERY_KEY: () => QueryKey;
2581
2602
  interface GetOrganizationParams extends SingleQueryParams {
2582
2603
  }
@@ -2623,6 +2644,19 @@ interface GetSelfAddressesProps extends InfiniteQueryParams {
2623
2644
  declare const GetSelfAddresses: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfAddressesProps) => Promise<ConnectedXMResponse<AccountAddress[]>>;
2624
2645
  declare const useGetSelfAddresses: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfAddresses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<AccountAddress[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2625
2646
 
2647
+ declare const SELF_LEAD_QUERY_KEY: (leadId: string) => QueryKey;
2648
+ interface GetSelfLeadProps extends SingleQueryParams {
2649
+ leadId: string;
2650
+ }
2651
+ declare const GetSelfLead: ({ leadId, clientApiParams, }: GetSelfLeadProps) => Promise<ConnectedXMResponse<Lead>>;
2652
+ declare const useGetSelfLead: (leadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfLead>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2653
+
2654
+ declare const SELF_LEADS_QUERY_KEY: () => QueryKey;
2655
+ interface GetSelfLeadsProps extends InfiniteQueryParams {
2656
+ }
2657
+ declare const GetSelfLeads: ({ pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfLeadsProps) => Promise<ConnectedXMResponse<Lead[]>>;
2658
+ declare const useGetSelfLeads: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfLeads>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Lead[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2659
+
2626
2660
  declare const SELF_CHAT_CHANNEL_QUERY_KEY: (channelId: string) => QueryKey;
2627
2661
  declare const SET_SELF_CHAT_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_CHAT_CHANNEL_QUERY_KEY>, response: Updater<any, Awaited<ReturnType<typeof GetSelfChatChannel>>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2628
2662
  interface GetSelfChatChannelProps extends SingleQueryParams {
@@ -2662,138 +2696,151 @@ interface GetSelfEventRegistrationProps extends SingleQueryParams {
2662
2696
  declare const GetSelfEventRegistration: ({ eventId, clientApiParams, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
2663
2697
  declare const useGetSelfEventRegistration: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2664
2698
 
2665
- declare const SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, registrationId: string) => unknown[];
2666
- interface GetSelfEventRegistrationIntentProps extends SingleQueryParams {
2699
+ declare const SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY: (eventId: string, passTypeId?: string) => QueryKey;
2700
+ declare const SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationPassTypes>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2701
+ interface GetSelfEventRegistrationPassTypesProps extends SingleQueryParams {
2667
2702
  eventId: string;
2668
- registrationId: string;
2703
+ passTypeId?: string;
2669
2704
  }
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>>;
2705
+ declare const GetSelfEventRegistrationPassTypes: ({ eventId, passTypeId, clientApiParams, }: GetSelfEventRegistrationPassTypesProps) => Promise<ConnectedXMResponse<PassType[]>>;
2706
+ declare const useGetSelfEventRegistrationPassTypes: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2672
2707
 
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 {
2708
+ interface PassTypeWithAddOns extends BasePassType {
2709
+ addOns: EventAddOn[];
2710
+ }
2711
+ declare const SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY: (eventId: string) => QueryKey;
2712
+ declare const SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2713
+ interface GetSelfEventRegistrationAddOnsProps extends SingleQueryParams {
2676
2714
  eventId: string;
2677
- registrationId: string;
2678
- paymentId: string;
2679
2715
  }
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>>;
2716
+ declare const GetSelfEventRegistrationAddOns: ({ eventId, clientApiParams, }: GetSelfEventRegistrationAddOnsProps) => Promise<ConnectedXMResponse<PassTypeWithAddOns[]>>;
2717
+ declare const useGetSelfEventRegistrationAddOns: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassTypeWithAddOns[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2682
2718
 
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 {
2719
+ declare const SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY: (eventId: string) => QueryKey;
2720
+ declare const SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationRoomTypes>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2721
+ interface GetSelfEventRegistrationRoomTypesProps extends SingleQueryParams {
2692
2722
  eventId: string;
2693
- registrationId: string;
2694
- purchaseId: string;
2695
2723
  }
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>>;
2724
+ declare const GetSelfEventRegistrationRoomTypes: ({ eventId, clientApiParams, }: GetSelfEventRegistrationRoomTypesProps) => Promise<ConnectedXMResponse<EventRoomType[]>>;
2725
+ declare const useGetSelfEventRegistrationRoomTypes: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationRoomTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2698
2726
 
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 {
2727
+ declare const SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY: (eventId: string) => QueryKey;
2728
+ declare const SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistrationQuestions>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2729
+ interface GetSelfEventRegistrationQuestionsProps extends SingleQueryParams {
2702
2730
  eventId: string;
2703
- registrationId: string;
2704
- purchaseId: string;
2705
2731
  }
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>>;
2732
+ declare const GetSelfEventRegistrationQuestions: ({ eventId, clientApiParams, }: GetSelfEventRegistrationQuestionsProps) => Promise<ConnectedXMResponse<{
2733
+ passId: string;
2734
+ sections: RegistrationSection[];
2735
+ }[]>>;
2736
+ declare const useGetSelfEventRegistrationQuestions: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationQuestions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
2737
+ passId: string;
2738
+ sections: RegistrationSection[];
2739
+ }[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2708
2740
 
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 {
2741
+ declare const SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY: (eventId: string, ticketId: string, quantity: number, addressId: string) => unknown[];
2742
+ interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
2712
2743
  eventId: string;
2713
- registrationId: string;
2714
- purchaseId: string;
2744
+ ticketId: string;
2745
+ quantity: number;
2746
+ addressId: string;
2715
2747
  }
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>>;
2748
+ declare const GetSelfEventTicketCouponIntent: ({ eventId, ticketId, quantity, addressId, clientApiParams, }: GetSelfEventTicketCouponIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
2749
+ declare const useGetSelfEventTicketCouponIntent: (eventId?: string, ticketId?: string, quantity?: number, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventTicketCouponIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2718
2750
 
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 {
2751
+ declare const SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY: (eventId: string, addressId?: string) => unknown[];
2752
+ interface GetSelfEventRegistrationIntentProps extends SingleQueryParams {
2722
2753
  eventId: string;
2723
- registrationId: string;
2724
- purchaseId: string;
2754
+ addressId: string;
2725
2755
  }
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>>;
2756
+ declare const GetSelfEventRegistrationIntent: ({ eventId, addressId, clientApiParams, }: GetSelfEventRegistrationIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
2757
+ declare const useGetSelfEventRegistrationIntent: (eventId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2728
2758
 
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[];
2759
+ declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
2760
+ interface GetSelfSubcriptionProps extends SingleQueryParams {
2761
+ subscriptionId: string;
2735
2762
  }
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>>;
2763
+ declare const GetSelfSubcription: ({ subscriptionId, clientApiParams, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
2764
+ declare const useGetSelfSubcription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfSubcription>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2738
2765
 
2739
- declare const SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY: (eventId: string, registrationId: string, ticketId: string, quantity: number) => unknown[];
2740
- interface GetSelfEventTicketCouponIntentProps extends SingleQueryParams {
2766
+ declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unknown[];
2767
+ interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
2768
+ status?: SubscriptionStatus;
2769
+ }
2770
+ declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, queryClient, clientApiParams, locale, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
2771
+ declare const useGetSelfSubscriptions: (status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2772
+
2773
+ declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
2774
+ interface GetSelfSubscriptionPaymentsProps extends InfiniteQueryParams {
2775
+ subscriptionId: string;
2776
+ }
2777
+ declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
2778
+ declare const useGetSelfSubscriptionPayments: (subscriptionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptionPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2779
+
2780
+ declare const SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
2781
+ declare const SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2782
+ interface GetSelfEventAttendeePaymentProps extends SingleQueryParams {
2741
2783
  eventId: string;
2742
- registrationId: string;
2743
- ticketId: string;
2744
- quantity: number;
2784
+ paymentId: string;
2745
2785
  }
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>>;
2786
+ declare const GetSelfEventAttendeePayment: ({ eventId, paymentId, clientApiParams, }: GetSelfEventAttendeePaymentProps) => Promise<ConnectedXMResponse<Payment>>;
2787
+ declare const useGetSelfEventAttendeePayment: (eventId: string, paymentId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2748
2788
 
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 {
2789
+ interface ResponseWithQuestion extends RegistrationQuestionResponse {
2790
+ question: RegistrationQuestion;
2791
+ }
2792
+ interface PassWithResponseQuestions extends Pass {
2793
+ responses: ResponseWithQuestion[];
2794
+ }
2795
+ declare const SELF_EVENT_ATTENDEE_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
2796
+ declare const SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePass>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2797
+ interface GetSelfEventAttendeePassProps extends SingleQueryParams {
2752
2798
  eventId: string;
2753
- registrationId: string;
2754
- couponId: string;
2799
+ passId: string;
2755
2800
  }
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>>;
2801
+ declare const GetSelfEventAttendeePass: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassProps) => Promise<ConnectedXMResponse<PassWithResponseQuestions>>;
2802
+ declare const useGetSelfEventAttendeePass: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PassWithResponseQuestions>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2758
2803
 
2759
- declare const SELF_EVENT_REGISTRATION_COUPONS_QUERY_KEY: (eventId: string, registrationId: string) => QueryKey;
2760
- interface GetSelfEventRegistrationCouponsProps extends InfiniteQueryParams {
2804
+ declare const SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY: (eventId: string, passId: string, addressId: string, addOnIds: string[]) => QueryKey;
2805
+ interface GetSelfEventAttendeePassAddOnsIntentProps extends SingleQueryParams {
2761
2806
  eventId: string;
2762
- registrationId: string;
2807
+ passId: string;
2808
+ addOnIds: string[];
2809
+ addressId: string;
2763
2810
  }
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>>;
2811
+ declare const GetSelfEventAttendeePassAddOnsIntent: ({ eventId, passId, addOnIds, addressId, clientApiParams, }: GetSelfEventAttendeePassAddOnsIntentProps) => Promise<ConnectedXMResponse<PaymentIntent>>;
2812
+ declare const useGetSelfEventAttendeePassAddOnsIntent: (eventId: string, passId: string, addressId: string, addOnIds: string[], options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassAddOnsIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2766
2813
 
2767
- declare const SELF_EVENT_REGISTRATION_COUPON_REGISTRATIONS_QUERY_KEY: (eventId: string, registrationId: string, couponId: string) => QueryKey;
2768
- interface GetSelfEventRegistrationCouponPurchasesProps extends InfiniteQueryParams {
2814
+ declare const SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
2815
+ declare const SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeeCoupon>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2816
+ interface GetSelfEventAttendeeCouponProps extends SingleQueryParams {
2769
2817
  eventId: string;
2770
- registrationId: string;
2771
2818
  couponId: string;
2772
2819
  }
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>>;
2820
+ declare const GetSelfEventAttendeeCoupon: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponProps) => Promise<ConnectedXMResponse<ManagedCoupon>>;
2821
+ declare const useGetSelfEventAttendeeCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ManagedCoupon>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2775
2822
 
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 {
2823
+ declare const SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY: (eventId: string, couponId: string) => QueryKey;
2824
+ interface GetSelfEventAttendeeCouponPassesProps extends InfiniteQueryParams {
2779
2825
  eventId: string;
2826
+ couponId: string;
2780
2827
  }
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>>;
2828
+ declare const GetSelfEventAttendeeCouponPasses: ({ eventId, couponId, clientApiParams, }: GetSelfEventAttendeeCouponPassesProps) => Promise<ConnectedXMResponse<ManagedCouponPass[]>>;
2829
+ declare const useGetSelfEventAttendeeCouponPasses: (eventId?: string, couponId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeeCouponPasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCouponPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2783
2830
 
2784
- declare const SELF_EVENT_COUPONS_QUERY_KEY: (eventId: string) => QueryKey;
2785
- interface GetSelfEventCouponsProps extends InfiniteQueryParams {
2831
+ declare const SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY: (eventId: string) => QueryKey;
2832
+ interface GetSelfEventAttendeeCouponsProps extends InfiniteQueryParams {
2786
2833
  eventId: string;
2787
2834
  }
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>>;
2835
+ declare const GetSelfEventAttendeeCoupons: ({ eventId, clientApiParams, }: GetSelfEventAttendeeCouponsProps) => Promise<ConnectedXMResponse<ManagedCoupon[]>>;
2836
+ declare const useGetSelfEventAttendeeCoupons: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeeCoupons>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ManagedCoupon[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2790
2837
 
2791
- declare const EVENT_TRANSFER_LOGS_QUERY_KEY: (eventId: string) => QueryKey;
2792
- interface GetSelfEventTransfersLogsProps extends InfiniteQueryParams {
2838
+ declare const SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY: (eventId: string) => QueryKey;
2839
+ interface GetSelfEventAttendeeTransfersLogsProps extends InfiniteQueryParams {
2793
2840
  eventId: string;
2794
2841
  }
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>>;
2842
+ declare const GetSelfEventAttendeeTransfersLogs: ({ pageParam, pageSize, orderBy, search, eventId, clientApiParams, }: GetSelfEventAttendeeTransfersLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
2843
+ declare const useGetSelfEventAttendeeTransfersLogs: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventAttendeeTransfersLogs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<TransferLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
2797
2844
 
2798
2845
  declare const SELF_EVENT_ATTENDEE_QUERY_KEY: (eventId: string) => QueryKey;
2799
2846
  declare const SET_SELF_EVENT_ATTENDEE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendee>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -2803,7 +2850,25 @@ interface GetSelfEventAttendeeProps extends SingleQueryParams {
2803
2850
  declare const GetSelfEventAttendee: ({ eventId, clientApiParams, }: GetSelfEventAttendeeProps) => Promise<ConnectedXMResponse<Registration>>;
2804
2851
  declare const useGetSelfEventAttendee: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2805
2852
 
2806
- declare const SELF_EVENT_REGISTRATION_SESSION_PASSES_INTENT_QUERY_KEY: (eventId: string, registrationId: string, sessionId: string, sessionPassIds: string[]) => unknown[];
2853
+ declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
2854
+ declare const SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2855
+ interface GetSelfEventAttendeePassQuestionSectionsProps extends SingleQueryParams {
2856
+ eventId: string;
2857
+ passId: string;
2858
+ }
2859
+ declare const GetSelfEventAttendeePassQuestionSections: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
2860
+ declare const useGetSelfEventAttendeePassQuestionSections: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2861
+
2862
+ declare const SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
2863
+ declare const SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassAddOns>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
2864
+ interface GetSelfEventAttendeePassAddOnsProps extends SingleQueryParams {
2865
+ eventId: string;
2866
+ passId: string;
2867
+ }
2868
+ declare const GetSelfEventAttendeePassAddOns: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
2869
+ declare const useGetSelfEventAttendeePassAddOns: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2870
+
2871
+ declare const SELF_EVENT_ATTENDEE_SESSION_PASSES_INTENT_QUERY_KEY: (eventId: string, sessionId: string, addressId: string, sessionPassIds: string[]) => unknown[];
2807
2872
  type SessionPassesInput = {
2808
2873
  passId: string;
2809
2874
  responses: {
@@ -2811,35 +2876,14 @@ type SessionPassesInput = {
2811
2876
  value: string;
2812
2877
  }[];
2813
2878
  }[];
2814
- interface GetSelfEventRegistrationSessionPassesIntentProps extends SingleQueryParams {
2879
+ interface GetSelfEventAttendeeSessionPassesIntentProps extends SingleQueryParams {
2815
2880
  eventId: string;
2816
- registrationId: string;
2817
2881
  sessionId: string;
2882
+ addressId: string;
2818
2883
  sessionPasses: SessionPassesInput;
2819
2884
  }
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>>;
2885
+ declare const GetSelfEventAttendeeSessionPassesIntent: ({ eventId, sessionId, addressId, sessionPasses, clientApiParams, }: GetSelfEventAttendeeSessionPassesIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
2886
+ declare const useGetSelfEventAttendeeSessionPassesIntent: (eventId: string, sessionId: string, addressId: string, sessionPasses: SessionPassesInput, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeeSessionPassesIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
2843
2887
 
2844
2888
  declare const SELF_QUERY_KEY: (ignoreExecuteAs?: boolean) => QueryKey;
2845
2889
  declare const SET_SELF_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelf>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -3018,12 +3062,13 @@ interface GetInvoiceProps extends SingleQueryParams {
3018
3062
  declare const GetInvoice: ({ invoiceId, clientApiParams, }: GetInvoiceProps) => Promise<ConnectedXMResponse<Invoice>>;
3019
3063
  declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3020
3064
 
3021
- declare const SELF_INVOICE_INTENT_QUERY_KEY: (invoiceId: string) => unknown[];
3065
+ declare const SELF_INVOICE_INTENT_QUERY_KEY: (invoiceId: string, addressId: string) => unknown[];
3022
3066
  interface GetInvoiceIntentProps extends SingleQueryParams {
3023
3067
  invoiceId: string;
3068
+ addressId: string;
3024
3069
  }
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>>;
3070
+ declare const GetInvoiceIntent: ({ invoiceId, addressId, clientApiParams, }: GetInvoiceIntentProps) => Promise<Awaited<ConnectedXMResponse<PaymentIntent>>>;
3071
+ declare const useGetInvoiceIntent: (invoiceId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceIntent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3027
3072
 
3028
3073
  declare const LISTING_QUERY_KEY: (eventId: string) => QueryKey;
3029
3074
  declare const SET_LISTING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListing>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
@@ -3065,39 +3110,39 @@ interface GetSelfEventListingQuestionsProps extends InfiniteQueryParams {
3065
3110
  declare const GetSelfEventListingQuestions: ({ eventId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestion[]>>;
3066
3111
  declare const useGetSelfEventListingQuestions: (eventId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestion[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3067
3112
 
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;
3113
+ declare const LISTING_ATTENDEE_QUERY_KEY: (eventId: string, accountId: string) => QueryKey;
3114
+ declare const SET_LISTING_ATTENDEE_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_ATTENDEE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
3070
3115
  interface GetSelfEventListingRegistrationProps extends SingleQueryParams {
3071
3116
  eventId: string;
3072
- registrationId: string;
3117
+ accountId: string;
3073
3118
  }
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>>;
3119
+ declare const GetSelfEventListingRegistration: ({ eventId, accountId, clientApiParams, }: GetSelfEventListingRegistrationProps) => Promise<ConnectedXMResponse<ListingRegistration>>;
3120
+ declare const useGetSelfEventListingRegistration: (eventId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingRegistration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3076
3121
 
3077
- declare const LISTING_REGISTRATIONS_QUERY_KEY: (eventId: string, status?: keyof typeof PurchaseStatus) => unknown[];
3078
- interface GetSelfEventListingRegistrationsProps extends InfiniteQueryParams {
3122
+ declare const LISTING_ATTENDEES_QUERY_KEY: (eventId: string, status?: keyof typeof PurchaseStatus) => unknown[];
3123
+ interface GetSelfEventListingAttendeesProps extends InfiniteQueryParams {
3079
3124
  eventId: string;
3080
3125
  status?: keyof typeof PurchaseStatus;
3081
3126
  }
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>>;
3127
+ declare const GetSelfEventListingAttendees: ({ eventId, pageParam, pageSize, orderBy, search, status, clientApiParams, }: GetSelfEventListingAttendeesProps) => Promise<ConnectedXMResponse<ListingRegistration[]>>;
3128
+ declare const useGetSelfEventListingsRegistrations: (eventId: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingAttendees>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ListingRegistration[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3084
3129
 
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 {
3130
+ declare const LISTING_PASS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
3131
+ declare const SET_LISTING_PASS_QUERY_KEY: (client: QueryClient, keyParams: Parameters<typeof LISTING_PASS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventListingPass>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
3132
+ interface GetSelfEventListingPassProps extends SingleQueryParams {
3088
3133
  eventId: string;
3089
- purchaseId: string;
3134
+ passId: string;
3090
3135
  }
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>>;
3136
+ declare const GetSelfEventListingPass: ({ eventId, passId, clientApiParams, }: GetSelfEventListingPassProps) => Promise<ConnectedXMResponse<ListingPass>>;
3137
+ declare const useGetSelfEventListingPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3093
3138
 
3094
- declare const LISTING_PURCHASES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => unknown[];
3095
- interface GetSelfEventListingPurchasesProps extends InfiniteQueryParams {
3139
+ declare const LISTING_PASSES_QUERY_KEY: (eventId: string, checkedIn?: boolean) => unknown[];
3140
+ interface GetSelfEventListingPassesProps extends InfiniteQueryParams {
3096
3141
  eventId: string;
3097
3142
  checkedIn?: boolean;
3098
3143
  }
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>>;
3144
+ declare const GetSelfEventListingPasses: ({ eventId, checkedIn, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfEventListingPassesProps) => Promise<ConnectedXMResponse<ListingPass[]>>;
3145
+ declare const useGetSelfEventListingPasses: (eventId: string, checkedIn?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfEventListingPasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ListingPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3101
3146
 
3102
3147
  declare const LISTINGS_QUERY_KEY: (past: boolean) => QueryKey;
3103
3148
  interface GetSelfEventListingsProps extends InfiniteQueryParams {
@@ -3120,15 +3165,15 @@ interface GetSelfEventListingReportProps extends SingleQueryParams {
3120
3165
  declare const GetSelfEventListingReport: ({ eventId, clientApiParams, }: GetSelfEventListingReportProps) => Promise<ConnectedXMResponse<any>>;
3121
3166
  declare const useGetSelfEventListingReport: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventListingReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3122
3167
 
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 {
3168
+ declare const LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY: (eventId: string, accountId: string, passId: string) => QueryKey;
3169
+ declare const SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetListingAttendeePassQuestionSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
3170
+ interface GetListingAttendeePassQuestionSectionsProps extends SingleQueryParams {
3126
3171
  eventId: string;
3127
- registrationId: string;
3128
- purchaseId: string;
3172
+ accountId: string;
3173
+ passId: string;
3129
3174
  }
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>>;
3175
+ declare const GetListingAttendeePassQuestionSections: ({ eventId, accountId, passId, clientApiParams, }: GetListingAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
3176
+ declare const useGetListingAttendeePassQuestionSections: (eventId: string, accountId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetListingAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
3132
3177
 
3133
3178
  declare const INTERESTS_QUERY_KEY: () => QueryKey;
3134
3179
  declare const SET_INTERESTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof INTERESTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetInterests>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
@@ -3617,14 +3662,6 @@ interface CompleteEventActivationParams extends MutationParams {
3617
3662
  declare const CompleteEventActivation: ({ eventId, activationId, code, clientApiParams, queryClient, }: CompleteEventActivationParams) => Promise<ConnectedXMResponse<EventActivation>>;
3618
3663
  declare const useCompleteEventActivation: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CompleteEventActivation>>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventActivation>, axios.AxiosError<ConnectedXMResponse<EventActivation>, any>, Omit<CompleteEventActivationParams, "queryClient" | "clientApiParams">, unknown>;
3619
3664
 
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
3665
  interface CapturePaymentIntentParams extends MutationParams {
3629
3666
  intent: PaymentIntent;
3630
3667
  }
@@ -3650,6 +3687,28 @@ interface UpdateSelfAddressParams extends MutationParams {
3650
3687
  declare const UpdateSelfAddress: ({ addressId, address, queryClient, clientApiParams, }: UpdateSelfAddressParams) => Promise<ConnectedXMResponse<AccountAddress>>;
3651
3688
  declare const useUpdateSelfAddress: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfAddress>>, Omit<UpdateSelfAddressParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<AccountAddress>, any>, Omit<UpdateSelfAddressParams, "queryClient" | "clientApiParams">, unknown>;
3652
3689
 
3690
+ interface CreateSelfLeadParams extends MutationParams {
3691
+ passId: string;
3692
+ }
3693
+ declare const CreateSelfLead: ({ passId, clientApiParams, queryClient, }: CreateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
3694
+ declare const useCreateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfLead>>, Omit<CreateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<CreateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
3695
+
3696
+ interface DeleteSelfLeadParams extends MutationParams {
3697
+ leadId: string;
3698
+ }
3699
+ declare const DeleteSelfLead: ({ leadId, clientApiParams, queryClient, }: DeleteSelfLeadParams) => Promise<ConnectedXMResponse<null>>;
3700
+ declare const useDeleteSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfLead>>, Omit<DeleteSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
3701
+
3702
+ interface UpdateSelfLeadParams extends MutationParams {
3703
+ leadId: string;
3704
+ lead: {
3705
+ status?: "new" | "favorited" | "archived" | "deleted";
3706
+ note?: string;
3707
+ };
3708
+ }
3709
+ declare const UpdateSelfLead: ({ leadId, lead, queryClient, clientApiParams, }: UpdateSelfLeadParams) => Promise<ConnectedXMResponse<Lead>>;
3710
+ declare const useUpdateSelfLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfLead>>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<UpdateSelfLeadParams, "queryClient" | "clientApiParams">, unknown>;
3711
+
3653
3712
  interface AddSelfChatChannelMemberParams extends MutationParams {
3654
3713
  channelId: string;
3655
3714
  accountId: string;
@@ -3699,35 +3758,66 @@ declare const useUpdateSelfChatChannelNotifications: (options?: Omit<MutationOpt
3699
3758
 
3700
3759
  interface SelectSelfEventRegistrationCouponParams extends MutationParams {
3701
3760
  eventId: string;
3702
- registrationId: string;
3703
3761
  couponId: string;
3704
3762
  }
3705
- declare const SelectSelfEventRegistrationCoupon: ({ eventId, registrationId, couponId, clientApiParams, queryClient, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
3763
+ declare const SelectSelfEventRegistrationCoupon: ({ eventId, couponId, clientApiParams, queryClient, }: SelectSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
3706
3764
  declare const useSelectSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SelectSelfEventRegistrationCoupon>>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SelectSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
3707
3765
 
3708
3766
  interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
3709
3767
  eventId: string;
3710
- registrationId: string;
3711
3768
  }
3712
- declare const RemoveSelfEventRegistrationCoupon: ({ eventId, registrationId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
3769
+ declare const RemoveSelfEventRegistrationCoupon: ({ eventId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationCouponParams) => Promise<ConnectedXMResponse<Registration>>;
3713
3770
  declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationCoupon>>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationCouponParams, "queryClient" | "clientApiParams">, unknown>;
3714
3771
 
3715
- interface RemoveSelfEventRegistrationPurchaseParams extends MutationParams {
3772
+ interface UpdateSelfEventRegistrationPassesParams extends MutationParams {
3716
3773
  eventId: string;
3717
- registrationId: string;
3718
- purchaseId: string;
3774
+ passes: {
3775
+ id: string;
3776
+ ticketId: string;
3777
+ }[];
3719
3778
  }
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>;
3779
+ declare const UpdateSelfEventRegistrationPasses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPassesParams) => Promise<ConnectedXMResponse<null>>;
3780
+ declare const useUpdateSelfEventRegistrationPasses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPasses>>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPassesParams, "queryClient" | "clientApiParams">, unknown>;
3722
3781
 
3723
- interface AddSelfEventRegistrationPurchaseParams extends MutationParams {
3782
+ interface UpdateSelfEventRegistrationPurchaseAddOnParams extends MutationParams {
3724
3783
  eventId: string;
3725
- registrationId: string;
3726
- ticketId: string;
3727
- quantity: number;
3784
+ passes: {
3785
+ id: string;
3786
+ addOns: {
3787
+ id: string;
3788
+ }[];
3789
+ }[];
3790
+ }
3791
+ declare const UpdateSelfEventRegistrationPurchaseAddOn: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationPurchaseAddOnParams) => Promise<ConnectedXMResponse<null>>;
3792
+ declare const useUpdateSelfEventRegistrationPurchaseAddOn: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPurchaseAddOn>>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPurchaseAddOnParams, "queryClient" | "clientApiParams">, unknown>;
3793
+
3794
+ interface UpdateSelfEventRegistrationReservationsParams extends MutationParams {
3795
+ eventId: string;
3796
+ passes: {
3797
+ id: string;
3798
+ reservation: {
3799
+ id: string;
3800
+ eventRoomTypeId: string;
3801
+ start?: Date | string;
3802
+ end?: Date | string;
3803
+ };
3804
+ }[];
3728
3805
  }
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>;
3806
+ declare const UpdateSelfEventRegistrationReservations: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationReservationsParams) => Promise<ConnectedXMResponse<null>>;
3807
+ declare const useUpdateSelfEventRegistrationReservations: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationReservations>>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationReservationsParams, "queryClient" | "clientApiParams">, unknown>;
3808
+
3809
+ interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
3810
+ eventId: string;
3811
+ passes: {
3812
+ id: string;
3813
+ responses: {
3814
+ questionId: number;
3815
+ value: string;
3816
+ }[];
3817
+ }[];
3818
+ }
3819
+ declare const UpdateSelfEventRegistrationResponses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
3820
+ declare const useUpdateSelfEventRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponses>>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3731
3821
 
3732
3822
  interface SubmitStripe {
3733
3823
  type: "stripe";
@@ -3749,111 +3839,65 @@ interface SubmitPaypalResponse {
3749
3839
  type SubmitResponse = SubmitStripeResponse | SubmitPaypalResponse;
3750
3840
  interface SubmitSelfEventRegistrationParams extends MutationParams {
3751
3841
  eventId: string;
3752
- registrationId: string;
3753
3842
  payment?: SubmitPayment;
3754
3843
  }
3755
- declare const SubmitSelfEventRegistration: ({ eventId, registrationId, payment, clientApiParams, queryClient, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
3844
+ declare const SubmitSelfEventRegistration: ({ eventId, payment, clientApiParams, queryClient, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
3756
3845
  declare const useSubmitSelfEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistration>>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
3757
3846
 
3758
- interface UpdateSelfEventRegistrationQuestionResponseParams extends MutationParams {
3759
- 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 {
3847
+ interface AddFreePassAddOnsParams extends MutationParams {
3788
3848
  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;
3849
+ passId: string;
3802
3850
  addOnIds: string[];
3803
3851
  }
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>;
3852
+ declare const AddFreePassAddOns: ({ eventId, passId, addOnIds, clientApiParams, queryClient, }: AddFreePassAddOnsParams) => Promise<ConnectedXMResponse<Pass>>;
3853
+ declare const useAddFreePassAddOns: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddFreePassAddOns>>, Omit<AddFreePassAddOnsParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<AddFreePassAddOnsParams, "queryClient" | "clientApiParams">, unknown>;
3806
3854
 
3807
- interface UpdateSelfEventRegistrationPurchaseResponsesParams extends MutationParams {
3855
+ interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
3808
3856
  eventId: string;
3809
- registrationId: string;
3810
- purchaseId: string;
3857
+ passId: string;
3811
3858
  questions: {
3812
3859
  id: number;
3813
3860
  value: string;
3814
3861
  }[];
3815
3862
  }
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>;
3863
+ declare const UpdateSelfEventAttendeePassResponses: ({ eventId, passId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassResponsesParams) => Promise<ConnectedXMResponse<null>>;
3864
+ declare const useUpdateSelfEventAttendeePassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeePassResponses>>, Omit<UpdateSelfEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventAttendeePassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3818
3865
 
3819
- interface TransferPurchaseParams extends MutationParams {
3866
+ interface TransferPassParams extends MutationParams {
3820
3867
  passId: string;
3821
3868
  eventId: string;
3822
- registrationId: string;
3823
3869
  receiverId: string;
3824
3870
  }
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>;
3871
+ declare const TransferPass: ({ passId, eventId, receiverId, clientApiParams, queryClient, }: TransferPassParams) => Promise<ConnectedXMResponse<null>>;
3872
+ declare const useTransferPass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPass>>, Omit<TransferPassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<TransferPassParams, "queryClient" | "clientApiParams">, unknown>;
3827
3873
 
3828
- interface CancelPurchaseParams extends MutationParams {
3829
- purchaseId: string;
3874
+ interface CancelPassParams extends MutationParams {
3875
+ passId: string;
3830
3876
  eventId: string;
3831
3877
  registrationId: string;
3832
3878
  issueRefund?: boolean;
3833
3879
  }
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>;
3880
+ declare const CancelPass: ({ passId, eventId, issueRefund, clientApiParams, queryClient, }: CancelPassParams) => Promise<ConnectedXMResponse<Pass>>;
3881
+ declare const useCancelPass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelPass>>, Omit<CancelPassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<CancelPassParams, "queryClient" | "clientApiParams">, unknown>;
3836
3882
 
3837
3883
  interface SubmitSelfEventRegistrationSessionPassesParams extends MutationParams {
3838
3884
  eventId: string;
3839
- registrationId: string;
3840
3885
  sessionId: string;
3841
3886
  sessionPasses: SessionPassesInput;
3842
3887
  }
3843
- declare const SubmitSelfEventRegistrationSessionPasses: ({ eventId, registrationId, sessionId, sessionPasses, clientApiParams, queryClient, }: SubmitSelfEventRegistrationSessionPassesParams) => Promise<ConnectedXMResponse<null>>;
3888
+ declare const SubmitSelfEventRegistrationSessionPasses: ({ eventId, sessionId, sessionPasses, clientApiParams, queryClient, }: SubmitSelfEventRegistrationSessionPassesParams) => Promise<ConnectedXMResponse<null>>;
3844
3889
  declare const useSubmitSelfEventRegistrationSessionPasses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistrationSessionPasses>>, Omit<SubmitSelfEventRegistrationSessionPassesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<SubmitSelfEventRegistrationSessionPassesParams, "queryClient" | "clientApiParams">, unknown>;
3845
3890
 
3846
3891
  interface UpdateSelfEventRegistrationPurchaseSessionResponsesParams extends MutationParams {
3847
3892
  eventId: string;
3848
- registrationId: string;
3849
- purchaseId: string;
3893
+ passId: string;
3850
3894
  sessionPassId: string;
3851
3895
  responses: {
3852
3896
  questionId: string;
3853
3897
  value: string | undefined;
3854
3898
  }[];
3855
3899
  }
3856
- declare const UpdateSelfEventRegistrationPurchaseSessionResponses: ({ eventId, registrationId, purchaseId, sessionPassId, responses, clientApiParams, }: UpdateSelfEventRegistrationPurchaseSessionResponsesParams) => Promise<ConnectedXMResponse<null>>;
3900
+ declare const UpdateSelfEventRegistrationPurchaseSessionResponses: ({ eventId, passId, sessionPassId, responses, clientApiParams, }: UpdateSelfEventRegistrationPurchaseSessionResponsesParams) => Promise<ConnectedXMResponse<null>>;
3857
3901
  declare const useUpdateSelfEventRegistrationPurchaseSessionResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationPurchaseSessionResponses>>, Omit<UpdateSelfEventRegistrationPurchaseSessionResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventRegistrationPurchaseSessionResponsesParams, "queryClient" | "clientApiParams">, unknown>;
3858
3902
 
3859
3903
  interface CancelSubscriptionParams extends MutationParams {
@@ -3984,13 +4028,6 @@ interface UpdateSelfImageParams extends MutationParams {
3984
4028
  declare const UpdateSelfImage: ({ base64, clientApiParams, queryClient, }: UpdateSelfImageParams) => Promise<ConnectedXMResponse<Self>>;
3985
4029
  declare const useUpdateSelfImage: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfImage>>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<Self>, any>, Omit<UpdateSelfImageParams, "queryClient" | "clientApiParams">, unknown>;
3986
4030
 
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
4031
  interface UpdateSelfNotificationPreferencesParams extends MutationParams {
3995
4032
  newFollowerPush?: boolean;
3996
4033
  newFollowerEmail?: boolean;
@@ -4309,21 +4346,21 @@ interface RemoveListingSponsorParams extends MutationParams {
4309
4346
  declare const RemoveListingSponsor: ({ eventId, sponsorId, clientApiParams, queryClient, }: RemoveListingSponsorParams) => Promise<ConnectedXMResponse<EventListing>>;
4310
4347
  declare const useRemoveListingSponsor: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingSponsor>>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveListingSponsorParams, "queryClient" | "clientApiParams">, unknown>;
4311
4348
 
4312
- interface CheckinListingRegistrationPurchaseParams extends MutationParams {
4349
+ interface CheckinListingAttendeePassParams extends MutationParams {
4313
4350
  eventId: string;
4314
- registrationId: string;
4315
- purchaseId: string;
4351
+ accountId: string;
4352
+ passId: string;
4316
4353
  }
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>;
4354
+ declare const CheckinListingAttendeePass: ({ eventId, accountId, passId, clientApiParams, queryClient, }: CheckinListingAttendeePassParams) => Promise<ConnectedXMResponse<Pass>>;
4355
+ declare const useCheckinListingAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CheckinListingAttendeePass>>, Omit<CheckinListingAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Pass>, axios.AxiosError<ConnectedXMResponse<Pass>, any>, Omit<CheckinListingAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
4319
4356
 
4320
- interface UndoCheckinListingRegistrationPurchaseParams extends MutationParams {
4357
+ interface UndoCheckinListingAttendeePassParams extends MutationParams {
4321
4358
  eventId: string;
4322
- registrationId: string;
4323
- purchaseId: string;
4359
+ accountId: string;
4360
+ passId: string;
4324
4361
  }
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>;
4362
+ declare const UndoCheckinListingAttendeePass: ({ eventId, accountId, passId, clientApiParams, queryClient, }: UndoCheckinListingAttendeePassParams) => Promise<ConnectedXMResponse<ListingPass>>;
4363
+ declare const useUndoCheckinListingAttendeePass: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UndoCheckinListingAttendeePass>>, Omit<UndoCheckinListingAttendeePassParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<ListingPass>, axios.AxiosError<ConnectedXMResponse<ListingPass>, any>, Omit<UndoCheckinListingAttendeePassParams, "queryClient" | "clientApiParams">, unknown>;
4327
4364
 
4328
4365
  interface UpdateListingParams extends MutationParams {
4329
4366
  eventId: string;
@@ -4433,17 +4470,17 @@ interface RemoveListingCoHostParams extends MutationParams {
4433
4470
  declare const RemoveListingCoHost: ({ eventId, accountId, clientApiParams, queryClient, }: RemoveListingCoHostParams) => Promise<ConnectedXMResponse<EventListing>>;
4434
4471
  declare const useRemoveListingCoHost: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveListingCoHost>>, Omit<RemoveListingCoHostParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventListing>, axios.AxiosError<ConnectedXMResponse<EventListing>, any>, Omit<RemoveListingCoHostParams, "queryClient" | "clientApiParams">, unknown>;
4435
4472
 
4436
- interface UpdateListingRegistrationPurchaseResponsesParams extends MutationParams {
4473
+ interface UpdateListingRegistrationPassResponsesParams extends MutationParams {
4437
4474
  eventId: string;
4438
- registrationId: string;
4439
- purchaseId: string;
4475
+ accountId: string;
4476
+ passId: string;
4440
4477
  questions: {
4441
4478
  id: number;
4442
4479
  value: string;
4443
4480
  }[];
4444
4481
  }
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>;
4482
+ declare const UpdateListingRegistrationPassResponses: ({ eventId, accountId, passId, questions, clientApiParams, queryClient, }: UpdateListingRegistrationPassResponsesParams) => Promise<ConnectedXMResponse<null>>;
4483
+ declare const useUpdateListingRegistrationPassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingRegistrationPassResponses>>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
4447
4484
 
4448
4485
  interface UploadFileParams extends MutationParams {
4449
4486
  dataUri: string;
@@ -4582,4 +4619,4 @@ interface EnableIntegrationParams extends MutationParams {
4582
4619
  declare const EnableIntegration: ({ type, clientApiParams, queryClient, }: EnableIntegrationParams) => Promise<ConnectedXMResponse<Integration>>;
4583
4620
  declare const useEnableIntegration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof EnableIntegration>>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<Integration>, any>, Omit<EnableIntegrationParams, "queryClient" | "clientApiParams">, unknown>;
4584
4621
 
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 };
4622
+ export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, ALL_GROUP_EVENTS, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountShare, type AccountTier, AccountType, type Activity, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, AddContentInterest, type AddContentInterestParams, AddFreePassAddOns, type AddFreePassAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadMember, type AddThreadMemberParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, AddThreadMessageReply, type AddThreadMessageReplyParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePass, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSessionPass, type BaseSessionQuestion, type BaseSessionQuestionResponse, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockIntegration, type BlockIntegrationParams, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_INTERESTS_QUERY_KEY, CONTENT_QUERY_KEY, CUSTOM_ERROR_CODES, CacheIndividualQueries, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, type CreateActivity, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, CreateChannelContent, type CreateChannelContentParams, type CreateChannelParams, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, type CreateInterest, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThread, CreateThreadMessage, type CreateThreadMessageParams, type CreateThreadParams, Currency, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadMember, type DeleteThreadMemberParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_FAQ_SECTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUERY_KEY, EVENT_FAQ_SECTION_QUESTIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, type EventAddOn, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, EventSource, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetAllGroupEvents, type GetAllGroupEventsProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContent, GetContentInterests, type GetContentInterestsParams, type GetContentParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetManagedChannel, GetManagedChannelCollection, GetManagedChannelCollectionContents, type GetManagedChannelCollectionContentsParams, type GetManagedChannelCollectionParams, GetManagedChannelCollections, type GetManagedChannelCollectionsParams, GetManagedChannelContent, GetManagedChannelContentActivities, type GetManagedChannelContentActivitiesParams, GetManagedChannelContentGuests, type GetManagedChannelContentGuestsParams, GetManagedChannelContentInterests, type GetManagedChannelContentInterestsParams, type GetManagedChannelContentParams, GetManagedChannelContents, type GetManagedChannelContentsParams, GetManagedChannelInterests, type GetManagedChannelInterestsParams, type GetManagedChannelParams, GetManagedChannelSubscribers, type GetManagedChannelSubscribersParams, GetManagedChannels, type GetManagedChannelsParams, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventAttendee, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeSessionPassesIntent, type GetSelfEventAttendeeSessionPassesIntentProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetThread, GetThreadEvent, type GetThreadEventProps, GetThreadEvents, type GetThreadEventsProps, GetThreadGroup, type GetThreadGroupProps, GetThreadGroups, type GetThreadGroupsProps, GetThreadMember, type GetThreadMemberProps, GetThreadMembers, type GetThreadMembersProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessageReplies, type GetThreadMessageRepliesProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetThreads, type GetThreadsProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkPreview, type ListingPass, type ListingRegistration, MANAGED_CHANNELS_QUERY_KEY, MANAGED_CHANNEL_COLLECTIONS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_COLLECTION_QUERY_KEY, MANAGED_CHANNEL_CONTENTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, MANAGED_CHANNEL_CONTENT_GUESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_CONTENT_QUERY_KEY, MANAGED_CHANNEL_INTERESTS_QUERY_KEY, MANAGED_CHANNEL_QUERY_KEY, MANAGED_CHANNEL_SUBSCRIBERS_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, MarkUnread, type MarkUnreadParams, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Pass, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_SESSION_PASSES_INTENT_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ALL_GROUP_EVENTS_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_FAQ_SECTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_MANAGED_CHANNELS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTIONS_QUERY_DATA, SET_MANAGED_CHANNEL_COLLECTION_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENTS_QUERY_DATA, SET_MANAGED_CHANNEL_CONTENT_QUERY_DATA, SET_MANAGED_CHANNEL_QUERY_DATA, SET_MANAGED_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_MANAGED_CONTENT_ACTIVITIES_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_EVENTS_QUERY_DATA, SET_THREAD_EVENT_QUERY_DATA, SET_THREAD_GROUPS_QUERY_DATA, SET_THREAD_GROUP_QUERY_DATA, SET_THREAD_MEMBERS_QUERY_DATA, SET_THREAD_MEMBER_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REPLIES_QUERY_DATA, SET_THREAD_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, type Scan, type Schedule, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, SelfCreateActivity, type SelfCreateActivityParams, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, type SessionLocation, type SessionPass, SessionPassStatus, type SessionPassesInput, type SessionQuestion, type SessionQuestionResponse, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, SubmitSelfEventRegistrationSessionPasses, type SubmitSelfEventRegistrationSessionPassesParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, THREADS_QUERY_KEY, THREAD_EVENTS_QUERY_KEY, THREAD_EVENT_QUERY_KEY, THREAD_GROUPS_QUERY_KEY, THREAD_GROUP_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MEMBER_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REPLIES_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, ThreadAccessLevel, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, ThreadMemberRole, type ThreadMessage, type ThreadMessageReaction, ThreadMessageType, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationPurchaseSessionResponses, type UpdateSelfEventRegistrationPurchaseSessionResponsesParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateThread, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadChannelContentImage, type UploadChannelContentImageParams, UploadFile, type UploadFileParams, type User, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddFreePassAddOns, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventSession, useAddSelfInterests, useAddThreadMember, useAddThreadMessageReaction, useAddThreadMessageReply, useBlockIntegration, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThread, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteReshare, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadMember, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannels, useGetContent, useGetContentInterests, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetLevel, useGetLevelSponsors, useGetLevels, useGetListingAttendeePassQuestionSections, useGetManagedChannel, useGetManagedChannelCollection, useGetManagedChannelCollectionContents, useGetManagedChannelCollections, useGetManagedChannelContent, useGetManagedChannelContentActivities, useGetManagedChannelContentGuests, useGetManagedChannelContentInterests, useGetManagedChannelContents, useGetManagedChannelInterests, useGetManagedChannelSubscribers, useGetManagedChannels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeSessionPassesIntent, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfFeed, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetThread, useGetThreadEvent, useGetThreadEvents, useGetThreadGroup, useGetThreadGroups, useGetThreadMember, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageReplies, useGetThreadMessages, useGetThreads, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, useMarkUnread, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelfCreateActivity, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useSubmitSelfEventRegistration, useSubmitSelfEventRegistrationSessionPasses, useTransferPass, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationPurchaseSessionResponses, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateThread, useUpdateThreadMember, useUpdateThreadMessage, useUploadChannelContentImage, useUploadFile };