@connectedxm/client 5.0.10 → 6.0.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.
Files changed (3) hide show
  1. package/dist/index.d.ts +143 -39
  2. package/dist/index.js +163 -84
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -387,6 +387,7 @@ interface RegistrationEventDetails extends BaseEvent {
387
387
  }[];
388
388
  _count: {
389
389
  sections: number;
390
+ followups: number;
390
391
  coupons: number;
391
392
  addOns: number;
392
393
  roomTypes: number;
@@ -460,6 +461,7 @@ interface RegistrationQuestionResponse extends BaseRegistrationQuestionResponse
460
461
  }
461
462
  interface BaseRegistrationSection {
462
463
  id: string;
464
+ eventId: string;
463
465
  name: string;
464
466
  description: string | null;
465
467
  sortOrder: number;
@@ -470,6 +472,19 @@ interface RegistrationSection extends BaseRegistrationSection {
470
472
  eventAddOns: BaseEventAddOn[];
471
473
  questions: RegistrationQuestion[];
472
474
  }
475
+ interface BaseRegistrationFollowup {
476
+ id: string;
477
+ eventId: string;
478
+ name: string;
479
+ description: string | null;
480
+ sortOrder: number;
481
+ }
482
+ interface RegistrationFollowup extends BaseRegistrationFollowup {
483
+ accountTiers: BaseAccountTier[];
484
+ eventTickets: BasePassType[];
485
+ eventAddOns: BaseEventAddOn[];
486
+ questions: RegistrationQuestion[];
487
+ }
473
488
  interface EventListing extends Event {
474
489
  visible: boolean;
475
490
  newActivityCreatorEmailNotification: boolean;
@@ -569,7 +584,7 @@ interface BasePass {
569
584
  attendee: BaseRegistration;
570
585
  ticketId: string;
571
586
  ticket: BasePassType;
572
- passAddOns: PassAddOn[];
587
+ passAddOns: BasePassAddon[];
573
588
  reservationId: string | null;
574
589
  reservation: BaseEventRoomTypeReservation | null;
575
590
  responses: BaseRegistrationQuestionResponse[];
@@ -583,13 +598,14 @@ interface Pass extends BasePass {
583
598
  package: BaseAttendeePackage | null;
584
599
  matches: BaseMatch[];
585
600
  updatedAt: string;
586
- amtPaid: number;
587
- amtRefunded: number;
588
601
  payerId: string | null;
589
602
  }
590
- interface PassAddOn {
603
+ interface BasePassAddon {
591
604
  addOnId: string;
592
605
  addOn: BaseEventAddOn;
606
+ createdAt: string;
607
+ }
608
+ interface PassAddOn extends BasePassAddon {
593
609
  }
594
610
  interface ListingPass extends BasePass {
595
611
  attendee: BaseRegistration & {
@@ -1236,28 +1252,85 @@ declare enum RegistrationPaymentType {
1236
1252
  interface BasePayment {
1237
1253
  id: string;
1238
1254
  type: RegistrationPaymentType;
1255
+ source: string;
1239
1256
  address1: string;
1240
1257
  address2: string;
1241
1258
  city: string;
1242
1259
  state: string;
1243
1260
  country: string;
1244
1261
  zip: string;
1245
- subTotal: number;
1246
1262
  salesTax: number;
1247
1263
  salesTaxRate: string | null;
1248
- chargedAmt: number;
1249
1264
  currency: string;
1250
1265
  last4: string | null;
1251
1266
  stripeId: string | null;
1267
+ lineItems: BasePaymentLineItem[];
1252
1268
  createdAt: string;
1253
1269
  }
1254
1270
  interface Payment extends BasePayment {
1255
1271
  refunds: BasePayment[];
1256
1272
  refunded: BasePayment | null;
1257
- addOns: BaseEventAddOn[];
1258
- purchases: BasePass[];
1259
- coupons: BaseCoupon[];
1260
- accesses: BaseEventSessionAccess[];
1273
+ integration: {
1274
+ type: string;
1275
+ };
1276
+ event: BaseEvent | null;
1277
+ registration: BaseRegistration | null;
1278
+ passType: BasePassType | null;
1279
+ pass: BasePass | null;
1280
+ session: BaseSession | null;
1281
+ place: BaseBookingPlace | null;
1282
+ space: BaseBookingSpace | null;
1283
+ membership: BaseSubscriptionProduct | null;
1284
+ coupon: BaseCoupon | null;
1285
+ lineItems: PaymentLineItem[];
1286
+ }
1287
+ declare enum PaymentLineItemType {
1288
+ pass = "pass",
1289
+ package = "package",
1290
+ reservation = "reservation",
1291
+ addOn = "addOn",
1292
+ access = "access",
1293
+ invoice = "invoice",
1294
+ booking = "booking",
1295
+ coupon = "coupon",
1296
+ subscription = "subscription"
1297
+ }
1298
+ interface BasePaymentLineItem {
1299
+ id: string;
1300
+ type: keyof typeof PaymentLineItemType;
1301
+ name: string;
1302
+ quantity: number;
1303
+ amount: number;
1304
+ paid: number;
1305
+ refunded: number;
1306
+ discount: number;
1307
+ taxable: boolean;
1308
+ eventId: string | null;
1309
+ accountId: string | null;
1310
+ addOnId: string | null;
1311
+ sessionId: string | null;
1312
+ placeId: string | null;
1313
+ spaceId: string | null;
1314
+ passId: string | null;
1315
+ packageId: string | null;
1316
+ passAddOnId: string | null;
1317
+ reservationId: string | null;
1318
+ accessId: string | null;
1319
+ invoiceId: string | null;
1320
+ bookingId: string | null;
1321
+ subscriptionId: string | null;
1322
+ paymentId: number;
1323
+ }
1324
+ interface PaymentLineItem extends BasePaymentLineItem {
1325
+ pass: BasePass | null;
1326
+ package: BaseAttendeePackage | null;
1327
+ passAddOn: BasePassAddon | null;
1328
+ reservation: BaseEventRoomTypeReservation | null;
1329
+ access: BaseEventSessionAccess | null;
1330
+ invoice: BaseInvoice | null;
1331
+ booking: BaseBooking | null;
1332
+ subscription: BaseSubscription | null;
1333
+ payment: BasePayment | null;
1261
1334
  }
1262
1335
  declare enum LeadStatus {
1263
1336
  new = "new",
@@ -1567,7 +1640,7 @@ interface BaseInvoice {
1567
1640
  }
1568
1641
  interface Invoice extends BaseInvoice {
1569
1642
  lineItems: BaseInvoiceLineItem[];
1570
- payments: BasePayment[];
1643
+ lineItem: PaymentLineItem | null;
1571
1644
  createdAt: string;
1572
1645
  updatedAt: string;
1573
1646
  type?: string;
@@ -1671,8 +1744,17 @@ interface InvitableAccount extends Account {
1671
1744
  role: GroupMembershipRole;
1672
1745
  }[];
1673
1746
  }
1747
+ declare enum PaymentIntentSource {
1748
+ registration = "registration",
1749
+ invoice = "invoice",
1750
+ pass = "pass",
1751
+ coupon = "coupon",
1752
+ session = "session",
1753
+ booking = "booking"
1754
+ }
1674
1755
  interface BasePaymentIntent {
1675
1756
  id: string;
1757
+ source: PaymentIntentSource;
1676
1758
  integrationId: string;
1677
1759
  accountId: string;
1678
1760
  description: string | null;
@@ -1690,17 +1772,27 @@ interface BasePaymentIntent {
1690
1772
  country: string;
1691
1773
  state: string;
1692
1774
  zip: string;
1775
+ coupon: BaseCoupon | null;
1776
+ lineItems: BasePaymentLineItem[];
1693
1777
  createdAt: string;
1694
- }
1695
- interface PaymentIntent extends BasePaymentIntent {
1696
1778
  integration: {
1697
1779
  connectionId: string;
1698
1780
  type: string;
1699
1781
  };
1782
+ taxIntegration: {
1783
+ connectionId: string;
1784
+ type: string;
1785
+ } | null;
1786
+ }
1787
+ interface PaymentIntent extends BasePaymentIntent {
1700
1788
  account: BaseAccount;
1789
+ event: BaseEvent | null;
1790
+ session: BaseSession | null;
1701
1791
  registration: BaseRegistration | null;
1702
- invoice: BaseInvoice | null;
1703
- booking: BaseBooking | null;
1792
+ pass: BasePass | null;
1793
+ passType: BasePassType | null;
1794
+ place: BaseBookingPlace | null;
1795
+ space: BaseBookingSpace | null;
1704
1796
  }
1705
1797
  interface BaseFile {
1706
1798
  id: number;
@@ -1819,6 +1911,7 @@ declare enum OrganizationModuleType {
1819
1911
  surveys = "surveys"
1820
1912
  }
1821
1913
  declare enum PaymentIntegrationType {
1914
+ free = "free",
1822
1915
  stripe = "stripe",
1823
1916
  paypal = "paypal",
1824
1917
  braintree = "braintree",
@@ -2877,8 +2970,9 @@ interface UpdateSelfEventRegistrationPurchaseAddOnParams extends MutationParams
2877
2970
  eventId: string;
2878
2971
  passes: {
2879
2972
  id: string;
2880
- addOns: {
2973
+ passAddOns: {
2881
2974
  id: string;
2975
+ addOnId: string;
2882
2976
  }[];
2883
2977
  }[];
2884
2978
  }
@@ -2913,12 +3007,6 @@ interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
2913
3007
  declare const UpdateSelfEventRegistrationResponses: ({ eventId, passes, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
2914
3008
  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>;
2915
3009
 
2916
- interface SubmitSelfEventRegistrationParams extends MutationParams {
2917
- eventId: string;
2918
- }
2919
- declare const SubmitSelfEventRegistration: ({ eventId, clientApiParams, queryClient, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2920
- 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>;
2921
-
2922
3010
  interface UpdateSelfEventSessionRegistrationPassResponseParams extends MutationParams {
2923
3011
  eventId: string;
2924
3012
  sessionId: string;
@@ -2953,31 +3041,28 @@ interface UpdateSelfEventSessionRegistrationResponsesParams extends MutationPara
2953
3041
  declare const UpdateSelfEventSessionRegistrationResponses: ({ eventId, sessionId, accesses, clientApiParams, queryClient, }: UpdateSelfEventSessionRegistrationResponsesParams) => Promise<ConnectedXMResponse<null>>;
2954
3042
  declare const useUpdateSelfEventSessionRegistrationResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventSessionRegistrationResponses>>, Omit<UpdateSelfEventSessionRegistrationResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventSessionRegistrationResponsesParams, "queryClient" | "clientApiParams">, unknown>;
2955
3043
 
2956
- interface SubmitSelfEventSessionRegistrationParams extends MutationParams {
2957
- eventId: string;
2958
- sessionId: string;
2959
- }
2960
- declare const SubmitSelfEventSessionRegistration: ({ eventId, sessionId, clientApiParams, queryClient, }: SubmitSelfEventSessionRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
2961
- declare const useSubmitSelfEventSessionRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventSessionRegistration>>, Omit<SubmitSelfEventSessionRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SubmitSelfEventSessionRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
2962
-
2963
- interface AddFreePassAddOnsParams extends MutationParams {
3044
+ interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
2964
3045
  eventId: string;
2965
3046
  passId: string;
2966
- addOnIds: string[];
3047
+ questions: {
3048
+ id: string;
3049
+ value: string;
3050
+ }[];
2967
3051
  }
2968
- declare const AddFreePassAddOns: ({ eventId, passId, addOnIds, clientApiParams, queryClient, }: AddFreePassAddOnsParams) => Promise<ConnectedXMResponse<Pass>>;
2969
- 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>;
3052
+ declare const UpdateSelfEventAttendeePassResponses: ({ eventId, passId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassResponsesParams) => Promise<ConnectedXMResponse<null>>;
3053
+ 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>;
2970
3054
 
2971
- interface UpdateSelfEventAttendeePassResponsesParams extends MutationParams {
3055
+ interface UpdateSelfEventAttendeePassFollowupParams extends MutationParams {
2972
3056
  eventId: string;
2973
3057
  passId: string;
3058
+ followupId: string;
2974
3059
  questions: {
2975
3060
  id: string;
2976
3061
  value: string;
2977
3062
  }[];
2978
3063
  }
2979
- declare const UpdateSelfEventAttendeePassResponses: ({ eventId, passId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassResponsesParams) => Promise<ConnectedXMResponse<null>>;
2980
- 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>;
3064
+ declare const UpdateSelfEventAttendeePassFollowup: ({ eventId, passId, followupId, questions, clientApiParams, queryClient, }: UpdateSelfEventAttendeePassFollowupParams) => Promise<ConnectedXMResponse<null>>;
3065
+ declare const useUpdateSelfEventAttendeePassFollowup: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeePassFollowup>>, Omit<UpdateSelfEventAttendeePassFollowupParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventAttendeePassFollowupParams, "queryClient" | "clientApiParams">, unknown>;
2981
3066
 
2982
3067
  interface TransferPassParams extends MutationParams {
2983
3068
  passId: string;
@@ -3887,8 +3972,8 @@ declare const SET_ACCOUNT_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: Pa
3887
3972
  interface GetAccountGroupsProps extends InfiniteQueryParams {
3888
3973
  accountId: string;
3889
3974
  }
3890
- declare const GetAccountGroups: ({ pageParam, pageSize, orderBy, search, accountId, clientApiParams, }: GetAccountGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
3891
- declare const useGetAccountGroups: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountGroups>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3975
+ declare const GetAccountGroups: ({ pageParam, pageSize, orderBy, search, accountId, clientApiParams, }: GetAccountGroupsProps) => Promise<ConnectedXMResponse<GroupMembership[]>>;
3976
+ declare const useGetAccountGroups: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountGroups>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3892
3977
 
3893
3978
  declare const ACCOUNT_FOLLOWERS_QUERY_KEY: (accountId: string) => QueryKey;
3894
3979
  declare const SET_ACCOUNT_FOLLOWERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_FOLLOWERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountFollowers>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
@@ -4837,6 +4922,25 @@ interface GetSelfEventAttendeePassQuestionSectionsProps extends SingleQueryParam
4837
4922
  declare const GetSelfEventAttendeePassQuestionSections: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassQuestionSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
4838
4923
  declare const useGetSelfEventAttendeePassQuestionSections: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4839
4924
 
4925
+ declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
4926
+ declare const SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassQuestionFollowups>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
4927
+ interface GetSelfEventAttendeePassQuestionFollowupsProps extends SingleQueryParams {
4928
+ eventId: string;
4929
+ passId: string;
4930
+ }
4931
+ declare const GetSelfEventAttendeePassQuestionFollowups: ({ eventId, passId, clientApiParams, }: GetSelfEventAttendeePassQuestionFollowupsProps) => Promise<ConnectedXMResponse<RegistrationFollowup[]>>;
4932
+ declare const useGetSelfEventAttendeePassQuestionFollowups: (eventId: string, passId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionFollowups>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4933
+
4934
+ declare const SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY: (eventId: string, passId: string, followupId: string) => QueryKey;
4935
+ declare const SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePassQuestionFollowup>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
4936
+ interface GetSelfEventAttendeePassQuestionFollowupProps extends SingleQueryParams {
4937
+ eventId: string;
4938
+ passId: string;
4939
+ followupId: string;
4940
+ }
4941
+ declare const GetSelfEventAttendeePassQuestionFollowup: ({ eventId, passId, followupId, clientApiParams, }: GetSelfEventAttendeePassQuestionFollowupProps) => Promise<ConnectedXMResponse<RegistrationFollowup>>;
4942
+ declare const useGetSelfEventAttendeePassQuestionFollowup: (eventId: string, passId: string, followupId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventAttendeePassQuestionFollowup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4943
+
4840
4944
  declare const SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY: (eventId: string, passId: string) => QueryKey;
4841
4945
  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;
4842
4946
  interface GetSelfEventAttendeePassAddOnsProps extends SingleQueryParams {
@@ -5377,4 +5481,4 @@ interface GetStreamProps extends SingleQueryParams {
5377
5481
  declare const GetStream: ({ streamId, output, clientApiParams, }: GetStreamProps) => Promise<ConnectedXMResponse<StreamInput>>;
5378
5482
  declare const useGetStream: (streamId?: string, output?: keyof typeof StreamOutput, options?: SingleQueryOptions<ReturnType<typeof GetStream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInput>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5379
5483
 
5380
- 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_FOLLOW_STATS_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, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddFreePassAddOns, type AddFreePassAddOnsParams, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, 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 BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionSearchValue, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, 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 BaseLinkPreview, type BaseMatch, 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 BaseRound, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveyQuestionSearchValue, type BaseSurveySection, type BaseSurveySubmission, type BaseTeamMember, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, 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, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, 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, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, 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, CreateThreadMessage, type CreateThreadMessageParams, Currency, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, 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, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_PRIVATE_CHANNEL, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_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_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_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_SESSION_QUESTION_VALUES_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, type EventSessionQuestionSearchValue, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, 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, GetAccountFollowStats, type GetAccountFollowStatsProps, 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, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, 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, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessionQuestionSearchValues, type GetEventSessionQuestionSearchValuesProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakerSessions, type GetEventSpeakerSessionsProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, 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, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, 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, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, 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, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetStream, type GetStreamProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveyQuestionSearchValues, type GetSurveyQuestionSearchValuesProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_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 LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, 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 PassAddOn, 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, RemoveActivityReport, type RemoveActivityReportParams, 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, ReportActivity, type ReportActivityParams, type Round, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_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_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_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_AVAILABLE_SESSIONS_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_TRANSFER_ACCOUNTS_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_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_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_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_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_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_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_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_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_SPEAKER_SESSIONS_FIRST_PAGE, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_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_IMAGE_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_LINK_PREVIEW_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_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_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_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_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_STREAM_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, StreamOutput, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, SubmitSelfEventSessionRegistration, type SubmitSelfEventSessionRegistrationParams, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, type SurveyQuestionSearchValue, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, 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, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, type User, VIDEO_QUERY_KEY, 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, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessionQuestionSearchValues, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStream, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveyQuestionSearchValues, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSelfEventRegistration, useSubmitSelfEventSessionRegistration, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage };
5484
+ 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_FOLLOW_STATS_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, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, 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 BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionSearchValue, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, 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 BaseLinkPreview, type BaseMatch, type BaseNotification, type BaseOrganization, type BasePage, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRound, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveyQuestionSearchValue, type BaseSurveySection, type BaseSurveySubmission, type BaseTeamMember, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, 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, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, 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, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, 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, CreateThreadMessage, type CreateThreadMessageParams, Currency, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, 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, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_PRIVATE_CHANNEL, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_FEATURED_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_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_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_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_SESSION_QUESTION_VALUES_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, type EventSessionQuestionSearchValue, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, 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, GetAccountFollowStats, type GetAccountFollowStatsProps, 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, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, 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, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessionQuestionSearchValues, type GetEventSessionQuestionSearchValuesProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakerSessions, type GetEventSpeakerSessionsProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, 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, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, 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, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, 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, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetStream, type GetStreamProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveyQuestionSearchValues, type GetSurveyQuestionSearchValuesProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_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 LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, 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 PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, 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, ReportActivity, type ReportActivityParams, type Round, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_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_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_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_AVAILABLE_SESSIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_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_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_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_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_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_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_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_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_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_SPEAKER_SESSIONS_FIRST_PAGE, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_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_IMAGE_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_LINK_PREVIEW_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_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_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_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_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_STREAM_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, StreamOutput, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, type SurveyQuestionSearchValue, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, 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, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, type User, VIDEO_QUERY_KEY, 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, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetAllGroupEvents, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessionQuestionSearchValues, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetFeaturedEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStream, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveyQuestionSearchValues, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage };
package/dist/index.js CHANGED
@@ -4836,6 +4836,100 @@ var useGetSelfEventAttendeePassQuestionSections = (eventId, passId, options = {}
4836
4836
  );
4837
4837
  };
4838
4838
 
4839
+ // src/queries/self/attendee/useGetSelfEventAttendeePassQuestionFollowups.ts
4840
+ var SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY = (eventId, passId) => [
4841
+ ...SELF_EVENT_ATTENDEE_QUERY_KEY(eventId),
4842
+ "PASSES",
4843
+ passId,
4844
+ "FOLLOWUPS"
4845
+ ];
4846
+ var SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
4847
+ client.setQueryData(
4848
+ [
4849
+ ...SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY(...keyParams),
4850
+ ...GetBaseSingleQueryKeys(...baseKeys)
4851
+ ],
4852
+ response
4853
+ );
4854
+ };
4855
+ var GetSelfEventAttendeePassQuestionFollowups = async ({
4856
+ eventId,
4857
+ passId,
4858
+ clientApiParams
4859
+ }) => {
4860
+ const clientApi = await GetClientAPI(clientApiParams);
4861
+ const { data } = await clientApi.get(
4862
+ `/self/events/${eventId}/attendee/passes/${passId}/followups`,
4863
+ {}
4864
+ );
4865
+ return data;
4866
+ };
4867
+ var useGetSelfEventAttendeePassQuestionFollowups = (eventId, passId, options = {}) => {
4868
+ const { authenticated } = useConnected();
4869
+ return useConnectedSingleQuery_default(
4870
+ SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY(eventId, passId),
4871
+ (params) => GetSelfEventAttendeePassQuestionFollowups({
4872
+ eventId,
4873
+ passId,
4874
+ ...params
4875
+ }),
4876
+ {
4877
+ retry: false,
4878
+ staleTime: Infinity,
4879
+ refetchOnMount: false,
4880
+ ...options,
4881
+ enabled: !!authenticated && !!eventId && !!passId && (options?.enabled ?? true)
4882
+ }
4883
+ );
4884
+ };
4885
+
4886
+ // src/queries/self/attendee/useGetSelfEventAttendeePassQuestionFollowup.ts
4887
+ var SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY = (eventId, passId, followupId) => [
4888
+ ...SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY(eventId, passId),
4889
+ followupId
4890
+ ];
4891
+ var SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
4892
+ client.setQueryData(
4893
+ [
4894
+ ...SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY(...keyParams),
4895
+ ...GetBaseSingleQueryKeys(...baseKeys)
4896
+ ],
4897
+ response
4898
+ );
4899
+ };
4900
+ var GetSelfEventAttendeePassQuestionFollowup = async ({
4901
+ eventId,
4902
+ passId,
4903
+ followupId,
4904
+ clientApiParams
4905
+ }) => {
4906
+ const clientApi = await GetClientAPI(clientApiParams);
4907
+ const { data } = await clientApi.get(
4908
+ `/self/events/${eventId}/attendee/passes/${passId}/followups/${followupId}`
4909
+ );
4910
+ return data;
4911
+ };
4912
+ var useGetSelfEventAttendeePassQuestionFollowup = (eventId, passId, followupId, options = {}) => {
4913
+ const { authenticated } = useConnected();
4914
+ return useConnectedSingleQuery_default(
4915
+ SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY(
4916
+ eventId,
4917
+ passId,
4918
+ followupId
4919
+ ),
4920
+ (params) => GetSelfEventAttendeePassQuestionFollowup({
4921
+ eventId,
4922
+ passId,
4923
+ followupId,
4924
+ ...params
4925
+ }),
4926
+ {
4927
+ ...options,
4928
+ enabled: !!authenticated && !!eventId && !!passId && !!followupId && (options?.enabled ?? true)
4929
+ }
4930
+ );
4931
+ };
4932
+
4839
4933
  // src/queries/self/attendee/useGetSelfEventAttendeePassAddOns.ts
4840
4934
  var SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY = (eventId, passId) => [
4841
4935
  ...SELF_EVENT_ATTENDEE_QUERY_KEY(eventId),
@@ -7754,6 +7848,18 @@ var ContentGuestType = /* @__PURE__ */ ((ContentGuestType2) => {
7754
7848
  ContentGuestType2["author"] = "author";
7755
7849
  return ContentGuestType2;
7756
7850
  })(ContentGuestType || {});
7851
+ var PaymentLineItemType = /* @__PURE__ */ ((PaymentLineItemType2) => {
7852
+ PaymentLineItemType2["pass"] = "pass";
7853
+ PaymentLineItemType2["package"] = "package";
7854
+ PaymentLineItemType2["reservation"] = "reservation";
7855
+ PaymentLineItemType2["addOn"] = "addOn";
7856
+ PaymentLineItemType2["access"] = "access";
7857
+ PaymentLineItemType2["invoice"] = "invoice";
7858
+ PaymentLineItemType2["booking"] = "booking";
7859
+ PaymentLineItemType2["coupon"] = "coupon";
7860
+ PaymentLineItemType2["subscription"] = "subscription";
7861
+ return PaymentLineItemType2;
7862
+ })(PaymentLineItemType || {});
7757
7863
  var LeadStatus = /* @__PURE__ */ ((LeadStatus2) => {
7758
7864
  LeadStatus2["new"] = "new";
7759
7865
  LeadStatus2["favorited"] = "favorited";
@@ -7826,6 +7932,15 @@ var EventEmailType = /* @__PURE__ */ ((EventEmailType2) => {
7826
7932
  EventEmailType2["reminder"] = "reminder";
7827
7933
  return EventEmailType2;
7828
7934
  })(EventEmailType || {});
7935
+ var PaymentIntentSource = /* @__PURE__ */ ((PaymentIntentSource2) => {
7936
+ PaymentIntentSource2["registration"] = "registration";
7937
+ PaymentIntentSource2["invoice"] = "invoice";
7938
+ PaymentIntentSource2["pass"] = "pass";
7939
+ PaymentIntentSource2["coupon"] = "coupon";
7940
+ PaymentIntentSource2["session"] = "session";
7941
+ PaymentIntentSource2["booking"] = "booking";
7942
+ return PaymentIntentSource2;
7943
+ })(PaymentIntentSource || {});
7829
7944
  var ThreadCircleAccountRole = /* @__PURE__ */ ((ThreadCircleAccountRole2) => {
7830
7945
  ThreadCircleAccountRole2["member"] = "member";
7831
7946
  ThreadCircleAccountRole2["manager"] = "manager";
@@ -7872,6 +7987,7 @@ var OrganizationModuleType = /* @__PURE__ */ ((OrganizationModuleType2) => {
7872
7987
  return OrganizationModuleType2;
7873
7988
  })(OrganizationModuleType || {});
7874
7989
  var PaymentIntegrationType = /* @__PURE__ */ ((PaymentIntegrationType2) => {
7990
+ PaymentIntegrationType2["free"] = "free";
7875
7991
  PaymentIntegrationType2["stripe"] = "stripe";
7876
7992
  PaymentIntegrationType2["paypal"] = "paypal";
7877
7993
  PaymentIntegrationType2["braintree"] = "braintree";
@@ -9656,36 +9772,6 @@ var useUpdateSelfEventRegistrationResponses = (options = {}) => {
9656
9772
  return useConnectedMutation_default(UpdateSelfEventRegistrationResponses, options);
9657
9773
  };
9658
9774
 
9659
- // src/mutations/self/events/registration/useSubmitSelfEventRegistration.ts
9660
- var SubmitSelfEventRegistration = async ({
9661
- eventId,
9662
- clientApiParams,
9663
- queryClient
9664
- }) => {
9665
- const clientApi = await GetClientAPI(clientApiParams);
9666
- const { data } = await clientApi.post(
9667
- `/self/events/${eventId}/registration/submit`
9668
- );
9669
- if (queryClient && data.status === "ok") {
9670
- queryClient.removeQueries({
9671
- queryKey: SELF_EVENT_REGISTRATION_QUERY_KEY(eventId)
9672
- });
9673
- queryClient.invalidateQueries({
9674
- queryKey: SELF_EVENT_ATTENDEE_QUERY_KEY(eventId)
9675
- });
9676
- ADD_SELF_RELATIONSHIP(
9677
- queryClient,
9678
- [clientApiParams.locale],
9679
- "events",
9680
- eventId
9681
- );
9682
- }
9683
- return data;
9684
- };
9685
- var useSubmitSelfEventRegistration = (options = {}) => {
9686
- return useConnectedMutation_default(SubmitSelfEventRegistration, options);
9687
- };
9688
-
9689
9775
  // src/mutations/self/events/registration/sessions/useUpdateSelfEventSessionRegistrationPassResponse.ts
9690
9776
  var UpdateSelfEventSessionRegistrationPassResponse = async ({
9691
9777
  eventId,
@@ -9772,79 +9858,53 @@ var useUpdateSelfEventSessionRegistrationResponses = (options = {}) => {
9772
9858
  return useConnectedMutation_default(UpdateSelfEventSessionRegistrationResponses, options);
9773
9859
  };
9774
9860
 
9775
- // src/mutations/self/events/registration/sessions/useSubmitSelfEventSessionRegistration.ts
9776
- var SubmitSelfEventSessionRegistration = async ({
9861
+ // src/mutations/self/events/attendee/useUpdateSelfEventAttendeePassResponses.ts
9862
+ var UpdateSelfEventAttendeePassResponses = async ({
9777
9863
  eventId,
9778
- sessionId,
9864
+ passId,
9865
+ questions,
9779
9866
  clientApiParams,
9780
9867
  queryClient
9781
9868
  }) => {
9782
9869
  const clientApi = await GetClientAPI(clientApiParams);
9783
- const { data } = await clientApi.post(
9784
- `/self/events/${eventId}/sessions/${sessionId}/registration/submit`
9870
+ const { data } = await clientApi.put(
9871
+ `/self/events/${eventId}/attendee/passes/${passId}/questions`,
9872
+ {
9873
+ questions
9874
+ }
9785
9875
  );
9786
9876
  if (queryClient && data.status === "ok") {
9787
9877
  queryClient.invalidateQueries({
9788
- queryKey: SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY(eventId, sessionId)
9878
+ queryKey: SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY(
9879
+ eventId,
9880
+ passId
9881
+ )
9789
9882
  });
9790
9883
  queryClient.invalidateQueries({
9791
9884
  queryKey: SELF_EVENT_ATTENDEE_QUERY_KEY(eventId)
9792
9885
  });
9793
9886
  queryClient.invalidateQueries({
9794
- queryKey: SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY(
9795
- eventId,
9796
- sessionId
9797
- )
9798
- });
9799
- }
9800
- return data;
9801
- };
9802
- var useSubmitSelfEventSessionRegistration = (options = {}) => {
9803
- return useConnectedMutation_default(SubmitSelfEventSessionRegistration, options);
9804
- };
9805
-
9806
- // src/mutations/self/events/attendee/useAddFreePassAddOns.ts
9807
- var AddFreePassAddOns = async ({
9808
- eventId,
9809
- passId,
9810
- addOnIds,
9811
- clientApiParams,
9812
- queryClient
9813
- }) => {
9814
- const clientApi = await GetClientAPI(clientApiParams);
9815
- const { data } = await clientApi.post(
9816
- `/self/events/${eventId}/attendee/passes/${passId}/addOns/free`,
9817
- {
9818
- addOnIds
9819
- }
9820
- );
9821
- if (queryClient && data.status === "ok") {
9822
- queryClient.invalidateQueries({
9823
- predicate: ({ queryKey }) => {
9824
- if (queryKey[0] === "SELF" && (queryKey[1] === "REGISTRATION" || queryKey[1] === "ATTENDEE") || queryKey[0] === "SELF" && queryKey[1] === "EVENT" && queryKey[3] === "REGISTRATION") {
9825
- return true;
9826
- }
9827
- return false;
9828
- }
9887
+ queryKey: SELF_EVENT_ATTENDEE_PASS_QUERY_KEY(eventId, passId)
9829
9888
  });
9830
9889
  }
9831
9890
  return data;
9832
9891
  };
9833
- var useAddFreePassAddOns = (options = {}) => {
9834
- return useConnectedMutation_default(AddFreePassAddOns, options);
9892
+ var useUpdateSelfEventAttendeePassResponses = (options = {}) => {
9893
+ return useConnectedMutation_default(UpdateSelfEventAttendeePassResponses, options);
9835
9894
  };
9836
9895
 
9837
- // src/mutations/self/events/attendee/useUpdateSelfEventAttendeePassResponses.ts
9838
- var UpdateSelfEventAttendeePassResponses = async ({
9896
+ // src/mutations/self/events/attendee/useUpdateSelfEventAttendeePassFollowup.ts
9897
+ var UpdateSelfEventAttendeePassFollowup = async ({
9839
9898
  eventId,
9840
9899
  passId,
9900
+ followupId,
9841
9901
  questions,
9842
9902
  clientApiParams,
9843
9903
  queryClient
9844
9904
  }) => {
9845
9905
  const clientApi = await GetClientAPI(clientApiParams);
9846
9906
  const { data } = await clientApi.put(
9847
- `/self/events/${eventId}/attendee/passes/${passId}/questions`,
9907
+ `/self/events/${eventId}/attendee/passes/${passId}/followups/${followupId}`,
9848
9908
  {
9849
9909
  questions
9850
9910
  }
@@ -9862,11 +9922,24 @@ var UpdateSelfEventAttendeePassResponses = async ({
9862
9922
  queryClient.invalidateQueries({
9863
9923
  queryKey: SELF_EVENT_ATTENDEE_PASS_QUERY_KEY(eventId, passId)
9864
9924
  });
9925
+ queryClient.invalidateQueries({
9926
+ queryKey: SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY(
9927
+ eventId,
9928
+ passId
9929
+ )
9930
+ });
9931
+ queryClient.invalidateQueries({
9932
+ queryKey: SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY(
9933
+ eventId,
9934
+ passId,
9935
+ followupId
9936
+ )
9937
+ });
9865
9938
  }
9866
9939
  return data;
9867
9940
  };
9868
- var useUpdateSelfEventAttendeePassResponses = (options = {}) => {
9869
- return useConnectedMutation_default(UpdateSelfEventAttendeePassResponses, options);
9941
+ var useUpdateSelfEventAttendeePassFollowup = (options = {}) => {
9942
+ return useConnectedMutation_default(UpdateSelfEventAttendeePassFollowup, options);
9870
9943
  };
9871
9944
 
9872
9945
  // src/mutations/self/events/attendee/useTransferPass.ts
@@ -11913,7 +11986,6 @@ export {
11913
11986
  AddChannelCollectionContent,
11914
11987
  AddChannelInterest,
11915
11988
  AddContentInterest,
11916
- AddFreePassAddOns,
11917
11989
  AddListingCoHost,
11918
11990
  AddListingSponsor,
11919
11991
  AddSelfChatChannelMember,
@@ -12194,6 +12266,8 @@ export {
12194
12266
  GetSelfEventAttendeePassAddOns,
12195
12267
  GetSelfEventAttendeePassAddOnsIntent,
12196
12268
  GetSelfEventAttendeePassAvailableSessions,
12269
+ GetSelfEventAttendeePassQuestionFollowup,
12270
+ GetSelfEventAttendeePassQuestionFollowups,
12197
12271
  GetSelfEventAttendeePassQuestionSections,
12198
12272
  GetSelfEventAttendeePayment,
12199
12273
  GetSelfEventAttendeeTransferAccounts,
@@ -12305,6 +12379,8 @@ export {
12305
12379
  ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY,
12306
12380
  OrganizationModuleType,
12307
12381
  PaymentIntegrationType,
12382
+ PaymentIntentSource,
12383
+ PaymentLineItemType,
12308
12384
  PrimaryModule,
12309
12385
  PromoteGroupMember,
12310
12386
  PurchaseStatus,
@@ -12347,6 +12423,8 @@ export {
12347
12423
  SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY,
12348
12424
  SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_KEY,
12349
12425
  SELF_EVENT_ATTENDEE_PASS_QUERY_KEY,
12426
+ SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY,
12427
+ SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY,
12350
12428
  SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY,
12351
12429
  SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY,
12352
12430
  SELF_EVENT_ATTENDEE_QUERY_KEY,
@@ -12477,6 +12555,8 @@ export {
12477
12555
  SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA,
12478
12556
  SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA,
12479
12557
  SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA,
12558
+ SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA,
12559
+ SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA,
12480
12560
  SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA,
12481
12561
  SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA,
12482
12562
  SET_SELF_EVENT_ATTENDEE_QUERY_DATA,
@@ -12521,8 +12601,6 @@ export {
12521
12601
  SetContentPublishSchedule,
12522
12602
  StartSurvey,
12523
12603
  StreamOutput,
12524
- SubmitSelfEventRegistration,
12525
- SubmitSelfEventSessionRegistration,
12526
12604
  SubmitSurvey,
12527
12605
  SubscriptionStatus,
12528
12606
  SupportTicketState,
@@ -12563,6 +12641,7 @@ export {
12563
12641
  UpdateSelfBanner,
12564
12642
  UpdateSelfChatChannelNotifications,
12565
12643
  UpdateSelfEventAttendeeAccessResponses,
12644
+ UpdateSelfEventAttendeePassFollowup,
12566
12645
  UpdateSelfEventAttendeePassResponses,
12567
12646
  UpdateSelfEventRegistrationPassResponse,
12568
12647
  UpdateSelfEventRegistrationPasses,
@@ -12629,7 +12708,6 @@ export {
12629
12708
  useAddChannelCollectionContent,
12630
12709
  useAddChannelInterest,
12631
12710
  useAddContentInterest,
12632
- useAddFreePassAddOns,
12633
12711
  useAddListingCoHost,
12634
12712
  useAddListingSponsor,
12635
12713
  useAddSelfChatChannelMember,
@@ -12824,6 +12902,8 @@ export {
12824
12902
  useGetSelfEventAttendeePassAddOns,
12825
12903
  useGetSelfEventAttendeePassAddOnsIntent,
12826
12904
  useGetSelfEventAttendeePassAvailableSessions,
12905
+ useGetSelfEventAttendeePassQuestionFollowup,
12906
+ useGetSelfEventAttendeePassQuestionFollowups,
12827
12907
  useGetSelfEventAttendeePassQuestionSections,
12828
12908
  useGetSelfEventAttendeePayment,
12829
12909
  useGetSelfEventAttendeeTransferAccounts,
@@ -12916,8 +12996,6 @@ export {
12916
12996
  useSelfUpdateGroupMembership,
12917
12997
  useSetContentPublishSchedule,
12918
12998
  useStartSurvey,
12919
- useSubmitSelfEventRegistration,
12920
- useSubmitSelfEventSessionRegistration,
12921
12999
  useSubmitSurvey,
12922
13000
  useTransferPass,
12923
13001
  useUnblockAccount,
@@ -12942,6 +13020,7 @@ export {
12942
13020
  useUpdateSelfBanner,
12943
13021
  useUpdateSelfChatChannelNotifications,
12944
13022
  useUpdateSelfEventAttendeeAccessResponses,
13023
+ useUpdateSelfEventAttendeePassFollowup,
12945
13024
  useUpdateSelfEventAttendeePassResponses,
12946
13025
  useUpdateSelfEventRegistrationPassResponse,
12947
13026
  useUpdateSelfEventRegistrationPasses,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "5.0.10",
3
+ "version": "6.0.1",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",