@connectedxm/admin 7.8.0 → 7.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1884,6 +1884,7 @@ interface Payment extends BasePayment {
1884
1884
  coupon: BaseCoupon | null;
1885
1885
  invoice: BaseInvoice | null;
1886
1886
  series: BaseSeries | null;
1887
+ exchangeTarget: BaseEventPassTypeExchangeTarget | null;
1887
1888
  metadata?: any;
1888
1889
  lineItems: Omit<PaymentLineItem, "payment">[];
1889
1890
  }
@@ -2507,6 +2508,7 @@ interface EventSessionTranslation {
2507
2508
  interface BaseEventSessionLocation {
2508
2509
  id: string;
2509
2510
  name: string;
2511
+ room: string | null;
2510
2512
  address1: string | null;
2511
2513
  address2: string | null;
2512
2514
  zip: string | null;
@@ -3293,6 +3295,41 @@ interface BaseEventPassTypeRefundSchedule {
3293
3295
  }
3294
3296
  interface EventPassTypeRefundSchedule extends BaseEventPassTypeRefundSchedule {
3295
3297
  }
3298
+ interface BaseEventPassTypeExchangeTarget {
3299
+ id: string;
3300
+ enabled: boolean;
3301
+ sourcePassTypeId: string;
3302
+ sourcePassType: BaseEventPassType;
3303
+ targetPassTypeId: string;
3304
+ targetPassType: BaseEventPassType;
3305
+ fixedPricing: boolean;
3306
+ amount: number;
3307
+ startDate: string | null;
3308
+ endDate: string | null;
3309
+ }
3310
+ interface EventPassTypeExchangeTarget extends BaseEventPassTypeExchangeTarget {
3311
+ createdAt: string;
3312
+ updatedAt: string;
3313
+ }
3314
+ declare enum ExchangeType {
3315
+ upgrade = "upgrade",
3316
+ downgrade = "downgrade",
3317
+ swap = "swap"
3318
+ }
3319
+ interface BasePassExchange {
3320
+ id: string;
3321
+ accountId: string;
3322
+ passId: string;
3323
+ exchangeType: ExchangeType;
3324
+ exchangeTargetId: string;
3325
+ exchangeTarget: EventPassTypeExchangeTarget;
3326
+ lineItem: BasePaymentLineItem | null;
3327
+ }
3328
+ interface PassExchange extends BasePassExchange {
3329
+ account: BaseAccount;
3330
+ pass: BaseEventPass;
3331
+ createdAt: string;
3332
+ }
3296
3333
  interface EventPassTypeTranslation {
3297
3334
  id: number;
3298
3335
  locale: string;
@@ -5604,6 +5641,7 @@ interface EventSessionUpdateInputs {
5604
5641
  interface EventSessionLocationCreateInputs {
5605
5642
  location?: string | null;
5606
5643
  name: string;
5644
+ room?: string | null;
5607
5645
  description?: string | null;
5608
5646
  imageId?: string | null;
5609
5647
  address1?: string | null;
@@ -5612,6 +5650,8 @@ interface EventSessionLocationCreateInputs {
5612
5650
  state?: string | null;
5613
5651
  country?: string | null;
5614
5652
  zip?: string | null;
5653
+ latitude?: number | null;
5654
+ longitude?: number | null;
5615
5655
  }
5616
5656
  interface EventSessionLocationTranslationUpdateInputs {
5617
5657
  name?: string | null;
@@ -5620,6 +5660,7 @@ interface EventSessionLocationTranslationUpdateInputs {
5620
5660
  interface EventSessionLocationUpdateInputs {
5621
5661
  location?: string | null;
5622
5662
  name?: string;
5663
+ room?: string | null;
5623
5664
  description?: string | null;
5624
5665
  imageId?: string | null;
5625
5666
  address1?: string | null;
@@ -5628,6 +5669,8 @@ interface EventSessionLocationUpdateInputs {
5628
5669
  state?: string | null;
5629
5670
  country?: string | null;
5630
5671
  zip?: string | null;
5672
+ latitude?: number | null;
5673
+ longitude?: number | null;
5631
5674
  }
5632
5675
  interface EventSessionQuestionChoiceCreateInputs {
5633
5676
  value: string;
@@ -6504,6 +6547,21 @@ interface PassTypeRefundScheduleUpdateInputs {
6504
6547
  startDate?: string;
6505
6548
  endDate?: string;
6506
6549
  }
6550
+ interface PassTypeExchangeTargetCreateInputs {
6551
+ enabled: boolean;
6552
+ targetPassTypeId: string;
6553
+ fixedPricing?: boolean;
6554
+ amount?: number;
6555
+ startDate?: string | null;
6556
+ endDate?: string | null;
6557
+ }
6558
+ interface PassTypeExchangeTargetUpdateInputs {
6559
+ enabled?: boolean;
6560
+ fixedPricing?: boolean;
6561
+ amount?: number;
6562
+ startDate?: string | null;
6563
+ endDate?: string | null;
6564
+ }
6507
6565
  interface IntegrationCreateInputs {
6508
6566
  type: keyof typeof IntegrationType;
6509
6567
  enabled?: boolean;
@@ -7505,42 +7563,6 @@ declare const GetImageVariant: (url: string, variant?: ImageVariant) => string;
7505
7563
 
7506
7564
  declare const isUUID: (id: string) => boolean;
7507
7565
 
7508
- interface MapboxSuggestion {
7509
- mapboxId: string;
7510
- name: string;
7511
- fullAddress: string | null;
7512
- placeFormatted: string | null;
7513
- featureType: string;
7514
- }
7515
- interface ResolvedAddress {
7516
- venue: string | null;
7517
- address1: string | null;
7518
- address2: string | null;
7519
- city: string | null;
7520
- state: string | null;
7521
- country: string | null;
7522
- zip: string | null;
7523
- latitude: number | null;
7524
- longitude: number | null;
7525
- fullAddress: string | null;
7526
- }
7527
- interface MapboxSearchOptions {
7528
- /** Public Mapbox token (pk.*), supplied by the app — never bundled in the SDK. */
7529
- accessToken: string;
7530
- /** Reused across a suggest -> retrieve cycle for Mapbox session billing. */
7531
- sessionToken: string;
7532
- country?: string;
7533
- limit?: number;
7534
- language?: string;
7535
- }
7536
- /** Session token for a suggest -> retrieve cycle. Uses crypto.randomUUID when
7537
- * available (browsers), with a Math.random fallback for React Native. */
7538
- declare const createMapboxSessionToken: () => string;
7539
- /** Maps a Mapbox retrieve feature to a flat address. Exported for testing. */
7540
- declare const mapFeatureToAddress: (feature: any) => ResolvedAddress;
7541
- declare const mapboxSuggest: (query: string, { accessToken, sessionToken, country, limit, language, }: MapboxSearchOptions) => Promise<MapboxSuggestion[]>;
7542
- declare const mapboxRetrieve: (mapboxId: string, { accessToken, sessionToken }: MapboxSearchOptions) => Promise<ResolvedAddress | null>;
7543
-
7544
7566
  declare function MergeInfinitePages<TData>(data: InfiniteData<ConnectedXMResponse<TData[]>>): TData[];
7545
7567
 
7546
7568
  declare const ZERO_DECIMAL_CURRENCIES: string[];
@@ -7572,7 +7594,7 @@ interface SingleQueryParams {
7572
7594
  interface SingleQueryOptions<TQueryData = unknown> extends Omit<UseQueryOptions<TQueryData, AxiosError<ConnectedXMResponse<any>>, Awaited<TQueryData>, QueryKey>, "queryFn" | "queryKey"> {
7573
7595
  shouldRedirect?: boolean;
7574
7596
  }
7575
- declare const useConnectedSingleQuery: <TQueryData = unknown>(queryKeys: QueryKey, queryFn: (params: SingleQueryParams) => TQueryData, options?: SingleQueryOptions<TQueryData>) => _tanstack_react_query.UseQueryResult<_tanstack_react_query.NoInfer<Awaited<TQueryData>>, AxiosError<ConnectedXMResponse<any>, any>>;
7597
+ declare const useConnectedSingleQuery: <TQueryData = unknown>(queryKeys: QueryKey, queryFn: (params: SingleQueryParams) => TQueryData, options?: SingleQueryOptions<TQueryData>) => _tanstack_react_query.UseQueryResult<NoInfer<Awaited<TQueryData>>, AxiosError<ConnectedXMResponse<any>, any>>;
7576
7598
 
7577
7599
  /**
7578
7600
  * @category Keys
@@ -7594,7 +7616,7 @@ declare const GetAccountAddress: ({ accountId, addressId, adminApiParams, }: Get
7594
7616
  * @category Hooks
7595
7617
  * @group Accounts
7596
7618
  */
7597
- declare const useGetAccountAddress: (accountId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountAddress>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7619
+ declare const useGetAccountAddress: (accountId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountAddress>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAddress>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7598
7620
 
7599
7621
  interface InfiniteQueryParams {
7600
7622
  pageParam: number;
@@ -7791,7 +7813,7 @@ declare const GetAccountLead: ({ accountId, leadId, adminApiParams, }: GetAccoun
7791
7813
  * @category Hooks
7792
7814
  * @group Accounts
7793
7815
  */
7794
- declare const useGetAccountLead: (accountId?: string, leadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountLead>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7816
+ declare const useGetAccountLead: (accountId?: string, leadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountLead>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Lead>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7795
7817
 
7796
7818
  /**
7797
7819
  * @category Keys
@@ -7898,7 +7920,7 @@ declare const GetAccount: ({ accountId, adminApiParams, }: GetAccountProps) => P
7898
7920
  * @category Hooks
7899
7921
  * @group Accounts
7900
7922
  */
7901
- declare const useGetAccount: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7923
+ declare const useGetAccount: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Account>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7902
7924
 
7903
7925
  /**
7904
7926
  * @category Keys
@@ -8083,7 +8105,7 @@ declare const GetAccountNotificationPreferences: ({ accountId, adminApiParams, }
8083
8105
  * @category Hooks
8084
8106
  * @group Accounts
8085
8107
  */
8086
- declare const useGetAccountNotificationPreferences: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountNotificationPreferences>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<NotificationPreferences>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8108
+ declare const useGetAccountNotificationPreferences: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountNotificationPreferences>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<NotificationPreferences>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8087
8109
 
8088
8110
  /**
8089
8111
  * @category Keys
@@ -8240,7 +8262,7 @@ declare const GetAccountsByInternalRefId: ({ internalRefId, adminApiParams, }: G
8240
8262
  * @category Hooks
8241
8263
  * @group Accounts
8242
8264
  */
8243
- declare const useGetAccountsByInternalRefId: (internalRefId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountsByInternalRefId>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8265
+ declare const useGetAccountsByInternalRefId: (internalRefId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountsByInternalRefId>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Account[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8244
8266
 
8245
8267
  /**
8246
8268
  * @category Keys
@@ -8295,7 +8317,7 @@ declare const GetActivity: ({ activityId, adminApiParams, }: GetActivityProps) =
8295
8317
  * @category Hooks
8296
8318
  * @group Activities
8297
8319
  */
8298
- declare const useGetActivity: (activityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Activity>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8320
+ declare const useGetActivity: (activityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Activity>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8299
8321
 
8300
8322
  /**
8301
8323
  * @category Keys
@@ -8373,7 +8395,7 @@ declare const GetAdvertisement: ({ advertisementId, adminApiParams, }: GetAdvert
8373
8395
  * @category Hooks
8374
8396
  * @group Advertisements
8375
8397
  */
8376
- declare const useGetAdvertisement: (advertisementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Advertisement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8398
+ declare const useGetAdvertisement: (advertisementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Advertisement>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8377
8399
 
8378
8400
  /**
8379
8401
  * @category Keys
@@ -8477,7 +8499,7 @@ declare const GetAnnouncementTranslation: ({ announcementId, locale, adminApiPar
8477
8499
  * @category Hooks
8478
8500
  * @announcement Announcements
8479
8501
  */
8480
- declare const useGetAnnouncementTranslation: (announcementId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncementTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AnnouncementTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8502
+ declare const useGetAnnouncementTranslation: (announcementId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncementTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AnnouncementTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8481
8503
 
8482
8504
  /**
8483
8505
  * @category Keys
@@ -8529,7 +8551,7 @@ declare const GetAnnouncement: ({ announcementId, adminApiParams, }: GetAnnounce
8529
8551
  * @category Hooks
8530
8552
  * @group Announcements
8531
8553
  */
8532
- declare const useGetAnnouncement: (announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8554
+ declare const useGetAnnouncement: (announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncement>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Announcement>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8533
8555
 
8534
8556
  /**
8535
8557
  * @category Keys
@@ -8634,7 +8656,7 @@ declare const GetAPILog: ({ logId, adminApiParams, }: GetAPILogParams) => Promis
8634
8656
  * @category Hooks
8635
8657
  * @group Emails
8636
8658
  */
8637
- declare const useGetAPILog: (logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAPILog>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<APILog>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8659
+ declare const useGetAPILog: (logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAPILog>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<APILog>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8638
8660
 
8639
8661
  /**
8640
8662
  * @category Key
@@ -8692,7 +8714,7 @@ declare const GetAuthSession: ({ authSessionId, adminApiParams, }: GetAuthSessio
8692
8714
  * @category Hooks
8693
8715
  * @group Emails
8694
8716
  */
8695
- declare const useGetAuthSession: (authSessionId?: string | number, options?: SingleQueryOptions<ReturnType<typeof GetAuthSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AuthSession>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8717
+ declare const useGetAuthSession: (authSessionId?: string | number, options?: SingleQueryOptions<ReturnType<typeof GetAuthSession>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AuthSession>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8696
8718
 
8697
8719
  /**
8698
8720
  * @category Key
@@ -8744,7 +8766,7 @@ declare const GetBenefitTranslation: ({ benefitId, locale, adminApiParams, }: Ge
8744
8766
  * @category Hooks
8745
8767
  * @group Benefits
8746
8768
  */
8747
- declare const useGetBenefitTranslation: (benefitId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefitTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BenefitTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8769
+ declare const useGetBenefitTranslation: (benefitId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefitTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BenefitTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8748
8770
 
8749
8771
  /**
8750
8772
  * @category Keys
@@ -8796,7 +8818,7 @@ declare const GetBenefit: ({ benefitId, adminApiParams, }: GetBenefitProps) => P
8796
8818
  * @category Hooks
8797
8819
  * @group Benefits
8798
8820
  */
8799
- declare const useGetBenefit: (benefitId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefit>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Benefit>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8821
+ declare const useGetBenefit: (benefitId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefit>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Benefit>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8800
8822
 
8801
8823
  /**
8802
8824
  * @category Keys
@@ -8878,7 +8900,7 @@ declare const GetBookingSpaceQuestionChoiceTranslation: ({ placeId, spaceId, que
8878
8900
  * @category Hooks
8879
8901
  * @group Bookings
8880
8902
  */
8881
- declare const useGetBookingSpaceQuestionChoiceTranslation: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionChoiceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8903
+ declare const useGetBookingSpaceQuestionChoiceTranslation: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceQuestionChoiceTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8882
8904
 
8883
8905
  /**
8884
8906
  * @category Keys
@@ -8907,7 +8929,7 @@ declare const GetBookingSpaceQuestionChoiceTranslations: ({ placeId, spaceId, qu
8907
8929
  * @category Hooks
8908
8930
  * @group Bookings
8909
8931
  */
8910
- declare const useGetBookingSpaceQuestionChoiceTranslations: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoiceTranslations>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionChoiceTranslation[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8932
+ declare const useGetBookingSpaceQuestionChoiceTranslations: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoiceTranslations>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceQuestionChoiceTranslation[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8911
8933
 
8912
8934
  /**
8913
8935
  * @category Keys
@@ -8936,7 +8958,7 @@ declare const GetBookingSpaceQuestionChoice: ({ placeId, spaceId, questionId, ch
8936
8958
  * @category Hooks
8937
8959
  * @group Bookings
8938
8960
  */
8939
- declare const useGetBookingSpaceQuestionChoice: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionChoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8961
+ declare const useGetBookingSpaceQuestionChoice: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceQuestionChoice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8940
8962
 
8941
8963
  /**
8942
8964
  * @category Keys
@@ -8993,7 +9015,7 @@ declare const GetBookingSpaceQuestionTranslation: ({ placeId, spaceId, questionI
8993
9015
  * @category Hooks
8994
9016
  * @group Bookings
8995
9017
  */
8996
- declare const useGetBookingSpaceQuestionTranslation: (placeId?: string, spaceId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9018
+ declare const useGetBookingSpaceQuestionTranslation: (placeId?: string, spaceId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceQuestionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8997
9019
 
8998
9020
  /**
8999
9021
  * @category Keys
@@ -9021,7 +9043,7 @@ declare const GetBookingSpaceQuestionTranslations: ({ placeId, spaceId, question
9021
9043
  * @category Hooks
9022
9044
  * @group Bookings
9023
9045
  */
9024
- declare const useGetBookingSpaceQuestionTranslations: (placeId?: string, spaceId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionTranslations>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionTranslation[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9046
+ declare const useGetBookingSpaceQuestionTranslations: (placeId?: string, spaceId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionTranslations>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceQuestionTranslation[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9025
9047
 
9026
9048
  /**
9027
9049
  * @category Keys
@@ -9049,7 +9071,7 @@ declare const GetBookingSpaceQuestion: ({ placeId, spaceId, questionId, adminApi
9049
9071
  * @category Hooks
9050
9072
  * @group Bookings
9051
9073
  */
9052
- declare const useGetBookingSpaceQuestion: (placeId?: string, spaceId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestion>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9074
+ declare const useGetBookingSpaceQuestion: (placeId?: string, spaceId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestion>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceQuestion>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9053
9075
 
9054
9076
  /**
9055
9077
  * @category Keys
@@ -9102,7 +9124,7 @@ declare const GetBooking: ({ bookingId, adminApiParams, }: GetBookingProps) => P
9102
9124
  * @category Hooks
9103
9125
  * @group Bookings
9104
9126
  */
9105
- declare const useGetBooking: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBooking>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9127
+ declare const useGetBooking: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBooking>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Booking>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9106
9128
 
9107
9129
  /**
9108
9130
  * @category Keys
@@ -9128,7 +9150,7 @@ declare const GetBookingPlace: ({ placeId, adminApiParams, }: GetBookingPlacePro
9128
9150
  * @category Hooks
9129
9151
  * @group Bookings
9130
9152
  */
9131
- declare const useGetBookingPlace: (placeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlace>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingPlace>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9153
+ declare const useGetBookingPlace: (placeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlace>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingPlace>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9132
9154
 
9133
9155
  /**
9134
9156
  * @category Keys
@@ -9209,7 +9231,7 @@ declare const GetBookingPlaceTranslation: ({ placeId, locale, adminApiParams, }:
9209
9231
  * @category Hooks
9210
9232
  * @group Bookings
9211
9233
  */
9212
- declare const useGetBookingPlaceTranslation: (placeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlaceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingPlaceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9234
+ declare const useGetBookingPlaceTranslation: (placeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlaceTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingPlaceTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9213
9235
 
9214
9236
  /**
9215
9237
  * @category Keys
@@ -9286,7 +9308,7 @@ declare const GetBookingResponses: ({ bookingId, adminApiParams, }: GetBookingRe
9286
9308
  * @category Hooks
9287
9309
  * @group Bookings
9288
9310
  */
9289
- declare const useGetBookingResponses: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingResponses>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseBookingQuestionResponse[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9311
+ declare const useGetBookingResponses: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingResponses>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseBookingQuestionResponse[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9290
9312
 
9291
9313
  /**
9292
9314
  * @category Keys
@@ -9313,7 +9335,7 @@ declare const GetBookingSpace: ({ placeId, spaceId, adminApiParams, }: GetBookin
9313
9335
  * @category Hooks
9314
9336
  * @group Bookings
9315
9337
  */
9316
- declare const useGetBookingSpace: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpace>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpace>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9338
+ declare const useGetBookingSpace: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpace>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpace>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9317
9339
 
9318
9340
  /**
9319
9341
  * @category Keys
@@ -9340,7 +9362,7 @@ declare const GetBookingSpaceAvailabilities: ({ placeId, spaceId, adminApiParams
9340
9362
  * @category Hooks
9341
9363
  * @group Bookings
9342
9364
  */
9343
- declare const useGetBookingSpaceAvailabilities: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailabilities>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceAvailability[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9365
+ declare const useGetBookingSpaceAvailabilities: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailabilities>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceAvailability[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9344
9366
 
9345
9367
  /**
9346
9368
  * @category Keys
@@ -9368,7 +9390,7 @@ declare const GetBookingSpaceAvailability: ({ placeId, spaceId, availabilityId,
9368
9390
  * @category Hooks
9369
9391
  * @group Bookings
9370
9392
  */
9371
- declare const useGetBookingSpaceAvailability: (placeId?: string, spaceId?: string, availabilityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailability>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceAvailability>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9393
+ declare const useGetBookingSpaceAvailability: (placeId?: string, spaceId?: string, availabilityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailability>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceAvailability>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9372
9394
 
9373
9395
  /**
9374
9396
  * @category Keys
@@ -9396,7 +9418,7 @@ declare const GetBookingSpaceBlackout: ({ placeId, spaceId, blackoutId, adminApi
9396
9418
  * @category Hooks
9397
9419
  * @group Bookings
9398
9420
  */
9399
- declare const useGetBookingSpaceBlackout: (placeId?: string, spaceId?: string, blackoutId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceBlackout>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceBlackout>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9421
+ declare const useGetBookingSpaceBlackout: (placeId?: string, spaceId?: string, blackoutId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceBlackout>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceBlackout>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9400
9422
 
9401
9423
  /**
9402
9424
  * @category Keys
@@ -9513,10 +9535,10 @@ declare const GetBookingSpaceSlots: ({ placeId, spaceId, firstDayOfMonth, adminA
9513
9535
  * @category Hooks
9514
9536
  * @group Bookings
9515
9537
  */
9516
- declare const useGetBookingSpaceSlots: (placeId: string | undefined, spaceId: string | undefined, firstDayOfMonth: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceSlots>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
9538
+ declare const useGetBookingSpaceSlots: (placeId: string | undefined, spaceId: string | undefined, firstDayOfMonth: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceSlots>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<{
9517
9539
  day: string;
9518
9540
  slots: BookingSlot[];
9519
- }[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9541
+ }[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9520
9542
 
9521
9543
  /**
9522
9544
  * @category Keys
@@ -9571,7 +9593,7 @@ declare const GetBookingSpaceTranslation: ({ placeId, spaceId, locale, adminApiP
9571
9593
  * @category Hooks
9572
9594
  * @group Bookings
9573
9595
  */
9574
- declare const useGetBookingSpaceTranslation: (placeId?: string, spaceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9596
+ declare const useGetBookingSpaceTranslation: (placeId?: string, spaceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingSpaceTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9575
9597
 
9576
9598
  /**
9577
9599
  * @category Keys
@@ -9653,7 +9675,7 @@ declare const GetChannelContentGuestTranslation: ({ channelId, contentId, guestI
9653
9675
  * @category Hooks
9654
9676
  * @group Channels
9655
9677
  */
9656
- declare const useGetChannelContentGuestTranslation: (channelId?: string, contentId?: string, guestId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuestTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuestTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9678
+ declare const useGetChannelContentGuestTranslation: (channelId?: string, contentId?: string, guestId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuestTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ChannelContentGuestTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9657
9679
 
9658
9680
  /**
9659
9681
  * @category Keys
@@ -9709,7 +9731,7 @@ declare const GetChannelContentTranslation: ({ channelId, contentId, locale, adm
9709
9731
  * @category Hooks
9710
9732
  * @group Channels
9711
9733
  */
9712
- declare const useGetChannelContentTranslation: (channelId?: string, contentId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9734
+ declare const useGetChannelContentTranslation: (channelId?: string, contentId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ChannelContentTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9713
9735
 
9714
9736
  /**
9715
9737
  * @category Keys
@@ -9763,7 +9785,7 @@ declare const GetChannelTranslation: ({ channelId, locale, adminApiParams, }: Ge
9763
9785
  * @category Hooks
9764
9786
  * @group Channels
9765
9787
  */
9766
- declare const useGetChannelTranslation: (channelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9788
+ declare const useGetChannelTranslation: (channelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ChannelTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9767
9789
 
9768
9790
  /**
9769
9791
  * @category Keys
@@ -9815,7 +9837,7 @@ declare const GetChannel: ({ channelId, adminApiParams, }: GetChannelProps) => P
9815
9837
  * @category Hooks
9816
9838
  * @group Channels
9817
9839
  */
9818
- declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9840
+ declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Channel>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9819
9841
 
9820
9842
  /**
9821
9843
  * @category Keys
@@ -9869,7 +9891,7 @@ declare const GetChannelContent: ({ channelId, contentId, adminApiParams, }: Get
9869
9891
  * @category Hooks
9870
9892
  * @group Channels
9871
9893
  */
9872
- declare const useGetChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9894
+ declare const useGetChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContent>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ChannelContent>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9873
9895
 
9874
9896
  /**
9875
9897
  * @category Keys
@@ -9926,7 +9948,7 @@ declare const GetChannelContentGuest: ({ channelId, contentId, guestId, adminApi
9926
9948
  * @category Hooks
9927
9949
  * @group Channels
9928
9950
  */
9929
- declare const useGetChannelContentGuest: (channelId?: string, contentId?: string, guestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9951
+ declare const useGetChannelContentGuest: (channelId?: string, contentId?: string, guestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuest>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ChannelContentGuest>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9930
9952
 
9931
9953
  /**
9932
9954
  * @category Keys
@@ -10035,7 +10057,7 @@ declare const GetChannelSubscriber: ({ channelId, accountId, adminApiParams, }:
10035
10057
  * @category Hooks
10036
10058
  * @group Channels
10037
10059
  */
10038
- declare const useGetChannelSubscriber: (channelId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelSubscriber>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10060
+ declare const useGetChannelSubscriber: (channelId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelSubscriber>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseChannelSubscriber>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10039
10061
 
10040
10062
  /**
10041
10063
  * @category Keys
@@ -10166,7 +10188,7 @@ declare const GetDashboard: ({ adminApiParams, dashboardId, }: GetDashboardProps
10166
10188
  * @category Hooks
10167
10189
  * @group Dashboards
10168
10190
  */
10169
- declare const useGetDashboard: (dashboardId?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboard>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Dashboard>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10191
+ declare const useGetDashboard: (dashboardId?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboard>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Dashboard>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10170
10192
 
10171
10193
  /**
10172
10194
  * @category Keys
@@ -10219,7 +10241,7 @@ declare const GetDashboardWidgets: ({ adminApiParams, dashboardId, type, }: GetD
10219
10241
  * @category Hooks
10220
10242
  * @group Dashboards
10221
10243
  */
10222
- declare const useGetDashboardWidgets: (dashboardId: string, type?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardWidgets>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<DashboardWidget[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10244
+ declare const useGetDashboardWidgets: (dashboardId: string, type?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardWidgets>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<DashboardWidget[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10223
10245
 
10224
10246
  /**
10225
10247
  * @category Key
@@ -10245,7 +10267,7 @@ declare const GetEmailReceipt: ({ emailReceiptId, adminApiParams, }: GetEmailRec
10245
10267
  * @category Hooks
10246
10268
  * @group Emails
10247
10269
  */
10248
- declare const useGetEmailReceipt: (emailReceiptId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEmailReceipt>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EmailReceipt>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10270
+ declare const useGetEmailReceipt: (emailReceiptId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEmailReceipt>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EmailReceipt>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10249
10271
 
10250
10272
  /**
10251
10273
  * @category Key
@@ -10320,7 +10342,7 @@ declare const GetEventActivationTranslation: ({ eventId, activationId, locale, a
10320
10342
  * @category Hooks
10321
10343
  * @group Events
10322
10344
  */
10323
- declare const useGetEventActivationTranslation: (eventId?: string, activationId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ActivationTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10345
+ declare const useGetEventActivationTranslation: (eventId?: string, activationId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ActivationTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10324
10346
 
10325
10347
  /**
10326
10348
  * @category Keys
@@ -10374,7 +10396,7 @@ declare const GetEventActivation: ({ eventId, activationId, adminApiParams, }: G
10374
10396
  * @category Hooks
10375
10397
  * @group Events
10376
10398
  */
10377
- declare const useGetEventActivation: (eventId: string, activationId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventActivation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10399
+ declare const useGetEventActivation: (eventId: string, activationId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventActivation>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10378
10400
 
10379
10401
  /**
10380
10402
  * @category Keys
@@ -10402,7 +10424,7 @@ declare const GetEventActivationCompletion: ({ eventId, activationId, completion
10402
10424
  * @category Hooks
10403
10425
  * @group Events
10404
10426
  */
10405
- declare const useGetEventActivationCompletion: (eventId: string, activationId: string, completionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationCompletion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ActivationCompletion>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10427
+ declare const useGetEventActivationCompletion: (eventId: string, activationId: string, completionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationCompletion>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ActivationCompletion>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10406
10428
 
10407
10429
  /**
10408
10430
  * @category Keys
@@ -10510,7 +10532,7 @@ declare const GetEventAddOnTranslation: ({ eventId, addOnId, locale, adminApiPar
10510
10532
  * @category Hooks
10511
10533
  * @group Events
10512
10534
  */
10513
- declare const useGetEventAddOnTranslation: (eventId?: string, addOnId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAddOnTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOnTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10535
+ declare const useGetEventAddOnTranslation: (eventId?: string, addOnId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAddOnTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventAddOnTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10514
10536
 
10515
10537
  /**
10516
10538
  * @category Keys
@@ -10563,7 +10585,7 @@ declare const GetAllEventAddOns: ({ eventId, adminApiParams, }: GetAllEventAddOn
10563
10585
  * @category Hooks
10564
10586
  * @group Events
10565
10587
  */
10566
- declare const useGetAllEventAddOns: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10588
+ declare const useGetAllEventAddOns: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventAddOns>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventAddOn[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10567
10589
 
10568
10590
  /**
10569
10591
  * @category Keys
@@ -10590,7 +10612,7 @@ declare const GetEventAddOn: ({ eventId, addOnId, adminApiParams, }: GetEventAdd
10590
10612
  * @category Hooks
10591
10613
  * @group Events
10592
10614
  */
10593
- declare const useGetEventAddOn: (eventId?: string, addOnId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAddOn>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10615
+ declare const useGetEventAddOn: (eventId?: string, addOnId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAddOn>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventAddOn>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10594
10616
 
10595
10617
  /**
10596
10618
  * @category Keys
@@ -10726,7 +10748,7 @@ declare const GetEventAttendeePackage: ({ eventId, accountId, packageId, adminAp
10726
10748
  * @category Hooks
10727
10749
  * @group Events
10728
10750
  */
10729
- declare const useGetEventAttendeePackage: (eventId: string, accountId: string, packageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePackage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AttendeePackage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10751
+ declare const useGetEventAttendeePackage: (eventId: string, accountId: string, packageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePackage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AttendeePackage>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10730
10752
 
10731
10753
  /**
10732
10754
  * @category Keys
@@ -10808,7 +10830,7 @@ declare const GetEventReservation: ({ eventId, reservationId, adminApiParams, }:
10808
10830
  * @category Hooks
10809
10831
  * @group Events
10810
10832
  */
10811
- declare const useGetEventReservation: (eventId: string, reservationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventReservation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomTypeReservation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10833
+ declare const useGetEventReservation: (eventId: string, reservationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventReservation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventRoomTypeReservation>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10812
10834
 
10813
10835
  /**
10814
10836
  * @category Keys
@@ -10888,7 +10910,7 @@ declare const GetEventAttendee: ({ eventId, accountId, adminApiParams, }: GetEve
10888
10910
  * @category Hooks
10889
10911
  * @group Events
10890
10912
  */
10891
- declare const useGetEventAttendee: (eventId: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAttendee>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10913
+ declare const useGetEventAttendee: (eventId: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendee>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventAttendee>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10892
10914
 
10893
10915
  /**
10894
10916
  * @category Keys
@@ -11080,7 +11102,7 @@ declare const GetEventAttribute: ({ eventId, attributeId, adminApiParams, }: Get
11080
11102
  * @category Hooks
11081
11103
  * @group Events
11082
11104
  */
11083
- declare const useGetEventAttribute: (eventId?: string, attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttribute>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAttribute>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11105
+ declare const useGetEventAttribute: (eventId?: string, attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttribute>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventAttribute>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11084
11106
 
11085
11107
  /**
11086
11108
  * @category Keys
@@ -11133,7 +11155,7 @@ declare const GetEventBlock: ({ eventId, blockId, adminApiParams, }: GetEventBlo
11133
11155
  * @category Hooks
11134
11156
  * @group Events
11135
11157
  */
11136
- declare const useGetEventBlock: (eventId?: string, blockId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventBlock>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventBlock>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11158
+ declare const useGetEventBlock: (eventId?: string, blockId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventBlock>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventBlock>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11137
11159
 
11138
11160
  /**
11139
11161
  * @category Keys
@@ -11213,7 +11235,7 @@ declare const GetEventRegistrationBypass: ({ eventId, bypassId, adminApiParams,
11213
11235
  * @category Hooks
11214
11236
  * @group Events
11215
11237
  */
11216
- declare const useGetEventRegistrationBypass: (eventId?: string, bypassId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistrationBypass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationBypass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11238
+ declare const useGetEventRegistrationBypass: (eventId?: string, bypassId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistrationBypass>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationBypass>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11217
11239
 
11218
11240
  /**
11219
11241
  * @category Keys
@@ -11287,7 +11309,7 @@ declare const GetEventCoupon: ({ eventId, couponId, adminApiParams, }: GetEventC
11287
11309
  * @category Hooks
11288
11310
  * @group Events
11289
11311
  */
11290
- declare const useGetEventCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Coupon>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11312
+ declare const useGetEventCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventCoupon>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Coupon>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11291
11313
 
11292
11314
  /**
11293
11315
  * @category Keys
@@ -11452,7 +11474,7 @@ declare const GetEventEmailTranslation: ({ eventId, type, locale, adminApiParams
11452
11474
  * @category Hooks
11453
11475
  * @group Events
11454
11476
  */
11455
- declare const useGetEventEmailTranslation: (eventId: string | undefined, type: EventEmailType, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventEmailTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventEmailTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11477
+ declare const useGetEventEmailTranslation: (eventId: string | undefined, type: EventEmailType, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventEmailTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventEmailTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11456
11478
 
11457
11479
  /**
11458
11480
  * @category Keys
@@ -11506,7 +11528,7 @@ declare const GetEventEmail: ({ eventId, type, adminApiParams, }: GetEventEmailP
11506
11528
  * @category Hooks
11507
11529
  * @group Events
11508
11530
  */
11509
- declare const useGetEventEmail: (eventId: string | undefined, type: EventEmailType, options?: SingleQueryOptions<ReturnType<typeof GetEventEmail>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventEmail>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11531
+ declare const useGetEventEmail: (eventId: string | undefined, type: EventEmailType, options?: SingleQueryOptions<ReturnType<typeof GetEventEmail>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventEmail>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11510
11532
 
11511
11533
  /**
11512
11534
  * @category Keys
@@ -11535,7 +11557,7 @@ declare const GetEventFaqSectionQuestionTranslation: ({ eventId, sectionId, ques
11535
11557
  * @category Hooks
11536
11558
  * @group Events
11537
11559
  */
11538
- declare const useGetEventFaqSectionQuestionTranslation: (eventId?: string, sectionId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11560
+ declare const useGetEventFaqSectionQuestionTranslation: (eventId?: string, sectionId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<FaqTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11539
11561
 
11540
11562
  /**
11541
11563
  * @category Keys
@@ -11591,7 +11613,7 @@ declare const GetEventFaqSectionTranslation: ({ eventId, sectionId, locale, admi
11591
11613
  * @category Hooks
11592
11614
  * @group Events
11593
11615
  */
11594
- declare const useGetEventFaqSectionTranslation: (eventId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqSectionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11616
+ declare const useGetEventFaqSectionTranslation: (eventId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<FaqSectionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11595
11617
 
11596
11618
  /**
11597
11619
  * @category Keys
@@ -11645,7 +11667,7 @@ declare const GetEventFaqSection: ({ eventId, sectionId, adminApiParams, }: GetE
11645
11667
  * @category Hooks
11646
11668
  * @group Events
11647
11669
  */
11648
- declare const useGetEventFaqSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11670
+ declare const useGetEventFaqSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSection>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<FaqSection>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11649
11671
 
11650
11672
  /**
11651
11673
  * @category Keys
@@ -11673,7 +11695,7 @@ declare const GetEventFaqSectionQuestion: ({ eventId, sectionId, questionId, adm
11673
11695
  * @category Hooks
11674
11696
  * @group Events
11675
11697
  */
11676
- declare const useGetEventFaqSectionQuestion: (eventId?: string, sectionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Faq>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11698
+ declare const useGetEventFaqSectionQuestion: (eventId?: string, sectionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionQuestion>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Faq>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11677
11699
 
11678
11700
  /**
11679
11701
  * @category Keys
@@ -11754,7 +11776,7 @@ declare const GetEventFollowupTranslation: ({ eventId, followupId, locale, admin
11754
11776
  * @category Hooks
11755
11777
  * @group Events
11756
11778
  */
11757
- declare const useGetEventFollowupTranslation: (eventId?: string, followupId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFollowupTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowupTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11779
+ declare const useGetEventFollowupTranslation: (eventId?: string, followupId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFollowupTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationFollowupTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11758
11780
 
11759
11781
  /**
11760
11782
  * @category Keys
@@ -11808,7 +11830,7 @@ declare const GetEventFollowup: ({ eventId, followupId, adminApiParams, }: GetEv
11808
11830
  * @category Hooks
11809
11831
  * @group Events
11810
11832
  */
11811
- declare const useGetEventFollowup: (eventId?: string, followupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFollowup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11833
+ declare const useGetEventFollowup: (eventId?: string, followupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFollowup>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationFollowup>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11812
11834
 
11813
11835
  /**
11814
11836
  * @category Keys
@@ -11971,7 +11993,7 @@ declare const GetEventRoundMatch: ({ eventId, roundId, matchId, adminApiParams,
11971
11993
  * @category Hooks
11972
11994
  * @group Events
11973
11995
  */
11974
- declare const useGetEventRoundMatch: (eventId?: string, roundId?: string, matchId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoundMatch>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Match>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11996
+ declare const useGetEventRoundMatch: (eventId?: string, roundId?: string, matchId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoundMatch>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Match>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11975
11997
 
11976
11998
  /**
11977
11999
  * @category Keys
@@ -12108,7 +12130,7 @@ declare const GetEventRoundQuestionsSummary: ({ eventId, roundId, adminApiParams
12108
12130
  * @category Hooks
12109
12131
  * @group Events
12110
12132
  */
12111
- declare const useGetEventRoundQuestionsSummary: (eventId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoundQuestionsSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<string, "exclude" | "include" | "split">>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12133
+ declare const useGetEventRoundQuestionsSummary: (eventId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoundQuestionsSummary>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Record<string, "exclude" | "include" | "split">>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12112
12134
 
12113
12135
  /**
12114
12136
  * @category Keys
@@ -12134,7 +12156,7 @@ declare const GetEventRounds: ({ eventId, adminApiParams, }: GetEventRoundsProps
12134
12156
  * @category Hooks
12135
12157
  * @group Events
12136
12158
  */
12137
- declare const useGetEventRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRounds>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Round[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12159
+ declare const useGetEventRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRounds>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Round[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12138
12160
 
12139
12161
  /**
12140
12162
  * @category Keys
@@ -12162,9 +12184,9 @@ declare const GetEventSessionsWithRounds: ({ eventId, adminApiParams, }: GetEven
12162
12184
  * @category Hooks
12163
12185
  * @group Events
12164
12186
  */
12165
- declare const useGetEventSessionsWithRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionsWithRounds>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<(EventSession & {
12187
+ declare const useGetEventSessionsWithRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionsWithRounds>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<(EventSession & {
12166
12188
  rounds: Round[];
12167
- })[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12189
+ })[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12168
12190
 
12169
12191
  /**
12170
12192
  * @category Keys
@@ -12192,7 +12214,7 @@ declare const GetEventMediaItemTranslation: ({ eventId, mediaId, locale, adminAp
12192
12214
  * @category Hooks
12193
12215
  * @group Events
12194
12216
  */
12195
- declare const useGetEventMediaItemTranslation: (eventId?: string, mediaId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItemTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItemTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12217
+ declare const useGetEventMediaItemTranslation: (eventId?: string, mediaId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItemTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventMediaItemTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12196
12218
 
12197
12219
  /**
12198
12220
  * @category Keys
@@ -12246,7 +12268,7 @@ declare const GetEventMediaItem: ({ eventId, itemId, adminApiParams, }: GetEvent
12246
12268
  * @category Hooks
12247
12269
  * @group Events
12248
12270
  */
12249
- declare const useGetEventMediaItem: (eventId?: string, itemId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItem>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12271
+ declare const useGetEventMediaItem: (eventId?: string, itemId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItem>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventMediaItem>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12250
12272
 
12251
12273
  /**
12252
12274
  * @category Keys
@@ -12326,7 +12348,7 @@ declare const GetEventOnSite: ({ eventId, adminApiParams, }: GetEventOnSiteProps
12326
12348
  * @category Hooks
12327
12349
  * @group Events
12328
12350
  */
12329
- declare const useGetEventOnSite: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventOnSite>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventOnSite | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12351
+ declare const useGetEventOnSite: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventOnSite>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventOnSite | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12330
12352
 
12331
12353
  /**
12332
12354
  * @category Keys
@@ -12354,7 +12376,7 @@ declare const GetEventPackagePass: ({ eventId, packageId, passId, adminApiParams
12354
12376
  * @category Hooks
12355
12377
  * @group Events
12356
12378
  */
12357
- declare const useGetEventPackagePass: (eventId?: string, packageId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackagePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackagePass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12379
+ declare const useGetEventPackagePass: (eventId?: string, packageId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackagePass>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPackagePass>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12358
12380
 
12359
12381
  /**
12360
12382
  * @category Keys
@@ -12409,7 +12431,7 @@ declare const GetEventPackageTranslation: ({ eventId, packageId, locale, adminAp
12409
12431
  * @category Hooks
12410
12432
  * @group Events
12411
12433
  */
12412
- declare const useGetEventPackageTranslation: (eventId?: string, packageId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackageTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackageTranslation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12434
+ declare const useGetEventPackageTranslation: (eventId?: string, packageId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackageTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPackageTranslation>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12413
12435
 
12414
12436
  /**
12415
12437
  * @category Keys
@@ -12463,7 +12485,7 @@ declare const GetEventPackage: ({ eventId, packageId, adminApiParams, }: GetEven
12463
12485
  * @category Hooks
12464
12486
  * @group Events
12465
12487
  */
12466
- declare const useGetEventPackage: (eventId?: string, packageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12488
+ declare const useGetEventPackage: (eventId?: string, packageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPackage>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12467
12489
 
12468
12490
  /**
12469
12491
  * @category Keys
@@ -12517,7 +12539,7 @@ declare const GetEventPageTranslation: ({ eventId, pageId, locale, adminApiParam
12517
12539
  * @category Hooks
12518
12540
  * @group Events
12519
12541
  */
12520
- declare const useGetEventPageTranslation: (eventId?: string, pageId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPageTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPageTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12542
+ declare const useGetEventPageTranslation: (eventId?: string, pageId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPageTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPageTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12521
12543
 
12522
12544
  /**
12523
12545
  * @category Keys
@@ -12571,7 +12593,7 @@ declare const GetEventPage: ({ eventId, pageId, adminApiParams, }: GetEventPageP
12571
12593
  * @category Hooks
12572
12594
  * @group Events
12573
12595
  */
12574
- declare const useGetEventPage: (eventId?: string, pageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12596
+ declare const useGetEventPage: (eventId?: string, pageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPage>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12575
12597
 
12576
12598
  /**
12577
12599
  * @category Keys
@@ -12626,6 +12648,83 @@ declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, a
12626
12648
  */
12627
12649
  declare const useGetEventPages: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventPage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
12628
12650
 
12651
+ /**
12652
+ * @category Keys
12653
+ * @group Events
12654
+ */
12655
+ declare const EVENT_PASS_TYPE_EXCHANGE_TARGET_EXCHANGES_QUERY_KEY: (eventId: string, passTypeId: string, exchangeTargetId: string) => string[];
12656
+ /**
12657
+ * @category Setters
12658
+ * @group Events
12659
+ */
12660
+ declare const SET_EVENT_PASS_TYPE_EXCHANGE_TARGET_EXCHANGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_TYPE_EXCHANGE_TARGET_EXCHANGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypeExchangeTargetExchanges>>) => void;
12661
+ interface GetEventPassTypeExchangeTargetExchangesParams extends InfiniteQueryParams {
12662
+ eventId: string;
12663
+ passTypeId: string;
12664
+ exchangeTargetId: string;
12665
+ }
12666
+ /**
12667
+ * @category Queries
12668
+ * @group Events
12669
+ */
12670
+ declare const GetEventPassTypeExchangeTargetExchanges: ({ pageParam, pageSize, orderBy, search, eventId, passTypeId, exchangeTargetId, adminApiParams, }: GetEventPassTypeExchangeTargetExchangesParams) => Promise<ConnectedXMResponse<PassExchange[]>>;
12671
+ /**
12672
+ * @category Hooks
12673
+ * @group Events
12674
+ */
12675
+ declare const useGetEventPassTypeExchangeTargetExchanges: (eventId?: string, passTypeId?: string, exchangeTargetId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPassTypeExchangeTargetExchanges>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<PassExchange[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
12676
+
12677
+ /**
12678
+ * @category Keys
12679
+ * @group Events
12680
+ */
12681
+ declare const EVENT_PASS_TYPE_EXCHANGE_TARGET_PAYMENTS_QUERY_KEY: (eventId: string, passTypeId: string, exchangeTargetId: string) => string[];
12682
+ /**
12683
+ * @category Setters
12684
+ * @group Events
12685
+ */
12686
+ declare const SET_EVENT_PASS_TYPE_EXCHANGE_TARGET_PAYMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_TYPE_EXCHANGE_TARGET_PAYMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypeExchangeTargetPayments>>) => void;
12687
+ interface GetEventPassTypeExchangeTargetPaymentsParams extends InfiniteQueryParams {
12688
+ eventId: string;
12689
+ passTypeId: string;
12690
+ exchangeTargetId: string;
12691
+ }
12692
+ /**
12693
+ * @category Queries
12694
+ * @group Events
12695
+ */
12696
+ declare const GetEventPassTypeExchangeTargetPayments: ({ pageParam, pageSize, orderBy, search, eventId, passTypeId, exchangeTargetId, adminApiParams, }: GetEventPassTypeExchangeTargetPaymentsParams) => Promise<ConnectedXMResponse<Payment[]>>;
12697
+ /**
12698
+ * @category Hooks
12699
+ * @group Events
12700
+ */
12701
+ declare const useGetEventPassTypeExchangeTargetPayments: (eventId?: string, passTypeId?: string, exchangeTargetId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPassTypeExchangeTargetPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
12702
+
12703
+ /**
12704
+ * @category Keys
12705
+ * @group Events
12706
+ */
12707
+ declare const EVENT_PASS_TYPE_EXCHANGE_TARGETS_QUERY_KEY: (eventId: string, passTypeId: string) => string[];
12708
+ /**
12709
+ * @category Setters
12710
+ * @group Events
12711
+ */
12712
+ declare const SET_EVENT_PASS_TYPE_EXCHANGE_TARGETS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_PASS_TYPE_EXCHANGE_TARGETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypeExchangeTargets>>) => void;
12713
+ interface GetEventPassTypeExchangeTargetsParams extends InfiniteQueryParams {
12714
+ eventId: string;
12715
+ passTypeId: string;
12716
+ }
12717
+ /**
12718
+ * @category Queries
12719
+ * @group Events
12720
+ */
12721
+ declare const GetEventPassTypeExchangeTargets: ({ pageParam, pageSize, orderBy, search, eventId, passTypeId, adminApiParams, }: GetEventPassTypeExchangeTargetsParams) => Promise<ConnectedXMResponse<EventPassTypeExchangeTarget[]>>;
12722
+ /**
12723
+ * @category Hooks
12724
+ * @group Events
12725
+ */
12726
+ declare const useGetEventPassTypeExchangeTargets: (eventId?: string, passTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPassTypeExchangeTargets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventPassTypeExchangeTarget[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
12727
+
12629
12728
  declare const EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY: (eventId: string, passTypeId: string, scheduleId: string) => string[];
12630
12729
  declare const SET_EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPassTypePriceSchedule>>) => void;
12631
12730
  interface GetEventPassTypePriceScheduleParams extends SingleQueryParams {
@@ -12640,7 +12739,7 @@ interface GetEventPassTypePriceScheduleParams extends SingleQueryParams {
12640
12739
  * @description Returns a single scheduled price change for a specific event pass type, including its scheduled date and new price, and requires the read events permission.
12641
12740
  */
12642
12741
  declare const GetEventPassTypePriceSchedule: ({ eventId, passTypeId, scheduleId, adminApiParams, }: GetEventPassTypePriceScheduleParams) => Promise<ConnectedXMResponse<EventPassTypePriceSchedule>>;
12643
- declare const useGetEventPassTypePriceSchedule: (eventId?: string, passTypeId?: string, scheduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypePriceSchedule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassTypePriceSchedule>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12742
+ declare const useGetEventPassTypePriceSchedule: (eventId?: string, passTypeId?: string, scheduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypePriceSchedule>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPassTypePriceSchedule>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12644
12743
 
12645
12744
  /**
12646
12745
  * @category Keys
@@ -12683,7 +12782,7 @@ interface GetEventPassTypeRefundScheduleParams extends SingleQueryParams {
12683
12782
  * @description Retrieves a single refund schedule entry for an event pass type by its ID, including the refund window and percentage; requires read access to the event.
12684
12783
  */
12685
12784
  declare const GetEventPassTypeRefundSchedule: ({ eventId, passTypeId, scheduleId, adminApiParams, }: GetEventPassTypeRefundScheduleParams) => Promise<ConnectedXMResponse<EventPassTypeRefundSchedule>>;
12686
- declare const useGetEventPassTypeRefundSchedule: (eventId?: string, passTypeId?: string, scheduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypeRefundSchedule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassTypeRefundSchedule>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12785
+ declare const useGetEventPassTypeRefundSchedule: (eventId?: string, passTypeId?: string, scheduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypeRefundSchedule>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPassTypeRefundSchedule>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12687
12786
 
12688
12787
  /**
12689
12788
  * @category Keys
@@ -12738,7 +12837,7 @@ declare const GetEventPassTypeTranslation: ({ eventId, passTypeId, locale, admin
12738
12837
  * @category Hooks
12739
12838
  * @group Events
12740
12839
  */
12741
- declare const useGetEventPassTypeTranslation: (eventId?: string, passTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassTypeTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12840
+ declare const useGetEventPassTypeTranslation: (eventId?: string, passTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypeTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPassTypeTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12742
12841
 
12743
12842
  /**
12744
12843
  * @category Keys
@@ -12791,7 +12890,7 @@ declare const GetAllEventPassTypes: ({ eventId, adminApiParams, }: GetAllEventPa
12791
12890
  * @category Hooks
12792
12891
  * @group Events
12793
12892
  */
12794
- declare const useGetAllEventPassTypes: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12893
+ declare const useGetAllEventPassTypes: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventPassTypes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPassType[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12795
12894
 
12796
12895
  /**
12797
12896
  * @category Keys
@@ -12818,7 +12917,7 @@ declare const GetEventPassType: ({ eventId, passTypeId, adminApiParams, }: GetEv
12818
12917
  * @category Hooks
12819
12918
  * @group Events
12820
12919
  */
12821
- declare const useGetEventPassType: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12920
+ declare const useGetEventPassType: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassType>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPassType>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
12822
12921
 
12823
12922
  /**
12824
12923
  * @category Keys
@@ -13173,7 +13272,7 @@ declare const GetEventPassResponse: ({ eventId, passId, questionId, adminApiPara
13173
13272
  * @category Hooks
13174
13273
  * @group Events
13175
13274
  */
13176
- declare const useGetEventPassResponse: (eventId?: string, passId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassResponse>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionResponse>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13275
+ declare const useGetEventPassResponse: (eventId?: string, passId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassResponse>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationQuestionResponse>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13177
13276
 
13178
13277
  /**
13179
13278
  * @category Keys
@@ -13258,7 +13357,7 @@ declare const GetEventPass: ({ eventId, passId, adminApiParams, }: GetEventPassP
13258
13357
  * @category Hooks
13259
13358
  * @group Events
13260
13359
  */
13261
- declare const useGetEventPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13360
+ declare const useGetEventPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPass>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPass>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13262
13361
 
13263
13362
  /**
13264
13363
  * @category Keys
@@ -13287,7 +13386,7 @@ declare const GetEventPassMatches: ({ eventId, passId, sessionId, roundId, admin
13287
13386
  * @category Hooks
13288
13387
  * @group Events
13289
13388
  */
13290
- declare const useGetEventPassMatches: (eventId?: string, passId?: string, sessionId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassMatches>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Match[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13389
+ declare const useGetEventPassMatches: (eventId?: string, passId?: string, sessionId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassMatches>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Match[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13291
13390
 
13292
13391
  /**
13293
13392
  * @category Keys
@@ -13413,7 +13512,7 @@ declare const GetEventQuestionChoiceTranslation: ({ eventId, questionId, choiceI
13413
13512
  * @category Hooks
13414
13513
  * @group Events
13415
13514
  */
13416
- declare const useGetEventQuestionChoiceTranslation: (eventId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionChoiceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13515
+ declare const useGetEventQuestionChoiceTranslation: (eventId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationQuestionChoiceTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13417
13516
 
13418
13517
  /**
13419
13518
  * @category Keys
@@ -13469,7 +13568,7 @@ declare const GetEventQuestionTranslation: ({ eventId, questionId, locale, admin
13469
13568
  * @category Hooks
13470
13569
  * @group Events
13471
13570
  */
13472
- declare const useGetEventQuestionTranslation: (eventId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13571
+ declare const useGetEventQuestionTranslation: (eventId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationQuestionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13473
13572
 
13474
13573
  /**
13475
13574
  * @category Keys
@@ -13522,7 +13621,7 @@ declare const GetEventDashboardQuestions: ({ eventId, adminApiParams, }: GetEven
13522
13621
  * @category Hooks
13523
13622
  * @group Events
13524
13623
  */
13525
- declare const useGetEventDashboardQuestions: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventDashboardQuestions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseRegistrationQuestion[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13624
+ declare const useGetEventDashboardQuestions: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventDashboardQuestions>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseRegistrationQuestion[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13526
13625
 
13527
13626
  /**
13528
13627
  * @category Keys
@@ -13549,7 +13648,7 @@ declare const GetEventQuestion: ({ eventId, questionId, adminApiParams, }: GetEv
13549
13648
  * @category Hooks
13550
13649
  * @group Events
13551
13650
  */
13552
- declare const useGetEventQuestion: (eventId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestion>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13651
+ declare const useGetEventQuestion: (eventId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestion>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationQuestion>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13553
13652
 
13554
13653
  /**
13555
13654
  * @category Keys
@@ -13577,7 +13676,7 @@ declare const GetEventQuestionChoice: ({ eventId, questionId, choiceId, adminApi
13577
13676
  * @category Hooks
13578
13677
  * @group Events
13579
13678
  */
13580
- declare const useGetEventQuestionChoice: (eventId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionChoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13679
+ declare const useGetEventQuestionChoice: (eventId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionChoice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationQuestionChoice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13581
13680
 
13582
13681
  /**
13583
13682
  * @category Keys
@@ -13712,7 +13811,7 @@ declare const GetEventQuestionSummary: ({ adminApiParams, eventId, questionId, }
13712
13811
  * @category Hooks
13713
13812
  * @group Events
13714
13813
  */
13715
- declare const useGetEventQuestionSummary: (eventId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SummaryData>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13814
+ declare const useGetEventQuestionSummary: (eventId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionSummary>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SummaryData>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13716
13815
 
13717
13816
  /**
13718
13817
  * @category Keys
@@ -13766,7 +13865,7 @@ declare const GetEventRoomTypeTranslation: ({ eventId, roomTypeId, locale, admin
13766
13865
  * @category Hooks
13767
13866
  * @group Events
13768
13867
  */
13769
- declare const useGetEventRoomTypeTranslation: (eventId?: string, roomTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomTypeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomTypeTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13868
+ declare const useGetEventRoomTypeTranslation: (eventId?: string, roomTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomTypeTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventRoomTypeTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13770
13869
 
13771
13870
  /**
13772
13871
  * @category Keys
@@ -13820,7 +13919,7 @@ declare const GetEventRoomType: ({ eventId, roomTypeId, adminApiParams, }: GetEv
13820
13919
  * @category Hooks
13821
13920
  * @group Events
13822
13921
  */
13823
- declare const useGetEventRoomType: (eventId?: string, roomTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13922
+ declare const useGetEventRoomType: (eventId?: string, roomTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomType>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventRoomType>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13824
13923
 
13825
13924
  /**
13826
13925
  * @category Keys
@@ -13955,7 +14054,7 @@ declare const GetRoom: ({ eventId, roomId, adminApiParams, }: GetRoomProps) => P
13955
14054
  * @category Hooks
13956
14055
  * @group Events
13957
14056
  */
13958
- declare const useGetRoom: (eventId?: string, roomId?: string, options?: SingleQueryOptions<ReturnType<typeof GetRoom>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Room>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14057
+ declare const useGetRoom: (eventId?: string, roomId?: string, options?: SingleQueryOptions<ReturnType<typeof GetRoom>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Room>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
13959
14058
 
13960
14059
  /**
13961
14060
  * @category Keys
@@ -14036,7 +14135,7 @@ declare const GetEventSectionTranslation: ({ eventId, sectionId, locale, adminAp
14036
14135
  * @category Hooks
14037
14136
  * @group Events
14038
14137
  */
14039
- declare const useGetEventSectionTranslation: (eventId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSectionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14138
+ declare const useGetEventSectionTranslation: (eventId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSectionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationSectionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14040
14139
 
14041
14140
  /**
14042
14141
  * @category Keys
@@ -14090,7 +14189,7 @@ declare const GetEventSection: ({ eventId, sectionId, adminApiParams, }: GetEven
14090
14189
  * @category Hooks
14091
14190
  * @group Events
14092
14191
  */
14093
- declare const useGetEventSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14192
+ declare const useGetEventSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSection>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<RegistrationSection>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14094
14193
 
14095
14194
  /**
14096
14195
  * @category Keys
@@ -14253,7 +14352,7 @@ declare const GetEventSessionAccess: ({ eventId, sessionId, passId, adminApiPara
14253
14352
  * @category Hooks
14254
14353
  * @group Events
14255
14354
  */
14256
- declare const useGetEventSessionAccess: (eventId?: string, sessionId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionAccess>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionAccess>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14355
+ declare const useGetEventSessionAccess: (eventId?: string, sessionId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionAccess>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionAccess>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14257
14356
 
14258
14357
  /**
14259
14358
  * @category Keys
@@ -14338,7 +14437,7 @@ declare const GetEventSessionLocationTranslation: ({ eventId, locationId, locale
14338
14437
  * @category Hooks
14339
14438
  * @group Events
14340
14439
  */
14341
- declare const useGetEventSessionLocationTranslation: (eventId?: string, locationId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionLocationTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionLocationTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14440
+ declare const useGetEventSessionLocationTranslation: (eventId?: string, locationId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionLocationTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionLocationTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14342
14441
 
14343
14442
  /**
14344
14443
  * @category Keys
@@ -14392,7 +14491,7 @@ declare const GetEventSessionLocation: ({ eventId, locationId, adminApiParams, }
14392
14491
  * @category Hooks
14393
14492
  * @group Events
14394
14493
  */
14395
- declare const useGetEventSessionLocation: (eventId?: string, locationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionLocation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionLocation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14494
+ declare const useGetEventSessionLocation: (eventId?: string, locationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionLocation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionLocation>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14396
14495
 
14397
14496
  /**
14398
14497
  * @category Keys
@@ -14474,7 +14573,7 @@ declare const GetEventSessionRoundMatch: ({ eventId, sessionId, roundId, matchId
14474
14573
  * @category Hooks
14475
14574
  * @group Events
14476
14575
  */
14477
- declare const useGetEventSessionRoundMatch: (eventId?: string, sessionId?: string, roundId?: string, matchId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRoundMatch>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Match>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14576
+ declare const useGetEventSessionRoundMatch: (eventId?: string, sessionId?: string, roundId?: string, matchId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRoundMatch>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Match>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14478
14577
 
14479
14578
  /**
14480
14579
  * @category Keys
@@ -14616,7 +14715,7 @@ declare const GetEventSessionRoundQuestionsSummary: ({ eventId, sessionId, round
14616
14715
  * @category Hooks
14617
14716
  * @group Events
14618
14717
  */
14619
- declare const useGetEventSessionRoundQuestionsSummary: (eventId?: string, sessionId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRoundQuestionsSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<string, "exclude" | "include" | "split">>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14718
+ declare const useGetEventSessionRoundQuestionsSummary: (eventId?: string, sessionId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRoundQuestionsSummary>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Record<string, "exclude" | "include" | "split">>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14620
14719
 
14621
14720
  /**
14622
14721
  * @category Keys
@@ -14643,7 +14742,7 @@ declare const GetEventSessionRounds: ({ eventId, sessionId, adminApiParams, }: G
14643
14742
  * @category Hooks
14644
14743
  * @group Events
14645
14744
  */
14646
- declare const useGetEventSessionRounds: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRounds>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Round[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14745
+ declare const useGetEventSessionRounds: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRounds>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Round[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14647
14746
 
14648
14747
  /**
14649
14748
  * @category Keys
@@ -14673,7 +14772,7 @@ declare const GetEventSessionQuestionChoiceTranslation: ({ eventId, sessionId, q
14673
14772
  * @category Hooks
14674
14773
  * @group Events
14675
14774
  */
14676
- declare const useGetEventSessionQuestionChoiceTranslation: (eventId?: string, sessionId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestionChoiceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14775
+ declare const useGetEventSessionQuestionChoiceTranslation: (eventId?: string, sessionId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionQuestionChoiceTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14677
14776
 
14678
14777
  /**
14679
14778
  * @category Keys
@@ -14731,7 +14830,7 @@ declare const GetEventSessionQuestionTranslation: ({ eventId, sessionId, questio
14731
14830
  * @category Hooks
14732
14831
  * @group Events
14733
14832
  */
14734
- declare const useGetEventSessionQuestionTranslation: (eventId?: string, sessionId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14833
+ declare const useGetEventSessionQuestionTranslation: (eventId?: string, sessionId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionQuestionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14735
14834
 
14736
14835
  /**
14737
14836
  * @category Keys
@@ -14787,7 +14886,7 @@ declare const GetEventSessionQuestion: ({ eventId, sessionId, questionId, adminA
14787
14886
  * @category Hooks
14788
14887
  * @group Events
14789
14888
  */
14790
- declare const useGetEventSessionQuestion: (eventId?: string, sessionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestion>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14889
+ declare const useGetEventSessionQuestion: (eventId?: string, sessionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestion>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionQuestion>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14791
14890
 
14792
14891
  /**
14793
14892
  * @category Keys
@@ -14816,7 +14915,7 @@ declare const GetEventSessionQuestionChoice: ({ eventId, sessionId, questionId,
14816
14915
  * @category Hooks
14817
14916
  * @group Events
14818
14917
  */
14819
- declare const useGetEventSessionQuestionChoice: (eventId: string, sessionId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestionChoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14918
+ declare const useGetEventSessionQuestionChoice: (eventId: string, sessionId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionChoice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionQuestionChoice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14820
14919
 
14821
14920
  /**
14822
14921
  * @category Keys
@@ -14957,7 +15056,7 @@ declare const GetEventSessionSectionTranslation: ({ eventId, sessionId, sectionI
14957
15056
  * @category Hooks
14958
15057
  * @group Events
14959
15058
  */
14960
- declare const useGetEventSessionSectionTranslation: (eventId?: string, sessionId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSectionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15059
+ declare const useGetEventSessionSectionTranslation: (eventId?: string, sessionId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionSectionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionSectionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
14961
15060
 
14962
15061
  /**
14963
15062
  * @category Keys
@@ -15013,7 +15112,7 @@ declare const GetEventSessionSection: ({ eventId, sessionId, sectionId, adminApi
15013
15112
  * @category Hooks
15014
15113
  * @group Events
15015
15114
  */
15016
- declare const useGetEventSessionSection: (eventId?: string, sessionId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15115
+ declare const useGetEventSessionSection: (eventId?: string, sessionId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionSection>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionSection>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15017
15116
 
15018
15117
  /**
15019
15118
  * @category Keys
@@ -15097,7 +15196,7 @@ declare const GetEventSessionTimeTranslation: ({ eventId, sessionId, timeId, loc
15097
15196
  * @category Hooks
15098
15197
  * @group Events
15099
15198
  */
15100
- declare const useGetEventSessionTimeTranslation: (eventId?: string, sessionId?: string, timeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTimeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionTimeTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15199
+ declare const useGetEventSessionTimeTranslation: (eventId?: string, sessionId?: string, timeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTimeTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionTimeTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15101
15200
 
15102
15201
  /**
15103
15202
  * @category Keys
@@ -15153,7 +15252,7 @@ declare const GetEventSessionTime: ({ eventId, sessionId, timeId, adminApiParams
15153
15252
  * @category Hooks
15154
15253
  * @group Events
15155
15254
  */
15156
- declare const useGetEventSessionTime: (eventId?: string, sessionId?: string, timeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTime>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionTime>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15255
+ declare const useGetEventSessionTime: (eventId?: string, sessionId?: string, timeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTime>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionTime>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15157
15256
 
15158
15257
  /**
15159
15258
  * @category Keys
@@ -15236,7 +15335,7 @@ declare const GetEventSessionTranslation: ({ eventId, sessionId, locale, adminAp
15236
15335
  * @category Hooks
15237
15336
  * @group Events
15238
15337
  */
15239
- declare const useGetEventSessionTranslation: (eventId?: string, sessionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15338
+ declare const useGetEventSessionTranslation: (eventId?: string, sessionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSessionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15240
15339
 
15241
15340
  /**
15242
15341
  * @category Keys
@@ -15290,7 +15389,7 @@ declare const GetEventSession: ({ eventId, sessionId, adminApiParams, }: GetEven
15290
15389
  * @category Hooks
15291
15390
  * @group Events
15292
15391
  */
15293
- declare const useGetEventSession: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSession>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15392
+ declare const useGetEventSession: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSession>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSession>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15294
15393
 
15295
15394
  /**
15296
15395
  * @category Keys
@@ -15642,7 +15741,7 @@ declare const GetEventSpeakerTranslation: ({ eventId, speakerId, locale, adminAp
15642
15741
  * @category Hooks
15643
15742
  * @group Events
15644
15743
  */
15645
- declare const useGetEventSpeakerTranslation: (eventId?: string, speakerId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeakerTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSpeakerTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15744
+ declare const useGetEventSpeakerTranslation: (eventId?: string, speakerId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeakerTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSpeakerTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15646
15745
 
15647
15746
  /**
15648
15747
  * @category Keys
@@ -15696,7 +15795,7 @@ declare const GetEventSpeaker: ({ eventId, speakerId, adminApiParams, }: GetEven
15696
15795
  * @category Hooks
15697
15796
  * @group Events
15698
15797
  */
15699
- declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSpeaker>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15798
+ declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSpeaker>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15700
15799
 
15701
15800
  /**
15702
15801
  * @category Keys
@@ -15829,7 +15928,7 @@ declare const GetEventSponsorshipLevelTranslation: ({ eventId, levelId, locale,
15829
15928
  * @category Hooks
15830
15929
  * @group Events
15831
15930
  */
15832
- declare const useGetEventSponsorshipLevelTranslation: (eventId?: string, levelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipLevelTranslation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15931
+ declare const useGetEventSponsorshipLevelTranslation: (eventId?: string, levelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevelTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSponsorshipLevelTranslation>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15833
15932
 
15834
15933
  /**
15835
15934
  * @category Keys
@@ -15883,7 +15982,7 @@ declare const GetEventSponsorshipLevel: ({ eventId, levelId, adminApiParams, }:
15883
15982
  * @category Hooks
15884
15983
  * @group Events
15885
15984
  */
15886
- declare const useGetEventSponsorshipLevel: (eventId?: string, levelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipLevel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15985
+ declare const useGetEventSponsorshipLevel: (eventId?: string, levelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevel>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSponsorshipLevel>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15887
15986
 
15888
15987
  /**
15889
15988
  * @category Keys
@@ -15938,7 +16037,7 @@ declare const GetEventSponsorshipTranslation: ({ eventId, levelId, sponsorshipId
15938
16037
  * @category Hooks
15939
16038
  * @group Events
15940
16039
  */
15941
- declare const useGetEventSponsorshipTranslation: (eventId?: string, levelId?: string, sponsorshipId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipTranslation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16040
+ declare const useGetEventSponsorshipTranslation: (eventId?: string, levelId?: string, sponsorshipId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSponsorshipTranslation>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15942
16041
 
15943
16042
  /**
15944
16043
  * @category Keys
@@ -15994,7 +16093,7 @@ declare const GetEventSponsorship: ({ eventId, levelId, sponsorshipId, adminApiP
15994
16093
  * @category Hooks
15995
16094
  * @group Events
15996
16095
  */
15997
- declare const useGetEventSponsorship: (eventId?: string, levelId?: string, sponsorshipId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorship>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorship>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16096
+ declare const useGetEventSponsorship: (eventId?: string, levelId?: string, sponsorshipId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorship>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventSponsorship>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15998
16097
 
15999
16098
  /**
16000
16099
  * @category Keys
@@ -16074,7 +16173,7 @@ declare const GetEventTrackTranslation: ({ eventId, trackId, locale, adminApiPar
16074
16173
  * @category Hooks
16075
16174
  * @group Events
16076
16175
  */
16077
- declare const useGetEventTrackTranslation: (eventId?: string, trackId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTrackTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventTrackTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16176
+ declare const useGetEventTrackTranslation: (eventId?: string, trackId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTrackTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventTrackTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16078
16177
 
16079
16178
  /**
16080
16179
  * @category Keys
@@ -16128,7 +16227,7 @@ declare const GetEventTrack: ({ eventId, trackId, adminApiParams, }: GetEventTra
16128
16227
  * @category Hooks
16129
16228
  * @group Events
16130
16229
  */
16131
- declare const useGetEventTrack: (eventId?: string, trackId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTrack>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventTrack>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16230
+ declare const useGetEventTrack: (eventId?: string, trackId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTrack>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventTrack>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16132
16231
 
16133
16232
  /**
16134
16233
  * @category Keys
@@ -16261,7 +16360,7 @@ declare const GetEventTranslation: ({ eventId, locale, adminApiParams, }: GetEve
16261
16360
  * @category Hooks
16262
16361
  * @group Events
16263
16362
  */
16264
- declare const useGetEventTranslation: (eventId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16363
+ declare const useGetEventTranslation: (eventId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16265
16364
 
16266
16365
  /**
16267
16366
  * @category Keys
@@ -16313,7 +16412,7 @@ declare const GetEvent: ({ eventId, adminApiParams, }: GetEventProps) => Promise
16313
16412
  * @category Hooks
16314
16413
  * @group Events
16315
16414
  */
16316
- declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Event>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16415
+ declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Event>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16317
16416
 
16318
16417
  /**
16319
16418
  * @category Keys
@@ -16393,7 +16492,7 @@ declare const GetEventTiers: ({ eventId, adminApiParams, }: GetEventTiersProps)
16393
16492
  * @category Hooks
16394
16493
  * @group Events
16395
16494
  */
16396
- declare const useGetEventTiers: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTiers>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseTier[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16495
+ declare const useGetEventTiers: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTiers>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseTier[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16397
16496
 
16398
16497
  /**
16399
16498
  * @category Keys
@@ -16500,7 +16599,7 @@ declare const GetGroupInvitation: ({ groupId, invitationId, adminApiParams, }: G
16500
16599
  * @category Hooks
16501
16600
  * @group Groups
16502
16601
  */
16503
- declare const useGetGroupInvitation: (groupId?: string, invitationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupInvitation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupInvitation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16602
+ declare const useGetGroupInvitation: (groupId?: string, invitationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupInvitation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<GroupInvitation>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16504
16603
 
16505
16604
  /**
16506
16605
  * @category Keys
@@ -16606,7 +16705,7 @@ declare const GetGroupRequest: ({ groupId, requestId, adminApiParams, }: GetGrou
16606
16705
  * @category Hooks
16607
16706
  * @group Groups
16608
16707
  */
16609
- declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16708
+ declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<GroupRequest>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16610
16709
 
16611
16710
  /**
16612
16711
  * @category Keys
@@ -16686,7 +16785,7 @@ declare const GetGroupTranslation: ({ groupId, locale, adminApiParams, }: GetGro
16686
16785
  * @category Hooks
16687
16786
  * @group Groups
16688
16787
  */
16689
- declare const useGetGroupTranslation: (groupId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16788
+ declare const useGetGroupTranslation: (groupId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<GroupTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16690
16789
 
16691
16790
  /**
16692
16791
  * @category Keys
@@ -16738,7 +16837,7 @@ declare const GetGroup: ({ groupId, adminApiParams, }: GetGroupProps) => Promise
16738
16837
  * @category Hooks
16739
16838
  * @group Groups
16740
16839
  */
16741
- declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Group>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16840
+ declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Group>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16742
16841
 
16743
16842
  /**
16744
16843
  * @category Keys
@@ -16819,7 +16918,7 @@ declare const GetImport: ({ importId, adminApiParams, }: GetImportProps) => Prom
16819
16918
  * @category Hooks
16820
16919
  * @group Imports
16821
16920
  */
16822
- declare const useGetImport: (importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Import>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16921
+ declare const useGetImport: (importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImport>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Import>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16823
16922
 
16824
16923
  /**
16825
16924
  * @category Keys
@@ -16887,7 +16986,7 @@ declare const GetInterest: ({ interestId, adminApiParams, }: GetInterestProps) =
16887
16986
  * @category Hooks
16888
16987
  * @group Interests
16889
16988
  */
16890
- declare const useGetInterest: (interestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInterest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Interest>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16989
+ declare const useGetInterest: (interestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInterest>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Interest>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16891
16990
 
16892
16991
  /**
16893
16992
  * @category Keys
@@ -17095,7 +17194,7 @@ declare const GetInvoice: ({ invoiceId, adminApiParams, }: GetInvoiceProps) => P
17095
17194
  * @category Hooks
17096
17195
  * @group Invoices
17097
17196
  */
17098
- declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17197
+ declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Invoice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17099
17198
 
17100
17199
  /**
17101
17200
  * @category Keys
@@ -17122,7 +17221,7 @@ declare const GetInvoiceLineItem: ({ invoiceId, lineItemId, adminApiParams, }: G
17122
17221
  * @category Hooks
17123
17222
  * @group Invoices
17124
17223
  */
17125
- declare const useGetInvoiceLineItem: (invoiceId?: string, lineItemId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceLineItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<InvoiceLineItem>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17224
+ declare const useGetInvoiceLineItem: (invoiceId?: string, lineItemId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceLineItem>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<InvoiceLineItem>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17126
17225
 
17127
17226
  /**
17128
17227
  * @category Keys
@@ -17244,7 +17343,7 @@ declare const GetLogin: ({ username, adminApiParams, }: GetLoginProps) => Promis
17244
17343
  * @category Hooks
17245
17344
  * @group Logins
17246
17345
  */
17247
- declare const useGetLogin: (username?: string, options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Login>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17346
+ declare const useGetLogin: (username?: string, options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Login>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17248
17347
 
17249
17348
  /**
17250
17349
  * @category Key
@@ -17339,7 +17438,7 @@ declare const GetMeetingLink: ({ meetingId, linkId, adminApiParams, }: GetMeetin
17339
17438
  * @category Hooks
17340
17439
  * @group StreamsV2
17341
17440
  */
17342
- declare const useGetMeetingLink: (meetingId?: string, linkId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLink>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingLink>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17441
+ declare const useGetMeetingLink: (meetingId?: string, linkId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLink>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingLink>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17343
17442
 
17344
17443
  /**
17345
17444
  * @category Keys
@@ -17391,7 +17490,7 @@ declare const GetLivestream: ({ livestreamId, adminApiParams, }: GetLivestreamPa
17391
17490
  * @category Hooks
17392
17491
  * @group StreamsV2
17393
17492
  */
17394
- declare const useGetLivestream: (livestreamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLivestream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Livestream>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17493
+ declare const useGetLivestream: (livestreamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLivestream>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Livestream>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17395
17494
 
17396
17495
  /**
17397
17496
  * @category Keys
@@ -17469,7 +17568,7 @@ declare const GetMeetingParticipant: ({ meetingId, participantId, adminApiParams
17469
17568
  * @category Hooks
17470
17569
  * @group StreamsV2
17471
17570
  */
17472
- declare const useGetMeetingParticipant: (meetingId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingParticipant>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingParticipant>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17571
+ declare const useGetMeetingParticipant: (meetingId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingParticipant>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingParticipant>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17473
17572
 
17474
17573
  /**
17475
17574
  * @category Keys
@@ -17521,7 +17620,7 @@ declare const GetPreset: ({ presetId, adminApiParams, }: GetPresetParams) => Pro
17521
17620
  * @category Hooks
17522
17621
  * @group StreamsV2
17523
17622
  */
17524
- declare const useGetPreset: (presetId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPreset>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Preset>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17623
+ declare const useGetPreset: (presetId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPreset>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Preset>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17525
17624
 
17526
17625
  /**
17527
17626
  * @category Keys
@@ -17572,7 +17671,7 @@ declare const GetMeetingRecording: ({ recordingId, adminApiParams, }: GetMeeting
17572
17671
  * @category Hooks
17573
17672
  * @group StreamsV2
17574
17673
  */
17575
- declare const useGetMeetingRecording: (recordingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingRecording>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingRecording>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17674
+ declare const useGetMeetingRecording: (recordingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingRecording>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingRecording>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17576
17675
 
17577
17676
  /**
17578
17677
  * @category Keys
@@ -17624,7 +17723,7 @@ declare const GetMeetingSession: ({ sessionId, adminApiParams, }: GetMeetingSess
17624
17723
  * @category Hooks
17625
17724
  * @group StreamsV2
17626
17725
  */
17627
- declare const useGetMeetingSession: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSession>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17726
+ declare const useGetMeetingSession: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSession>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSession>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17628
17727
 
17629
17728
  /**
17630
17729
  * @category Keys
@@ -17650,7 +17749,7 @@ declare const GetMeetingSessionMessages: ({ sessionId, adminApiParams, }: GetMee
17650
17749
  * @category Hooks
17651
17750
  * @group StreamsV2
17652
17751
  */
17653
- declare const useGetMeetingSessionMessages: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionMessages>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionChatDownload>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17752
+ declare const useGetMeetingSessionMessages: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionMessages>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionChatDownload>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17654
17753
 
17655
17754
  /**
17656
17755
  * @category Keys
@@ -17677,7 +17776,7 @@ declare const GetMeetingSessionParticipant: ({ sessionId, participantId, adminAp
17677
17776
  * @category Hooks
17678
17777
  * @group StreamsV2
17679
17778
  */
17680
- declare const useGetMeetingSessionParticipant: (sessionId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionParticipant>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionParticipant>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17779
+ declare const useGetMeetingSessionParticipant: (sessionId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionParticipant>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionParticipant>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17681
17780
 
17682
17781
  /**
17683
17782
  * @category Keys
@@ -17729,7 +17828,7 @@ declare const GetMeetingSessionSummary: ({ sessionId, adminApiParams, }: GetMeet
17729
17828
  * @category Hooks
17730
17829
  * @group StreamsV2
17731
17830
  */
17732
- declare const useGetMeetingSessionSummary: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionSummaryDownload>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17831
+ declare const useGetMeetingSessionSummary: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionSummary>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionSummaryDownload>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17733
17832
 
17734
17833
  /**
17735
17834
  * @category Keys
@@ -17755,7 +17854,7 @@ declare const GetMeetingSessionTranscript: ({ sessionId, adminApiParams, }: GetM
17755
17854
  * @category Hooks
17756
17855
  * @group StreamsV2
17757
17856
  */
17758
- declare const useGetMeetingSessionTranscript: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionTranscript>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionTranscriptDownload>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17857
+ declare const useGetMeetingSessionTranscript: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionTranscript>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionTranscriptDownload>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17759
17858
 
17760
17859
  /**
17761
17860
  * @category Keys
@@ -17807,7 +17906,7 @@ declare const GetMeeting: ({ meetingId, adminApiParams, }: GetMeetingParams) =>
17807
17906
  * @category Hooks
17808
17907
  * @group StreamsV2
17809
17908
  */
17810
- declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Meeting>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17909
+ declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Meeting>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17811
17910
 
17812
17911
  /**
17813
17912
  * @category Keys
@@ -17833,7 +17932,7 @@ declare const GetMeetingLivestream: ({ meetingId, adminApiParams, }: GetMeetingL
17833
17932
  * @category Hooks
17834
17933
  * @group StreamsV2
17835
17934
  */
17836
- declare const useGetMeetingLivestream: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLivestream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Livestream>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17935
+ declare const useGetMeetingLivestream: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLivestream>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Livestream>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17837
17936
 
17838
17937
  /**
17839
17938
  * @category Keys
@@ -17886,9 +17985,9 @@ declare const GetNotificationCount: ({ filters, adminApiParams, }: GetNotificati
17886
17985
  * @category Hooks
17887
17986
  * @group Notifications
17888
17987
  */
17889
- declare const useGetNotificationCount: (filters?: NotificationFilters, options?: SingleQueryOptions<ReturnType<typeof GetNotificationCount>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
17988
+ declare const useGetNotificationCount: (filters?: NotificationFilters, options?: SingleQueryOptions<ReturnType<typeof GetNotificationCount>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<{
17890
17989
  notifications: number;
17891
- }>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17990
+ }>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17892
17991
 
17893
17992
  /**
17894
17993
  * @category Keys
@@ -17913,7 +18012,7 @@ declare const GetNotificationStats: ({ adminApiParams, }: GetNotificationStatsPr
17913
18012
  * @category Hooks
17914
18013
  * @group Notifications
17915
18014
  */
17916
- declare const useGetNotificationStats: (options?: SingleQueryOptions<ReturnType<typeof GetNotificationStats>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<NotificationStats>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18015
+ declare const useGetNotificationStats: (options?: SingleQueryOptions<ReturnType<typeof GetNotificationStats>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<NotificationStats>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17917
18016
 
17918
18017
  /**
17919
18018
  * @category Keys
@@ -17965,7 +18064,7 @@ declare const GetDashboardAttributes: ({ search, adminApiParams, }: GetDashboard
17965
18064
  * @category Hooks
17966
18065
  * @group Organization
17967
18066
  */
17968
- declare const useGetDashboardAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardAttributes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAttribute[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18067
+ declare const useGetDashboardAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardAttributes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAttribute[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17969
18068
 
17970
18069
  /**
17971
18070
  * @category Keys
@@ -17991,7 +18090,7 @@ declare const GetOrganizationAccountAttribute: ({ attributeId, adminApiParams, }
17991
18090
  * @category Hooks
17992
18091
  * @group Organization
17993
18092
  */
17994
- declare const useGetOrganizationAccountAttribute: (attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationAccountAttribute>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAttribute>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18093
+ declare const useGetOrganizationAccountAttribute: (attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationAccountAttribute>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAttribute>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
17995
18094
 
17996
18095
  /**
17997
18096
  * @category Keys
@@ -18042,7 +18141,7 @@ declare const GetRequiredAttributes: ({ search, adminApiParams, }: GetRequiredAt
18042
18141
  * @category Hooks
18043
18142
  * @group Organization
18044
18143
  */
18045
- declare const useGetRequiredAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetRequiredAttributes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAttribute[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18144
+ declare const useGetRequiredAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetRequiredAttributes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAttribute[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18046
18145
 
18047
18146
  /**
18048
18147
  * @category Keys
@@ -18067,7 +18166,7 @@ declare const GetOrganizationDomain: ({ adminApiParams, }: GetOrganizationDomain
18067
18166
  * @category Hooks
18068
18167
  * @group Organization
18069
18168
  */
18070
- declare const useGetOrganizationDomain: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationDomain>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<DomainDetails | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18169
+ declare const useGetOrganizationDomain: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationDomain>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<DomainDetails | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18071
18170
 
18072
18171
  /**
18073
18172
  * @category Keys
@@ -18093,7 +18192,7 @@ declare const GetIntegration: ({ integrationId, adminApiParams, }: GetIntegratio
18093
18192
  * @category Hooks
18094
18193
  * @group Integrations
18095
18194
  */
18096
- declare const useGetIntegration: (integrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Integration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18195
+ declare const useGetIntegration: (integrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Integration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18097
18196
 
18098
18197
  /**
18099
18198
  * @category Keys
@@ -18145,7 +18244,7 @@ declare const GetCustomModuleTranslation: ({ moduleId, locale, adminApiParams, }
18145
18244
  * @category Hooks
18146
18245
  * @group Organization
18147
18246
  */
18148
- declare const useGetCustomModuleTranslation: (moduleId: string, locale: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModuleTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomModuleTranslation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18247
+ declare const useGetCustomModuleTranslation: (moduleId: string, locale: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModuleTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomModuleTranslation>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18149
18248
 
18150
18249
  /**
18151
18250
  * @category Keys
@@ -18197,7 +18296,7 @@ declare const GetCustomModule: ({ moduleId, adminApiParams, }: GetCustomModulePr
18197
18296
  * @category Hooks
18198
18297
  * @group Organization
18199
18298
  */
18200
- declare const useGetCustomModule: (moduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomModule>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18299
+ declare const useGetCustomModule: (moduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModule>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomModule>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18201
18300
 
18202
18301
  /**
18203
18302
  * @category Keys
@@ -18248,7 +18347,7 @@ declare const GetOrganizationModuleSettingsTranslation: ({ locale, adminApiParam
18248
18347
  * @category Hooks
18249
18348
  * @group Organization-Module-Settings
18250
18349
  */
18251
- declare const useGetOrganizationModuleSettingsTranslation: (locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettingsTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationModuleSettingsTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18350
+ declare const useGetOrganizationModuleSettingsTranslation: (locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettingsTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationModuleSettingsTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18252
18351
 
18253
18352
  /**
18254
18353
  * @category Keys
@@ -18298,7 +18397,7 @@ declare const GetOrganizationModuleSettings: ({ adminApiParams, }: GetOrganizati
18298
18397
  * @category Hooks
18299
18398
  * @group Organization-Module-Settings
18300
18399
  */
18301
- declare const useGetOrganizationModuleSettings: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettings>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationModuleSettings>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18400
+ declare const useGetOrganizationModuleSettings: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettings>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationModuleSettings>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18302
18401
 
18303
18402
  /**
18304
18403
  * @category Keys
@@ -18376,7 +18475,7 @@ declare const GetOrganizationModule: ({ moduleType, adminApiParams, }: GetOrgani
18376
18475
  * @category Hooks
18377
18476
  * @group Organization
18378
18477
  */
18379
- declare const useGetOrganizationModule: (moduleType: keyof typeof OrganizationModuleType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationModule>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18478
+ declare const useGetOrganizationModule: (moduleType: keyof typeof OrganizationModuleType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModule>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationModule>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18380
18479
 
18381
18480
  /**
18382
18481
  * @category Keys
@@ -18427,7 +18526,7 @@ declare const GetOrganizationPaymentIntegration: ({ integrationId, adminApiParam
18427
18526
  * @category Hooks
18428
18527
  * @group Organization
18429
18528
  */
18430
- declare const useGetOrganizationPaymentIntegration: (integrationId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntegration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18529
+ declare const useGetOrganizationPaymentIntegration: (integrationId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentIntegration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<PaymentIntegration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18431
18530
 
18432
18531
  /**
18433
18532
  * @category Keys
@@ -18478,7 +18577,7 @@ declare const GetPayment: ({ paymentId, adminApiParams, }: GetPaymentProps) => P
18478
18577
  * @category Hooks
18479
18578
  * @group Payments
18480
18579
  */
18481
- declare const useGetPayment: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18580
+ declare const useGetPayment: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPayment>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Payment>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18482
18581
 
18483
18582
  /**
18484
18583
  * @category Keys
@@ -18504,7 +18603,7 @@ declare const GetPaymentTaxMetadata: ({ paymentId, adminApiParams, }: GetPayment
18504
18603
  * @category Hooks
18505
18604
  * @group Payments
18506
18605
  */
18507
- declare const useGetPaymentTaxMetadata: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPaymentTaxMetadata>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<string, any>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18606
+ declare const useGetPaymentTaxMetadata: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPaymentTaxMetadata>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Record<string, any>>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18508
18607
 
18509
18608
  /**
18510
18609
  * @category Keys
@@ -18555,7 +18654,7 @@ declare const GetOrganizationSideEffect: ({ sideEffectId, adminApiParams, }: Get
18555
18654
  * @category Hooks
18556
18655
  * @group Organization
18557
18656
  */
18558
- declare const useGetOrganizationSideEffect: (sideEffectId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSideEffect>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SideEffect>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18657
+ declare const useGetOrganizationSideEffect: (sideEffectId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSideEffect>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SideEffect>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18559
18658
 
18560
18659
  /**
18561
18660
  * @category Keys
@@ -18608,7 +18707,7 @@ declare const GetEntityUseCodes: ({ type, adminApiParams, }: GetEntityUseCodesPr
18608
18707
  * @category Hooks
18609
18708
  * @group Tax Integrations
18610
18709
  */
18611
- declare const useGetEntityUseCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetEntityUseCodes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EntityUseCode[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18710
+ declare const useGetEntityUseCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetEntityUseCodes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EntityUseCode[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18612
18711
 
18613
18712
  /**
18614
18713
  * @category Keys
@@ -18634,7 +18733,7 @@ declare const GetTaxCodes: ({ type, adminApiParams, }: GetTaxCodesProps) => Prom
18634
18733
  * @category Hooks
18635
18734
  * @group Tax Integrations
18636
18735
  */
18637
- declare const useGetTaxCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxCodes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<TaxCode[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18736
+ declare const useGetTaxCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxCodes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<TaxCode[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18638
18737
 
18639
18738
  /**
18640
18739
  * @category Keys
@@ -18660,7 +18759,7 @@ declare const GetTaxIntegration: ({ type, adminApiParams, }: GetTaxIntegrationPr
18660
18759
  * @category Hooks
18661
18760
  * @group Integrations
18662
18761
  */
18663
- declare const useGetTaxIntegration: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<TaxIntegration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18762
+ declare const useGetTaxIntegration: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxIntegration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<TaxIntegration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18664
18763
 
18665
18764
  /**
18666
18765
  * @category Keys
@@ -18712,7 +18811,7 @@ declare const GetTaxLog: ({ type, logId, adminApiParams, }: GetTaxLogProps) => P
18712
18811
  * @category Hooks
18713
18812
  * @group Tax Integrations
18714
18813
  */
18715
- declare const useGetTaxLog: (type?: string, logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxLog>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<TaxIntegrationLog>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18814
+ declare const useGetTaxLog: (type?: string, logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxLog>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<TaxIntegrationLog>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18716
18815
 
18717
18816
  /**
18718
18817
  * @category Keys
@@ -18814,7 +18913,7 @@ declare const GetOrganization: ({ adminApiParams, }: GetOrganizationProps) => Pr
18814
18913
  * @category Hooks
18815
18914
  * @group Organization
18816
18915
  */
18817
- declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Organization>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18916
+ declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Organization>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18818
18917
 
18819
18918
  /**
18820
18919
  * @category Keys
@@ -18840,7 +18939,7 @@ declare const GetOrganizationMembership: ({ userId, adminApiParams, }: GetOrgani
18840
18939
  * @category Hooks
18841
18940
  * @group Organization
18842
18941
  */
18843
- declare const useGetOrganizationMembership: (userId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationMembership>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationMembership>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18942
+ declare const useGetOrganizationMembership: (userId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationMembership>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationMembership>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18844
18943
 
18845
18944
  /**
18846
18945
  * @category Keys
@@ -18866,7 +18965,7 @@ declare const GetOrganizationSystemLog: ({ logId, adminApiParams, }: GetOrganiza
18866
18965
  * @category Hooks
18867
18966
  * @group Organization
18868
18967
  */
18869
- declare const useGetOrganizationSystemLog: (logId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSystemLog>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SystemEventLog>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18968
+ declare const useGetOrganizationSystemLog: (logId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSystemLog>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SystemEventLog>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18870
18969
 
18871
18970
  /**
18872
18971
  * @category Keys
@@ -18920,7 +19019,7 @@ declare const SearchOrganization: ({ search, filters, adminApiParams, }: SearchO
18920
19019
  * @category Hooks
18921
19020
  * @group Organization
18922
19021
  */
18923
- declare const useSearchOrganization: (search?: string, filters?: SearchOrganizationFilters, options?: SingleQueryOptions<ReturnType<typeof SearchOrganization>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchField[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19022
+ declare const useSearchOrganization: (search?: string, filters?: SearchOrganizationFilters, options?: SingleQueryOptions<ReturnType<typeof SearchOrganization>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SearchField[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18924
19023
 
18925
19024
  /**
18926
19025
  * @category Keys
@@ -18971,7 +19070,7 @@ declare const GetOrganizationWebhook: ({ webhookId, adminApiParams, }: GetOrgani
18971
19070
  * @category Hooks
18972
19071
  * @group Organization
18973
19072
  */
18974
- declare const useGetOrganizationWebhook: (webhookId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationWebhook>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Webhook>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19073
+ declare const useGetOrganizationWebhook: (webhookId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationWebhook>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Webhook>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
18975
19074
 
18976
19075
  /**
18977
19076
  * @category Keys
@@ -19021,7 +19120,7 @@ declare const GetPreferences: ({ adminApiParams, }: GetPreferencesProps) => Prom
19021
19120
  * @category Hooks
19022
19121
  * @group Preferences
19023
19122
  */
19024
- declare const useGetPreferences: (options?: SingleQueryOptions<ReturnType<typeof GetPreferences>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AdminNotificationPreferences>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19123
+ declare const useGetPreferences: (options?: SingleQueryOptions<ReturnType<typeof GetPreferences>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AdminNotificationPreferences>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19025
19124
 
19026
19125
  /**
19027
19126
  * @category Keys
@@ -19047,7 +19146,7 @@ declare const GetPushDevice: ({ pushDeviceId, adminApiParams, }: GetPushDevicePr
19047
19146
  * @category Hooks
19048
19147
  * @group Accounts
19049
19148
  */
19050
- declare const useGetPushDevice: (pushDeviceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPushDevice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19149
+ declare const useGetPushDevice: (pushDeviceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPushDevice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<PushDevice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19051
19150
 
19052
19151
  /**
19053
19152
  * @category Keys
@@ -19099,7 +19198,7 @@ declare const GetCustomReport: ({ reportId, adminApiParams, }: GetCustomReportPr
19099
19198
  * @category Hooks
19100
19199
  * @group Reports
19101
19200
  */
19102
- declare const useGetCustomReport: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomReport>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19201
+ declare const useGetCustomReport: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReport>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomReport>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19103
19202
 
19104
19203
  /**
19105
19204
  * @category Keys
@@ -19125,7 +19224,7 @@ declare const GetCustomReportSchedule: ({ reportId, adminApiParams, }: GetCustom
19125
19224
  * @category Hooks
19126
19225
  * @group Reports
19127
19226
  */
19128
- declare const useGetCustomReportSchedule: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportSchedule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomReportSchedule | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19227
+ declare const useGetCustomReportSchedule: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportSchedule>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomReportSchedule | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19129
19228
 
19130
19229
  /**
19131
19230
  * @category Keys
@@ -19178,7 +19277,7 @@ declare const GetReport: ({ standard, filters, adminApiParams, }: GetReportProps
19178
19277
  * @category Hooks
19179
19278
  * @group Reports
19180
19279
  */
19181
- declare const useGetReport: (standard?: string, filters?: ReportFilters, options?: SingleQueryOptions<ReturnType<typeof GetReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StandardReport>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19280
+ declare const useGetReport: (standard?: string, filters?: ReportFilters, options?: SingleQueryOptions<ReturnType<typeof GetReport>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<StandardReport>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19182
19281
 
19183
19282
  /**
19184
19283
  * @category Keys
@@ -19204,7 +19303,7 @@ declare const GetReports: ({ type, adminApiParams, }: GetReportsProps) => Promis
19204
19303
  * @category Hooks
19205
19304
  * @group Reports
19206
19305
  */
19207
- declare const useGetReports: (type: keyof typeof ReportType, options?: SingleQueryOptions<ReturnType<typeof GetReports>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseStandardReport[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19306
+ declare const useGetReports: (type: keyof typeof ReportType, options?: SingleQueryOptions<ReturnType<typeof GetReports>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseStandardReport[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19208
19307
 
19209
19308
  /**
19210
19309
  * @category Keys
@@ -19230,7 +19329,7 @@ declare const GetCustomReportUsers: ({ reportId, adminApiParams, }: GetCustomRep
19230
19329
  * @category Hooks
19231
19330
  * @group Reports
19232
19331
  */
19233
- declare const useGetCustomReportUsers: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportUsers>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<User[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19332
+ declare const useGetCustomReportUsers: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportUsers>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<User[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19234
19333
 
19235
19334
  /**
19236
19335
  * @category Keys
@@ -19256,7 +19355,7 @@ declare const GetSearchList: ({ searchListId, adminApiParams, }: GetSearchListPr
19256
19355
  * @category Hooks
19257
19356
  * @group SearchLists
19258
19357
  */
19259
- declare const useGetSearchList: (searchListId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchList>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchList>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19358
+ declare const useGetSearchList: (searchListId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchList>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SearchList>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19260
19359
 
19261
19360
  /**
19262
19361
  * @category Keys
@@ -19347,7 +19446,7 @@ declare const GetSearchListValue: ({ searchListId, valueId, adminApiParams, }: G
19347
19446
  * @category Hooks
19348
19447
  * @group SearchListValues
19349
19448
  */
19350
- declare const useGetSearchListValue: (searchListId?: string, valueId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchListValue>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchListValue>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19449
+ declare const useGetSearchListValue: (searchListId?: string, valueId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchListValue>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SearchListValue>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19351
19450
 
19352
19451
  /**
19353
19452
  * @category Keys
@@ -19399,7 +19498,7 @@ declare const GetSelfApiKey: ({ apiKeyId, adminApiParams, }: GetSelfApiKeyProps)
19399
19498
  * @category Hooks
19400
19499
  * @group SelfApiKeys
19401
19500
  */
19402
- declare const useGetSelfApiKey: (apiKeyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfApiKey>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<UserApiKey>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19501
+ declare const useGetSelfApiKey: (apiKeyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfApiKey>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<UserApiKey>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19403
19502
 
19404
19503
  /**
19405
19504
  * @category Keys
@@ -19449,7 +19548,7 @@ declare const GetSelf: ({ adminApiParams, }: GetSelfProps) => Promise<ConnectedX
19449
19548
  * @category Hooks
19450
19549
  * @group Self
19451
19550
  */
19452
- declare const useGetSelf: (options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Self>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19551
+ declare const useGetSelf: (options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Self>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19453
19552
 
19454
19553
  /**
19455
19554
  * @category Keys
@@ -19474,7 +19573,7 @@ declare const GetSelfOrgMembership: ({ adminApiParams, }: GetSelfOrgMembershipPr
19474
19573
  * @category Hooks
19475
19574
  * @group Self
19476
19575
  */
19477
- declare const useGetSelfOrgMembership: (options?: SingleQueryOptions<ReturnType<typeof GetSelfOrgMembership>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationMembership>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19576
+ declare const useGetSelfOrgMembership: (options?: SingleQueryOptions<ReturnType<typeof GetSelfOrgMembership>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationMembership>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19478
19577
 
19479
19578
  /**
19480
19579
  * @category Keys
@@ -19522,7 +19621,7 @@ declare const GetSeriesQuestionTranslation: ({ seriesId, questionId, locale, adm
19522
19621
  * @category Hooks
19523
19622
  * @group Series
19524
19623
  */
19525
- declare const useGetSeriesQuestionTranslation: (seriesId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesQuestionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19624
+ declare const useGetSeriesQuestionTranslation: (seriesId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SeriesQuestionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19526
19625
 
19527
19626
  /**
19528
19627
  * @category Keys
@@ -19549,7 +19648,7 @@ declare const GetSeriesQuestion: ({ seriesId, questionId, adminApiParams, }: Get
19549
19648
  * @category Hooks
19550
19649
  * @group Series
19551
19650
  */
19552
- declare const useGetSeriesQuestion: (seriesId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesQuestion>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19651
+ declare const useGetSeriesQuestion: (seriesId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestion>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SeriesQuestion>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19553
19652
 
19554
19653
  /**
19555
19654
  * @category Keys
@@ -19577,7 +19676,7 @@ declare const GetSeriesQuestionChoice: ({ seriesId, questionId, choiceId, adminA
19577
19676
  * @category Hooks
19578
19677
  * @group Series
19579
19678
  */
19580
- declare const useGetSeriesQuestionChoice: (seriesId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesQuestionChoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19679
+ declare const useGetSeriesQuestionChoice: (seriesId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestionChoice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SeriesQuestionChoice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19581
19680
 
19582
19681
  /**
19583
19682
  * @category Keys
@@ -19657,7 +19756,7 @@ declare const GetSeriesRegistration: ({ seriesId, registrationId, adminApiParams
19657
19756
  * @category Hooks
19658
19757
  * @group Series
19659
19758
  */
19660
- declare const useGetSeriesRegistration: (seriesId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesRegistration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19759
+ declare const useGetSeriesRegistration: (seriesId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesRegistration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SeriesRegistration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19661
19760
 
19662
19761
  /**
19663
19762
  * @category Keys
@@ -19728,7 +19827,7 @@ declare const GetSeriesRegistrationResponses: ({ seriesId, registrationId, admin
19728
19827
  * @category Hooks
19729
19828
  * @group Series
19730
19829
  */
19731
- declare const useGetSeriesRegistrationResponses: (seriesId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesRegistrationResponses>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesRegistrationQuestionResponse[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19830
+ declare const useGetSeriesRegistrationResponses: (seriesId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesRegistrationResponses>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SeriesRegistrationQuestionResponse[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19732
19831
 
19733
19832
  /**
19734
19833
  * @category Keys
@@ -19777,7 +19876,7 @@ declare const GetSeriesTranslation: ({ seriesId, locale, adminApiParams, }: GetS
19777
19876
  * @category Hooks
19778
19877
  * @group Series
19779
19878
  */
19780
- declare const useGetSeriesTranslation: (seriesId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19879
+ declare const useGetSeriesTranslation: (seriesId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SeriesTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19781
19880
 
19782
19881
  /**
19783
19882
  * @category Keys
@@ -19829,7 +19928,7 @@ declare const GetSeries: ({ seriesId, adminApiParams, }: GetSeriesProps) => Prom
19829
19928
  * @category Hooks
19830
19929
  * @group Series
19831
19930
  */
19832
- declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Series>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19931
+ declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Series>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19833
19932
 
19834
19933
  /**
19835
19934
  * @category Keys
@@ -19954,7 +20053,7 @@ declare const GetLevelTranslation: ({ levelId, locale, adminApiParams, }: GetLev
19954
20053
  * @category Hooks
19955
20054
  * @group Levels
19956
20055
  */
19957
- declare const useGetLevelTranslation: (levelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SponsorshipLevelTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20056
+ declare const useGetLevelTranslation: (levelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevelTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SponsorshipLevelTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
19958
20057
 
19959
20058
  /**
19960
20059
  * @category Keys
@@ -20006,7 +20105,7 @@ declare const GetLevel: ({ sponsorshipLevelId, adminApiParams, }: GetLevelProps)
20006
20105
  * @category Hooks
20007
20106
  * @group Levels
20008
20107
  */
20009
- declare const useGetLevel: (sponsorshipLevelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Level>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20108
+ declare const useGetLevel: (sponsorshipLevelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Level>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20010
20109
 
20011
20110
  /**
20012
20111
  * @category Keys
@@ -20057,7 +20156,7 @@ declare const GetFile: ({ fileId, adminApiParams, }: GetFileParams) => Promise<C
20057
20156
  * @category Hooks
20058
20157
  * @group Files
20059
20158
  */
20060
- declare const useGetFile: (fileId?: string, options?: SingleQueryOptions<ReturnType<typeof GetFile>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<File>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20159
+ declare const useGetFile: (fileId?: string, options?: SingleQueryOptions<ReturnType<typeof GetFile>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<File>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20061
20160
 
20062
20161
  /**
20063
20162
  * @category Keys
@@ -20109,7 +20208,7 @@ declare const GetImage: ({ imageId, adminApiParams, }: GetImageParams) => Promis
20109
20208
  * @category Hooks
20110
20209
  * @group Images
20111
20210
  */
20112
- declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Image>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20211
+ declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Image>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20113
20212
 
20114
20213
  /**
20115
20214
  * @category Keys
@@ -20135,7 +20234,7 @@ declare const GetImageUsage: ({ imageId, adminApiParams, }: GetImageUsageParams)
20135
20234
  * @category Hooks
20136
20235
  * @group Images
20137
20236
  */
20138
- declare const useGetImageUsage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImageUsage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ImageUsage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20237
+ declare const useGetImageUsage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImageUsage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ImageUsage>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20139
20238
 
20140
20239
  /**
20141
20240
  * @category Keys
@@ -20213,7 +20312,7 @@ declare const GetVideo: ({ videoId, adminApiParams, }: GetVideoParams) => Promis
20213
20312
  * @category Hooks
20214
20313
  * @group Videos
20215
20314
  */
20216
- declare const useGetVideo: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideo>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Video>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20315
+ declare const useGetVideo: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideo>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Video>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20217
20316
 
20218
20317
  /**
20219
20318
  * Response interface for video download status
@@ -20249,7 +20348,7 @@ declare const GetVideoDownloadStatus: ({ videoId, adminApiParams, }: GetVideoDow
20249
20348
  * @category Hooks
20250
20349
  * @group Videos
20251
20350
  */
20252
- declare const useGetVideoDownloadStatus: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideoDownloadStatus>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<VideoDownloadStatus>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20351
+ declare const useGetVideoDownloadStatus: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideoDownloadStatus>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<VideoDownloadStatus>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20253
20352
 
20254
20353
  /**
20255
20354
  * @category Keys
@@ -20302,7 +20401,7 @@ declare const GetStreamInputOutput: ({ streamId, output, adminApiParams, }: GetS
20302
20401
  * @category Hooks
20303
20402
  * @group Streams
20304
20403
  */
20305
- declare const useGetStreamInputOutput: (streamId?: string, output?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInputOutput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInputOutput>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20404
+ declare const useGetStreamInputOutput: (streamId?: string, output?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInputOutput>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<StreamInputOutput>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20306
20405
 
20307
20406
  /**
20308
20407
  * @category Keys
@@ -20355,7 +20454,7 @@ declare const GetStreamSession: ({ streamId, sessionId, adminApiParams, }: GetSt
20355
20454
  * @category Hooks
20356
20455
  * @group Streams
20357
20456
  */
20358
- declare const useGetStreamSession: (streamId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamSession>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20457
+ declare const useGetStreamSession: (streamId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamSession>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<StreamSession>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20359
20458
 
20360
20459
  /**
20361
20460
  * @category Keys
@@ -20463,7 +20562,7 @@ declare const GetStreamInput: ({ streamId, adminApiParams, }: GetStreamInputPara
20463
20562
  * @category Hooks
20464
20563
  * @group Streams
20465
20564
  */
20466
- declare const useGetStreamInput: (streamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInput>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20565
+ declare const useGetStreamInput: (streamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInput>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<StreamInput>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20467
20566
 
20468
20567
  /**
20469
20568
  * @category Keys
@@ -20596,7 +20695,7 @@ declare const GetSupportTicket: ({ supportTicketId, adminApiParams, }: GetSuppor
20596
20695
  * @category Hooks
20597
20696
  * @group Support Tickets
20598
20697
  */
20599
- declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicket>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20698
+ declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SupportTicket>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20600
20699
 
20601
20700
  /**
20602
20701
  * @category Keys
@@ -20623,7 +20722,7 @@ declare const GetSupportTicketActivity: ({ supportTicketId, orderBy, adminApiPar
20623
20722
  * @category Hooks
20624
20723
  * @group Support Tickets
20625
20724
  */
20626
- declare const useGetSupportTicketActivity: (supportTicketId?: string, orderBy?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicketActivity>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicketActivityLog[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20725
+ declare const useGetSupportTicketActivity: (supportTicketId?: string, orderBy?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicketActivity>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SupportTicketActivityLog[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20627
20726
 
20628
20727
  /**
20629
20728
  * @category Keys
@@ -20707,7 +20806,7 @@ declare const GetSurveyQuestionChoiceTranslation: ({ surveyId, questionId, choic
20707
20806
  * @category Hooks
20708
20807
  * @group Surveys
20709
20808
  */
20710
- declare const useGetSurveyQuestionChoiceTranslation: (surveyId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionChoiceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20809
+ declare const useGetSurveyQuestionChoiceTranslation: (surveyId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SurveyQuestionChoiceTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20711
20810
 
20712
20811
  /**
20713
20812
  * @category Keys
@@ -20763,7 +20862,7 @@ declare const GetSurveyQuestionTranslation: ({ surveyId, questionId, locale, adm
20763
20862
  * @category Hooks
20764
20863
  * @group Surveys
20765
20864
  */
20766
- declare const useGetSurveyQuestionTranslation: (surveyId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20865
+ declare const useGetSurveyQuestionTranslation: (surveyId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SurveyQuestionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20767
20866
 
20768
20867
  /**
20769
20868
  * @category Keys
@@ -20817,7 +20916,7 @@ declare const GetSurveyQuestion: ({ surveyId, questionId, adminApiParams, }: Get
20817
20916
  * @category Hooks
20818
20917
  * @group Surveys
20819
20918
  */
20820
- declare const useGetSurveyQuestion: (surveyId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestion>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20919
+ declare const useGetSurveyQuestion: (surveyId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestion>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SurveyQuestion>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20821
20920
 
20822
20921
  /**
20823
20922
  * @category Keys
@@ -20845,7 +20944,7 @@ declare const GetSurveyQuestionChoice: ({ surveyId, questionId, choiceId, adminA
20845
20944
  * @category Hooks
20846
20945
  * @group Surveys
20847
20946
  */
20848
- declare const useGetSurveyQuestionChoice: (surveyId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionChoice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20947
+ declare const useGetSurveyQuestionChoice: (surveyId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SurveyQuestionChoice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20849
20948
 
20850
20949
  /**
20851
20950
  * @category Keys
@@ -20981,7 +21080,7 @@ declare const GetSurveySectionTranslation: ({ surveyId, sectionId, locale, admin
20981
21080
  * @category Hooks
20982
21081
  * @group Surveys
20983
21082
  */
20984
- declare const useGetSurveySectionTranslation: (surveyId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySectionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21083
+ declare const useGetSurveySectionTranslation: (surveyId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySectionTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SurveySectionTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
20985
21084
 
20986
21085
  /**
20987
21086
  * @category Keys
@@ -21035,7 +21134,7 @@ declare const GetSurveySection: ({ surveyId, sectionId, adminApiParams, }: GetSu
21035
21134
  * @category Hooks
21036
21135
  * @group Surveys
21037
21136
  */
21038
- declare const useGetSurveySection: (surveyId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21137
+ declare const useGetSurveySection: (surveyId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySection>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SurveySection>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21039
21138
 
21040
21139
  /**
21041
21140
  * @category Keys
@@ -21115,7 +21214,7 @@ declare const GetSurveySubmission: ({ surveyId, submissionId, adminApiParams, }:
21115
21214
  * @category Hooks
21116
21215
  * @group Surveys
21117
21216
  */
21118
- declare const useGetSurveySubmission: (surveyId?: string, submissionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmission>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySubmission>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21217
+ declare const useGetSurveySubmission: (surveyId?: string, submissionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmission>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SurveySubmission>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21119
21218
 
21120
21219
  /**
21121
21220
  * @category Keys
@@ -21219,7 +21318,7 @@ declare const GetSurveyTranslation: ({ surveyId, locale, adminApiParams, }: GetS
21219
21318
  * @category Hooks
21220
21319
  * @group Surveys
21221
21320
  */
21222
- declare const useGetSurveyTranslation: (surveyId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21321
+ declare const useGetSurveyTranslation: (surveyId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SurveyTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21223
21322
 
21224
21323
  /**
21225
21324
  * @category Keys
@@ -21271,7 +21370,7 @@ declare const GetSurvey: ({ surveyId, adminApiParams, }: GetSurveyProps) => Prom
21271
21370
  * @category Hooks
21272
21371
  * @group Surveys
21273
21372
  */
21274
- declare const useGetSurvey: (surveyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurvey>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Survey>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21373
+ declare const useGetSurvey: (surveyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurvey>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Survey>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21275
21374
 
21276
21375
  /**
21277
21376
  * @category Keys
@@ -21425,7 +21524,7 @@ interface GetThreadMessageProps {
21425
21524
  * @description Returns a single message from the given thread by its ID; requires read permission on threads.
21426
21525
  */
21427
21526
  declare const GetThreadMessage: ({ threadId, messageId, adminApiParams, }: GetThreadMessageProps) => Promise<ConnectedXMResponse<ThreadMessage>>;
21428
- declare const useGetThreadMessage: (threadId: string, messageId: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21527
+ declare const useGetThreadMessage: (threadId: string, messageId: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ThreadMessage>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21429
21528
 
21430
21529
  declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string) => QueryKey;
21431
21530
  declare const SET_THREAD_MESSAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MESSAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadMessages>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
@@ -21454,7 +21553,7 @@ interface GetThreadMessagesPollProps extends SingleQueryParams {
21454
21553
  * @description Returns any messages sent in the given thread after the provided lastMessageId, for lightweight polling-based updates; requires read permission on threads.
21455
21554
  */
21456
21555
  declare const GetThreadMessagesPoll: ({ threadId, lastMessageId, adminApiParams, }: GetThreadMessagesPollProps) => Promise<ConnectedXMResponse<ThreadMessage[]>>;
21457
- declare const useGetThreadMessagesPoll: (threadId?: string, lastMessageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessagesPoll>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21556
+ declare const useGetThreadMessagesPoll: (threadId?: string, lastMessageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessagesPoll>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ThreadMessage[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21458
21557
 
21459
21558
  declare const THREAD_MESSAGE_VIDEOS_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
21460
21559
  declare const SET_THREAD_MESSAGE_VIDEOS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_MESSAGE_VIDEOS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadMessageVideos>>, options?: SetDataOptions) => void;
@@ -21543,7 +21642,7 @@ declare const GetThread: ({ threadId, adminApiParams, }: GetThreadProps) => Prom
21543
21642
  * @category Hooks
21544
21643
  * @group Threads
21545
21644
  */
21546
- declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21645
+ declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Thread>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21547
21646
 
21548
21647
  /**
21549
21648
  * @category Keys
@@ -21595,7 +21694,7 @@ declare const GetTier: ({ tierId, adminApiParams, }: GetTierProps) => Promise<Co
21595
21694
  * @category Hooks
21596
21695
  * @group Tiers
21597
21696
  */
21598
- declare const useGetTier: (tierId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTier>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Tier>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21697
+ declare const useGetTier: (tierId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTier>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Tier>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21599
21698
 
21600
21699
  /**
21601
21700
  * @category Keys
@@ -21648,7 +21747,7 @@ declare const GetTierImport: ({ tierId, importId, adminApiParams, }: GetTierImpo
21648
21747
  * @category Hooks
21649
21748
  * @group Imports
21650
21749
  */
21651
- declare const useGetTierImport: (tierId?: string, importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTierImport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Import>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21750
+ declare const useGetTierImport: (tierId?: string, importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTierImport>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Import>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
21652
21751
 
21653
21752
  /**
21654
21753
  * @category Keys
@@ -26776,6 +26875,67 @@ declare const UpdateEventPage: ({ eventId, pageId, page, adminApiParams, queryCl
26776
26875
  */
26777
26876
  declare const useUpdateEventPage: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventPage>>, Omit<UpdateEventPageParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPage>, axios.AxiosError<ConnectedXMResponse<EventPage>, any>, Omit<UpdateEventPageParams, "queryClient" | "adminApiParams">, unknown>;
26778
26877
 
26878
+ /**
26879
+ * @category Params
26880
+ * @group Event-PassTypes
26881
+ */
26882
+ interface AddEventPassTypeExchangeTargetParams extends MutationParams {
26883
+ eventId: string;
26884
+ passTypeId: string;
26885
+ exchangeTarget: PassTypeExchangeTargetCreateInputs;
26886
+ }
26887
+ /**
26888
+ * @category Methods
26889
+ * @group Event-PassTypes
26890
+ */
26891
+ declare const AddEventPassTypeExchangeTarget: ({ eventId, passTypeId, exchangeTarget, adminApiParams, queryClient, }: AddEventPassTypeExchangeTargetParams) => Promise<ConnectedXMResponse<EventPassTypeExchangeTarget>>;
26892
+ /**
26893
+ * @category Mutations
26894
+ * @group Event-PassTypes
26895
+ */
26896
+ declare const useAddEventPassTypeExchangeTarget: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof AddEventPassTypeExchangeTarget>>, Omit<AddEventPassTypeExchangeTargetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPassTypeExchangeTarget>, axios.AxiosError<ConnectedXMResponse<EventPassTypeExchangeTarget>, any>, Omit<AddEventPassTypeExchangeTargetParams, "queryClient" | "adminApiParams">, unknown>;
26897
+
26898
+ /**
26899
+ * @category Params
26900
+ * @group Event-PassTypes
26901
+ */
26902
+ interface RemoveEventPassTypeExchangeTargetParams extends MutationParams {
26903
+ eventId: string;
26904
+ passTypeId: string;
26905
+ exchangeTargetId: string;
26906
+ }
26907
+ /**
26908
+ * @category Methods
26909
+ * @group Event-PassTypes
26910
+ */
26911
+ declare const RemoveEventPassTypeExchangeTarget: ({ eventId, passTypeId, exchangeTargetId, adminApiParams, queryClient, }: RemoveEventPassTypeExchangeTargetParams) => Promise<ConnectedXMResponse<EventPassTypeExchangeTarget>>;
26912
+ /**
26913
+ * @category Mutations
26914
+ * @group Event-PassTypes
26915
+ */
26916
+ declare const useRemoveEventPassTypeExchangeTarget: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveEventPassTypeExchangeTarget>>, Omit<RemoveEventPassTypeExchangeTargetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPassTypeExchangeTarget>, axios.AxiosError<ConnectedXMResponse<EventPassTypeExchangeTarget>, any>, Omit<RemoveEventPassTypeExchangeTargetParams, "queryClient" | "adminApiParams">, unknown>;
26917
+
26918
+ /**
26919
+ * @category Params
26920
+ * @group Event-PassTypes
26921
+ */
26922
+ interface UpdateEventPassTypeExchangeTargetParams extends MutationParams {
26923
+ eventId: string;
26924
+ passTypeId: string;
26925
+ exchangeTargetId: string;
26926
+ exchangeTarget: PassTypeExchangeTargetUpdateInputs;
26927
+ }
26928
+ /**
26929
+ * @category Methods
26930
+ * @group Event-PassTypes
26931
+ */
26932
+ declare const UpdateEventPassTypeExchangeTarget: ({ eventId, passTypeId, exchangeTargetId, exchangeTarget, adminApiParams, queryClient, }: UpdateEventPassTypeExchangeTargetParams) => Promise<ConnectedXMResponse<EventPassTypeExchangeTarget>>;
26933
+ /**
26934
+ * @category Mutations
26935
+ * @group Event-PassTypes
26936
+ */
26937
+ declare const useUpdateEventPassTypeExchangeTarget: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventPassTypeExchangeTarget>>, Omit<UpdateEventPassTypeExchangeTargetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPassTypeExchangeTarget>, axios.AxiosError<ConnectedXMResponse<EventPassTypeExchangeTarget>, any>, Omit<UpdateEventPassTypeExchangeTargetParams, "queryClient" | "adminApiParams">, unknown>;
26938
+
26779
26939
  /**
26780
26940
  * @category Params
26781
26941
  * @group Events
@@ -36530,4 +36690,4 @@ declare const UpdateTier: ({ tierId, tier, adminApiParams, queryClient, }: Updat
36530
36690
  */
36531
36691
  declare const useUpdateTier: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateTier>>, Omit<UpdateTierParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Tier>, axios.AxiosError<ConnectedXMResponse<Tier>, any>, Omit<UpdateTierParams, "queryClient" | "adminApiParams">, unknown>;
36532
36692
 
36533
- export { ACCOUNTS_BY_INTERNAL_REF_ID_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_QUERY_KEY, ACCOUNT_BOOKINGS_QUERY_KEY, ACCOUNT_COMMENTS_QUERY_KEY, ACCOUNT_EMAILS_QUERY_KEY, ACCOUNT_EVENTS_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWING_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_INTERESTS_QUERY_KEY, ACCOUNT_INVITATIONS_QUERY_KEY, ACCOUNT_LEADS_QUERY_KEY, ACCOUNT_LEAD_QUERY_KEY, ACCOUNT_LEVELS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_NOTIFICATION_PREFERENCES_QUERY_KEY, ACCOUNT_PAYMENTS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_REGISTRATIONS_QUERY_KEY, ACCOUNT_SUPPORT_TICKETS_QUERY_KEY, ACCOUNT_THREADS_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ALL_EVENT_ADD_ON_QUERY_KEY, ALL_EVENT_PASS_TYPES_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_AUDIENCE_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, ANNOUNCEMENT_TRANSLATIONS_QUERY_KEY, ANNOUNCEMENT_TRANSLATION_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, AUTH_SESSIONS_QUERY_KEY, AUTH_SESSION_QUERY_KEY, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, AccountAccess, type AccountAddress, type AccountAddressCreateInputs, type AccountAddressUpdateInputs, type AccountAttribute, type AccountAttributeCreateInputs, AccountAttributeType, type AccountAttributeUpdateInputs, type AccountAttributeValue, type AccountCreateInputs, type AccountInvitation, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityEntity, type ActivityEntityInputs, ActivityEntityType, ActivityPreference, ActivityStatus, type ActivityUpdateInputs, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddBookingSpaceTier, type AddBookingSpaceTierParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddCustomReportUser, type AddCustomReportUserParams, AddEventAccessUser, AddEventActivationSession, type AddEventActivationSessionParams, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventBlockSession, type AddEventBlockSessionParams, AddEventCoHost, type AddEventCoHostParams, AddEventCouponTier, type AddEventCouponTierParams, AddEventFollowupAddOn, type AddEventFollowupAddOnParams, AddEventFollowupPassType, type AddEventFollowupPassTypeParams, AddEventFollowupQuestion, type AddEventFollowupQuestionParams, AddEventFollowupTier, type AddEventFollowupTierParams, AddEventMatchPass, type AddEventMatchPassParams, AddEventMediaItemPassType, type AddEventMediaItemPassTypeParams, AddEventPageImage, type AddEventPageImageParams, AddEventPassAddOn, type AddEventPassAddOnParams, AddEventPassTypeAddOn, type AddEventPassTypeAddOnParams, AddEventPassTypeGroupPassTier, type AddEventPassTypeGroupPassTierParams, AddEventPassTypeTier, type AddEventPassTypeTierParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventReservationPass, type AddEventReservationPassParams, AddEventRoomTypeTier, type AddEventRoomTypeTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionPassType, type AddEventSectionPassTypeParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionBlock, type AddEventSessionBlockParams, AddEventSessionLocationSession, type AddEventSessionLocationSessionParams, AddEventSessionMatchPass, type AddEventSessionMatchPassParams, AddEventSessionPassType, type AddEventSessionPassTypeParams, AddEventSessionQuestionChoiceSubQuestion, type AddEventSessionQuestionChoiceSubQuestionParams, AddEventSessionSectionQuestion, type AddEventSessionSectionQuestionParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTier, type AddEventSessionTierParams, AddEventSessionTimeSpeaker, type AddEventSessionTimeSpeakerParams, AddEventSessionTrack, type AddEventSessionTrackParams, AddEventSessionVisiblePassType, type AddEventSessionVisiblePassTypeParams, AddEventSessionVisibleTier, type AddEventSessionVisibleTierParams, AddEventSpeakerSession, type AddEventSpeakerSessionParams, AddEventSponsorAccount, type AddEventSponsorAccountParams, AddEventTrackSession, type AddEventTrackSessionParams, AddEventTrackSponsor, type AddEventTrackSponsorParams, AddGroupEvent, type AddGroupEventParams, AddGroupInterest, type AddGroupInterestParams, AddGroupMember, type AddGroupMemberParams, AddGroupModerator, type AddGroupModeratorParams, AddGroupSponsor, type AddGroupSponsorParams, AddLevelAccount, type AddLevelAccountParams, AddLoginAccount, type AddLoginAccountParams, AddMeetingLivestream, type AddMeetingLivestreamParams, AddOrganizationModuleEditableTier, type AddOrganizationModuleEditableTierParams, AddOrganizationModuleEnabledTier, type AddOrganizationModuleEnabledTierParams, AddOrganizationUser, type AddOrganizationUserParams, AddRoomToRoomType, type AddRoomToRoomTypeParams, AddSeriesEvent, type AddSeriesEventParams, AddSurveyQuestionChoiceSubQuestion, type AddSurveyQuestionChoiceSubQuestionParams, AddSurveySectionQuestion, type AddSurveySectionQuestionParams, AddSurveySession, type AddSurveySessionParams, AddThreadAccounts, type AddThreadAccountsParams, type AdminApiParams, type AdminNotification, type AdminNotificationPreferences, type AdminNotificationPreferencesUpdateInputs, AdminNotificationSource, AdminNotificationType, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementFilters, type AnnouncementTranslation, type AnnouncementTranslationUpdateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ApproveEventPass, type ApproveEventPassParams, ArchiveActivity, type ArchiveActivityParams, AttachBookingSpaceQuestionSearchList, type AttachBookingSpaceQuestionSearchListParams, AttachEventQuestionSearchList, type AttachEventQuestionSearchListParams, AttachEventSessionQuestionSearchList, type AttachEventSessionQuestionSearchListParams, type AttachSearchListInputs, AttachSurveyQuestionSearchList, type AttachSurveyQuestionSearchListParams, type AttendeeEventPackageCreateInputs, type AttendeeEventPackageUpdateInputs, type AttendeePackage, AuthLayout, type AuthSession, type AuthorizeNetActivationFormParams, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_BOOKINGS_QUERY_KEY, BOOKING_PLACE_PAYMENTS_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_TRANSLATIONS_QUERY_KEY, BOOKING_PLACE_TRANSLATION_QUERY_KEY, BOOKING_QUERY_KEY, BOOKING_RESPONSES_QUERY_KEY, BOOKING_SPACES_QUERY_KEY, BOOKING_SPACE_AVAILABILITIES_QUERY_KEY, BOOKING_SPACE_AVAILABILITY_QUERY_KEY, BOOKING_SPACE_BLACKOUTS_QUERY_KEY, BOOKING_SPACE_BLACKOUT_QUERY_KEY, BOOKING_SPACE_BOOKINGS_QUERY_KEY, BOOKING_SPACE_PAYMENTS_QUERY_KEY, BOOKING_SPACE_QUERY_KEY, BOOKING_SPACE_QUESTIONS_QUERY_KEY, BOOKING_SPACE_QUESTION_CHOICES_QUERY_KEY, BOOKING_SPACE_QUESTION_CHOICE_QUERY_KEY, BOOKING_SPACE_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, BOOKING_SPACE_QUESTION_QUERY_KEY, BOOKING_SPACE_QUESTION_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_QUESTION_TRANSLATION_QUERY_KEY, BOOKING_SPACE_SLOTS_QUERY_KEY, BOOKING_SPACE_TIERS_QUERY_KEY, BOOKING_SPACE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_TRANSLATION_QUERY_KEY, type BarChartSummaryData, type BaseAPILog, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountInvitation, type BaseActivationCompletion, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseAdminNotification, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCoupon, type BaseDashboard, type BaseDashboardWidget, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventAttendee, type BaseEventAttribute, type BaseEventBlock, type BaseEventEmail, type BaseEventMediaItem, type BaseEventOnSite, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventPass, type BaseEventPassType, type BaseEventPassTypePriceSchedule, type BaseEventPassTypeRefundSchedule, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSession, type BaseEventSessionAccess, type BaseEventSessionLocation, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionChoiceSubQuestion, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionResponseChange, type BaseEventSessionSection, type BaseEventSessionSectionQuestion, type BaseEventSpeaker, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseEventTrack, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseImport, type BaseImportItem, type BaseIntegration, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMatchPass, type BaseMeeting, type BaseMeetingLink, type BaseMeetingRecording, type BaseMeetingSessionParticipant, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BaseOrganizationModuleSettings, type BaseOrganizationModuleSettingsTranslation, type BasePassAddOn, type BasePassAttribute, type BasePayment, type BasePaymentIntegration, type BasePaymentLineItem, type BasePreset, type BasePushDevice, type BaseRegistrationBypass, type BaseRegistrationFollowup, type BaseRegistrationFollowupQuestion, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseRoom, type BaseRound, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSideEffect, type BaseStandardReport, type BaseStreamInput, type BaseStreamSession, type BaseStreamSessionSubscription, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSupportTicketViewer, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionChoiceSubQuestion, type BaseSurveyQuestionResponse, type BaseSurveyQuestionResponseChange, type BaseSurveySection, type BaseSurveySectionQuestion, type BaseSurveySubmission, type BaseTaxIntegrationLog, type BaseTeamMember, type BaseThread, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseTier, type BaseTransferLog, type BaseUser, type BaseVideo, type BaseWebSocketConnection, type BaseWebhook, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, type Booking, type BookingCreateInputs, type BookingPlace, type BookingPlaceCreateInputs, type BookingPlaceTranslation, type BookingPlaceTranslationUpdateInputs, type BookingPlaceUpdateInputs, type BookingQuestionResponse, type BookingSlot, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceAvailabilityCreateInputs, type BookingSpaceAvailabilityUpdateInputs, type BookingSpaceBlackout, type BookingSpaceBlackoutCreateInputs, type BookingSpaceBlackoutUpdateInputs, type BookingSpaceCreateInputs, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceCreateInputs, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionChoiceTranslationUpdateInputs, type BookingSpaceQuestionChoiceUpdateInputs, type BookingSpaceQuestionCreateInputs, type BookingSpaceQuestionTranslation, type BookingSpaceQuestionTranslationUpdateInputs, BookingSpaceQuestionType, type BookingSpaceQuestionUpdateInputs, type BookingSpaceTranslation, type BookingSpaceTranslationUpdateInputs, type BookingSpaceUpdateInputs, type BookingUpdateInputs, type BraintreeActivationFormParams, BulkUploadSearchListValues, type BulkUploadSearchListValuesParams, CHANNELS_QUERY_KEY, CHANNEL_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_GUEST_QUERY_KEY, CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_KEY, CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_KEY, CHANNEL_CONTENT_LIKES_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_CONTENT_TRANSLATIONS_QUERY_KEY, CHANNEL_CONTENT_TRANSLATION_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CHANNEL_SUBSCRIBER_QUERY_KEY, CHANNEL_TRANSLATIONS_QUERY_KEY, CHANNEL_TRANSLATION_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_MODULES_QUERY_KEY, CUSTOM_MODULE_QUERY_KEY, CUSTOM_MODULE_TRANSLATIONS_QUERY_KEY, CUSTOM_MODULE_TRANSLATION_QUERY_KEY, CUSTOM_REPORTS_QUERY_KEY, CUSTOM_REPORT_QUERY_KEY, CUSTOM_REPORT_SCHEDULE_QUERY_KEY, CUSTOM_REPORT_USERS_QUERY_KEY, CacheIndividualQueries, CalculateDuration, CancelActivitySchedule, type CancelActivityScheduleParams, CancelAnnouncementSchedule, type CancelAnnouncementScheduleParams, CancelBooking, type CancelBookingParams, CancelChannelContentPublishSchedule, type CancelChannelContentPublishScheduleParams, CancelEventPass, type CancelEventPassParams, CancelEventPassTransfer, type CancelEventPassTransferParams, CancelGroupInvitation, type CancelGroupInvitationParams, type Channel, type ChannelCollectionCreateInputs, type ChannelCollectionTranslationUpdateInputs, type ChannelCollectionUpdateInputs, type ChannelContent, type ChannelContentCreateInputs, type ChannelContentGuest, type ChannelContentGuestCreateInputs, type ChannelContentGuestTranslation, type ChannelContentGuestTranslationUpdateInputs, type ChannelContentGuestUpdateInputs, type ChannelContentLike, type ChannelContentTranslation, type ChannelContentTranslationUpdateInputs, type ChannelContentUpdateInputs, type ChannelCreateInputs, ChannelFormat, type ChannelSubscriberUpdateInputs, type ChannelTranslation, type ChannelTranslationUpdateInputs, type ChannelUpdateInputs, CheckInBooking, type CheckInBookingParams, CheckinEventPass, type CheckinEventPassParams, CloneEvent, type CloneEventParams, CloneEventSession, type CloneEventSessionParams, type CloneOptions, CloseStreamSession, type CloseStreamSessionParams, ConfirmImageUpload, type ConfirmImageUploadParams, ConfirmLogin, type ConfirmLoginParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, CreateAccountAddress, type CreateAccountAddressParams, CreateAccountAttribute, type CreateAccountAttributeParams, CreateAccountInvitations, type CreateAccountInvitationsParams, type CreateAccountParams, CreateActivity, type CreateActivityParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateBenefit, type CreateBenefitParams, CreateBooking, type CreateBookingParams, CreateBookingPlace, type CreateBookingPlaceParams, CreateBookingSpace, CreateBookingSpaceAvailability, type CreateBookingSpaceAvailabilityParams, CreateBookingSpaceBlackout, type CreateBookingSpaceBlackoutParams, type CreateBookingSpaceParams, CreateBookingSpaceQuestion, CreateBookingSpaceQuestionChoice, type CreateBookingSpaceQuestionChoiceParams, type CreateBookingSpaceQuestionParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, type CreateChannelContentParams, type CreateChannelParams, CreateCustomModule, type CreateCustomModuleParams, CreateCustomReport, type CreateCustomReportParams, CreateDashboard, type CreateDashboardParams, CreateDashboardWidget, type CreateDashboardWidgetParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAttendee, CreateEventAttendeePackage, type CreateEventAttendeePackageParams, type CreateEventAttendeeParams, CreateEventAttribute, type CreateEventAttributeParams, CreateEventBlock, type CreateEventBlockParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventCouponVariants, type CreateEventCouponVariantsParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFollowup, type CreateEventFollowupParams, CreateEventMatch, type CreateEventMatchParams, CreateEventMediaItem, type CreateEventMediaItemParams, CreateEventPackage, type CreateEventPackageParams, CreateEventPackagePass, type CreateEventPackagePassParams, CreateEventPage, type CreateEventPageParams, type CreateEventParams, CreateEventPass, type CreateEventPassParams, CreateEventPassType, type CreateEventPassTypeParams, CreateEventPassTypePriceSchedule, CreateEventPassTypeRefundSchedule, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, type CreateEventQuestionParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, CreateEventReservation, type CreateEventReservationParams, CreateEventRoomType, type CreateEventRoomTypeParams, CreateEventRound, type CreateEventRoundParams, CreateEventSection, type CreateEventSectionParams, CreateEventSession, CreateEventSessionAccess, type CreateEventSessionAccessParams, CreateEventSessionLocation, type CreateEventSessionLocationParams, CreateEventSessionMatch, type CreateEventSessionMatchParams, type CreateEventSessionParams, CreateEventSessionPrice, type CreateEventSessionPriceParams, CreateEventSessionQuestion, CreateEventSessionQuestionChoice, type CreateEventSessionQuestionChoiceParams, type CreateEventSessionQuestionParams, CreateEventSessionRound, type CreateEventSessionRoundParams, CreateEventSessionSection, type CreateEventSessionSectionParams, CreateEventSessionTime, type CreateEventSessionTimeParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSponsorship, CreateEventSponsorshipLevel, type CreateEventSponsorshipLevelParams, type CreateEventSponsorshipParams, CreateEventTrack, type CreateEventTrackParams, CreateGroup, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateImport, type CreateImportParams, CreateIntegration, type CreateIntegrationParams, CreateInterest, type CreateInterestParams, CreateInvoice, CreateInvoiceLineItem, type CreateInvoiceLineItemParams, type CreateInvoiceParams, CreateLevel, type CreateLevelParams, CreateMeeting, CreateMeetingLink, type CreateMeetingLinkParams, type CreateMeetingParams, CreateMeetingParticipant, type CreateMeetingParticipantParams, CreateOrganizationPaymentIntegration, type CreateOrganizationPaymentIntegrationParams, CreateOrganizationSideEffect, type CreateOrganizationSideEffectParams, CreateOrganizationTeamMember, type CreateOrganizationTeamMemberParams, CreateOrganizationWebhook, type CreateOrganizationWebhookParams, CreatePreset, type CreatePresetParams, CreateRoom, type CreateRoomParams, CreateSearchList, type CreateSearchListParams, CreateSearchListValue, type CreateSearchListValueParams, CreateSelfApiKey, type CreateSelfApiKeyParams, CreateSeries, type CreateSeriesParams, CreateSeriesQuestion, CreateSeriesQuestionChoice, type CreateSeriesQuestionChoiceParams, type CreateSeriesQuestionParams, CreateSeriesRegistration, type CreateSeriesRegistrationParams, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateSurvey, type CreateSurveyParams, CreateSurveyQuestion, CreateSurveyQuestionChoice, type CreateSurveyQuestionChoiceParams, type CreateSurveyQuestionParams, CreateSurveySection, type CreateSurveySectionParams, CreateTaxIntegration, type CreateTaxIntegrationParams, CreateThread, CreateThreadMessage, CreateThreadMessageFile, type CreateThreadMessageFileParams, CreateThreadMessageImage, type CreateThreadMessageImageParams, type CreateThreadMessageParams, CreateThreadMessageReaction, type CreateThreadMessageReactionParams, CreateThreadMessageVideo, type CreateThreadMessageVideoParams, type CreateThreadParams, CreateTier, type CreateTierParams, Currency, type CursorQueryOptions, type CursorQueryParams, type CustomModule, type CustomModuleCreateInputs, CustomModulePosition, type CustomModuleTranslation, type CustomModuleTranslationUpdateInputs, type CustomModuleUpdateInputs, type CustomReport, type CustomReportCreateInputs, type CustomReportExportInputs, type CustomReportSchedule, type CustomReportScheduleInputs, type CustomReportUpdateInputs, DASHBOARDS_QUERY_KEY, DASHBOARD_ATTRIBUTES_QUERY_KEY, DASHBOARD_QUERY_KEY, DASHBOARD_WIDGETS_QUERY_KEY, type Dashboard, type DashboardCreateInputs, type DashboardUpdateInputs, type DashboardWidget, type DashboardWidgetCreateInputs, type DashboardWidgetEndpoint, type DashboardWidgetUpdateInputs, DayOfWeek, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, DeleteAccountAttribute, type DeleteAccountAttributeParams, DeleteAccountInvitation, type DeleteAccountInvitationParams, DeleteAccountLead, type DeleteAccountLeadParams, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteBooking, type DeleteBookingParams, DeleteBookingPlace, type DeleteBookingPlaceParams, DeleteBookingPlaceTranslation, type DeleteBookingPlaceTranslationParams, DeleteBookingSpace, DeleteBookingSpaceAvailability, type DeleteBookingSpaceAvailabilityParams, DeleteBookingSpaceBlackout, type DeleteBookingSpaceBlackoutParams, type DeleteBookingSpaceParams, DeleteBookingSpaceQuestion, DeleteBookingSpaceQuestionChoice, type DeleteBookingSpaceQuestionChoiceParams, DeleteBookingSpaceQuestionChoiceTranslation, type DeleteBookingSpaceQuestionChoiceTranslationParams, type DeleteBookingSpaceQuestionParams, DeleteBookingSpaceQuestionTranslation, type DeleteBookingSpaceQuestionTranslationParams, DeleteBookingSpaceTranslation, type DeleteBookingSpaceTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteCustomModule, type DeleteCustomModuleParams, DeleteCustomModuleTranslation, type DeleteCustomModuleTranslationParams, DeleteCustomReport, type DeleteCustomReportParams, DeleteCustomReportSchedule, type DeleteCustomReportScheduleParams, DeleteDashboard, type DeleteDashboardParams, DeleteDashboardWidget, type DeleteDashboardWidgetParams, DeleteEvent, DeleteEventActivation, DeleteEventActivationCompletion, type DeleteEventActivationCompletionParams, type DeleteEventActivationParams, DeleteEventActivationTranslation, type DeleteEventActivationTranslationParams, DeleteEventAddOn, type DeleteEventAddOnParams, DeleteEventAddOnTranslation, type DeleteEventAddOnTranslationParams, DeleteEventAttendee, DeleteEventAttendeePackage, type DeleteEventAttendeePackageParams, type DeleteEventAttendeeParams, DeleteEventAttribute, type DeleteEventAttributeParams, DeleteEventBlock, type DeleteEventBlockParams, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventCouponVariants, type DeleteEventCouponVariantsParams, DeleteEventEmailTranslation, type DeleteEventEmailTranslationParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, DeleteEventFollowup, type DeleteEventFollowupParams, DeleteEventFollowupTranslation, type DeleteEventFollowupTranslationParams, DeleteEventLocation, type DeleteEventLocationParams, DeleteEventMatch, type DeleteEventMatchParams, DeleteEventMediaItem, type DeleteEventMediaItemParams, DeleteEventMediaItemTranslation, type DeleteEventMediaItemTranslationParams, DeleteEventPackage, type DeleteEventPackageParams, DeleteEventPackagePass, type DeleteEventPackagePassParams, DeleteEventPackageTranslation, type DeleteEventPackageTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventPass, type DeleteEventPassParams, DeleteEventPassType, type DeleteEventPassTypeParams, DeleteEventPassTypePriceSchedule, DeleteEventPassTypeRefundSchedule, DeleteEventPassTypeTranslation, type DeleteEventPassTypeTranslationParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, DeleteEventReservation, type DeleteEventReservationParams, DeleteEventRoomType, type DeleteEventRoomTypeParams, DeleteEventRoomTypeTranslation, type DeleteEventRoomTypeTranslationParams, DeleteEventRound, type DeleteEventRoundParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, DeleteEventSessionAccess, type DeleteEventSessionAccessParams, DeleteEventSessionLocation, type DeleteEventSessionLocationParams, DeleteEventSessionLocationTranslation, type DeleteEventSessionLocationTranslationParams, DeleteEventSessionMatch, type DeleteEventSessionMatchParams, type DeleteEventSessionParams, DeleteEventSessionPrice, type DeleteEventSessionPriceParams, DeleteEventSessionQuestion, DeleteEventSessionQuestionChoice, type DeleteEventSessionQuestionChoiceParams, DeleteEventSessionQuestionChoiceTranslation, type DeleteEventSessionQuestionChoiceTranslationParams, type DeleteEventSessionQuestionParams, DeleteEventSessionQuestionTranslation, type DeleteEventSessionQuestionTranslationParams, DeleteEventSessionRound, type DeleteEventSessionRoundParams, DeleteEventSessionSection, type DeleteEventSessionSectionParams, DeleteEventSessionSectionTranslation, type DeleteEventSessionSectionTranslationParams, DeleteEventSessionTime, type DeleteEventSessionTimeParams, DeleteEventSessionTimeTranslation, type DeleteEventSessionTimeTranslationParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, DeleteEventSponsorship, DeleteEventSponsorshipLevel, type DeleteEventSponsorshipLevelParams, DeleteEventSponsorshipLevelTranslation, type DeleteEventSponsorshipLevelTranslationParams, type DeleteEventSponsorshipParams, DeleteEventSponsorshipTranslation, type DeleteEventSponsorshipTranslationParams, DeleteEventTrack, type DeleteEventTrackParams, DeleteEventTrackTranslation, type DeleteEventTrackTranslationParams, DeleteEventTranslation, type DeleteEventTranslationParams, DeleteFile, type DeleteFileParams, DeleteGroup, DeleteGroupInvitation, type DeleteGroupInvitationParams, type DeleteGroupParams, DeleteGroupRequest, type DeleteGroupRequestParams, DeleteGroupTranslation, type DeleteGroupTranslationParams, DeleteImage, type DeleteImageParams, DeleteIntegration, type DeleteIntegrationParams, DeleteInterest, type DeleteInterestParams, DeleteInvoice, DeleteInvoiceLineItem, type DeleteInvoiceLineItemParams, type DeleteInvoiceParams, DeleteLevel, type DeleteLevelParams, DeleteLevelTranslation, type DeleteLevelTranslationParams, DeleteLogin, type DeleteLoginParams, DeleteManyImages, type DeleteManyImagesInput, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosInput, type DeleteManyVideosParams, DeleteMeetingLink, type DeleteMeetingLinkParams, DeleteMeetingParticipant, type DeleteMeetingParticipantParams, DeleteOrganizationDomain, type DeleteOrganizationDomainParams, DeleteOrganizationModuleSettingsTranslation, type DeleteOrganizationModuleSettingsTranslationParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationSideEffect, type DeleteOrganizationSideEffectParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteOrganizationWebhook, type DeleteOrganizationWebhookParams, DeletePreset, type DeletePresetParams, DeletePushDevice, type DeletePushDeviceParams, DeleteRoom, type DeleteRoomParams, DeleteSearchList, type DeleteSearchListParams, DeleteSearchListValue, type DeleteSearchListValueParams, DeleteSelfApiKey, type DeleteSelfApiKeyParams, DeleteSeries, type DeleteSeriesParams, DeleteSeriesQuestion, DeleteSeriesQuestionChoice, type DeleteSeriesQuestionChoiceParams, type DeleteSeriesQuestionParams, DeleteSeriesRegistration, type DeleteSeriesRegistrationParams, DeleteSeriesTranslation, type DeleteSeriesTranslationParams, DeleteStreamInput, DeleteStreamInputOutput, type DeleteStreamInputOutputParams, type DeleteStreamInputParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteSurvey, type DeleteSurveyParams, DeleteSurveyQuestion, DeleteSurveyQuestionChoice, type DeleteSurveyQuestionChoiceParams, DeleteSurveyQuestionChoiceTranslation, type DeleteSurveyQuestionChoiceTranslationParams, type DeleteSurveyQuestionParams, DeleteSurveyQuestionTranslation, type DeleteSurveyQuestionTranslationParams, DeleteSurveySection, type DeleteSurveySectionParams, DeleteSurveySectionTranslation, type DeleteSurveySectionTranslationParams, DeleteSurveySubmission, type DeleteSurveySubmissionParams, DeleteSurveyTranslation, type DeleteSurveyTranslationParams, DeleteTaxIntegration, type DeleteTaxIntegrationParams, DeleteThread, DeleteThreadAccount, type DeleteThreadAccountParams, DeleteThreadMessage, DeleteThreadMessageFile, type DeleteThreadMessageFileParams, DeleteThreadMessageImage, type DeleteThreadMessageImageParams, type DeleteThreadMessageParams, DeleteThreadMessageReaction, type DeleteThreadMessageReactionParams, DeleteThreadMessageVideo, type DeleteThreadMessageVideoParams, type DeleteThreadParams, DeleteTier, type DeleteTierParams, DeleteUserImage, type DeleteUserImageParams, DeleteVideo, DeleteVideoCaption, type DeleteVideoCaptionParams, type DeleteVideoParams, DenyEventPass, type DenyEventPassParams, DetachBookingSpaceQuestionSearchList, type DetachBookingSpaceQuestionSearchListParams, DetachEventQuestionSearchList, type DetachEventQuestionSearchListParams, DetachEventSessionQuestionSearchList, type DetachEventSessionQuestionSearchListParams, DetachSurveyQuestionSearchList, type DetachSurveyQuestionSearchListParams, DisableEventBuildMode, type DisableEventBuildModeParams, DisableLivestream, type DisableLivestreamParams, type DomainDetails, DownloadVideoCaption, type DownloadVideoCaptionParams, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, ENTITY_USE_CODES_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCESS_USERS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETION_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SESSIONS_QUERY_KEY, EVENT_ACTIVATION_TRANSLATIONS_QUERY_KEY, EVENT_ACTIVATION_TRANSLATION_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_ADD_ONS_QUERY_KEY, EVENT_ADD_ON_PASSES_QUERY_KEY, EVENT_ADD_ON_PASS_TYPES_QUERY_KEY, EVENT_ADD_ON_QUERY_KEY, EVENT_ADD_ON_TIERS_QUERY_KEY, EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY, EVENT_ADD_ON_TRANSLATION_QUERY_KEY, EVENT_ATTENDEES_QUERY_KEY, EVENT_ATTENDEE_COUPONS_QUERY_KEY, EVENT_ATTENDEE_PACKAGES_QUERY_KEY, EVENT_ATTENDEE_PACKAGE_QUERY_KEY, EVENT_ATTENDEE_PASSES_QUERY_KEY, EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, EVENT_ATTENDEE_QUERY_KEY, EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, EVENT_ATTRIBUTES_QUERY_KEY, EVENT_ATTRIBUTE_QUERY_KEY, EVENT_BLOCKS_QUERY_KEY, EVENT_BLOCK_QUERY_KEY, EVENT_BLOCK_SESSIONS_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_PASSES_QUERY_KEY, EVENT_COUPON_PAYMENTS_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_COUPON_TIERS_QUERY_KEY, EVENT_COUPON_VARIANTS_QUERY_KEY, EVENT_CO_HOSTS_QUERY_KEY, EVENT_DASHBOARD_QUESTIONS_QUERY_KEY, EVENT_EMAIL_QUERY_KEY, EVENT_EMAIL_TRANSLATIONS_QUERY_KEY, EVENT_EMAIL_TRANSLATION_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_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_KEY, EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_FAQ_SECTION_TRANSLATION_QUERY_KEY, EVENT_FOLLOWUPS_QUERY_KEY, EVENT_FOLLOWUP_ADDONS_QUERY_KEY, EVENT_FOLLOWUP_PASS_TYPES_QUERY_KEY, EVENT_FOLLOWUP_QUERY_KEY, EVENT_FOLLOWUP_QUESTIONS_QUERY_KEY, EVENT_FOLLOWUP_TIERS_QUERY_KEY, EVENT_FOLLOWUP_TRANSLATIONS_QUERY_KEY, EVENT_FOLLOWUP_TRANSLATION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_PASS_TYPES_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_MEDIA_ITEM_TRANSLATIONS_QUERY_KEY, EVENT_MEDIA_ITEM_TRANSLATION_QUERY_KEY, EVENT_ON_SITE_QUERY_KEY, EVENT_PACKAGES_QUERY_KEY, EVENT_PACKAGE_PASSES_QUERY_KEY, EVENT_PACKAGE_PASS_QUERY_KEY, EVENT_PACKAGE_QUERY_KEY, EVENT_PACKAGE_TRANSLATIONS_QUERY_KEY, EVENT_PACKAGE_TRANSLATION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_IMAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_PAGE_TRANSLATIONS_QUERY_KEY, EVENT_PAGE_TRANSLATION_QUERY_KEY, EVENT_PASSES_QUERY_KEY, EVENT_PASS_ACCESSES_QUERY_KEY, EVENT_PASS_ADD_ONS_QUERY_KEY, EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY, EVENT_PASS_ATTRIBUTES_QUERY_KEY, EVENT_PASS_MATCHES_QUERY_KEY, EVENT_PASS_PAYMENTS_QUERY_KEY, EVENT_PASS_QUERY_KEY, EVENT_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, EVENT_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_PASS_RESPONSES_QUERY_KEY, EVENT_PASS_RESPONSE_CHANGES_QUERY_KEY, EVENT_PASS_RESPONSE_QUERY_KEY, EVENT_PASS_TRANSFERS_QUERY_KEY, EVENT_PASS_TRANSFER_LOGS_QUERY_KEY, EVENT_PASS_TYPES_QUERY_KEY, EVENT_PASS_TYPE_ADD_ONS_QUERY_KEY, EVENT_PASS_TYPE_COUPONS_QUERY_KEY, EVENT_PASS_TYPE_GROUP_PASS_TIERS_QUERY_KEY, EVENT_PASS_TYPE_PASSES_QUERY_KEY, EVENT_PASS_TYPE_PAYMENTS_QUERY_KEY, EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_KEY, EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY, EVENT_PASS_TYPE_QUERY_KEY, EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_KEY, EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_KEY, EVENT_PASS_TYPE_TIERS_QUERY_KEY, EVENT_PASS_TYPE_TRANSLATIONS_QUERY_KEY, EVENT_PASS_TYPE_TRANSLATION_QUERY_KEY, EVENT_PAYMENTS_QUERY_KEY, EVENT_PENDING_PASSES_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTIONS_QUERY_KEY, EVENT_QUESTION_CHOICES_QUERY_KEY, EVENT_QUESTION_CHOICE_QUERY_KEY, EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, EVENT_QUESTION_QUERY_KEY, EVENT_QUESTION_RESPONSES_QUERY_KEY, EVENT_QUESTION_SUMMARIES_QUERY_KEY, EVENT_QUESTION_SUMMARY_QUERY_KEY, EVENT_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_TRANSLATION_QUERY_KEY, EVENT_REGISTRATION_BYPASS_LIST_QUERY_KEY, EVENT_REGISTRATION_BYPASS_QUERY_KEY, EVENT_RESERVATIONS_QUERY_KEY, EVENT_RESERVATION_PASSES_QUERY_KEY, EVENT_RESERVATION_QUERY_KEY, EVENT_ROOMS_QUERY_KEY, EVENT_ROOM_QUERY_KEY, EVENT_ROOM_TYPES_QUERY_KEY, EVENT_ROOM_TYPE_PASSES_QUERY_KEY, EVENT_ROOM_TYPE_QUERY_KEY, EVENT_ROOM_TYPE_RESERVATIONS_QUERY_KEY, EVENT_ROOM_TYPE_ROOMS_QUERY_KEY, EVENT_ROOM_TYPE_TIERS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATION_QUERY_KEY, EVENT_ROUNDS_QUERY_KEY, EVENT_ROUND_MATCHES_QUERY_KEY, EVENT_ROUND_MATCH_PASSES_QUERY_KEY, EVENT_ROUND_MATCH_QUERY_KEY, EVENT_ROUND_PASSES_QUERY_KEY, EVENT_ROUND_QUESTIONS_QUERY_KEY, EVENT_ROUND_QUESTIONS_SUMMARY_QUERY_KEY, EVENT_SECTIONS_QUERY_KEY, EVENT_SECTION_ADDONS_QUERY_KEY, EVENT_SECTION_PASS_TYPES_QUERY_KEY, EVENT_SECTION_QUERY_KEY, EVENT_SECTION_QUESTIONS_QUERY_KEY, EVENT_SECTION_TIERS_QUERY_KEY, EVENT_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SECTION_TRANSLATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSIONS_WITH_ROUNDS_QUERY_KEY, EVENT_SESSION_ACCESSES_QUERY_KEY, EVENT_SESSION_ACCESS_QUERY_KEY, EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_KEY, EVENT_SESSION_ACCESS_SESSION_QUESTION_SECTIONS_QUERY_KEY, EVENT_SESSION_ACCOUNTS_QUERY_KEY, EVENT_SESSION_BLOCKS_QUERY_KEY, EVENT_SESSION_LOCATIONS_QUERY_KEY, EVENT_SESSION_LOCATION_QUERY_KEY, EVENT_SESSION_LOCATION_SESSIONS_QUERY_KEY, EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_LOCATION_TRANSLATION_QUERY_KEY, EVENT_SESSION_PASS_TYPES_QUERY_KEY, EVENT_SESSION_PAYMENTS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICES_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, EVENT_SESSION_QUESTION_QUERY_KEY, EVENT_SESSION_QUESTION_RESPONSES_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATION_QUERY_KEY, EVENT_SESSION_ROUNDS_QUERY_KEY, EVENT_SESSION_ROUND_MATCHES_QUERY_KEY, EVENT_SESSION_ROUND_MATCH_PASSES_QUERY_KEY, EVENT_SESSION_ROUND_MATCH_QUERY_KEY, EVENT_SESSION_ROUND_PASSES_QUERY_KEY, EVENT_SESSION_ROUND_QUESTIONS_QUERY_KEY, EVENT_SESSION_ROUND_QUESTIONS_SUMMARY_QUERY_KEY, EVENT_SESSION_SECTIONS_QUERY_KEY, EVENT_SESSION_SECTION_QUERY_KEY, EVENT_SESSION_SECTION_QUESTIONS_QUERY_KEY, EVENT_SESSION_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_SECTION_TRANSLATION_QUERY_KEY, EVENT_SESSION_SPEAKERS_QUERY_KEY, EVENT_SESSION_SPONSORS_QUERY_KEY, EVENT_SESSION_TIERS_QUERY_KEY, EVENT_SESSION_TIMES_QUERY_KEY, EVENT_SESSION_TIME_QUERY_KEY, EVENT_SESSION_TIME_SPEAKERS_QUERY_KEY, EVENT_SESSION_TIME_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_TIME_TRANSLATION_QUERY_KEY, EVENT_SESSION_TRACKS_QUERY_KEY, EVENT_SESSION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_TRANSLATION_QUERY_KEY, EVENT_SESSION_VISIBLE_PASS_TYPES_QUERY_KEY, EVENT_SESSION_VISIBLE_TIERS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPEAKER_TRANSLATIONS_QUERY_KEY, EVENT_SPEAKER_TRANSLATION_QUERY_KEY, EVENT_SPONSORSHIPS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_KEY, EVENT_SPONSORSHIP_TRANSLATION_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_SPONSOR_ACCOUNTS_QUERY_KEY, EVENT_TEMPLATES_QUERY_KEY, EVENT_TIERS_QUERY_KEY, EVENT_TRACKS_QUERY_KEY, EVENT_TRACK_QUERY_KEY, EVENT_TRACK_SESSIONS_QUERY_KEY, EVENT_TRACK_SPONSORS_QUERY_KEY, EVENT_TRACK_TRANSLATIONS_QUERY_KEY, EVENT_TRACK_TRANSLATION_QUERY_KEY, EVENT_TRANSLATIONS_QUERY_KEY, EVENT_TRANSLATION_QUERY_KEY, type EmailReceipt, EmailReceiptStatus, EnableEventBuildMode, type EnableEventBuildModeParams, EnableLivestream, type EnableLivestreamParams, type EntityUseCode, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, EventActivationRewardType, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, EventActivationType, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, EventAgendaVisibility, type EventAnnouncementFilters, type EventAttendee, type EventAttendeeCreateInputs, type EventAttendeePackageCreateInputs, type EventAttendeePackageUpdateInputs, type EventAttendeeUpdateInputs, type EventAttribute, type EventAttributeCreateInputs, type EventAttributeUpdateInputs, type EventBlock, type EventBlockCreateInputs, type EventBlockUpdateInputs, type EventCouponCreateInputs, type EventCouponUpdateInputs, type EventCreateInputs, type EventEmail, type EventEmailTranslation, type EventEmailTranslationUpdateInputs, EventEmailType, type EventEmailUpdateInputs, type EventFaqSectionCreateInputs, type EventFaqSectionQuestionCreateInputs, type EventFaqSectionQuestionTranslationUpdateInputs, type EventFaqSectionQuestionUpdateInputs, type EventFaqSectionTranslationUpdateInputs, type EventFaqSectionUpdateInputs, type EventFollowupCreateInputs, type EventFollowupTranslationUpdateInputs, type EventFollowupUpdateInputs, EventGetPassTypeCoupons, type EventListing, type EventLocationInputs, type EventMediaItem, type EventMediaItemCreateInputs, type EventMediaItemTranslation, type EventMediaItemTranslationUpdateInputs, type EventMediaItemUpdateInputs, type EventOnSite, type EventPackage, type EventPackageCreateInputs, type EventPackagePass, type EventPackagePassCreateInputs, type EventPackagePassUpdateInputs, type EventPackageTranslation, type EventPackageTranslationUpdateInputs, type EventPackageUpdateInputs, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPass, type EventPassCreateInputs, type EventPassType, type EventPassTypePriceSchedule, type EventPassTypeRefundSchedule, type EventPassTypeTranslation, type EventPassUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, EventReportDateType, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypeAddOnDetailsUpdateInputs, type EventRoomTypeCreateInputs, type EventRoomTypePassTypeDetails, type EventRoomTypePassTypeDetailsUpdateInputs, type EventRoomTypeReservation, type EventRoomTypeReservationCreateInputs, type EventRoomTypeReservationUpdateInputs, type EventRoomTypeTranslation, type EventRoomTypeTranslationUpdateInputs, type EventRoomTypeUpdateInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionAccess, type EventSessionAccessUpdateInputs, type EventSessionCloneOptions, type EventSessionCreateInputs, type EventSessionLocation, type EventSessionLocationCreateInputs, type EventSessionLocationTranslation, type EventSessionLocationTranslationUpdateInputs, type EventSessionLocationUpdateInputs, type EventSessionPrice, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionChoiceCreateInputs, type EventSessionQuestionChoiceSubQuestion, type EventSessionQuestionChoiceTranslation, type EventSessionQuestionChoiceTranslationUpdateInputs, type EventSessionQuestionChoiceUpdateInputs, type EventSessionQuestionCreateInputs, type EventSessionQuestionResponse, type EventSessionQuestionResponseChange, type EventSessionQuestionTranslation, type EventSessionQuestionTranslationUpdateInputs, EventSessionQuestionType, type EventSessionQuestionUpdateInputs, type EventSessionSection, type EventSessionSectionCreateInputs, type EventSessionSectionQuestion, type EventSessionSectionTranslation, type EventSessionSectionTranslationUpdateInputs, type EventSessionSectionUpdateInputs, type EventSessionTime, type EventSessionTimeCreateInputs, type EventSessionTimeTranslation, type EventSessionTimeTranslationUpdateInputs, type EventSessionTimeUpdateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSessionVisibility, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventSponsorship, type EventSponsorshipCreateInputs, type EventSponsorshipLevel, type EventSponsorshipLevelCreateInputs, type EventSponsorshipLevelTranslation, type EventSponsorshipLevelTranslationUpdateInputs, type EventSponsorshipLevelUpdateInputs, type EventSponsorshipTranslation, type EventSponsorshipTranslationUpdateInputs, type EventSponsorshipUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, type EventVariantCouponCreateInputs, type EventVariantCouponSyncInputs, ExportAccount, type ExportAccountParams, ExportCustomReport, type ExportCustomReportParams, ExportStatus, ExportStreamSession, type ExportStreamSessionParams, FEATURED_CHANNELS_QUERY_KEY, FILES_QUERY_KEY, FILE_QUERY_KEY, type Faq, type FaqSection, type FaqSectionTranslation, type FaqTranslation, type File, FileSource, type FileUpdateInputs, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INTERESTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_INVITATION_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_MODERATORS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GenerateMeetingSessionSummary, type GenerateMeetingSessionSummaryParams, GenerateVideoCaptions, type GenerateVideoCaptionsParams, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountAddress, GetAccountAddresses, GetAccountBookings, GetAccountComments, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountInvitations, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountNotificationPreferences, GetAccountPayments, GetAccountRegistrations, GetAccountSupportTickets, GetAccountThreads, GetAccountTiers, GetAccounts, GetAccountsByInternalRefId, GetActivities, GetActivity, GetActivityComments, GetActivityLikes, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAllEventAddOns, GetAllEventPassTypes, GetAnnouncement, GetAnnouncementAudience, GetAnnouncementEmailReceipts, GetAnnouncementTranslation, GetAnnouncementTranslations, GetAnnouncements, GetAuthSession, GetAuthSessions, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetBooking, GetBookingPlace, GetBookingPlaceBookings, GetBookingPlacePayments, GetBookingPlaceTranslation, GetBookingPlaceTranslations, GetBookingPlaces, GetBookingResponses, GetBookingSpace, GetBookingSpaceAvailabilities, GetBookingSpaceAvailability, GetBookingSpaceBlackout, GetBookingSpaceBlackouts, GetBookingSpaceBookings, GetBookingSpacePayments, GetBookingSpaceQuestion, GetBookingSpaceQuestionChoice, GetBookingSpaceQuestionChoiceTranslation, GetBookingSpaceQuestionChoiceTranslations, GetBookingSpaceQuestionChoices, GetBookingSpaceQuestionTranslation, GetBookingSpaceQuestionTranslations, GetBookingSpaceQuestions, GetBookingSpaceSlots, GetBookingSpaceTiers, GetBookingSpaceTranslation, GetBookingSpaceTranslations, GetBookingSpaces, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetCustomModule, GetCustomModuleTranslation, GetCustomModuleTranslations, GetCustomModules, GetCustomReport, GetCustomReportSchedule, GetCustomReportUsers, GetCustomReports, GetDashboard, GetDashboardAttributes, GetDashboardWidgets, GetDashboards, GetEmailReceipt, GetEmailReceipts, GetEntityUseCodes, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletion, GetEventActivationCompletions, GetEventActivationSessions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePackage, GetEventAttendeePackages, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeReservations, GetEventAttendeeTransfersLogs, GetEventAttendees, GetEventAttribute, GetEventAttributes, GetEventBlock, GetEventBlockSessions, GetEventBlocks, GetEventCoHosts, GetEventCoupon, GetEventCouponPasses, GetEventCouponPayments, GetEventCouponTiers, GetEventCouponVariants, GetEventCoupons, GetEventDashboardQuestions, GetEventEmail, GetEventEmailTranslation, GetEventEmailTranslations, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventFollowup, GetEventFollowupAddOns, GetEventFollowupPassTypes, GetEventFollowupQuestions, GetEventFollowupTiers, GetEventFollowupTranslation, GetEventFollowupTranslations, GetEventFollowups, GetEventMediaItem, GetEventMediaItemPassTypes, GetEventMediaItemTranslation, GetEventMediaItemTranslations, GetEventMediaItems, GetEventOnSite, GetEventPackage, GetEventPackagePass, GetEventPackagePasses, GetEventPackageTranslation, GetEventPackageTranslations, GetEventPackages, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPass, GetEventPassAccesses, GetEventPassAddOns, GetEventPassAttendeePasses, GetEventPassAttributes, GetEventPassMatches, GetEventPassPayments, GetEventPassQuestionFollowups, GetEventPassQuestionSections, GetEventPassResponse, GetEventPassResponseChanges, GetEventPassResponses, GetEventPassTransferLogs, GetEventPassTransfers, GetEventPassType, GetEventPassTypeAddOns, GetEventPassTypeGroupPassTiers, GetEventPassTypePasses, GetEventPassTypePayments, GetEventPassTypePriceSchedule, GetEventPassTypePriceSchedules, GetEventPassTypeRefundSchedule, GetEventPassTypeRefundSchedules, GetEventPassTypeTiers, GetEventPassTypeTranslation, GetEventPassTypeTranslations, GetEventPassTypes, GetEventPasses, GetEventPayments, GetEventPendingPasses, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventReservation, GetEventReservationPasses, GetEventReservations, GetEventRoomType, GetEventRoomTypePasses, GetEventRoomTypeReservations, GetEventRoomTypeTiers, GetEventRoomTypeTranslation, GetEventRoomTypeTranslations, GetEventRoomTypes, GetEventRoundMatch, GetEventRoundMatchPasses, GetEventRoundMatches, GetEventRoundPasses, GetEventRoundQuestions, GetEventRoundQuestionsSummary, GetEventRounds, GetEventSection, GetEventSectionAddOns, GetEventSectionPassTypes, GetEventSectionQuestions, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccess, GetEventSessionAccessQuestionSections, GetEventSessionAccessResponseChanges, GetEventSessionAccesses, GetEventSessionAccounts, GetEventSessionBlocks, GetEventSessionLocation, GetEventSessionLocationSessions, GetEventSessionLocationTranslation, GetEventSessionLocationTranslations, GetEventSessionLocations, GetEventSessionPassTypes, GetEventSessionPayments, GetEventSessionQuestion, GetEventSessionQuestionChoice, GetEventSessionQuestionChoiceSubQuestions, GetEventSessionQuestionChoiceTranslation, GetEventSessionQuestionChoiceTranslations, GetEventSessionQuestionChoices, GetEventSessionQuestionResponses, GetEventSessionQuestionTranslation, GetEventSessionQuestionTranslations, GetEventSessionQuestions, GetEventSessionRoundMatch, GetEventSessionRoundMatchPasses, GetEventSessionRoundMatches, GetEventSessionRoundPasses, GetEventSessionRoundQuestions, GetEventSessionRoundQuestionsSummary, GetEventSessionRounds, GetEventSessionSection, GetEventSessionSectionQuestions, GetEventSessionSectionTranslation, GetEventSessionSectionTranslations, GetEventSessionSections, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTiers, GetEventSessionTime, GetEventSessionTimeSpeakers, GetEventSessionTimeTranslation, GetEventSessionTimeTranslations, GetEventSessionTimes, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessionVisiblePassTypes, GetEventSessionVisibleTiers, GetEventSessions, GetEventSessionsWithRounds, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventSponsorship, GetEventSponsorshipLevel, GetEventSponsorshipLevelTranslation, GetEventSponsorshipLevelTranslations, GetEventSponsorshipLevels, GetEventSponsorshipTranslation, GetEventSponsorshipTranslations, GetEventSponsorships, GetEventTiers, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEvents, GetFeaturedChannels, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImport, GetImportItems, GetImports, GetIntegration, GetIntegrations, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestChannels, GetInterestContents, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoicePayments, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetLivestream, GetLivestreamSessions, GetLivestreams, GetLogin, GetLoginAccounts, GetLoginAuthSessions, GetLoginDevices, GetLogins, GetMeeting, GetMeetingLink, GetMeetingLinks, GetMeetingLivestream, GetMeetingParticipant, GetMeetingParticipants, GetMeetingRecording, GetMeetingRecordings, GetMeetingSession, GetMeetingSessionMessages, GetMeetingSessionParticipant, GetMeetingSessionParticipants, GetMeetingSessionSummary, GetMeetingSessionTranscript, GetMeetingSessions, GetMeetings, GetNotificationCount, GetNotificationStats, GetNotifications, GetOrganization, GetOrganizationAccountAttribute, GetOrganizationAccountAttributes, GetOrganizationDomain, GetOrganizationMembership, GetOrganizationModule, GetOrganizationModuleEditableTiers, GetOrganizationModuleEnabledTiers, GetOrganizationModuleSettings, GetOrganizationModuleSettingsTranslation, GetOrganizationModuleSettingsTranslations, GetOrganizationModules, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationSideEffect, GetOrganizationSideEffects, GetOrganizationSystemLog, GetOrganizationSystemLogs, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationUsers, GetOrganizationWebhook, GetOrganizationWebhooks, GetPayment, GetPaymentTaxMetadata, GetPayments, GetPreferences, GetPreset, GetPresets, GetPushDevice, GetPushDevices, GetReport, GetReports, GetRequiredAttributes, GetRoom, GetRoomTypeRooms, GetRooms, GetSearchList, GetSearchListConnectedQuestions, GetSearchListValue, GetSearchListValues, GetSearchLists, GetSelf, GetSelfApiKey, GetSelfApiKeys, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetSeriesPayments, GetSeriesQuestion, GetSeriesQuestionChoice, GetSeriesQuestionChoices, GetSeriesQuestionTranslation, GetSeriesQuestions, GetSeriesRegistration, GetSeriesRegistrationPasses, GetSeriesRegistrationPayments, GetSeriesRegistrationResponses, GetSeriesRegistrations, GetSeriesTranslation, GetSeriesTranslations, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetStreamSession, GetStreamSessionChat, GetStreamSessionSubscriptions, GetStreamSessions, GetStreamVideos, GetSupportTicket, GetSupportTicketActivity, GetSupportTicketMessages, GetSupportTicketNotes, GetSupportTicketViewer, GetSupportTickets, GetSurvey, GetSurveyQuestion, GetSurveyQuestionChoice, GetSurveyQuestionChoiceSubQuestions, GetSurveyQuestionChoiceTranslation, GetSurveyQuestionChoiceTranslations, GetSurveyQuestionChoices, GetSurveyQuestionResponses, GetSurveyQuestionTranslation, GetSurveyQuestionTranslations, GetSurveyQuestions, GetSurveySection, GetSurveySectionQuestions, GetSurveySectionTranslation, GetSurveySectionTranslations, GetSurveySections, GetSurveySessions, GetSurveySubmission, GetSurveySubmissionQuestionSections, GetSurveySubmissionResponseChanges, GetSurveySubmissions, GetSurveyTranslation, GetSurveyTranslations, GetSurveys, GetTaxCodes, GetTaxIntegration, GetTaxIntegrations, GetTaxLog, GetTaxLogs, GetTemplates, GetThread, GetThreadAccounts, GetThreadMessage, GetThreadMessageFiles, type GetThreadMessageFilesProps, GetThreadMessageImages, type GetThreadMessageImagesProps, type GetThreadMessageProps, GetThreadMessageReactions, type GetThreadMessageReactionsProps, GetThreadMessageVideos, type GetThreadMessageVideosProps, GetThreadMessages, GetThreadMessagesPoll, type GetThreadMessagesPollProps, type GetThreadMessagesProps, GetThreadStorageFiles, type GetThreadStorageFilesProps, GetThreadStorageImages, type GetThreadStorageImagesProps, GetThreadStorageVideos, type GetThreadStorageVideosProps, GetThreads, GetTier, GetTierAccounts, GetTierImport, GetTierImportItems, GetTierImports, GetTiers, GetVideo, GetVideoCaptions, GetVideoDownloadStatus, GetVideos, type Group, GroupAccess, type GroupCreateInputs, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupMembershipUpdateInputs, type GroupRequest, GroupRequestStatus, type GroupTranslation, type GroupTranslationUpdateInputs, type GroupUpdateInputs, IMAGES_QUERY_KEY, IMAGE_QUERY_KEY, IMAGE_USAGE_QUERY_KEY, IMPORTS_QUERY_KEY, IMPORT_ITEMS_QUERY_KEY, IMPORT_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_CHANNELS_QUERY_KEY, INTEREST_CONTENTS_QUERY_KEY, INTEREST_EVENTS_QUERY_KEY, INTEREST_GROUPS_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_LINE_ITEMS_QUERY_KEY, INVOICE_LINE_ITEM_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_QUERY_KEY, type ISupportedLocale, type Image, type ImageDirectUpload, type ImageDirectUploadInputs, ImageModerationLevel, ImageType, type ImageUpdateInputs, type ImageUsage, type ImageVariant, type ImageWCopyUri, type Import, type ImportCreateInputs, type ImportItem, ImportItemStatus, ImportRooms, type ImportRoomsParams, ImportType, IndexEventPasses, type IndexEventPassesParams, type InfiniteQueryOptions, type InfiniteQueryParams, InitiateVideoDownload, type InitiateVideoDownloadParams, type Integration, type IntegrationCreateInputs, IntegrationType, type IntegrationUpdateInputs, type Interest, type InterestCreateInputs, type InterestInputs, type InterestUpdateInputs, type Invoice, type InvoiceCreateInputs, type InvoiceLineItem, type InvoiceLineItemCreateInputs, type InvoiceLineItemUpdateInputs, InvoiceStatus, type InvoiceUpdateInputs, JoinMeeting, type JoinMeetingParams, LEVELS_QUERY_KEY, LEVEL_ACCOUNTS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_TRANSLATIONS_QUERY_KEY, LEVEL_TRANSLATION_QUERY_KEY, LIVESTREAMS_QUERY_KEY, LIVESTREAM_QUERY_KEY, LIVESTREAM_SESSIONS_QUERY_KEY, LOGINS_QUERY_KEY, LOGIN_ACCOUNTS_QUERY_KEY, LOGIN_AUTH_SESSIONS_QUERY_KEY, LOGIN_DEVICES_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, type LeadCreateInputs, LeadStatus, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkInputs, type LinkPreview, type Livestream, type LivestreamSession, LocationQuestionOption, type Login, MEETINGS_QUERY_KEY, MEETING_LINKS_QUERY_KEY, MEETING_LINK_QUERY_KEY, MEETING_LIVESTREAM_QUERY_KEY, MEETING_PARTICIPANTS_QUERY_KEY, MEETING_PARTICIPANT_QUERY_KEY, MEETING_QUERY_KEY, MEETING_RECORDINGS_QUERY_KEY, MEETING_RECORDING_QUERY_KEY, MEETING_SESSIONS_QUERY_KEY, MEETING_SESSION_MESSAGES_QUERY_KEY, MEETING_SESSION_PARTICIPANTS_QUERY_KEY, MEETING_SESSION_PARTICIPANT_QUERY_KEY, MEETING_SESSION_QUERY_KEY, MEETING_SESSION_SUMMARY_QUERY_KEY, MEETING_SESSION_TRANSCRIPT_QUERY_KEY, type MapboxSearchOptions, type MapboxSuggestion, MarkNotificationsRead, type MarkNotificationsReadInputs, type MarkNotificationsReadParams, type Match, MatchQuestionType, type MatchUpdateInputs, type Meeting, type MeetingCreateInputs, type MeetingLink, type MeetingLinkCreateInputs, type MeetingLinkUpdateInputs, type MeetingParticipant, type MeetingParticipantCreateInputs, type MeetingParticipantUpdateInputs, type MeetingPresetCreateInputs, type MeetingPresetUpdateInputs, type MeetingRecording, type MeetingRecordingCreateInputs, type MeetingRecordingUpdateInputs, type MeetingSession, type MeetingSessionChatDownload, type MeetingSessionParticipant, type MeetingSessionSummaryDownload, type MeetingSessionTranscriptDownload, MeetingType, type MeetingUpdateInputs, type MentionInputs, MergeInfinitePages, ModerationStatus, type ModulePermissions, type ModulesOrder, type MutationParams, NOTIFICATIONS_QUERY_KEY, NOTIFICATION_COUNT_QUERY_KEY, NOTIFICATION_STATS_QUERY_KEY, type Notification, type NotificationFilters, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, type NotificationStats, NotificationType, ORGANIZATION_ACCOUNT_ATTRIBUTES_QUERY_KEY, ORGANIZATION_ACCOUNT_ATTRIBUTE_QUERY_KEY, ORGANIZATION_DOMAIN_QUERY_KEY, ORGANIZATION_MEMBERSHIP_QUERY_KEY, ORGANIZATION_MODULES_QUERY_KEY, ORGANIZATION_MODULE_EDITABLE_TIERS_QUERY_KEY, ORGANIZATION_MODULE_ENABLED_TIERS_QUERY_KEY, ORGANIZATION_MODULE_QUERY_KEY, ORGANIZATION_MODULE_SETTINGS_QUERY_KEY, ORGANIZATION_MODULE_SETTINGS_TRANSLATIONS_QUERY_KEY, ORGANIZATION_MODULE_SETTINGS_TRANSLATION_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SIDE_EFFECTS_QUERY_KEY, ORGANIZATION_SIDE_EFFECT_QUERY_KEY, ORGANIZATION_SYSTEM_LOGS_QUERY_KEY, ORGANIZATION_SYSTEM_LOG_QUERY_KEY, ORGANIZATION_TEAM_MEMBERS_QUERY_KEY, ORGANIZATION_TEAM_MEMBER_QUERY_KEY, ORGANIZATION_USERS_QUERY_KEY, ORGANIZATION_WEBHOOKS_QUERY_KEY, ORGANIZATION_WEBHOOK_QUERY_KEY, OnSiteScanType, type Organization, OrganizationActionType, type OrganizationMembership, type OrganizationMembershipUpdateInputs, type OrganizationModule, type OrganizationModuleSettings, type OrganizationModuleSettingsTranslation, type OrganizationModuleSettingsTranslationUpdateInputs, type OrganizationModuleSettingsUpdateInputs, OrganizationModuleType, type OrganizationModuleUpdateInputs, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationPaymentIntegrationCreateInputs, type OrganizationPaymentIntegrationUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PAYMENT_TAX_METADATA_QUERY_KEY, PREFERENCES_QUERY_KEY, PRESETS_QUERY_KEY, PRESET_QUERY_KEY, PUSH_DEVICES_QUERY_KEY, PUSH_DEVICE_QUERY_KEY, PageType, type PassAddOn, type PassAttribute, type PassAttributesUpdateInputs, PassTypeAccessLevel, type PassTypeCreateInputs, type PassTypePriceScheduleCreateInputs, type PassTypePriceScheduleUpdateInputs, type PassTypeRefundScheduleCreateInputs, type PassTypeRefundScheduleUpdateInputs, type PassTypeTranslationUpdateInputs, type PassTypeUpdateInputs, PassTypeVisibility, type Payment, type PaymentIntegration, PaymentIntegrationType, type PaymentIntentPurchaseMetadataInputs, type PaymentLineItem, PaymentLineItemType, PaymentType, type PaymentUpdateInputs, type PaypalActivationFormParams, type Preset, PublishActivity, type PublishActivityParams, PurchaseStatus, type PushDevice, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_QUERY_KEY, REQUIRED_ATTRIBUTES_QUERY_KEY, type RecordingAction, type RefundLineItem, RefundOrganizationPayment, type RefundOrganizationPaymentParams, RegenerateMeetingParticipantToken, type RegenerateMeetingParticipantTokenParams, type RegistrationBypass, type RegistrationFollowup, type RegistrationFollowupQuestion, type RegistrationFollowupTranslation, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionChoiceSubQuestion, type RegistrationQuestionChoiceTranslation, type RegistrationQuestionResponse, type RegistrationQuestionResponseChange, type RegistrationQuestionTranslation, RegistrationQuestionType, type RegistrationQuestionWithResponse, type RegistrationSection, type RegistrationSectionQuestion, type RegistrationSectionTranslation, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveAllChannelSubscribers, type RemoveAllChannelSubscribersParams, RemoveAllGroupMembers, type RemoveAllGroupMembersParams, RemoveBookingSpaceTier, type RemoveBookingSpaceTierParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveCustomReportUser, type RemoveCustomReportUserParams, RemoveEventAccessUser, RemoveEventActivationSession, type RemoveEventActivationSessionParams, RemoveEventActivationSessions, type RemoveEventActivationSessionsParams, RemoveEventAddOnPassType, type RemoveEventAddOnPassTypeParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventBlockSession, type RemoveEventBlockSessionParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventCouponTier, type RemoveEventCouponTierParams, RemoveEventFollowupAddOn, type RemoveEventFollowupAddOnParams, RemoveEventFollowupPassType, type RemoveEventFollowupPassTypeParams, RemoveEventFollowupQuestion, type RemoveEventFollowupQuestionParams, RemoveEventFollowupTier, type RemoveEventFollowupTierParams, RemoveEventMatchPass, type RemoveEventMatchPassParams, RemoveEventMediaItemPassType, type RemoveEventMediaItemPassTypeParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventPassAddOn, type RemoveEventPassAddOnParams, RemoveEventPassAttribute, type RemoveEventPassAttributeParams, RemoveEventPassTypeAddOn, type RemoveEventPassTypeAddOnParams, RemoveEventPassTypeGroupPassTier, type RemoveEventPassTypeGroupPassTierParams, RemoveEventPassTypeTier, type RemoveEventPassTypeTierParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventReservationPass, type RemoveEventReservationPassParams, RemoveEventRoomTypeTier, type RemoveEventRoomTypeTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionPassType, type RemoveEventSectionPassTypeParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionBlock, type RemoveEventSessionBlockParams, RemoveEventSessionLocationSession, type RemoveEventSessionLocationSessionParams, RemoveEventSessionMatchPass, type RemoveEventSessionMatchPassParams, RemoveEventSessionPassType, type RemoveEventSessionPassTypeParams, RemoveEventSessionQuestionChoiceSubQuestion, type RemoveEventSessionQuestionChoiceSubQuestionParams, RemoveEventSessionSectionQuestion, type RemoveEventSessionSectionQuestionParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTier, type RemoveEventSessionTierParams, RemoveEventSessionTimeSpeaker, type RemoveEventSessionTimeSpeakerParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, RemoveEventSessionVisiblePassType, type RemoveEventSessionVisiblePassTypeParams, RemoveEventSessionVisibleTier, type RemoveEventSessionVisibleTierParams, RemoveEventSpeakerSession, type RemoveEventSpeakerSessionParams, RemoveEventSponsorAccount, type RemoveEventSponsorAccountParams, RemoveEventTrackSession, type RemoveEventTrackSessionParams, RemoveEventTrackSponsor, type RemoveEventTrackSponsorParams, RemoveGroupEvent, type RemoveGroupEventParams, RemoveGroupInterest, type RemoveGroupInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveGroupModerator, type RemoveGroupModeratorParams, RemoveGroupSponsor, type RemoveGroupSponsorParams, RemoveLevelAccount, type RemoveLevelAccountParams, RemoveLoginAccount, type RemoveLoginAccountParams, RemoveOrganizationModuleEditableTier, type RemoveOrganizationModuleEditableTierParams, RemoveOrganizationModuleEnabledTier, type RemoveOrganizationModuleEnabledTierParams, RemoveRoomFromRoomType, type RemoveRoomFromRoomTypeParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSurveyQuestionChoiceSubQuestion, type RemoveSurveyQuestionChoiceSubQuestionParams, RemoveSurveySectionQuestion, type RemoveSurveySectionQuestionParams, RemoveSurveySession, type RemoveSurveySessionParams, RemoveTierAccounts, type RemoveTierAccountsParams, ReorderBookingSpaceQuestionChoices, type ReorderBookingSpaceQuestionChoicesParams, ReorderBookingSpaceQuestions, type ReorderBookingSpaceQuestionsParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventFollowupQuestions, type ReorderEventFollowupQuestionsParams, ReorderEventQuestionChoiceSubQuestions, type ReorderEventQuestionChoiceSubQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, ReorderEventSessionQuestionChoiceSubQuestions, type ReorderEventSessionQuestionChoiceSubQuestionsParams, ReorderEventSessionQuestionChoices, type ReorderEventSessionQuestionChoicesParams, ReorderEventSessionSectionQuestions, type ReorderEventSessionSectionQuestionsParams, ReorderEventSponsorshipLevels, type ReorderEventSponsorshipLevelsParams, ReorderEventSponsorships, type ReorderEventSponsorshipsParams, ReorderSeriesQuestionChoices, type ReorderSeriesQuestionChoicesParams, ReorderSurveyQuestionChoiceSubQuestions, type ReorderSurveyQuestionChoiceSubQuestionsParams, ReorderSurveyQuestionChoices, type ReorderSurveyQuestionChoicesParams, ReorderSurveySectionQuestions, type ReorderSurveySectionQuestionsParams, type ReportFilters, ReportType, RequestImageDirectUpload, type RequestImageDirectUploadParams, ResendRegistrationConfirmationEmail, type ResendRegistrationConfirmationEmailParams, ResetLivestreamStreamKey, type ResetLivestreamStreamKeyParams, type ResolvedAddress, RevertChannelContentToDraft, type RevertChannelContentToDraftParams, type Room, type RoomCreateInputs, type RoomUpdateInputs, type Round, type RoundEventQuestion, type RoundEventQuestionUpdataInputs, type RoundSessionQuestion, type RoundSessionQuestionUpdateInputs, SEARCHLISTS_QUERY_KEY, SEARCHLIST_CONNECTED_QUESTIONS_QUERY_KEY, SEARCHLIST_QUERY_KEY, SEARCHLIST_VALUES_QUERY_KEY, SEARCHLIST_VALUE_QUERY_KEY, SEARCH_ORGANIZATION_QUERY_KEY, SELF_API_KEYS_QUERY_KEY, SELF_API_KEY_QUERY_KEY, SELF_MEMBERSHIP_QUERY_KEY, SELF_ORGANIZATIONS_QUERY_KEY, SELF_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_PAYMENTS_QUERY_KEY, SERIES_QUERY_KEY, SERIES_QUESTIONS_QUERY_KEY, SERIES_QUESTION_CHOICES_QUERY_KEY, SERIES_QUESTION_CHOICE_QUERY_KEY, SERIES_QUESTION_QUERY_KEY, SERIES_QUESTION_TRANSLATION_QUERY_KEY, SERIES_REGISTRATIONS_QUERY_KEY, SERIES_REGISTRATION_PASSES_QUERY_KEY, SERIES_REGISTRATION_PAYMENTS_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_RESPONSES_QUERY_KEY, SERIES_TRANSLATIONS_QUERY_KEY, SERIES_TRANSLATION_QUERY_KEY, SET_ACCOUNTS_BY_INTERNAL_REF_ID_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_ADDRESSES_QUERY_DATA, SET_ACCOUNT_BOOKINGS_QUERY_DATA, SET_ACCOUNT_COMMENTS_QUERY_DATA, SET_ACCOUNT_EMAILS_QUERY_DATA, SET_ACCOUNT_EVENTS_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWING_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_INTERESTS_QUERY_DATA, SET_ACCOUNT_INVITATIONS_QUERY_DATA, SET_ACCOUNT_LEADS_QUERY_DATA, SET_ACCOUNT_LEAD_QUERY_DATA, SET_ACCOUNT_LEVELS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_NOTIFICATION_PREFERENCES_QUERY_DATA, SET_ACCOUNT_PAYMENTS_QUERY_DATA, SET_ACCOUNT_PUSH_DEVICES_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_REGISTRATIONS_QUERY_DATA, SET_ACCOUNT_SUPPORT_TICKETS_QUERY_DATA, SET_ACCOUNT_THREADS_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_QUERY_DATA, SET_ALL_EVENT_ADD_ON_QUERY_DATA, SET_ALL_EVENT_PASS_TYPES_QUERY_DATA, SET_ANNOUNCEMENTS_QUERY_DATA, SET_ANNOUNCEMENT_AUDIENCE_QUERY_DATA, SET_ANNOUNCEMENT_EMAILS_QUERY_DATA, SET_ANNOUNCEMENT_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATIONS_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATION_QUERY_DATA, SET_API_LOGS_QUERY_DATA, SET_API_LOG_QUERY_DATA, SET_AUTH_SESSIONS_QUERY_DATA, SET_AUTH_SESSION_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BENEFIT_CLICKS_QUERY_DATA, SET_BENEFIT_QUERY_DATA, SET_BENEFIT_TRANSLATIONS_QUERY_DATA, SET_BENEFIT_TRANSLATION_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACE_PAYMENTS_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATION_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_BOOKING_RESPONSES_QUERY_DATA, SET_BOOKING_SPACES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITIES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITY_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUTS_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUT_QUERY_DATA, SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA, SET_BOOKING_SPACE_PAYMENTS_QUERY_DATA, SET_BOOKING_SPACE_QUERY_DATA, SET_BOOKING_SPACE_QUESTIONS_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_CHOICES_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_CHOICE_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_TRANSLATION_QUERY_DATA, SET_BOOKING_SPACE_SLOTS_QUERY_DATA, SET_BOOKING_SPACE_TIERS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATION_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENT_GUESTS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA, SET_CHANNEL_CONTENT_LIKES_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_CHANNEL_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_TRANSLATION_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CUSTOM_MODULES_QUERY_DATA, SET_CUSTOM_MODULE_QUERY_DATA, SET_CUSTOM_MODULE_TRANSLATIONS_QUERY_DATA, SET_CUSTOM_MODULE_TRANSLATION_QUERY_DATA, SET_CUSTOM_REPORTS_QUERY_DATA, SET_CUSTOM_REPORT_QUERY_DATA, SET_CUSTOM_REPORT_SCHEDULE_QUERY_DATA, SET_CUSTOM_REPORT_USERS_QUERY_DATA, SET_DASHBOARDS_QUERY_DATA, SET_DASHBOARD_ATTRIBUTES_QUERY_DATA, SET_DASHBOARD_QUERY_DATA, SET_DASHBOARD_WIDGETS_QUERY_DATA, SET_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_ENTITY_USE_CODES_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETION_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVATION_SESSIONS_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_ADD_ONS_QUERY_DATA, SET_EVENT_ADD_ON_PASSES_QUERY_DATA, SET_EVENT_ADD_ON_PASS_TYPES_QUERY_DATA, SET_EVENT_ADD_ON_QUERY_DATA, SET_EVENT_ADD_ON_TIERS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATIONS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATION_QUERY_DATA, SET_EVENT_ATTENDEES_QUERY_DATA, SET_EVENT_ATTENDEE_PACKAGES_QUERY_DATA, SET_EVENT_ATTENDEE_PACKAGE_QUERY_DATA, SET_EVENT_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_RESERVATIONS_QUERY_DATA, SET_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_ATTRIBUTES_QUERY_DATA, SET_EVENT_ATTRIBUTE_QUERY_DATA, SET_EVENT_BLOCKS_QUERY_DATA, SET_EVENT_BLOCK_QUERY_DATA, SET_EVENT_BLOCK_SESSIONS_QUERY_DATA, SET_EVENT_COUPONS_QUERY_DATA, SET_EVENT_COUPON_PASSES_QUERY_DATA, SET_EVENT_COUPON_PAYMENTS_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_COUPON_TIERS_QUERY_DATA, SET_EVENT_COUPON_VARIANTS_QUERY_DATA, SET_EVENT_CO_HOSTS_QUERY_DATA, SET_EVENT_DASHBOARD_QUESTIONS_QUERY_DATA, SET_EVENT_EMAIL_QUERY_DATA, SET_EVENT_EMAIL_TRANSLATIONS_QUERY_DATA, SET_EVENT_EMAIL_TRANSLATION_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_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_FOLLOWUPS_QUERY_DATA, SET_EVENT_FOLLOWUP_ADDONS_QUERY_DATA, SET_EVENT_FOLLOWUP_PASS_TYPES_QUERY_DATA, SET_EVENT_FOLLOWUP_QUERY_DATA, SET_EVENT_FOLLOWUP_QUESTIONS_QUERY_DATA, SET_EVENT_FOLLOWUP_TIERS_QUERY_DATA, SET_EVENT_FOLLOWUP_TRANSLATIONS_QUERY_DATA, SET_EVENT_FOLLOWUP_TRANSLATION_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_MEDIA_ITEM_PASS_TYPES_QUERY_DATA, SET_EVENT_MEDIA_ITEM_QUERY_DATA, SET_EVENT_MEDIA_ITEM_TRANSLATIONS_QUERY_DATA, SET_EVENT_MEDIA_ITEM_TRANSLATION_QUERY_DATA, SET_EVENT_ON_SITE_QUERY_DATA, SET_EVENT_PACKAGES_QUERY_DATA, SET_EVENT_PACKAGE_PASSES_QUERY_DATA, SET_EVENT_PACKAGE_PASS_QUERY_DATA, SET_EVENT_PACKAGE_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_IMAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_PAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PAGE_TRANSLATION_QUERY_DATA, SET_EVENT_PASS_ACCESSES_QUERY_DATA, SET_EVENT_PASS_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_PASS_ATTRIBUTES_QUERY_DATA, SET_EVENT_PASS_MATCHES_QUERY_DATA, SET_EVENT_PASS_PAYMENTS_QUERY_DATA, SET_EVENT_PASS_QUERY_DATA, SET_EVENT_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_EVENT_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_PASS_RESPONSES_QUERY_DATA, SET_EVENT_PASS_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_PASS_RESPONSE_QUERY_DATA, SET_EVENT_PASS_TRANSFERS_QUERY_DATA, SET_EVENT_PASS_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_PASS_TYPES_QUERY_DATA, SET_EVENT_PASS_TYPE_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_TYPE_GROUP_PASS_TIERS_QUERY_DATA, SET_EVENT_PASS_TYPE_PASSES_QUERY_DATA, SET_EVENT_PASS_TYPE_PAYMENTS_QUERY_DATA, SET_EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_DATA, SET_EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_DATA, SET_EVENT_PASS_TYPE_QUERY_DATA, SET_EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_DATA, SET_EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_DATA, SET_EVENT_PASS_TYPE_TIERS_QUERY_DATA, SET_EVENT_PASS_TYPE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PASS_TYPE_TRANSLATION_QUERY_DATA, SET_EVENT_PAYMENTS_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_QUESTIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICES_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_EVENT_QUESTION_QUERY_DATA, SET_EVENT_QUESTION_RESPONSES_QUERY_DATA, SET_EVENT_QUESTION_SUMMARIES_QUERY_DATA, SET_EVENT_QUESTION_SUMMARY_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA, SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA, SET_EVENT_RESERVATIONS_QUERY_DATA, SET_EVENT_RESERVATION_PASSES_QUERY_DATA, SET_EVENT_RESERVATION_QUERY_DATA, SET_EVENT_ROOMS_QUERY_DATA, SET_EVENT_ROOM_QUERY_DATA, SET_EVENT_ROOM_TYPES_QUERY_DATA, SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA, SET_EVENT_ROOM_TYPE_QUERY_DATA, SET_EVENT_ROOM_TYPE_RESERVATIONS_QUERY_DATA, SET_EVENT_ROOM_TYPE_ROOMS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TIERS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TRANSLATION_QUERY_DATA, SET_EVENT_ROUNDS_QUERY_DATA, SET_EVENT_ROUND_MATCHES_QUERY_DATA, SET_EVENT_ROUND_MATCH_PASSES_QUERY_DATA, SET_EVENT_ROUND_MATCH_QUERY_DATA, SET_EVENT_ROUND_PASSES_QUERY_DATA, SET_EVENT_ROUND_QUESTIONS_QUERY_DATA, SET_EVENT_ROUND_QUESTIONS_SUMMARY_QUERY_DATA, SET_EVENT_SECTIONS_QUERY_DATA, SET_EVENT_SECTION_ADDONS_QUERY_DATA, SET_EVENT_SECTION_PASS_TYPES_QUERY_DATA, SET_EVENT_SECTION_QUERY_DATA, SET_EVENT_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SECTION_TIERS_QUERY_DATA, SET_EVENT_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSIONS_WITH_ROUNDS_QUERY_DATA, SET_EVENT_SESSION_ACCESSES_QUERY_DATA, SET_EVENT_SESSION_ACCESS_QUERY_DATA, SET_EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_SESSION_ACCESS_SESSION_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_SESSION_ACCOUNTS_QUERY_DATA, SET_EVENT_SESSION_BLOCKS_QUERY_DATA, SET_EVENT_SESSION_LOCATIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_QUERY_DATA, SET_EVENT_SESSION_LOCATION_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_PASS_TYPES_QUERY_DATA, SET_EVENT_SESSION_PAYMENTS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SESSION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICES_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_RESPONSES_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_ROUNDS_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCHES_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCH_PASSES_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCH_QUERY_DATA, SET_EVENT_SESSION_ROUND_PASSES_QUERY_DATA, SET_EVENT_SESSION_ROUND_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_ROUND_QUESTIONS_SUMMARY_QUERY_DATA, SET_EVENT_SESSION_SECTIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_QUERY_DATA, SET_EVENT_SESSION_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_SPEAKERS_QUERY_DATA, SET_EVENT_SESSION_SPONSORS_QUERY_DATA, SET_EVENT_SESSION_TIERS_QUERY_DATA, SET_EVENT_SESSION_TIMES_QUERY_DATA, SET_EVENT_SESSION_TIME_QUERY_DATA, SET_EVENT_SESSION_TIME_SPEAKERS_QUERY_DATA, SET_EVENT_SESSION_TIME_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_TIME_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_TRACKS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_VISIBLE_PASS_TYPES_QUERY_DATA, SET_EVENT_SESSION_VISIBLE_TIERS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPEAKER_SESSIONS_QUERY_DATA, SET_EVENT_SPEAKER_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPEAKER_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORSHIPS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPONSORSHIP_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_SPONSOR_ACCOUNTS_QUERY_DATA, SET_EVENT_TEMPLATES_QUERY_DATA, SET_EVENT_TIERS_QUERY_DATA, SET_EVENT_TRACKS_QUERY_DATA, SET_EVENT_TRACK_QUERY_DATA, SET_EVENT_TRACK_SESSIONS_QUERY_DATA, SET_EVENT_TRACK_SPONSORS_QUERY_DATA, SET_EVENT_TRACK_TRANSLATIONS_QUERY_DATA, SET_EVENT_TRACK_TRANSLATION_QUERY_DATA, SET_EVENT_TRANSLATIONS_QUERY_DATA, SET_EVENT_TRANSLATION_QUERY_DATA, SET_FEATURED_CHANNELS_QUERY_DATA, SET_FILES_QUERY_DATA, SET_FILE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INTERESTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_INVITATION_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_MODERATORS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_GROUP_TRANSLATIONS_QUERY_DATA, SET_GROUP_TRANSLATION_QUERY_DATA, SET_IMAGES_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_IMAGE_USAGE_QUERY_DATA, SET_IMPORT_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_QUERY_DATA, SET_INTEREST_CHANNELS_QUERY_DATA, SET_INTEREST_CONTENTS_QUERY_DATA, SET_INTEREST_EVENTS_QUERY_DATA, SET_INTEREST_GROUPS_QUERY_DATA, SET_INTEREST_QUERY_DATA, SET_INVOICES_QUERY_DATA, SET_INVOICE_LINE_ITEMS_QUERY_DATA, SET_INVOICE_LINE_ITEM_QUERY_DATA, SET_INVOICE_PAYMENTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_ACCOUNTS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_TRANSLATIONS_QUERY_DATA, SET_LEVEL_TRANSLATION_QUERY_DATA, SET_LIVESTREAMS_QUERY_DATA, SET_LIVESTREAM_QUERY_DATA, SET_LIVESTREAM_SESSIONS_QUERY_DATA, SET_LOGIN_AUTH_SESSIONS_QUERY_DATA, SET_MEETINGS_QUERY_DATA, SET_MEETING_LINKS_QUERY_DATA, SET_MEETING_LINK_QUERY_DATA, SET_MEETING_LIVESTREAM_QUERY_DATA, SET_MEETING_PARTICIPANTS_QUERY_DATA, SET_MEETING_PARTICIPANT_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_MEETING_RECORDINGS_QUERY_DATA, SET_MEETING_RECORDING_QUERY_DATA, SET_MEETING_SESSIONS_QUERY_DATA, SET_MEETING_SESSION_MESSAGES_QUERY_DATA, SET_MEETING_SESSION_PARTICIPANTS_QUERY_DATA, SET_MEETING_SESSION_PARTICIPANT_QUERY_DATA, SET_MEETING_SESSION_QUERY_DATA, SET_MEETING_SESSION_SUMMARY_QUERY_DATA, SET_MEETING_SESSION_TRANSCRIPT_QUERY_DATA, SET_NOTIFICATIONS_QUERY_DATA, SET_NOTIFICATION_COUNT_QUERY_DATA, SET_NOTIFICATION_STATS_QUERY_DATA, SET_ORGANIZATION_ACCOUNT_ATTRIBUTES_QUERY_DATA, SET_ORGANIZATION_ACCOUNT_ATTRIBUTE_QUERY_DATA, SET_ORGANIZATION_DOMAIN_QUERY_DATA, SET_ORGANIZATION_MEMBERSHIP_QUERY_DATA, SET_ORGANIZATION_MODULES_QUERY_DATA, SET_ORGANIZATION_MODULE_EDITABLE_TIERS_QUERY_DATA, SET_ORGANIZATION_MODULE_ENABLED_TIERS_QUERY_DATA, SET_ORGANIZATION_MODULE_QUERY_DATA, SET_ORGANIZATION_MODULE_SETTINGS_QUERY_DATA, SET_ORGANIZATION_MODULE_SETTINGS_TRANSLATIONS_QUERY_DATA, SET_ORGANIZATION_MODULE_SETTINGS_TRANSLATION_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATION_QUERY_DATA, SET_ORGANIZATION_QUERY_DATA, SET_ORGANIZATION_SIDE_EFFECTS_QUERY_DATA, SET_ORGANIZATION_SIDE_EFFECT_QUERY_DATA, SET_ORGANIZATION_SYSTEM_LOGS_QUERY_DATA, SET_ORGANIZATION_SYSTEM_LOG_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBERS_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBER_QUERY_DATA, SET_ORGANIZATION_USERS_QUERY_DATA, SET_ORGANIZATION_WEBHOOKS_QUERY_DATA, SET_ORGANIZATION_WEBHOOK_QUERY_DATA, SET_PASS_TYPE_COUPONS_QUERY_DATA, SET_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PAYMENT_TAX_METADATA_QUERY_DATA, SET_PREFERENCES_QUERY_DATA, SET_PRESETS_QUERY_DATA, SET_PRESET_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_REQUIRED_ATTRIBUTES_QUERY_DATA, SET_SEARCHLISTS_QUERY_DATA, SET_SEARCHLIST_CONNECTED_QUESTIONS_QUERY_DATA, SET_SEARCHLIST_QUERY_DATA, SET_SEARCHLIST_VALUES_QUERY_DATA, SET_SEARCHLIST_VALUE_QUERY_DATA, SET_SEARCH_ORGANIZATION_QUERY_DATA, SET_SELF_API_KEYS_QUERY_DATA, SET_SELF_API_KEY_QUERY_DATA, SET_SELF_MEMBERSHIP_QUERY_DATA, SET_SELF_ORGANIZATIONS_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SERIES_QUESTIONS_QUERY_DATA, SET_SERIES_QUESTION_CHOICES_QUERY_DATA, SET_SERIES_QUESTION_CHOICE_QUERY_DATA, SET_SERIES_QUESTION_QUERY_DATA, SET_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_RESPONSES_QUERY_DATA, SET_SERIES_TRANSLATIONS_QUERY_DATA, SET_SERIES_TRANSLATION_QUERY_DATA, SET_STREAM_INPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUT_QUERY_DATA, SET_STREAM_INPUT_QUERY_DATA, SET_STREAM_SESSIONS_QUERY_DATA, SET_STREAM_SESSION_CHAT_QUERY_DATA, SET_STREAM_SESSION_QUERY_DATA, SET_STREAM_SESSION_SUBSCRIPTIONS_QUERY_DATA, SET_STREAM_VIDEOS_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_NOTES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SUPPORT_TICKET_VIEWER_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_QUESTIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICES_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_SURVEY_QUESTION_QUERY_DATA, SET_SURVEY_QUESTION_RESPONSES_QUERY_DATA, SET_SURVEY_QUESTION_SECTIONS_QUERY_DATA, SET_SURVEY_QUESTION_TRANSLATIONS_QUERY_DATA, SET_SURVEY_QUESTION_TRANSLATION_QUERY_DATA, SET_SURVEY_SECTIONS_QUERY_DATA, SET_SURVEY_SECTION_QUERY_DATA, SET_SURVEY_SECTION_QUESTIONS_QUERY_DATA, SET_SURVEY_SECTION_TRANSLATIONS_QUERY_DATA, SET_SURVEY_SECTION_TRANSLATION_QUERY_DATA, SET_SURVEY_SESSIONS_QUERY_DATA, SET_SURVEY_SUBMISSION_QUERY_DATA, SET_SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_DATA, SET_SURVEY_TRANSLATIONS_QUERY_DATA, SET_SURVEY_TRANSLATION_QUERY_DATA, SET_TAX_CODES_QUERY_DATA, SET_TAX_INTEGRATIONS_QUERY_DATA, SET_TAX_INTEGRATION_QUERY_DATA, SET_TAX_LOGS_QUERY_DATA, SET_TAX_LOG_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_MESSAGES_POLL_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_FILES_QUERY_DATA, SET_THREAD_MESSAGE_IMAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REACTIONS_QUERY_DATA, SET_THREAD_MESSAGE_VIDEOS_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_THREAD_STORAGE_FILES_QUERY_DATA, SET_THREAD_STORAGE_IMAGES_QUERY_DATA, SET_THREAD_STORAGE_VIDEOS_QUERY_DATA, SET_TIERS_QUERY_DATA, SET_TIER_ACCOUNTS_QUERY_DATA, SET_TIER_IMPORT_QUERY_DATA, SET_TIER_QUERY_DATA, SET_VIDEOS_QUERY_DATA, SET_VIDEO_CAPTIONS_QUERY_DATA, SET_VIDEO_DOWNLOAD_STATUS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_INPUTS_QUERY_KEY, STREAM_INPUT_OUTPUTS_QUERY_KEY, STREAM_INPUT_OUTPUT_QUERY_KEY, STREAM_QUERY_KEY, STREAM_SESSIONS_QUERY_KEY, STREAM_SESSION_CHAT_QUERY_KEY, STREAM_SESSION_QUERY_KEY, STREAM_SESSION_SUBSCRIPTIONS_QUERY_KEY, STREAM_VIDEOS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_NOTES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SUPPORT_TICKET_VIEWER_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTIONS_QUERY_KEY, SURVEY_QUESTION_CHOICES_QUERY_KEY, SURVEY_QUESTION_CHOICE_QUERY_KEY, SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, SURVEY_QUESTION_QUERY_KEY, SURVEY_QUESTION_RESPONSES_QUERY_KEY, SURVEY_QUESTION_SECTIONS_QUERY_KEY, SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY, SURVEY_QUESTION_TRANSLATION_QUERY_KEY, SURVEY_SECTIONS_QUERY_KEY, SURVEY_SECTION_QUERY_KEY, SURVEY_SECTION_QUESTIONS_QUERY_KEY, SURVEY_SECTION_TRANSLATIONS_QUERY_KEY, SURVEY_SECTION_TRANSLATION_QUERY_KEY, SURVEY_SESSIONS_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_KEY, SURVEY_TRANSLATIONS_QUERY_KEY, SURVEY_TRANSLATION_QUERY_KEY, type Schedule, type SearchField, type SearchList, type SearchListConnectedQuestion, type SearchListCreateInputs, type SearchListUpdateInputs, type SearchListValue, type SearchListValueCreateInputs, type SearchListValueUpdateInputs, SearchOrganization, type SearchOrganizationFilters, type SegmentInputs, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, SendAnnouncementPreview, type SendAnnouncementPreviewParams, SendInvoice, type SendInvoiceParams, type Series, type SeriesCreateInputs, type SeriesQuestion, type SeriesQuestionChoice, type SeriesQuestionChoiceCreateInputs, type SeriesQuestionChoiceTranslation, type SeriesQuestionChoiceUpdateInputs, type SeriesQuestionCreateInputs, type SeriesQuestionTranslation, type SeriesQuestionTranslationUpdateInputs, SeriesQuestionType, type SeriesQuestionUpdateInputs, type SeriesRegistration, type SeriesRegistrationCreateInputs, type SeriesRegistrationQuestionResponse, type SeriesRegistrationResponsesUpdateInputs, type SeriesRegistrationUpdateInputs, type SeriesTranslation, type SeriesTranslationUpdateInputs, type SeriesUpdateInputs, SetEventLocation, type SetEventLocationParams, type SideEffect, SideEffectActionType, SideEffectTriggerType, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StandardReport, StartEventRoundMatchmaking, type StartEventRoundMatchmakingParams, StartEventSessionRoundMatchmaking, type StartEventSessionRoundMatchmakingParams, type StorageConfig, type StreamInput, type StreamInputCreateInputs, type StreamInputDetails, type StreamInputOutput, type StreamInputOutputCreateInputs, type StreamInputOutputUpdateInputs, type StreamInputUpdateInputs, type StreamOutputCreateInputs, type StreamSession, type StreamSessionChatMessage, type StreamSessionSubscription, type StripeActivationFormParams, type SummaryData, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivitySource, SupportTicketActivityType, type SupportTicketCreateInputs, type SupportTicketMessage, type SupportTicketMessageCreateInputs, SupportTicketMessageSource, type SupportTicketMessageUpdateInputs, type SupportTicketNote, type SupportTicketNoteCreateInputs, type SupportTicketNoteUpdateInputs, SupportTicketState, SupportTicketType, type SupportTicketUpdateInputs, type SupportTicketViewer, SupportedLocale, type Survey, type SurveyCreateInputs, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionChoiceCreateInputs, type SurveyQuestionChoiceSubQuestion, type SurveyQuestionChoiceTranslation, type SurveyQuestionChoiceTranslationUpdateInputs, type SurveyQuestionChoiceUpdateInputs, type SurveyQuestionCreateInputs, type SurveyQuestionResponse, type SurveyQuestionResponseChange, type SurveyQuestionTranslation, type SurveyQuestionTranslationUpdateInputs, SurveyQuestionType, type SurveyQuestionUpdateInputs, type SurveySection, type SurveySectionCreateInputs, type SurveySectionQuestion, type SurveySectionTranslation, type SurveySectionTranslationUpdateInputs, type SurveySectionUpdateInputs, SurveyStatus, type SurveySubmission, type SurveySubmissionUpdateInputs, type SurveyTranslation, type SurveyTranslationUpdateInputs, type SurveyUpdateInputs, SwitchImage, type SwitchImageParams, SyncAccount, type SyncAccountParams, SyncAccounts, type SyncAccountsParams, SyncEventAttendees, type SyncEventAttendeesParams, SyncEventCouponToVariants, type SyncEventCouponToVariantsParams, type SystemEventLog, SystemEventLogStatus, TAX_CODES_QUERY_KEY, TAX_INTEGRATIONS_QUERY_KEY, TAX_INTEGRATION_QUERY_KEY, TAX_LOGS_QUERY_KEY, TAX_LOG_QUERY_KEY, THREADS_QUERY_KEY, THREAD_ACCOUNTS_QUERY_KEY, THREAD_MESSAGES_POLL_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_FILES_QUERY_KEY, THREAD_MESSAGE_IMAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REACTIONS_QUERY_KEY, THREAD_MESSAGE_VIDEOS_QUERY_KEY, THREAD_QUERY_KEY, THREAD_STORAGE_FILES_QUERY_KEY, THREAD_STORAGE_IMAGES_QUERY_KEY, THREAD_STORAGE_VIDEOS_QUERY_KEY, TIERS_QUERY_KEY, TIER_ACCOUNTS_QUERY_KEY, TIER_IMPORTS_QUERY_KEY, TIER_IMPORT_ITEMS_QUERY_KEY, TIER_IMPORT_QUERY_KEY, TIER_QUERY_KEY, type TableChartSummaryData, type TaxCode, type TaxIntegration, type TaxIntegrationCreateInputs, type TaxIntegrationLog, TaxIntegrationLogType, TaxIntegrationType, type TaxIntegrationUpdateInputs, TaxLocationType, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, TestTaxIntegration, type TestTaxIntegrationParams, type Thread, type ThreadAccount, type ThreadAccountUpdateInputs, type ThreadAccountsAddInputs, type ThreadCreateInputs, type ThreadMessage, type ThreadMessageCreateInputs, type ThreadMessageEntity, type ThreadMessageReaction, type ThreadMessageReactionCreateInputs, type ThreadMessageReactionUpdateInputs, type ThreadMessageRead, ThreadMessageType, type ThreadMessageUpdateInputs, ThreadType, type ThreadUpdateInputs, type Tier, type TierCreateInputs, type TierUpdateInputs, ToggleOrganizationPaymentIntegration, type ToggleOrganizationPaymentIntegrationParams, ToggleTaxIntegration, type ToggleTaxIntegrationParams, type Transfer, TransferEventPass, type TransferEventPassParams, type TransferLog, TransformPrice, type TriggerCreateInputs, type TriggerUpdateInputs, UndoCheckInBooking, type UndoCheckInBookingParams, UndoCheckinEventPass, type UndoCheckinEventPassParams, UpdateAccount, UpdateAccountAddress, type UpdateAccountAddressParams, UpdateAccountAttribute, type UpdateAccountAttributeParams, UpdateAccountLead, type UpdateAccountLeadParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateActivitySchedule, type UpdateActivityScheduleParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateAnnouncementTranslation, type UpdateAnnouncementTranslationParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateBooking, type UpdateBookingParams, UpdateBookingPlace, type UpdateBookingPlaceParams, UpdateBookingPlaceTranslation, type UpdateBookingPlaceTranslationParams, UpdateBookingSpace, UpdateBookingSpaceAvailability, type UpdateBookingSpaceAvailabilityParams, UpdateBookingSpaceBlackout, type UpdateBookingSpaceBlackoutParams, type UpdateBookingSpaceParams, UpdateBookingSpaceQuestion, UpdateBookingSpaceQuestionChoice, type UpdateBookingSpaceQuestionChoiceParams, UpdateBookingSpaceQuestionChoiceTranslation, type UpdateBookingSpaceQuestionChoiceTranslationParams, type UpdateBookingSpaceQuestionParams, UpdateBookingSpaceQuestionTranslation, type UpdateBookingSpaceQuestionTranslationParams, UpdateBookingSpaceTranslation, type UpdateBookingSpaceTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateCustomModule, type UpdateCustomModuleParams, UpdateCustomModuleTranslation, type UpdateCustomModuleTranslationParams, UpdateCustomReport, type UpdateCustomReportParams, UpdateDashboard, type UpdateDashboardParams, UpdateDashboardWidget, type UpdateDashboardWidgetParams, UpdateEvent, UpdateEventActivation, UpdateEventActivationCompletion, type UpdateEventActivationCompletionParams, type UpdateEventActivationParams, UpdateEventActivationTranslation, type UpdateEventActivationTranslationParams, UpdateEventAddOn, type UpdateEventAddOnParams, UpdateEventAddOnTranslation, type UpdateEventAddOnTranslationParams, UpdateEventAttendee, UpdateEventAttendeePackage, type UpdateEventAttendeePackageParams, type UpdateEventAttendeeParams, UpdateEventAttribute, type UpdateEventAttributeParams, UpdateEventBadgeTemplate, type UpdateEventBadgeTemplateParams, UpdateEventBlock, type UpdateEventBlockParams, UpdateEventCheckinCode, type UpdateEventCheckinCodeParams, UpdateEventCoupon, type UpdateEventCouponParams, UpdateEventEmail, type UpdateEventEmailParams, UpdateEventEmailTranslation, type UpdateEventEmailTranslationParams, UpdateEventFaqSection, type UpdateEventFaqSectionParams, UpdateEventFaqSectionQuestion, type UpdateEventFaqSectionQuestionParams, UpdateEventFaqSectionQuestionTranslation, type UpdateEventFaqSectionQuestionTranslationParams, UpdateEventFaqSectionTranslation, type UpdateEventFaqSectionTranslationParams, UpdateEventFollowup, type UpdateEventFollowupParams, UpdateEventFollowupQuestion, type UpdateEventFollowupQuestionParams, UpdateEventFollowupTranslation, type UpdateEventFollowupTranslationParams, UpdateEventMatch, type UpdateEventMatchParams, UpdateEventMediaItem, type UpdateEventMediaItemParams, UpdateEventMediaItemTranslation, type UpdateEventMediaItemTranslationParams, UpdateEventPackage, type UpdateEventPackageParams, UpdateEventPackagePass, type UpdateEventPackagePassParams, UpdateEventPackageTranslation, type UpdateEventPackageTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, UpdateEventPassAttributes, type UpdateEventPassAttributesParams, UpdateEventPassFollowupResponses, type UpdateEventPassFollowupResponsesParams, type UpdateEventPassParams, UpdateEventPassResponse, type UpdateEventPassResponseInputs, type UpdateEventPassResponseParams, UpdateEventPassResponses, type UpdateEventPassResponsesInputs, type UpdateEventPassResponsesParams, UpdateEventPassSingleFollowupResponses, type UpdateEventPassSingleFollowupResponsesParams, UpdateEventPassType, type UpdateEventPassTypeParams, UpdateEventPassTypePriceSchedule, UpdateEventPassTypeRefundSchedule, UpdateEventPassTypeTranslation, type UpdateEventPassTypeTranslationParams, UpdateEventPassesReady, type UpdateEventPassesReadyParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, UpdateEventReservation, type UpdateEventReservationParams, UpdateEventRoomType, UpdateEventRoomTypeAddOnDetails, type UpdateEventRoomTypeAddOnDetailsParams, type UpdateEventRoomTypeParams, UpdateEventRoomTypePassTypeDetails, type UpdateEventRoomTypePassTypeDetailsParams, UpdateEventRoomTypeTranslation, type UpdateEventRoomTypeTranslationParams, UpdateEventRoundQuestion, type UpdateEventRoundQuestionParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, UpdateEventSessionAccess, type UpdateEventSessionAccessParams, UpdateEventSessionAccessResponses, type UpdateEventSessionAccessResponsesParams, UpdateEventSessionLocation, type UpdateEventSessionLocationParams, UpdateEventSessionLocationTranslation, type UpdateEventSessionLocationTranslationParams, UpdateEventSessionMatch, type UpdateEventSessionMatchParams, type UpdateEventSessionParams, UpdateEventSessionPrice, type UpdateEventSessionPriceParams, UpdateEventSessionQuestion, UpdateEventSessionQuestionChoice, type UpdateEventSessionQuestionChoiceParams, UpdateEventSessionQuestionChoiceSubQuestion, type UpdateEventSessionQuestionChoiceSubQuestionParams, UpdateEventSessionQuestionChoiceTranslation, type UpdateEventSessionQuestionChoiceTranslationParams, type UpdateEventSessionQuestionParams, UpdateEventSessionQuestionTranslation, type UpdateEventSessionQuestionTranslationParams, UpdateEventSessionRoundQuestion, type UpdateEventSessionRoundQuestionParams, UpdateEventSessionSection, type UpdateEventSessionSectionParams, UpdateEventSessionSectionQuestion, type UpdateEventSessionSectionQuestionParams, UpdateEventSessionSectionTranslation, type UpdateEventSessionSectionTranslationParams, UpdateEventSessionTime, type UpdateEventSessionTimeParams, UpdateEventSessionTimeTranslation, type UpdateEventSessionTimeTranslationParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, UpdateEventSponsorship, UpdateEventSponsorshipLevel, type UpdateEventSponsorshipLevelParams, UpdateEventSponsorshipLevelTranslation, type UpdateEventSponsorshipLevelTranslationParams, type UpdateEventSponsorshipParams, UpdateEventSponsorshipTranslation, type UpdateEventSponsorshipTranslationParams, UpdateEventTrack, type UpdateEventTrackParams, UpdateEventTrackTranslation, type UpdateEventTrackTranslationParams, UpdateEventTranslation, type UpdateEventTranslationParams, UpdateFile, type UpdateFileParams, UpdateGroup, type UpdateGroupParams, UpdateGroupTranslation, type UpdateGroupTranslationParams, UpdateImage, type UpdateImageParams, UpdateIntegration, type UpdateIntegrationParams, UpdateInterest, type UpdateInterestParams, UpdateInvoice, UpdateInvoiceLineItem, type UpdateInvoiceLineItemParams, type UpdateInvoiceParams, UpdateLevel, type UpdateLevelParams, UpdateLevelTranslation, type UpdateLevelTranslationParams, UpdateLoginEmail, type UpdateLoginEmailParams, UpdateLoginPassword, type UpdateLoginPasswordParams, UpdateMeeting, UpdateMeetingLink, type UpdateMeetingLinkParams, type UpdateMeetingParams, UpdateMeetingParticipant, type UpdateMeetingParticipantParams, UpdateOrganization, UpdateOrganizationDomain, type UpdateOrganizationDomainParams, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationModule, type UpdateOrganizationModuleParams, UpdateOrganizationModuleSettings, type UpdateOrganizationModuleSettingsParams, UpdateOrganizationModuleSettingsTranslation, type UpdateOrganizationModuleSettingsTranslationParams, type UpdateOrganizationParams, UpdateOrganizationPaymentIntegration, type UpdateOrganizationPaymentIntegrationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationWebhook, type UpdateOrganizationWebhookParams, UpdatePayment, type UpdatePaymentParams, UpdatePreferences, type UpdatePreferencesParams, UpdatePreset, type UpdatePresetParams, UpdateRoom, type UpdateRoomParams, UpdateSearchList, type UpdateSearchListParams, UpdateSearchListValue, type UpdateSearchListValueParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateSeriesQuestion, UpdateSeriesQuestionChoice, type UpdateSeriesQuestionChoiceParams, type UpdateSeriesQuestionParams, UpdateSeriesQuestionTranslation, type UpdateSeriesQuestionTranslationParams, UpdateSeriesRegistration, type UpdateSeriesRegistrationParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateSeriesTranslation, type UpdateSeriesTranslationParams, UpdateStream, UpdateStreamInputConfig, type UpdateStreamInputConfigParams, UpdateStreamInputOutput, type UpdateStreamInputOutputParams, type UpdateStreamParams, UpdateSupportTicket, type UpdateSupportTicketParams, UpdateSurvey, type UpdateSurveyParams, UpdateSurveyQuestion, UpdateSurveyQuestionChoice, type UpdateSurveyQuestionChoiceParams, UpdateSurveyQuestionChoiceSubQuestion, type UpdateSurveyQuestionChoiceSubQuestionParams, UpdateSurveyQuestionChoiceTranslation, type UpdateSurveyQuestionChoiceTranslationParams, type UpdateSurveyQuestionParams, UpdateSurveyQuestionTranslation, type UpdateSurveyQuestionTranslationParams, UpdateSurveySection, type UpdateSurveySectionParams, UpdateSurveySectionQuestion, type UpdateSurveySectionQuestionParams, UpdateSurveySectionTranslation, type UpdateSurveySectionTranslationParams, UpdateSurveySubmission, type UpdateSurveySubmissionParams, UpdateSurveySubmissionResponses, type UpdateSurveySubmissionResponsesParams, UpdateSurveyTranslation, type UpdateSurveyTranslationParams, UpdateTaxIntegration, type UpdateTaxIntegrationParams, UpdateThread, UpdateThreadAccount, type UpdateThreadAccountParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, UploadVideoCaptions, type UploadVideoCaptionsParams, UpsertCustomReportSchedule, type UpsertCustomReportScheduleParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type User, type UserApiKey, type UserApiKeyCreateInputs, type UserCreateInputs, type UserImageUpdateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_CAPTIONS_QUERY_KEY, VIDEO_DOWNLOAD_STATUS_QUERY_KEY, VIDEO_QUERY_KEY, VerifyOrganizationWebhook, type VerifyOrganizationWebhookParams, type Video, type VideoCaption, type VideoDownloadResult, type VideoDownloadStatus, VideoSource, VideoStatus, type VideoUpdateInputs, VoidInvoice, type VoidInvoiceParams, type WebSocketConnection, type Webhook, type WebhookCreateInputs, type WebhookUpdateInputs, WidgetCategory, WidgetType, ZERO_DECIMAL_CURRENCIES, createMapboxSessionToken, getCurrencySymbol, isUUID, isZeroDecimalCurrency, mapFeatureToAddress, mapboxRetrieve, mapboxSuggest, setFirstPageData, useAcceptGroupRequest, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddBookingSpaceTier, useAddChannelSubscriber, useAddCustomReportUser, useAddEventAccessUser, useAddEventActivationSession, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventBlockSession, useAddEventCoHost, useAddEventCouponTier, useAddEventFollowupAddOn, useAddEventFollowupPassType, useAddEventFollowupQuestion, useAddEventFollowupTier, useAddEventMatchPass, useAddEventMediaItemPassType, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeGroupPassTier, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventReservationPass, useAddEventRoomTypeTier, useAddEventSectionAddOn, useAddEventSectionPassType, useAddEventSectionQuestion, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionBlock, useAddEventSessionLocationSession, useAddEventSessionMatchPass, useAddEventSessionPassType, useAddEventSessionQuestionChoiceSubQuestion, useAddEventSessionSectionQuestion, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTier, useAddEventSessionTimeSpeaker, useAddEventSessionTrack, useAddEventSessionVisiblePassType, useAddEventSessionVisibleTier, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddLoginAccount, useAddMeetingLivestream, useAddOrganizationModuleEditableTier, useAddOrganizationModuleEnabledTier, useAddOrganizationUser, useAddRoomToRoomType, useAddSeriesEvent, useAddSurveyQuestionChoiceSubQuestion, useAddSurveySectionQuestion, useAddSurveySession, useAddThreadAccounts, useApproveEventPass, useArchiveActivity, useAttachBookingSpaceQuestionSearchList, useAttachEventQuestionSearchList, useAttachEventSessionQuestionSearchList, useAttachSurveyQuestionSearchList, useBulkUploadSearchListValues, useCancelActivitySchedule, useCancelAnnouncementSchedule, useCancelBooking, useCancelChannelContentPublishSchedule, useCancelEventPass, useCancelEventPassTransfer, useCancelGroupInvitation, useCheckInBooking, useCheckinEventPass, useCloneEvent, useCloneEventSession, useCloseStreamSession, useConfirmImageUpload, useConfirmLogin, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAccountAttribute, useCreateAccountInvitations, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateBenefit, useCreateBooking, useCreateBookingPlace, useCreateBookingSpace, useCreateBookingSpaceAvailability, useCreateBookingSpaceBlackout, useCreateBookingSpaceQuestion, useCreateBookingSpaceQuestionChoice, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateCustomModule, useCreateCustomReport, useCreateDashboard, useCreateDashboardWidget, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventAddOn, useCreateEventAttendee, useCreateEventAttendeePackage, useCreateEventAttribute, useCreateEventBlock, useCreateEventCoupon, useCreateEventCouponVariants, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFollowup, useCreateEventMatch, useCreateEventMediaItem, useCreateEventPackage, useCreateEventPackagePass, useCreateEventPage, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventRegistrationBypass, useCreateEventReservation, useCreateEventRoomType, useCreateEventRound, useCreateEventSection, useCreateEventSession, useCreateEventSessionAccess, useCreateEventSessionLocation, useCreateEventSessionMatch, useCreateEventSessionPrice, useCreateEventSessionQuestion, useCreateEventSessionQuestionChoice, useCreateEventSessionRound, useCreateEventSessionSection, useCreateEventSessionTime, useCreateEventSpeaker, useCreateEventSponsorship, useCreateEventSponsorshipLevel, useCreateEventTrack, useCreateGroup, useCreateGroupInvitations, useCreateImport, useCreateIntegration, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateMeeting, useCreateMeetingLink, useCreateMeetingParticipant, useCreateOrganizationPaymentIntegration, useCreateOrganizationSideEffect, useCreateOrganizationTeamMember, useCreateOrganizationWebhook, useCreatePreset, useCreateRoom, useCreateSearchList, useCreateSearchListValue, useCreateSelfApiKey, useCreateSeries, useCreateSeriesQuestion, useCreateSeriesQuestionChoice, useCreateSeriesRegistration, useCreateStreamInput, useCreateStreamInputOutput, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateSupportTicketNote, useCreateSurvey, useCreateSurveyQuestion, useCreateSurveyQuestionChoice, useCreateSurveySection, useCreateTaxIntegration, useCreateThread, useCreateThreadMessage, useCreateThreadMessageFile, useCreateThreadMessageImage, useCreateThreadMessageReaction, useCreateThreadMessageVideo, useCreateTier, useDeleteAccount, useDeleteAccountAddress, useDeleteAccountAttribute, useDeleteAccountInvitation, useDeleteAccountLead, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteBooking, useDeleteBookingPlace, useDeleteBookingPlaceTranslation, useDeleteBookingSpace, useDeleteBookingSpaceAvailability, useDeleteBookingSpaceBlackout, useDeleteBookingSpaceQuestion, useDeleteBookingSpaceQuestionChoice, useDeleteBookingSpaceQuestionChoiceTranslation, useDeleteBookingSpaceQuestionTranslation, useDeleteBookingSpaceTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteCustomModule, useDeleteCustomModuleTranslation, useDeleteCustomReport, useDeleteCustomReportSchedule, useDeleteDashboard, useDeleteDashboardWidget, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventAttendeePackage, useDeleteEventAttribute, useDeleteEventBlock, useDeleteEventCoupon, useDeleteEventCouponVariants, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventFollowup, useDeleteEventFollowupTranslation, useDeleteEventLocation, useDeleteEventMatch, useDeleteEventMediaItem, useDeleteEventMediaItemTranslation, useDeleteEventPackage, useDeleteEventPackagePass, useDeleteEventPackageTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventPass, useDeleteEventPassType, useDeleteEventPassTypePriceSchedule, useDeleteEventPassTypeRefundSchedule, useDeleteEventPassTypeTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionTranslation, useDeleteEventRegistrationBypass, useDeleteEventReservation, useDeleteEventRoomType, useDeleteEventRoomTypeTranslation, useDeleteEventRound, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionAccess, useDeleteEventSessionLocation, useDeleteEventSessionLocationTranslation, useDeleteEventSessionMatch, useDeleteEventSessionPrice, useDeleteEventSessionQuestion, useDeleteEventSessionQuestionChoice, useDeleteEventSessionQuestionChoiceTranslation, useDeleteEventSessionQuestionTranslation, useDeleteEventSessionRound, useDeleteEventSessionSection, useDeleteEventSessionSectionTranslation, useDeleteEventSessionTime, useDeleteEventSessionTimeTranslation, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventSponsorship, useDeleteEventSponsorshipLevel, useDeleteEventSponsorshipLevelTranslation, useDeleteEventSponsorshipTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupInvitation, useDeleteGroupRequest, useDeleteGroupTranslation, useDeleteImage, useDeleteIntegration, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteLogin, useDeleteManyImages, useDeleteManyVideos, useDeleteMeetingLink, useDeleteMeetingParticipant, useDeleteOrganizationDomain, useDeleteOrganizationModuleSettingsTranslation, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationSideEffect, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteOrganizationWebhook, useDeletePreset, useDeletePushDevice, useDeleteRoom, useDeleteSearchList, useDeleteSearchListValue, useDeleteSelfApiKey, useDeleteSeries, useDeleteSeriesQuestion, useDeleteSeriesQuestionChoice, useDeleteSeriesRegistration, useDeleteSeriesTranslation, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteSurvey, useDeleteSurveyQuestion, useDeleteSurveyQuestionChoice, useDeleteSurveyQuestionChoiceTranslation, useDeleteSurveyQuestionTranslation, useDeleteSurveySection, useDeleteSurveySectionTranslation, useDeleteSurveySubmission, useDeleteSurveyTranslation, useDeleteTaxIntegration, useDeleteThread, useDeleteThreadAccount, useDeleteThreadMessage, useDeleteThreadMessageFile, useDeleteThreadMessageImage, useDeleteThreadMessageReaction, useDeleteThreadMessageVideo, useDeleteTier, useDeleteUserImage, useDeleteVideo, useDeleteVideoCaption, useDenyEventPass, useDetachBookingSpaceQuestionSearchList, useDetachEventQuestionSearchList, useDetachEventSessionQuestionSearchList, useDetachSurveyQuestionSearchList, useDisableEventBuildMode, useDisableLivestream, useDownloadVideoCaption, useEnableEventBuildMode, useEnableLivestream, useEventGetPassTypeCoupons, useExportAccount, useExportCustomReport, useExportStreamSession, useGenerateMeetingSessionSummary, useGenerateVideoCaptions, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountAddress, useGetAccountAddresses, useGetAccountBookings, useGetAccountComments, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountInvitations, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountNotificationPreferences, useGetAccountPayments, useGetAccountRegistrations, useGetAccountSupportTickets, useGetAccountThreads, useGetAccountTiers, useGetAccounts, useGetAccountsByInternalRefId, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAllEventAddOns, useGetAllEventPassTypes, useGetAnnouncement, useGetAnnouncementAudience, useGetAnnouncementEmailReceipts, useGetAnnouncementTranslation, useGetAnnouncementTranslations, useGetAnnouncements, useGetAuthSession, useGetAuthSessions, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetBooking, useGetBookingPlace, useGetBookingPlaceBookings, useGetBookingPlacePayments, useGetBookingPlaceTranslation, useGetBookingPlaceTranslations, useGetBookingPlaces, useGetBookingResponses, useGetBookingSpace, useGetBookingSpaceAvailabilities, useGetBookingSpaceAvailability, useGetBookingSpaceBlackout, useGetBookingSpaceBlackouts, useGetBookingSpaceBookings, useGetBookingSpacePayments, useGetBookingSpaceQuestion, useGetBookingSpaceQuestionChoice, useGetBookingSpaceQuestionChoiceTranslation, useGetBookingSpaceQuestionChoiceTranslations, useGetBookingSpaceQuestionChoices, useGetBookingSpaceQuestionTranslation, useGetBookingSpaceQuestionTranslations, useGetBookingSpaceQuestions, useGetBookingSpaceSlots, useGetBookingSpaceTiers, useGetBookingSpaceTranslation, useGetBookingSpaceTranslations, useGetBookingSpaces, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetCustomModule, useGetCustomModuleTranslation, useGetCustomModuleTranslations, useGetCustomModules, useGetCustomReport, useGetCustomReportSchedule, useGetCustomReportUsers, useGetCustomReports, useGetDashboard, useGetDashboardAttributes, useGetDashboardWidgets, useGetDashboards, useGetEmailReceipt, useGetEmailReceipts, useGetEntityUseCodes, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletion, useGetEventActivationCompletions, useGetEventActivationSessions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePackage, useGetEventAttendeePackages, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeReservations, useGetEventAttendeeTransfersLogs, useGetEventAttendees, useGetEventAttribute, useGetEventAttributes, useGetEventBlock, useGetEventBlockSessions, useGetEventBlocks, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponPasses, useGetEventCouponPayments, useGetEventCouponTiers, useGetEventCouponVariants, useGetEventCoupons, useGetEventDashboardQuestions, useGetEventEmail, useGetEventEmailTranslation, useGetEventEmailTranslations, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventFollowup, useGetEventFollowupAddOns, useGetEventFollowupPassTypes, useGetEventFollowupQuestions, useGetEventFollowupTiers, useGetEventFollowupTranslation, useGetEventFollowupTranslations, useGetEventFollowups, useGetEventMediaItem, useGetEventMediaItemPassTypes, useGetEventMediaItemTranslation, useGetEventMediaItemTranslations, useGetEventMediaItems, useGetEventOnSite, useGetEventPackage, useGetEventPackagePass, useGetEventPackagePasses, useGetEventPackageTranslation, useGetEventPackageTranslations, useGetEventPackages, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPass, useGetEventPassAccesses, useGetEventPassAddOns, useGetEventPassAttendeePasses, useGetEventPassAttributes, useGetEventPassMatches, useGetEventPassPayments, useGetEventPassQuestionFollowups, useGetEventPassQuestionSections, useGetEventPassResponse, useGetEventPassResponseChanges, useGetEventPassResponses, useGetEventPassTransferLogs, useGetEventPassTransfers, useGetEventPassType, useGetEventPassTypeAddOns, useGetEventPassTypeGroupPassTiers, useGetEventPassTypePasses, useGetEventPassTypePayments, useGetEventPassTypePriceSchedule, useGetEventPassTypePriceSchedules, useGetEventPassTypeRefundSchedule, useGetEventPassTypeRefundSchedules, useGetEventPassTypeTiers, useGetEventPassTypeTranslation, useGetEventPassTypeTranslations, useGetEventPassTypes, useGetEventPasses, useGetEventPayments, useGetEventPendingPasses, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventReservation, useGetEventReservationPasses, useGetEventReservations, useGetEventRoomType, useGetEventRoomTypePasses, useGetEventRoomTypeReservations, useGetEventRoomTypeTiers, useGetEventRoomTypeTranslation, useGetEventRoomTypeTranslations, useGetEventRoomTypes, useGetEventRoundMatch, useGetEventRoundMatchPasses, useGetEventRoundMatches, useGetEventRoundPasses, useGetEventRoundQuestions, useGetEventRoundQuestionsSummary, useGetEventRounds, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionPassTypes, useGetEventSectionQuestions, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccess, useGetEventSessionAccessQuestionSections, useGetEventSessionAccessResponseChanges, useGetEventSessionAccesses, useGetEventSessionAccounts, useGetEventSessionBlocks, useGetEventSessionLocation, useGetEventSessionLocationSessions, useGetEventSessionLocationTranslation, useGetEventSessionLocationTranslations, useGetEventSessionLocations, useGetEventSessionPassTypes, useGetEventSessionPayments, useGetEventSessionQuestion, useGetEventSessionQuestionChoice, useGetEventSessionQuestionChoiceSubQuestions, useGetEventSessionQuestionChoiceTranslation, useGetEventSessionQuestionChoiceTranslations, useGetEventSessionQuestionChoices, useGetEventSessionQuestionResponses, useGetEventSessionQuestionTranslation, useGetEventSessionQuestionTranslations, useGetEventSessionQuestions, useGetEventSessionRoundMatch, useGetEventSessionRoundMatchPasses, useGetEventSessionRoundMatches, useGetEventSessionRoundPasses, useGetEventSessionRoundQuestions, useGetEventSessionRoundQuestionsSummary, useGetEventSessionRounds, useGetEventSessionSection, useGetEventSessionSectionQuestions, useGetEventSessionSectionTranslation, useGetEventSessionSectionTranslations, useGetEventSessionSections, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTiers, useGetEventSessionTime, useGetEventSessionTimeSpeakers, useGetEventSessionTimeTranslation, useGetEventSessionTimeTranslations, useGetEventSessionTimes, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessionVisiblePassTypes, useGetEventSessionVisibleTiers, useGetEventSessions, useGetEventSessionsWithRounds, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevel, useGetEventSponsorshipLevelTranslation, useGetEventSponsorshipLevelTranslations, useGetEventSponsorshipLevels, useGetEventSponsorshipTranslation, useGetEventSponsorshipTranslations, useGetEventSponsorships, useGetEventTiers, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEvents, useGetFeaturedChannels, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImport, useGetImportItems, useGetImports, useGetIntegration, useGetIntegrations, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestChannels, useGetInterestContents, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetLivestream, useGetLivestreamSessions, useGetLivestreams, useGetLogin, useGetLoginAccounts, useGetLoginAuthSessions, useGetLoginDevices, useGetLogins, useGetMeeting, useGetMeetingLink, useGetMeetingLinks, useGetMeetingLivestream, useGetMeetingParticipant, useGetMeetingParticipants, useGetMeetingRecording, useGetMeetingRecordings, useGetMeetingSession, useGetMeetingSessionMessages, useGetMeetingSessionParticipant, useGetMeetingSessionParticipants, useGetMeetingSessionSummary, useGetMeetingSessionTranscript, useGetMeetingSessions, useGetMeetings, useGetNotificationCount, useGetNotificationStats, useGetNotifications, useGetOrganization, useGetOrganizationAccountAttribute, useGetOrganizationAccountAttributes, useGetOrganizationDomain, useGetOrganizationMembership, useGetOrganizationModule, useGetOrganizationModuleEditableTiers, useGetOrganizationModuleEnabledTiers, useGetOrganizationModuleSettings, useGetOrganizationModuleSettingsTranslation, useGetOrganizationModuleSettingsTranslations, useGetOrganizationModules, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationSideEffect, useGetOrganizationSideEffects, useGetOrganizationSystemLog, useGetOrganizationSystemLogs, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationUsers, useGetOrganizationWebhook, useGetOrganizationWebhooks, useGetPayment, useGetPaymentTaxMetadata, useGetPayments, useGetPreferences, useGetPreset, useGetPresets, useGetPushDevice, useGetPushDevices, useGetReport, useGetReports, useGetRequiredAttributes, useGetRoom, useGetRoomTypeRooms, useGetRooms, useGetSearchList, useGetSearchListConnectedQuestions, useGetSearchListValue, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfApiKey, useGetSelfApiKeys, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesPayments, useGetSeriesQuestion, useGetSeriesQuestionChoice, useGetSeriesQuestionChoices, useGetSeriesQuestionTranslation, useGetSeriesQuestions, useGetSeriesRegistration, useGetSeriesRegistrationPasses, useGetSeriesRegistrationPayments, useGetSeriesRegistrationResponses, useGetSeriesRegistrations, useGetSeriesTranslation, useGetSeriesTranslations, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetStreamSession, useGetStreamSessionChat, useGetStreamSessionSubscriptions, useGetStreamSessions, useGetStreamVideos, useGetSupportTicket, useGetSupportTicketActivity, useGetSupportTicketMessages, useGetSupportTicketNotes, useGetSupportTicketViewer, useGetSupportTickets, useGetSurvey, useGetSurveyQuestion, useGetSurveyQuestionChoice, useGetSurveyQuestionChoiceSubQuestions, useGetSurveyQuestionChoiceTranslation, useGetSurveyQuestionChoiceTranslations, useGetSurveyQuestionChoices, useGetSurveyQuestionResponses, useGetSurveyQuestionTranslation, useGetSurveyQuestionTranslations, useGetSurveyQuestions, useGetSurveySection, useGetSurveySectionQuestions, useGetSurveySectionTranslation, useGetSurveySectionTranslations, useGetSurveySections, useGetSurveySessions, useGetSurveySubmission, useGetSurveySubmissionQuestionSections, useGetSurveySubmissionResponseChanges, useGetSurveySubmissions, useGetSurveyTranslation, useGetSurveyTranslations, useGetSurveys, useGetTaxCodes, useGetTaxIntegration, useGetTaxIntegrations, useGetTaxLog, useGetTaxLogs, useGetTemplates, useGetThread, useGetThreadAccounts, useGetThreadMessage, useGetThreadMessageFiles, useGetThreadMessageImages, useGetThreadMessageReactions, useGetThreadMessageVideos, useGetThreadMessages, useGetThreadMessagesPoll, useGetThreadStorageFiles, useGetThreadStorageImages, useGetThreadStorageVideos, useGetThreads, useGetTier, useGetTierAccounts, useGetTierImport, useGetTierImportItems, useGetTierImports, useGetTiers, useGetVideo, useGetVideoCaptions, useGetVideoDownloadStatus, useGetVideos, useImportRooms, useIndexEventPasses, useInitiateVideoDownload, useJoinMeeting, useMarkNotificationsRead, usePublishActivity, useRefundOrganizationPayment, useRegenerateMeetingParticipantToken, useReinviteGroupInvitation, useRejectGroupRequest, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveAllChannelSubscribers, useRemoveAllGroupMembers, useRemoveBookingSpaceTier, useRemoveChannelSubscriber, useRemoveCustomReportUser, useRemoveEventAccessUser, useRemoveEventActivationSession, useRemoveEventActivationSessions, useRemoveEventAddOnPassType, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventBlockSession, useRemoveEventCoHost, useRemoveEventCouponTier, useRemoveEventFollowupAddOn, useRemoveEventFollowupPassType, useRemoveEventFollowupQuestion, useRemoveEventFollowupTier, useRemoveEventMatchPass, useRemoveEventMediaItemPassType, useRemoveEventPageImage, useRemoveEventPassAddOn, useRemoveEventPassAttribute, useRemoveEventPassTypeAddOn, useRemoveEventPassTypeGroupPassTier, useRemoveEventPassTypeTier, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventReservationPass, useRemoveEventRoomTypeTier, useRemoveEventSectionAddOn, useRemoveEventSectionPassType, useRemoveEventSectionQuestion, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionBlock, useRemoveEventSessionLocationSession, useRemoveEventSessionMatchPass, useRemoveEventSessionPassType, useRemoveEventSessionQuestionChoiceSubQuestion, useRemoveEventSessionSectionQuestion, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTier, useRemoveEventSessionTimeSpeaker, useRemoveEventSessionTrack, useRemoveEventSessionVisiblePassType, useRemoveEventSessionVisibleTier, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveLoginAccount, useRemoveOrganizationModuleEditableTier, useRemoveOrganizationModuleEnabledTier, useRemoveRoomFromRoomType, useRemoveSeriesEvent, useRemoveSurveyQuestionChoiceSubQuestion, useRemoveSurveySectionQuestion, useRemoveSurveySession, useRemoveTierAccounts, useReorderBookingSpaceQuestionChoices, useReorderBookingSpaceQuestions, useReorderEventFaqSectionQuestions, useReorderEventFollowupQuestions, useReorderEventQuestionChoiceSubQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useReorderEventSessionQuestionChoiceSubQuestions, useReorderEventSessionQuestionChoices, useReorderEventSessionSectionQuestions, useReorderEventSponsorshipLevels, useReorderEventSponsorships, useReorderSeriesQuestionChoices, useReorderSurveyQuestionChoiceSubQuestions, useReorderSurveyQuestionChoices, useReorderSurveySectionQuestions, useRequestImageDirectUpload, useResendRegistrationConfirmationEmail, useResetLivestreamStreamKey, useRevertChannelContentToDraft, useSearchOrganization, useSelfLeaveOrganization, useSendAnnouncementPreview, useSendInvoice, useSetEventLocation, useStartEventRoundMatchmaking, useStartEventSessionRoundMatchmaking, useSwitchImage, useSyncAccount, useSyncAccounts, useSyncEventAttendees, useSyncEventCouponToVariants, useTestTaxIntegration, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUndoCheckInBooking, useUndoCheckinEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountAttribute, useUpdateAccountLead, useUpdateActivity, useUpdateActivitySchedule, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateBooking, useUpdateBookingPlace, useUpdateBookingPlaceTranslation, useUpdateBookingSpace, useUpdateBookingSpaceAvailability, useUpdateBookingSpaceBlackout, useUpdateBookingSpaceQuestion, useUpdateBookingSpaceQuestionChoice, useUpdateBookingSpaceQuestionChoiceTranslation, useUpdateBookingSpaceQuestionTranslation, useUpdateBookingSpaceTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateCustomModule, useUpdateCustomModuleTranslation, useUpdateCustomReport, useUpdateDashboard, useUpdateDashboardWidget, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventAttendeePackage, useUpdateEventAttribute, useUpdateEventBadgeTemplate, useUpdateEventBlock, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventFollowup, useUpdateEventFollowupQuestion, useUpdateEventFollowupTranslation, useUpdateEventMatch, useUpdateEventMediaItem, useUpdateEventMediaItemTranslation, useUpdateEventPackage, useUpdateEventPackagePass, useUpdateEventPackageTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassAttributes, useUpdateEventPassFollowupResponses, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassSingleFollowupResponses, useUpdateEventPassType, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventPassesReady, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, useUpdateEventReservation, useUpdateEventRoomType, useUpdateEventRoomTypeAddOnDetails, useUpdateEventRoomTypePassTypeDetails, useUpdateEventRoomTypeTranslation, useUpdateEventRoundQuestion, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionAccess, useUpdateEventSessionAccessResponses, useUpdateEventSessionLocation, useUpdateEventSessionLocationTranslation, useUpdateEventSessionMatch, useUpdateEventSessionPrice, useUpdateEventSessionQuestion, useUpdateEventSessionQuestionChoice, useUpdateEventSessionQuestionChoiceSubQuestion, useUpdateEventSessionQuestionChoiceTranslation, useUpdateEventSessionQuestionTranslation, useUpdateEventSessionRoundQuestion, useUpdateEventSessionSection, useUpdateEventSessionSectionQuestion, useUpdateEventSessionSectionTranslation, useUpdateEventSessionTime, useUpdateEventSessionTimeTranslation, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventSponsorship, useUpdateEventSponsorshipLevel, useUpdateEventSponsorshipLevelTranslation, useUpdateEventSponsorshipTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateIntegration, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateLoginEmail, useUpdateLoginPassword, useUpdateMeeting, useUpdateMeetingLink, useUpdateMeetingParticipant, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationModuleSettings, useUpdateOrganizationModuleSettingsTranslation, useUpdateOrganizationPaymentIntegration, useUpdateOrganizationTeamMember, useUpdateOrganizationWebhook, useUpdatePayment, useUpdatePreferences, useUpdatePreset, useUpdateRoom, useUpdateSearchList, useUpdateSearchListValue, useUpdateSelf, useUpdateSeries, useUpdateSeriesQuestion, useUpdateSeriesQuestionChoice, useUpdateSeriesQuestionTranslation, useUpdateSeriesRegistration, useUpdateSeriesRegistrationResponses, useUpdateSeriesTranslation, useUpdateStreamInput, useUpdateStreamInputConfig, useUpdateStreamInputOutput, useUpdateSupportTicket, useUpdateSurvey, useUpdateSurveyQuestion, useUpdateSurveyQuestionChoice, useUpdateSurveyQuestionChoiceSubQuestion, useUpdateSurveyQuestionChoiceTranslation, useUpdateSurveyQuestionTranslation, useUpdateSurveySection, useUpdateSurveySectionQuestion, useUpdateSurveySectionTranslation, useUpdateSurveySubmission, useUpdateSurveySubmissionResponses, useUpdateSurveyTranslation, useUpdateTaxIntegration, useUpdateThread, useUpdateThreadAccount, useUpdateThreadMessage, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile, useUploadVideoCaptions, useUpsertCustomReportSchedule, useUpsertLinkPreview, useVerifyOrganizationWebhook, useVoidInvoice };
36693
+ export { ACCOUNTS_BY_INTERNAL_REF_ID_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_QUERY_KEY, ACCOUNT_BOOKINGS_QUERY_KEY, ACCOUNT_COMMENTS_QUERY_KEY, ACCOUNT_EMAILS_QUERY_KEY, ACCOUNT_EVENTS_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWING_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_INTERESTS_QUERY_KEY, ACCOUNT_INVITATIONS_QUERY_KEY, ACCOUNT_LEADS_QUERY_KEY, ACCOUNT_LEAD_QUERY_KEY, ACCOUNT_LEVELS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_NOTIFICATION_PREFERENCES_QUERY_KEY, ACCOUNT_PAYMENTS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_REGISTRATIONS_QUERY_KEY, ACCOUNT_SUPPORT_TICKETS_QUERY_KEY, ACCOUNT_THREADS_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ALL_EVENT_ADD_ON_QUERY_KEY, ALL_EVENT_PASS_TYPES_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_AUDIENCE_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, ANNOUNCEMENT_TRANSLATIONS_QUERY_KEY, ANNOUNCEMENT_TRANSLATION_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, AUTH_SESSIONS_QUERY_KEY, AUTH_SESSION_QUERY_KEY, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, AccountAccess, type AccountAddress, type AccountAddressCreateInputs, type AccountAddressUpdateInputs, type AccountAttribute, type AccountAttributeCreateInputs, AccountAttributeType, type AccountAttributeUpdateInputs, type AccountAttributeValue, type AccountCreateInputs, type AccountInvitation, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityEntity, type ActivityEntityInputs, ActivityEntityType, ActivityPreference, ActivityStatus, type ActivityUpdateInputs, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddBookingSpaceTier, type AddBookingSpaceTierParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddCustomReportUser, type AddCustomReportUserParams, AddEventAccessUser, AddEventActivationSession, type AddEventActivationSessionParams, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventBlockSession, type AddEventBlockSessionParams, AddEventCoHost, type AddEventCoHostParams, AddEventCouponTier, type AddEventCouponTierParams, AddEventFollowupAddOn, type AddEventFollowupAddOnParams, AddEventFollowupPassType, type AddEventFollowupPassTypeParams, AddEventFollowupQuestion, type AddEventFollowupQuestionParams, AddEventFollowupTier, type AddEventFollowupTierParams, AddEventMatchPass, type AddEventMatchPassParams, AddEventMediaItemPassType, type AddEventMediaItemPassTypeParams, AddEventPageImage, type AddEventPageImageParams, AddEventPassAddOn, type AddEventPassAddOnParams, AddEventPassTypeAddOn, type AddEventPassTypeAddOnParams, AddEventPassTypeExchangeTarget, type AddEventPassTypeExchangeTargetParams, AddEventPassTypeGroupPassTier, type AddEventPassTypeGroupPassTierParams, AddEventPassTypeTier, type AddEventPassTypeTierParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventReservationPass, type AddEventReservationPassParams, AddEventRoomTypeTier, type AddEventRoomTypeTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionPassType, type AddEventSectionPassTypeParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionBlock, type AddEventSessionBlockParams, AddEventSessionLocationSession, type AddEventSessionLocationSessionParams, AddEventSessionMatchPass, type AddEventSessionMatchPassParams, AddEventSessionPassType, type AddEventSessionPassTypeParams, AddEventSessionQuestionChoiceSubQuestion, type AddEventSessionQuestionChoiceSubQuestionParams, AddEventSessionSectionQuestion, type AddEventSessionSectionQuestionParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTier, type AddEventSessionTierParams, AddEventSessionTimeSpeaker, type AddEventSessionTimeSpeakerParams, AddEventSessionTrack, type AddEventSessionTrackParams, AddEventSessionVisiblePassType, type AddEventSessionVisiblePassTypeParams, AddEventSessionVisibleTier, type AddEventSessionVisibleTierParams, AddEventSpeakerSession, type AddEventSpeakerSessionParams, AddEventSponsorAccount, type AddEventSponsorAccountParams, AddEventTrackSession, type AddEventTrackSessionParams, AddEventTrackSponsor, type AddEventTrackSponsorParams, AddGroupEvent, type AddGroupEventParams, AddGroupInterest, type AddGroupInterestParams, AddGroupMember, type AddGroupMemberParams, AddGroupModerator, type AddGroupModeratorParams, AddGroupSponsor, type AddGroupSponsorParams, AddLevelAccount, type AddLevelAccountParams, AddLoginAccount, type AddLoginAccountParams, AddMeetingLivestream, type AddMeetingLivestreamParams, AddOrganizationModuleEditableTier, type AddOrganizationModuleEditableTierParams, AddOrganizationModuleEnabledTier, type AddOrganizationModuleEnabledTierParams, AddOrganizationUser, type AddOrganizationUserParams, AddRoomToRoomType, type AddRoomToRoomTypeParams, AddSeriesEvent, type AddSeriesEventParams, AddSurveyQuestionChoiceSubQuestion, type AddSurveyQuestionChoiceSubQuestionParams, AddSurveySectionQuestion, type AddSurveySectionQuestionParams, AddSurveySession, type AddSurveySessionParams, AddThreadAccounts, type AddThreadAccountsParams, type AdminApiParams, type AdminNotification, type AdminNotificationPreferences, type AdminNotificationPreferencesUpdateInputs, AdminNotificationSource, AdminNotificationType, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementFilters, type AnnouncementTranslation, type AnnouncementTranslationUpdateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ApproveEventPass, type ApproveEventPassParams, ArchiveActivity, type ArchiveActivityParams, AttachBookingSpaceQuestionSearchList, type AttachBookingSpaceQuestionSearchListParams, AttachEventQuestionSearchList, type AttachEventQuestionSearchListParams, AttachEventSessionQuestionSearchList, type AttachEventSessionQuestionSearchListParams, type AttachSearchListInputs, AttachSurveyQuestionSearchList, type AttachSurveyQuestionSearchListParams, type AttendeeEventPackageCreateInputs, type AttendeeEventPackageUpdateInputs, type AttendeePackage, AuthLayout, type AuthSession, type AuthorizeNetActivationFormParams, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_BOOKINGS_QUERY_KEY, BOOKING_PLACE_PAYMENTS_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_TRANSLATIONS_QUERY_KEY, BOOKING_PLACE_TRANSLATION_QUERY_KEY, BOOKING_QUERY_KEY, BOOKING_RESPONSES_QUERY_KEY, BOOKING_SPACES_QUERY_KEY, BOOKING_SPACE_AVAILABILITIES_QUERY_KEY, BOOKING_SPACE_AVAILABILITY_QUERY_KEY, BOOKING_SPACE_BLACKOUTS_QUERY_KEY, BOOKING_SPACE_BLACKOUT_QUERY_KEY, BOOKING_SPACE_BOOKINGS_QUERY_KEY, BOOKING_SPACE_PAYMENTS_QUERY_KEY, BOOKING_SPACE_QUERY_KEY, BOOKING_SPACE_QUESTIONS_QUERY_KEY, BOOKING_SPACE_QUESTION_CHOICES_QUERY_KEY, BOOKING_SPACE_QUESTION_CHOICE_QUERY_KEY, BOOKING_SPACE_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, BOOKING_SPACE_QUESTION_QUERY_KEY, BOOKING_SPACE_QUESTION_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_QUESTION_TRANSLATION_QUERY_KEY, BOOKING_SPACE_SLOTS_QUERY_KEY, BOOKING_SPACE_TIERS_QUERY_KEY, BOOKING_SPACE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_TRANSLATION_QUERY_KEY, type BarChartSummaryData, type BaseAPILog, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountInvitation, type BaseActivationCompletion, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseAdminNotification, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBooking, type BaseBookingPlace, type BaseBookingQuestionResponse, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseBookingSpaceQuestion, type BaseBookingSpaceQuestionChoice, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCoupon, type BaseDashboard, type BaseDashboardWidget, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventAttendee, type BaseEventAttribute, type BaseEventBlock, type BaseEventEmail, type BaseEventMediaItem, type BaseEventOnSite, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventPass, type BaseEventPassType, type BaseEventPassTypeExchangeTarget, type BaseEventPassTypePriceSchedule, type BaseEventPassTypeRefundSchedule, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSession, type BaseEventSessionAccess, type BaseEventSessionLocation, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionChoiceSubQuestion, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionResponseChange, type BaseEventSessionSection, type BaseEventSessionSectionQuestion, type BaseEventSpeaker, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseEventTrack, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseImport, type BaseImportItem, type BaseIntegration, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseMatchPass, type BaseMeeting, type BaseMeetingLink, type BaseMeetingRecording, type BaseMeetingSessionParticipant, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BaseOrganizationModuleSettings, type BaseOrganizationModuleSettingsTranslation, type BasePassAddOn, type BasePassAttribute, type BasePassExchange, type BasePayment, type BasePaymentIntegration, type BasePaymentLineItem, type BasePreset, type BasePushDevice, type BaseRegistrationBypass, type BaseRegistrationFollowup, type BaseRegistrationFollowupQuestion, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseRoom, type BaseRound, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSeries, type BaseSeriesQuestion, type BaseSeriesQuestionChoice, type BaseSeriesRegistration, type BaseSeriesRegistrationQuestionResponse, type BaseSideEffect, type BaseStandardReport, type BaseStreamInput, type BaseStreamSession, type BaseStreamSessionSubscription, type BaseSupportTicket, type BaseSupportTicketActivityLog, type BaseSupportTicketMessage, type BaseSupportTicketNote, type BaseSupportTicketViewer, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionChoiceSubQuestion, type BaseSurveyQuestionResponse, type BaseSurveyQuestionResponseChange, type BaseSurveySection, type BaseSurveySectionQuestion, type BaseSurveySubmission, type BaseTaxIntegrationLog, type BaseTeamMember, type BaseThread, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseTier, type BaseTransferLog, type BaseUser, type BaseVideo, type BaseWebSocketConnection, type BaseWebhook, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, type Booking, type BookingCreateInputs, type BookingPlace, type BookingPlaceCreateInputs, type BookingPlaceTranslation, type BookingPlaceTranslationUpdateInputs, type BookingPlaceUpdateInputs, type BookingQuestionResponse, type BookingSlot, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceAvailabilityCreateInputs, type BookingSpaceAvailabilityUpdateInputs, type BookingSpaceBlackout, type BookingSpaceBlackoutCreateInputs, type BookingSpaceBlackoutUpdateInputs, type BookingSpaceCreateInputs, type BookingSpaceQuestion, type BookingSpaceQuestionChoice, type BookingSpaceQuestionChoiceCreateInputs, type BookingSpaceQuestionChoiceTranslation, type BookingSpaceQuestionChoiceTranslationUpdateInputs, type BookingSpaceQuestionChoiceUpdateInputs, type BookingSpaceQuestionCreateInputs, type BookingSpaceQuestionTranslation, type BookingSpaceQuestionTranslationUpdateInputs, BookingSpaceQuestionType, type BookingSpaceQuestionUpdateInputs, type BookingSpaceTranslation, type BookingSpaceTranslationUpdateInputs, type BookingSpaceUpdateInputs, type BookingUpdateInputs, type BraintreeActivationFormParams, BulkUploadSearchListValues, type BulkUploadSearchListValuesParams, CHANNELS_QUERY_KEY, CHANNEL_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_GUEST_QUERY_KEY, CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_KEY, CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_KEY, CHANNEL_CONTENT_LIKES_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_CONTENT_TRANSLATIONS_QUERY_KEY, CHANNEL_CONTENT_TRANSLATION_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CHANNEL_SUBSCRIBER_QUERY_KEY, CHANNEL_TRANSLATIONS_QUERY_KEY, CHANNEL_TRANSLATION_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_MODULES_QUERY_KEY, CUSTOM_MODULE_QUERY_KEY, CUSTOM_MODULE_TRANSLATIONS_QUERY_KEY, CUSTOM_MODULE_TRANSLATION_QUERY_KEY, CUSTOM_REPORTS_QUERY_KEY, CUSTOM_REPORT_QUERY_KEY, CUSTOM_REPORT_SCHEDULE_QUERY_KEY, CUSTOM_REPORT_USERS_QUERY_KEY, CacheIndividualQueries, CalculateDuration, CancelActivitySchedule, type CancelActivityScheduleParams, CancelAnnouncementSchedule, type CancelAnnouncementScheduleParams, CancelBooking, type CancelBookingParams, CancelChannelContentPublishSchedule, type CancelChannelContentPublishScheduleParams, CancelEventPass, type CancelEventPassParams, CancelEventPassTransfer, type CancelEventPassTransferParams, CancelGroupInvitation, type CancelGroupInvitationParams, type Channel, type ChannelCollectionCreateInputs, type ChannelCollectionTranslationUpdateInputs, type ChannelCollectionUpdateInputs, type ChannelContent, type ChannelContentCreateInputs, type ChannelContentGuest, type ChannelContentGuestCreateInputs, type ChannelContentGuestTranslation, type ChannelContentGuestTranslationUpdateInputs, type ChannelContentGuestUpdateInputs, type ChannelContentLike, type ChannelContentTranslation, type ChannelContentTranslationUpdateInputs, type ChannelContentUpdateInputs, type ChannelCreateInputs, ChannelFormat, type ChannelSubscriberUpdateInputs, type ChannelTranslation, type ChannelTranslationUpdateInputs, type ChannelUpdateInputs, CheckInBooking, type CheckInBookingParams, CheckinEventPass, type CheckinEventPassParams, CloneEvent, type CloneEventParams, CloneEventSession, type CloneEventSessionParams, type CloneOptions, CloseStreamSession, type CloseStreamSessionParams, ConfirmImageUpload, type ConfirmImageUploadParams, ConfirmLogin, type ConfirmLoginParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, CreateAccountAddress, type CreateAccountAddressParams, CreateAccountAttribute, type CreateAccountAttributeParams, CreateAccountInvitations, type CreateAccountInvitationsParams, type CreateAccountParams, CreateActivity, type CreateActivityParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateBenefit, type CreateBenefitParams, CreateBooking, type CreateBookingParams, CreateBookingPlace, type CreateBookingPlaceParams, CreateBookingSpace, CreateBookingSpaceAvailability, type CreateBookingSpaceAvailabilityParams, CreateBookingSpaceBlackout, type CreateBookingSpaceBlackoutParams, type CreateBookingSpaceParams, CreateBookingSpaceQuestion, CreateBookingSpaceQuestionChoice, type CreateBookingSpaceQuestionChoiceParams, type CreateBookingSpaceQuestionParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, type CreateChannelContentParams, type CreateChannelParams, CreateCustomModule, type CreateCustomModuleParams, CreateCustomReport, type CreateCustomReportParams, CreateDashboard, type CreateDashboardParams, CreateDashboardWidget, type CreateDashboardWidgetParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAttendee, CreateEventAttendeePackage, type CreateEventAttendeePackageParams, type CreateEventAttendeeParams, CreateEventAttribute, type CreateEventAttributeParams, CreateEventBlock, type CreateEventBlockParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventCouponVariants, type CreateEventCouponVariantsParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFollowup, type CreateEventFollowupParams, CreateEventMatch, type CreateEventMatchParams, CreateEventMediaItem, type CreateEventMediaItemParams, CreateEventPackage, type CreateEventPackageParams, CreateEventPackagePass, type CreateEventPackagePassParams, CreateEventPage, type CreateEventPageParams, type CreateEventParams, CreateEventPass, type CreateEventPassParams, CreateEventPassType, type CreateEventPassTypeParams, CreateEventPassTypePriceSchedule, CreateEventPassTypeRefundSchedule, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, type CreateEventQuestionParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, CreateEventReservation, type CreateEventReservationParams, CreateEventRoomType, type CreateEventRoomTypeParams, CreateEventRound, type CreateEventRoundParams, CreateEventSection, type CreateEventSectionParams, CreateEventSession, CreateEventSessionAccess, type CreateEventSessionAccessParams, CreateEventSessionLocation, type CreateEventSessionLocationParams, CreateEventSessionMatch, type CreateEventSessionMatchParams, type CreateEventSessionParams, CreateEventSessionPrice, type CreateEventSessionPriceParams, CreateEventSessionQuestion, CreateEventSessionQuestionChoice, type CreateEventSessionQuestionChoiceParams, type CreateEventSessionQuestionParams, CreateEventSessionRound, type CreateEventSessionRoundParams, CreateEventSessionSection, type CreateEventSessionSectionParams, CreateEventSessionTime, type CreateEventSessionTimeParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSponsorship, CreateEventSponsorshipLevel, type CreateEventSponsorshipLevelParams, type CreateEventSponsorshipParams, CreateEventTrack, type CreateEventTrackParams, CreateGroup, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateImport, type CreateImportParams, CreateIntegration, type CreateIntegrationParams, CreateInterest, type CreateInterestParams, CreateInvoice, CreateInvoiceLineItem, type CreateInvoiceLineItemParams, type CreateInvoiceParams, CreateLevel, type CreateLevelParams, CreateMeeting, CreateMeetingLink, type CreateMeetingLinkParams, type CreateMeetingParams, CreateMeetingParticipant, type CreateMeetingParticipantParams, CreateOrganizationPaymentIntegration, type CreateOrganizationPaymentIntegrationParams, CreateOrganizationSideEffect, type CreateOrganizationSideEffectParams, CreateOrganizationTeamMember, type CreateOrganizationTeamMemberParams, CreateOrganizationWebhook, type CreateOrganizationWebhookParams, CreatePreset, type CreatePresetParams, CreateRoom, type CreateRoomParams, CreateSearchList, type CreateSearchListParams, CreateSearchListValue, type CreateSearchListValueParams, CreateSelfApiKey, type CreateSelfApiKeyParams, CreateSeries, type CreateSeriesParams, CreateSeriesQuestion, CreateSeriesQuestionChoice, type CreateSeriesQuestionChoiceParams, type CreateSeriesQuestionParams, CreateSeriesRegistration, type CreateSeriesRegistrationParams, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSupportTicket, CreateSupportTicketMessage, type CreateSupportTicketMessageParams, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateSurvey, type CreateSurveyParams, CreateSurveyQuestion, CreateSurveyQuestionChoice, type CreateSurveyQuestionChoiceParams, type CreateSurveyQuestionParams, CreateSurveySection, type CreateSurveySectionParams, CreateTaxIntegration, type CreateTaxIntegrationParams, CreateThread, CreateThreadMessage, CreateThreadMessageFile, type CreateThreadMessageFileParams, CreateThreadMessageImage, type CreateThreadMessageImageParams, type CreateThreadMessageParams, CreateThreadMessageReaction, type CreateThreadMessageReactionParams, CreateThreadMessageVideo, type CreateThreadMessageVideoParams, type CreateThreadParams, CreateTier, type CreateTierParams, Currency, type CursorQueryOptions, type CursorQueryParams, type CustomModule, type CustomModuleCreateInputs, CustomModulePosition, type CustomModuleTranslation, type CustomModuleTranslationUpdateInputs, type CustomModuleUpdateInputs, type CustomReport, type CustomReportCreateInputs, type CustomReportExportInputs, type CustomReportSchedule, type CustomReportScheduleInputs, type CustomReportUpdateInputs, DASHBOARDS_QUERY_KEY, DASHBOARD_ATTRIBUTES_QUERY_KEY, DASHBOARD_QUERY_KEY, DASHBOARD_WIDGETS_QUERY_KEY, type Dashboard, type DashboardCreateInputs, type DashboardUpdateInputs, type DashboardWidget, type DashboardWidgetCreateInputs, type DashboardWidgetEndpoint, type DashboardWidgetUpdateInputs, DayOfWeek, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, DeleteAccountAttribute, type DeleteAccountAttributeParams, DeleteAccountInvitation, type DeleteAccountInvitationParams, DeleteAccountLead, type DeleteAccountLeadParams, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteBooking, type DeleteBookingParams, DeleteBookingPlace, type DeleteBookingPlaceParams, DeleteBookingPlaceTranslation, type DeleteBookingPlaceTranslationParams, DeleteBookingSpace, DeleteBookingSpaceAvailability, type DeleteBookingSpaceAvailabilityParams, DeleteBookingSpaceBlackout, type DeleteBookingSpaceBlackoutParams, type DeleteBookingSpaceParams, DeleteBookingSpaceQuestion, DeleteBookingSpaceQuestionChoice, type DeleteBookingSpaceQuestionChoiceParams, DeleteBookingSpaceQuestionChoiceTranslation, type DeleteBookingSpaceQuestionChoiceTranslationParams, type DeleteBookingSpaceQuestionParams, DeleteBookingSpaceQuestionTranslation, type DeleteBookingSpaceQuestionTranslationParams, DeleteBookingSpaceTranslation, type DeleteBookingSpaceTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteCustomModule, type DeleteCustomModuleParams, DeleteCustomModuleTranslation, type DeleteCustomModuleTranslationParams, DeleteCustomReport, type DeleteCustomReportParams, DeleteCustomReportSchedule, type DeleteCustomReportScheduleParams, DeleteDashboard, type DeleteDashboardParams, DeleteDashboardWidget, type DeleteDashboardWidgetParams, DeleteEvent, DeleteEventActivation, DeleteEventActivationCompletion, type DeleteEventActivationCompletionParams, type DeleteEventActivationParams, DeleteEventActivationTranslation, type DeleteEventActivationTranslationParams, DeleteEventAddOn, type DeleteEventAddOnParams, DeleteEventAddOnTranslation, type DeleteEventAddOnTranslationParams, DeleteEventAttendee, DeleteEventAttendeePackage, type DeleteEventAttendeePackageParams, type DeleteEventAttendeeParams, DeleteEventAttribute, type DeleteEventAttributeParams, DeleteEventBlock, type DeleteEventBlockParams, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventCouponVariants, type DeleteEventCouponVariantsParams, DeleteEventEmailTranslation, type DeleteEventEmailTranslationParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, DeleteEventFollowup, type DeleteEventFollowupParams, DeleteEventFollowupTranslation, type DeleteEventFollowupTranslationParams, DeleteEventLocation, type DeleteEventLocationParams, DeleteEventMatch, type DeleteEventMatchParams, DeleteEventMediaItem, type DeleteEventMediaItemParams, DeleteEventMediaItemTranslation, type DeleteEventMediaItemTranslationParams, DeleteEventPackage, type DeleteEventPackageParams, DeleteEventPackagePass, type DeleteEventPackagePassParams, DeleteEventPackageTranslation, type DeleteEventPackageTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventPass, type DeleteEventPassParams, DeleteEventPassType, type DeleteEventPassTypeParams, DeleteEventPassTypePriceSchedule, DeleteEventPassTypeRefundSchedule, DeleteEventPassTypeTranslation, type DeleteEventPassTypeTranslationParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, DeleteEventReservation, type DeleteEventReservationParams, DeleteEventRoomType, type DeleteEventRoomTypeParams, DeleteEventRoomTypeTranslation, type DeleteEventRoomTypeTranslationParams, DeleteEventRound, type DeleteEventRoundParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, DeleteEventSessionAccess, type DeleteEventSessionAccessParams, DeleteEventSessionLocation, type DeleteEventSessionLocationParams, DeleteEventSessionLocationTranslation, type DeleteEventSessionLocationTranslationParams, DeleteEventSessionMatch, type DeleteEventSessionMatchParams, type DeleteEventSessionParams, DeleteEventSessionPrice, type DeleteEventSessionPriceParams, DeleteEventSessionQuestion, DeleteEventSessionQuestionChoice, type DeleteEventSessionQuestionChoiceParams, DeleteEventSessionQuestionChoiceTranslation, type DeleteEventSessionQuestionChoiceTranslationParams, type DeleteEventSessionQuestionParams, DeleteEventSessionQuestionTranslation, type DeleteEventSessionQuestionTranslationParams, DeleteEventSessionRound, type DeleteEventSessionRoundParams, DeleteEventSessionSection, type DeleteEventSessionSectionParams, DeleteEventSessionSectionTranslation, type DeleteEventSessionSectionTranslationParams, DeleteEventSessionTime, type DeleteEventSessionTimeParams, DeleteEventSessionTimeTranslation, type DeleteEventSessionTimeTranslationParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, DeleteEventSponsorship, DeleteEventSponsorshipLevel, type DeleteEventSponsorshipLevelParams, DeleteEventSponsorshipLevelTranslation, type DeleteEventSponsorshipLevelTranslationParams, type DeleteEventSponsorshipParams, DeleteEventSponsorshipTranslation, type DeleteEventSponsorshipTranslationParams, DeleteEventTrack, type DeleteEventTrackParams, DeleteEventTrackTranslation, type DeleteEventTrackTranslationParams, DeleteEventTranslation, type DeleteEventTranslationParams, DeleteFile, type DeleteFileParams, DeleteGroup, DeleteGroupInvitation, type DeleteGroupInvitationParams, type DeleteGroupParams, DeleteGroupRequest, type DeleteGroupRequestParams, DeleteGroupTranslation, type DeleteGroupTranslationParams, DeleteImage, type DeleteImageParams, DeleteIntegration, type DeleteIntegrationParams, DeleteInterest, type DeleteInterestParams, DeleteInvoice, DeleteInvoiceLineItem, type DeleteInvoiceLineItemParams, type DeleteInvoiceParams, DeleteLevel, type DeleteLevelParams, DeleteLevelTranslation, type DeleteLevelTranslationParams, DeleteLogin, type DeleteLoginParams, DeleteManyImages, type DeleteManyImagesInput, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosInput, type DeleteManyVideosParams, DeleteMeetingLink, type DeleteMeetingLinkParams, DeleteMeetingParticipant, type DeleteMeetingParticipantParams, DeleteOrganizationDomain, type DeleteOrganizationDomainParams, DeleteOrganizationModuleSettingsTranslation, type DeleteOrganizationModuleSettingsTranslationParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationSideEffect, type DeleteOrganizationSideEffectParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteOrganizationWebhook, type DeleteOrganizationWebhookParams, DeletePreset, type DeletePresetParams, DeletePushDevice, type DeletePushDeviceParams, DeleteRoom, type DeleteRoomParams, DeleteSearchList, type DeleteSearchListParams, DeleteSearchListValue, type DeleteSearchListValueParams, DeleteSelfApiKey, type DeleteSelfApiKeyParams, DeleteSeries, type DeleteSeriesParams, DeleteSeriesQuestion, DeleteSeriesQuestionChoice, type DeleteSeriesQuestionChoiceParams, type DeleteSeriesQuestionParams, DeleteSeriesRegistration, type DeleteSeriesRegistrationParams, DeleteSeriesTranslation, type DeleteSeriesTranslationParams, DeleteStreamInput, DeleteStreamInputOutput, type DeleteStreamInputOutputParams, type DeleteStreamInputParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteSurvey, type DeleteSurveyParams, DeleteSurveyQuestion, DeleteSurveyQuestionChoice, type DeleteSurveyQuestionChoiceParams, DeleteSurveyQuestionChoiceTranslation, type DeleteSurveyQuestionChoiceTranslationParams, type DeleteSurveyQuestionParams, DeleteSurveyQuestionTranslation, type DeleteSurveyQuestionTranslationParams, DeleteSurveySection, type DeleteSurveySectionParams, DeleteSurveySectionTranslation, type DeleteSurveySectionTranslationParams, DeleteSurveySubmission, type DeleteSurveySubmissionParams, DeleteSurveyTranslation, type DeleteSurveyTranslationParams, DeleteTaxIntegration, type DeleteTaxIntegrationParams, DeleteThread, DeleteThreadAccount, type DeleteThreadAccountParams, DeleteThreadMessage, DeleteThreadMessageFile, type DeleteThreadMessageFileParams, DeleteThreadMessageImage, type DeleteThreadMessageImageParams, type DeleteThreadMessageParams, DeleteThreadMessageReaction, type DeleteThreadMessageReactionParams, DeleteThreadMessageVideo, type DeleteThreadMessageVideoParams, type DeleteThreadParams, DeleteTier, type DeleteTierParams, DeleteUserImage, type DeleteUserImageParams, DeleteVideo, DeleteVideoCaption, type DeleteVideoCaptionParams, type DeleteVideoParams, DenyEventPass, type DenyEventPassParams, DetachBookingSpaceQuestionSearchList, type DetachBookingSpaceQuestionSearchListParams, DetachEventQuestionSearchList, type DetachEventQuestionSearchListParams, DetachEventSessionQuestionSearchList, type DetachEventSessionQuestionSearchListParams, DetachSurveyQuestionSearchList, type DetachSurveyQuestionSearchListParams, DisableEventBuildMode, type DisableEventBuildModeParams, DisableLivestream, type DisableLivestreamParams, type DomainDetails, DownloadVideoCaption, type DownloadVideoCaptionParams, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, ENTITY_USE_CODES_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCESS_USERS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETION_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SESSIONS_QUERY_KEY, EVENT_ACTIVATION_TRANSLATIONS_QUERY_KEY, EVENT_ACTIVATION_TRANSLATION_QUERY_KEY, EVENT_ACTIVITIES_QUERY_KEY, EVENT_ADD_ONS_QUERY_KEY, EVENT_ADD_ON_PASSES_QUERY_KEY, EVENT_ADD_ON_PASS_TYPES_QUERY_KEY, EVENT_ADD_ON_QUERY_KEY, EVENT_ADD_ON_TIERS_QUERY_KEY, EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY, EVENT_ADD_ON_TRANSLATION_QUERY_KEY, EVENT_ATTENDEES_QUERY_KEY, EVENT_ATTENDEE_COUPONS_QUERY_KEY, EVENT_ATTENDEE_PACKAGES_QUERY_KEY, EVENT_ATTENDEE_PACKAGE_QUERY_KEY, EVENT_ATTENDEE_PASSES_QUERY_KEY, EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, EVENT_ATTENDEE_QUERY_KEY, EVENT_ATTENDEE_RESERVATIONS_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, EVENT_ATTRIBUTES_QUERY_KEY, EVENT_ATTRIBUTE_QUERY_KEY, EVENT_BLOCKS_QUERY_KEY, EVENT_BLOCK_QUERY_KEY, EVENT_BLOCK_SESSIONS_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_PASSES_QUERY_KEY, EVENT_COUPON_PAYMENTS_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_COUPON_TIERS_QUERY_KEY, EVENT_COUPON_VARIANTS_QUERY_KEY, EVENT_CO_HOSTS_QUERY_KEY, EVENT_DASHBOARD_QUESTIONS_QUERY_KEY, EVENT_EMAIL_QUERY_KEY, EVENT_EMAIL_TRANSLATIONS_QUERY_KEY, EVENT_EMAIL_TRANSLATION_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_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_KEY, EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_FAQ_SECTION_TRANSLATION_QUERY_KEY, EVENT_FOLLOWUPS_QUERY_KEY, EVENT_FOLLOWUP_ADDONS_QUERY_KEY, EVENT_FOLLOWUP_PASS_TYPES_QUERY_KEY, EVENT_FOLLOWUP_QUERY_KEY, EVENT_FOLLOWUP_QUESTIONS_QUERY_KEY, EVENT_FOLLOWUP_TIERS_QUERY_KEY, EVENT_FOLLOWUP_TRANSLATIONS_QUERY_KEY, EVENT_FOLLOWUP_TRANSLATION_QUERY_KEY, EVENT_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_PASS_TYPES_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_MEDIA_ITEM_TRANSLATIONS_QUERY_KEY, EVENT_MEDIA_ITEM_TRANSLATION_QUERY_KEY, EVENT_ON_SITE_QUERY_KEY, EVENT_PACKAGES_QUERY_KEY, EVENT_PACKAGE_PASSES_QUERY_KEY, EVENT_PACKAGE_PASS_QUERY_KEY, EVENT_PACKAGE_QUERY_KEY, EVENT_PACKAGE_TRANSLATIONS_QUERY_KEY, EVENT_PACKAGE_TRANSLATION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_IMAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_PAGE_TRANSLATIONS_QUERY_KEY, EVENT_PAGE_TRANSLATION_QUERY_KEY, EVENT_PASSES_QUERY_KEY, EVENT_PASS_ACCESSES_QUERY_KEY, EVENT_PASS_ADD_ONS_QUERY_KEY, EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY, EVENT_PASS_ATTRIBUTES_QUERY_KEY, EVENT_PASS_MATCHES_QUERY_KEY, EVENT_PASS_PAYMENTS_QUERY_KEY, EVENT_PASS_QUERY_KEY, EVENT_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, EVENT_PASS_QUESTION_SECTIONS_QUERY_KEY, EVENT_PASS_RESPONSES_QUERY_KEY, EVENT_PASS_RESPONSE_CHANGES_QUERY_KEY, EVENT_PASS_RESPONSE_QUERY_KEY, EVENT_PASS_TRANSFERS_QUERY_KEY, EVENT_PASS_TRANSFER_LOGS_QUERY_KEY, EVENT_PASS_TYPES_QUERY_KEY, EVENT_PASS_TYPE_ADD_ONS_QUERY_KEY, EVENT_PASS_TYPE_COUPONS_QUERY_KEY, EVENT_PASS_TYPE_EXCHANGE_TARGETS_QUERY_KEY, EVENT_PASS_TYPE_EXCHANGE_TARGET_EXCHANGES_QUERY_KEY, EVENT_PASS_TYPE_EXCHANGE_TARGET_PAYMENTS_QUERY_KEY, EVENT_PASS_TYPE_GROUP_PASS_TIERS_QUERY_KEY, EVENT_PASS_TYPE_PASSES_QUERY_KEY, EVENT_PASS_TYPE_PAYMENTS_QUERY_KEY, EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_KEY, EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY, EVENT_PASS_TYPE_QUERY_KEY, EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_KEY, EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_KEY, EVENT_PASS_TYPE_TIERS_QUERY_KEY, EVENT_PASS_TYPE_TRANSLATIONS_QUERY_KEY, EVENT_PASS_TYPE_TRANSLATION_QUERY_KEY, EVENT_PAYMENTS_QUERY_KEY, EVENT_PENDING_PASSES_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTIONS_QUERY_KEY, EVENT_QUESTION_CHOICES_QUERY_KEY, EVENT_QUESTION_CHOICE_QUERY_KEY, EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, EVENT_QUESTION_QUERY_KEY, EVENT_QUESTION_RESPONSES_QUERY_KEY, EVENT_QUESTION_SUMMARIES_QUERY_KEY, EVENT_QUESTION_SUMMARY_QUERY_KEY, EVENT_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_QUESTION_TRANSLATION_QUERY_KEY, EVENT_REGISTRATION_BYPASS_LIST_QUERY_KEY, EVENT_REGISTRATION_BYPASS_QUERY_KEY, EVENT_RESERVATIONS_QUERY_KEY, EVENT_RESERVATION_PASSES_QUERY_KEY, EVENT_RESERVATION_QUERY_KEY, EVENT_ROOMS_QUERY_KEY, EVENT_ROOM_QUERY_KEY, EVENT_ROOM_TYPES_QUERY_KEY, EVENT_ROOM_TYPE_PASSES_QUERY_KEY, EVENT_ROOM_TYPE_QUERY_KEY, EVENT_ROOM_TYPE_RESERVATIONS_QUERY_KEY, EVENT_ROOM_TYPE_ROOMS_QUERY_KEY, EVENT_ROOM_TYPE_TIERS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATION_QUERY_KEY, EVENT_ROUNDS_QUERY_KEY, EVENT_ROUND_MATCHES_QUERY_KEY, EVENT_ROUND_MATCH_PASSES_QUERY_KEY, EVENT_ROUND_MATCH_QUERY_KEY, EVENT_ROUND_PASSES_QUERY_KEY, EVENT_ROUND_QUESTIONS_QUERY_KEY, EVENT_ROUND_QUESTIONS_SUMMARY_QUERY_KEY, EVENT_SECTIONS_QUERY_KEY, EVENT_SECTION_ADDONS_QUERY_KEY, EVENT_SECTION_PASS_TYPES_QUERY_KEY, EVENT_SECTION_QUERY_KEY, EVENT_SECTION_QUESTIONS_QUERY_KEY, EVENT_SECTION_TIERS_QUERY_KEY, EVENT_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SECTION_TRANSLATION_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSIONS_WITH_ROUNDS_QUERY_KEY, EVENT_SESSION_ACCESSES_QUERY_KEY, EVENT_SESSION_ACCESS_QUERY_KEY, EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_KEY, EVENT_SESSION_ACCESS_SESSION_QUESTION_SECTIONS_QUERY_KEY, EVENT_SESSION_ACCOUNTS_QUERY_KEY, EVENT_SESSION_BLOCKS_QUERY_KEY, EVENT_SESSION_LOCATIONS_QUERY_KEY, EVENT_SESSION_LOCATION_QUERY_KEY, EVENT_SESSION_LOCATION_SESSIONS_QUERY_KEY, EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_LOCATION_TRANSLATION_QUERY_KEY, EVENT_SESSION_PASS_TYPES_QUERY_KEY, EVENT_SESSION_PAYMENTS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICES_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, EVENT_SESSION_QUESTION_QUERY_KEY, EVENT_SESSION_QUESTION_RESPONSES_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATION_QUERY_KEY, EVENT_SESSION_ROUNDS_QUERY_KEY, EVENT_SESSION_ROUND_MATCHES_QUERY_KEY, EVENT_SESSION_ROUND_MATCH_PASSES_QUERY_KEY, EVENT_SESSION_ROUND_MATCH_QUERY_KEY, EVENT_SESSION_ROUND_PASSES_QUERY_KEY, EVENT_SESSION_ROUND_QUESTIONS_QUERY_KEY, EVENT_SESSION_ROUND_QUESTIONS_SUMMARY_QUERY_KEY, EVENT_SESSION_SECTIONS_QUERY_KEY, EVENT_SESSION_SECTION_QUERY_KEY, EVENT_SESSION_SECTION_QUESTIONS_QUERY_KEY, EVENT_SESSION_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_SECTION_TRANSLATION_QUERY_KEY, EVENT_SESSION_SPEAKERS_QUERY_KEY, EVENT_SESSION_SPONSORS_QUERY_KEY, EVENT_SESSION_TIERS_QUERY_KEY, EVENT_SESSION_TIMES_QUERY_KEY, EVENT_SESSION_TIME_QUERY_KEY, EVENT_SESSION_TIME_SPEAKERS_QUERY_KEY, EVENT_SESSION_TIME_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_TIME_TRANSLATION_QUERY_KEY, EVENT_SESSION_TRACKS_QUERY_KEY, EVENT_SESSION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_TRANSLATION_QUERY_KEY, EVENT_SESSION_VISIBLE_PASS_TYPES_QUERY_KEY, EVENT_SESSION_VISIBLE_TIERS_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPEAKER_TRANSLATIONS_QUERY_KEY, EVENT_SPEAKER_TRANSLATION_QUERY_KEY, EVENT_SPONSORSHIPS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_KEY, EVENT_SPONSORSHIP_TRANSLATION_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_SPONSOR_ACCOUNTS_QUERY_KEY, EVENT_TEMPLATES_QUERY_KEY, EVENT_TIERS_QUERY_KEY, EVENT_TRACKS_QUERY_KEY, EVENT_TRACK_QUERY_KEY, EVENT_TRACK_SESSIONS_QUERY_KEY, EVENT_TRACK_SPONSORS_QUERY_KEY, EVENT_TRACK_TRANSLATIONS_QUERY_KEY, EVENT_TRACK_TRANSLATION_QUERY_KEY, EVENT_TRANSLATIONS_QUERY_KEY, EVENT_TRANSLATION_QUERY_KEY, type EmailReceipt, EmailReceiptStatus, EnableEventBuildMode, type EnableEventBuildModeParams, EnableLivestream, type EnableLivestreamParams, type EntityUseCode, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, EventActivationRewardType, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, EventActivationType, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, EventAgendaVisibility, type EventAnnouncementFilters, type EventAttendee, type EventAttendeeCreateInputs, type EventAttendeePackageCreateInputs, type EventAttendeePackageUpdateInputs, type EventAttendeeUpdateInputs, type EventAttribute, type EventAttributeCreateInputs, type EventAttributeUpdateInputs, type EventBlock, type EventBlockCreateInputs, type EventBlockUpdateInputs, type EventCouponCreateInputs, type EventCouponUpdateInputs, type EventCreateInputs, type EventEmail, type EventEmailTranslation, type EventEmailTranslationUpdateInputs, EventEmailType, type EventEmailUpdateInputs, type EventFaqSectionCreateInputs, type EventFaqSectionQuestionCreateInputs, type EventFaqSectionQuestionTranslationUpdateInputs, type EventFaqSectionQuestionUpdateInputs, type EventFaqSectionTranslationUpdateInputs, type EventFaqSectionUpdateInputs, type EventFollowupCreateInputs, type EventFollowupTranslationUpdateInputs, type EventFollowupUpdateInputs, EventGetPassTypeCoupons, type EventListing, type EventLocationInputs, type EventMediaItem, type EventMediaItemCreateInputs, type EventMediaItemTranslation, type EventMediaItemTranslationUpdateInputs, type EventMediaItemUpdateInputs, type EventOnSite, type EventPackage, type EventPackageCreateInputs, type EventPackagePass, type EventPackagePassCreateInputs, type EventPackagePassUpdateInputs, type EventPackageTranslation, type EventPackageTranslationUpdateInputs, type EventPackageUpdateInputs, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPass, type EventPassCreateInputs, type EventPassType, type EventPassTypeExchangeTarget, type EventPassTypePriceSchedule, type EventPassTypeRefundSchedule, type EventPassTypeTranslation, type EventPassUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, EventReportDateType, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypeAddOnDetailsUpdateInputs, type EventRoomTypeCreateInputs, type EventRoomTypePassTypeDetails, type EventRoomTypePassTypeDetailsUpdateInputs, type EventRoomTypeReservation, type EventRoomTypeReservationCreateInputs, type EventRoomTypeReservationUpdateInputs, type EventRoomTypeTranslation, type EventRoomTypeTranslationUpdateInputs, type EventRoomTypeUpdateInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionAccess, type EventSessionAccessUpdateInputs, type EventSessionCloneOptions, type EventSessionCreateInputs, type EventSessionLocation, type EventSessionLocationCreateInputs, type EventSessionLocationTranslation, type EventSessionLocationTranslationUpdateInputs, type EventSessionLocationUpdateInputs, type EventSessionPrice, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionChoiceCreateInputs, type EventSessionQuestionChoiceSubQuestion, type EventSessionQuestionChoiceTranslation, type EventSessionQuestionChoiceTranslationUpdateInputs, type EventSessionQuestionChoiceUpdateInputs, type EventSessionQuestionCreateInputs, type EventSessionQuestionResponse, type EventSessionQuestionResponseChange, type EventSessionQuestionTranslation, type EventSessionQuestionTranslationUpdateInputs, EventSessionQuestionType, type EventSessionQuestionUpdateInputs, type EventSessionSection, type EventSessionSectionCreateInputs, type EventSessionSectionQuestion, type EventSessionSectionTranslation, type EventSessionSectionTranslationUpdateInputs, type EventSessionSectionUpdateInputs, type EventSessionTime, type EventSessionTimeCreateInputs, type EventSessionTimeTranslation, type EventSessionTimeTranslationUpdateInputs, type EventSessionTimeUpdateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSessionVisibility, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventSponsorship, type EventSponsorshipCreateInputs, type EventSponsorshipLevel, type EventSponsorshipLevelCreateInputs, type EventSponsorshipLevelTranslation, type EventSponsorshipLevelTranslationUpdateInputs, type EventSponsorshipLevelUpdateInputs, type EventSponsorshipTranslation, type EventSponsorshipTranslationUpdateInputs, type EventSponsorshipUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, type EventVariantCouponCreateInputs, type EventVariantCouponSyncInputs, ExchangeType, ExportAccount, type ExportAccountParams, ExportCustomReport, type ExportCustomReportParams, ExportStatus, ExportStreamSession, type ExportStreamSessionParams, FEATURED_CHANNELS_QUERY_KEY, FILES_QUERY_KEY, FILE_QUERY_KEY, type Faq, type FaqSection, type FaqSectionTranslation, type FaqTranslation, type File, FileSource, type FileUpdateInputs, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INTERESTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_INVITATION_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_MODERATORS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GenerateMeetingSessionSummary, type GenerateMeetingSessionSummaryParams, GenerateVideoCaptions, type GenerateVideoCaptionsParams, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountAddress, GetAccountAddresses, GetAccountBookings, GetAccountComments, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountInvitations, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountNotificationPreferences, GetAccountPayments, GetAccountRegistrations, GetAccountSupportTickets, GetAccountThreads, GetAccountTiers, GetAccounts, GetAccountsByInternalRefId, GetActivities, GetActivity, GetActivityComments, GetActivityLikes, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAllEventAddOns, GetAllEventPassTypes, GetAnnouncement, GetAnnouncementAudience, GetAnnouncementEmailReceipts, GetAnnouncementTranslation, GetAnnouncementTranslations, GetAnnouncements, GetAuthSession, GetAuthSessions, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetBooking, GetBookingPlace, GetBookingPlaceBookings, GetBookingPlacePayments, GetBookingPlaceTranslation, GetBookingPlaceTranslations, GetBookingPlaces, GetBookingResponses, GetBookingSpace, GetBookingSpaceAvailabilities, GetBookingSpaceAvailability, GetBookingSpaceBlackout, GetBookingSpaceBlackouts, GetBookingSpaceBookings, GetBookingSpacePayments, GetBookingSpaceQuestion, GetBookingSpaceQuestionChoice, GetBookingSpaceQuestionChoiceTranslation, GetBookingSpaceQuestionChoiceTranslations, GetBookingSpaceQuestionChoices, GetBookingSpaceQuestionTranslation, GetBookingSpaceQuestionTranslations, GetBookingSpaceQuestions, GetBookingSpaceSlots, GetBookingSpaceTiers, GetBookingSpaceTranslation, GetBookingSpaceTranslations, GetBookingSpaces, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetCustomModule, GetCustomModuleTranslation, GetCustomModuleTranslations, GetCustomModules, GetCustomReport, GetCustomReportSchedule, GetCustomReportUsers, GetCustomReports, GetDashboard, GetDashboardAttributes, GetDashboardWidgets, GetDashboards, GetEmailReceipt, GetEmailReceipts, GetEntityUseCodes, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletion, GetEventActivationCompletions, GetEventActivationSessions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePackage, GetEventAttendeePackages, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeReservations, GetEventAttendeeTransfersLogs, GetEventAttendees, GetEventAttribute, GetEventAttributes, GetEventBlock, GetEventBlockSessions, GetEventBlocks, GetEventCoHosts, GetEventCoupon, GetEventCouponPasses, GetEventCouponPayments, GetEventCouponTiers, GetEventCouponVariants, GetEventCoupons, GetEventDashboardQuestions, GetEventEmail, GetEventEmailTranslation, GetEventEmailTranslations, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventFollowup, GetEventFollowupAddOns, GetEventFollowupPassTypes, GetEventFollowupQuestions, GetEventFollowupTiers, GetEventFollowupTranslation, GetEventFollowupTranslations, GetEventFollowups, GetEventMediaItem, GetEventMediaItemPassTypes, GetEventMediaItemTranslation, GetEventMediaItemTranslations, GetEventMediaItems, GetEventOnSite, GetEventPackage, GetEventPackagePass, GetEventPackagePasses, GetEventPackageTranslation, GetEventPackageTranslations, GetEventPackages, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPass, GetEventPassAccesses, GetEventPassAddOns, GetEventPassAttendeePasses, GetEventPassAttributes, GetEventPassMatches, GetEventPassPayments, GetEventPassQuestionFollowups, GetEventPassQuestionSections, GetEventPassResponse, GetEventPassResponseChanges, GetEventPassResponses, GetEventPassTransferLogs, GetEventPassTransfers, GetEventPassType, GetEventPassTypeAddOns, GetEventPassTypeExchangeTargetExchanges, GetEventPassTypeExchangeTargetPayments, GetEventPassTypeExchangeTargets, GetEventPassTypeGroupPassTiers, GetEventPassTypePasses, GetEventPassTypePayments, GetEventPassTypePriceSchedule, GetEventPassTypePriceSchedules, GetEventPassTypeRefundSchedule, GetEventPassTypeRefundSchedules, GetEventPassTypeTiers, GetEventPassTypeTranslation, GetEventPassTypeTranslations, GetEventPassTypes, GetEventPasses, GetEventPayments, GetEventPendingPasses, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventReservation, GetEventReservationPasses, GetEventReservations, GetEventRoomType, GetEventRoomTypePasses, GetEventRoomTypeReservations, GetEventRoomTypeTiers, GetEventRoomTypeTranslation, GetEventRoomTypeTranslations, GetEventRoomTypes, GetEventRoundMatch, GetEventRoundMatchPasses, GetEventRoundMatches, GetEventRoundPasses, GetEventRoundQuestions, GetEventRoundQuestionsSummary, GetEventRounds, GetEventSection, GetEventSectionAddOns, GetEventSectionPassTypes, GetEventSectionQuestions, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccess, GetEventSessionAccessQuestionSections, GetEventSessionAccessResponseChanges, GetEventSessionAccesses, GetEventSessionAccounts, GetEventSessionBlocks, GetEventSessionLocation, GetEventSessionLocationSessions, GetEventSessionLocationTranslation, GetEventSessionLocationTranslations, GetEventSessionLocations, GetEventSessionPassTypes, GetEventSessionPayments, GetEventSessionQuestion, GetEventSessionQuestionChoice, GetEventSessionQuestionChoiceSubQuestions, GetEventSessionQuestionChoiceTranslation, GetEventSessionQuestionChoiceTranslations, GetEventSessionQuestionChoices, GetEventSessionQuestionResponses, GetEventSessionQuestionTranslation, GetEventSessionQuestionTranslations, GetEventSessionQuestions, GetEventSessionRoundMatch, GetEventSessionRoundMatchPasses, GetEventSessionRoundMatches, GetEventSessionRoundPasses, GetEventSessionRoundQuestions, GetEventSessionRoundQuestionsSummary, GetEventSessionRounds, GetEventSessionSection, GetEventSessionSectionQuestions, GetEventSessionSectionTranslation, GetEventSessionSectionTranslations, GetEventSessionSections, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTiers, GetEventSessionTime, GetEventSessionTimeSpeakers, GetEventSessionTimeTranslation, GetEventSessionTimeTranslations, GetEventSessionTimes, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessionVisiblePassTypes, GetEventSessionVisibleTiers, GetEventSessions, GetEventSessionsWithRounds, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventSponsorship, GetEventSponsorshipLevel, GetEventSponsorshipLevelTranslation, GetEventSponsorshipLevelTranslations, GetEventSponsorshipLevels, GetEventSponsorshipTranslation, GetEventSponsorshipTranslations, GetEventSponsorships, GetEventTiers, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEvents, GetFeaturedChannels, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImport, GetImportItems, GetImports, GetIntegration, GetIntegrations, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestChannels, GetInterestContents, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoicePayments, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetLivestream, GetLivestreamSessions, GetLivestreams, GetLogin, GetLoginAccounts, GetLoginAuthSessions, GetLoginDevices, GetLogins, GetMeeting, GetMeetingLink, GetMeetingLinks, GetMeetingLivestream, GetMeetingParticipant, GetMeetingParticipants, GetMeetingRecording, GetMeetingRecordings, GetMeetingSession, GetMeetingSessionMessages, GetMeetingSessionParticipant, GetMeetingSessionParticipants, GetMeetingSessionSummary, GetMeetingSessionTranscript, GetMeetingSessions, GetMeetings, GetNotificationCount, GetNotificationStats, GetNotifications, GetOrganization, GetOrganizationAccountAttribute, GetOrganizationAccountAttributes, GetOrganizationDomain, GetOrganizationMembership, GetOrganizationModule, GetOrganizationModuleEditableTiers, GetOrganizationModuleEnabledTiers, GetOrganizationModuleSettings, GetOrganizationModuleSettingsTranslation, GetOrganizationModuleSettingsTranslations, GetOrganizationModules, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationSideEffect, GetOrganizationSideEffects, GetOrganizationSystemLog, GetOrganizationSystemLogs, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationUsers, GetOrganizationWebhook, GetOrganizationWebhooks, GetPayment, GetPaymentTaxMetadata, GetPayments, GetPreferences, GetPreset, GetPresets, GetPushDevice, GetPushDevices, GetReport, GetReports, GetRequiredAttributes, GetRoom, GetRoomTypeRooms, GetRooms, GetSearchList, GetSearchListConnectedQuestions, GetSearchListValue, GetSearchListValues, GetSearchLists, GetSelf, GetSelfApiKey, GetSelfApiKeys, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetSeriesPayments, GetSeriesQuestion, GetSeriesQuestionChoice, GetSeriesQuestionChoices, GetSeriesQuestionTranslation, GetSeriesQuestions, GetSeriesRegistration, GetSeriesRegistrationPasses, GetSeriesRegistrationPayments, GetSeriesRegistrationResponses, GetSeriesRegistrations, GetSeriesTranslation, GetSeriesTranslations, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetStreamSession, GetStreamSessionChat, GetStreamSessionSubscriptions, GetStreamSessions, GetStreamVideos, GetSupportTicket, GetSupportTicketActivity, GetSupportTicketMessages, GetSupportTicketNotes, GetSupportTicketViewer, GetSupportTickets, GetSurvey, GetSurveyQuestion, GetSurveyQuestionChoice, GetSurveyQuestionChoiceSubQuestions, GetSurveyQuestionChoiceTranslation, GetSurveyQuestionChoiceTranslations, GetSurveyQuestionChoices, GetSurveyQuestionResponses, GetSurveyQuestionTranslation, GetSurveyQuestionTranslations, GetSurveyQuestions, GetSurveySection, GetSurveySectionQuestions, GetSurveySectionTranslation, GetSurveySectionTranslations, GetSurveySections, GetSurveySessions, GetSurveySubmission, GetSurveySubmissionQuestionSections, GetSurveySubmissionResponseChanges, GetSurveySubmissions, GetSurveyTranslation, GetSurveyTranslations, GetSurveys, GetTaxCodes, GetTaxIntegration, GetTaxIntegrations, GetTaxLog, GetTaxLogs, GetTemplates, GetThread, GetThreadAccounts, GetThreadMessage, GetThreadMessageFiles, type GetThreadMessageFilesProps, GetThreadMessageImages, type GetThreadMessageImagesProps, type GetThreadMessageProps, GetThreadMessageReactions, type GetThreadMessageReactionsProps, GetThreadMessageVideos, type GetThreadMessageVideosProps, GetThreadMessages, GetThreadMessagesPoll, type GetThreadMessagesPollProps, type GetThreadMessagesProps, GetThreadStorageFiles, type GetThreadStorageFilesProps, GetThreadStorageImages, type GetThreadStorageImagesProps, GetThreadStorageVideos, type GetThreadStorageVideosProps, GetThreads, GetTier, GetTierAccounts, GetTierImport, GetTierImportItems, GetTierImports, GetTiers, GetVideo, GetVideoCaptions, GetVideoDownloadStatus, GetVideos, type Group, GroupAccess, type GroupCreateInputs, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupMembershipUpdateInputs, type GroupRequest, GroupRequestStatus, type GroupTranslation, type GroupTranslationUpdateInputs, type GroupUpdateInputs, IMAGES_QUERY_KEY, IMAGE_QUERY_KEY, IMAGE_USAGE_QUERY_KEY, IMPORTS_QUERY_KEY, IMPORT_ITEMS_QUERY_KEY, IMPORT_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_CHANNELS_QUERY_KEY, INTEREST_CONTENTS_QUERY_KEY, INTEREST_EVENTS_QUERY_KEY, INTEREST_GROUPS_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_LINE_ITEMS_QUERY_KEY, INVOICE_LINE_ITEM_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_QUERY_KEY, type ISupportedLocale, type Image, type ImageDirectUpload, type ImageDirectUploadInputs, ImageModerationLevel, ImageType, type ImageUpdateInputs, type ImageUsage, type ImageVariant, type ImageWCopyUri, type Import, type ImportCreateInputs, type ImportItem, ImportItemStatus, ImportRooms, type ImportRoomsParams, ImportType, IndexEventPasses, type IndexEventPassesParams, type InfiniteQueryOptions, type InfiniteQueryParams, InitiateVideoDownload, type InitiateVideoDownloadParams, type Integration, type IntegrationCreateInputs, IntegrationType, type IntegrationUpdateInputs, type Interest, type InterestCreateInputs, type InterestInputs, type InterestUpdateInputs, type Invoice, type InvoiceCreateInputs, type InvoiceLineItem, type InvoiceLineItemCreateInputs, type InvoiceLineItemUpdateInputs, InvoiceStatus, type InvoiceUpdateInputs, JoinMeeting, type JoinMeetingParams, LEVELS_QUERY_KEY, LEVEL_ACCOUNTS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_TRANSLATIONS_QUERY_KEY, LEVEL_TRANSLATION_QUERY_KEY, LIVESTREAMS_QUERY_KEY, LIVESTREAM_QUERY_KEY, LIVESTREAM_SESSIONS_QUERY_KEY, LOGINS_QUERY_KEY, LOGIN_ACCOUNTS_QUERY_KEY, LOGIN_AUTH_SESSIONS_QUERY_KEY, LOGIN_DEVICES_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, type LeadCreateInputs, LeadStatus, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkInputs, type LinkPreview, type Livestream, type LivestreamSession, LocationQuestionOption, type Login, MEETINGS_QUERY_KEY, MEETING_LINKS_QUERY_KEY, MEETING_LINK_QUERY_KEY, MEETING_LIVESTREAM_QUERY_KEY, MEETING_PARTICIPANTS_QUERY_KEY, MEETING_PARTICIPANT_QUERY_KEY, MEETING_QUERY_KEY, MEETING_RECORDINGS_QUERY_KEY, MEETING_RECORDING_QUERY_KEY, MEETING_SESSIONS_QUERY_KEY, MEETING_SESSION_MESSAGES_QUERY_KEY, MEETING_SESSION_PARTICIPANTS_QUERY_KEY, MEETING_SESSION_PARTICIPANT_QUERY_KEY, MEETING_SESSION_QUERY_KEY, MEETING_SESSION_SUMMARY_QUERY_KEY, MEETING_SESSION_TRANSCRIPT_QUERY_KEY, MarkNotificationsRead, type MarkNotificationsReadInputs, type MarkNotificationsReadParams, type Match, MatchQuestionType, type MatchUpdateInputs, type Meeting, type MeetingCreateInputs, type MeetingLink, type MeetingLinkCreateInputs, type MeetingLinkUpdateInputs, type MeetingParticipant, type MeetingParticipantCreateInputs, type MeetingParticipantUpdateInputs, type MeetingPresetCreateInputs, type MeetingPresetUpdateInputs, type MeetingRecording, type MeetingRecordingCreateInputs, type MeetingRecordingUpdateInputs, type MeetingSession, type MeetingSessionChatDownload, type MeetingSessionParticipant, type MeetingSessionSummaryDownload, type MeetingSessionTranscriptDownload, MeetingType, type MeetingUpdateInputs, type MentionInputs, MergeInfinitePages, ModerationStatus, type ModulePermissions, type ModulesOrder, type MutationParams, NOTIFICATIONS_QUERY_KEY, NOTIFICATION_COUNT_QUERY_KEY, NOTIFICATION_STATS_QUERY_KEY, type Notification, type NotificationFilters, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, type NotificationStats, NotificationType, ORGANIZATION_ACCOUNT_ATTRIBUTES_QUERY_KEY, ORGANIZATION_ACCOUNT_ATTRIBUTE_QUERY_KEY, ORGANIZATION_DOMAIN_QUERY_KEY, ORGANIZATION_MEMBERSHIP_QUERY_KEY, ORGANIZATION_MODULES_QUERY_KEY, ORGANIZATION_MODULE_EDITABLE_TIERS_QUERY_KEY, ORGANIZATION_MODULE_ENABLED_TIERS_QUERY_KEY, ORGANIZATION_MODULE_QUERY_KEY, ORGANIZATION_MODULE_SETTINGS_QUERY_KEY, ORGANIZATION_MODULE_SETTINGS_TRANSLATIONS_QUERY_KEY, ORGANIZATION_MODULE_SETTINGS_TRANSLATION_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SIDE_EFFECTS_QUERY_KEY, ORGANIZATION_SIDE_EFFECT_QUERY_KEY, ORGANIZATION_SYSTEM_LOGS_QUERY_KEY, ORGANIZATION_SYSTEM_LOG_QUERY_KEY, ORGANIZATION_TEAM_MEMBERS_QUERY_KEY, ORGANIZATION_TEAM_MEMBER_QUERY_KEY, ORGANIZATION_USERS_QUERY_KEY, ORGANIZATION_WEBHOOKS_QUERY_KEY, ORGANIZATION_WEBHOOK_QUERY_KEY, OnSiteScanType, type Organization, OrganizationActionType, type OrganizationMembership, type OrganizationMembershipUpdateInputs, type OrganizationModule, type OrganizationModuleSettings, type OrganizationModuleSettingsTranslation, type OrganizationModuleSettingsTranslationUpdateInputs, type OrganizationModuleSettingsUpdateInputs, OrganizationModuleType, type OrganizationModuleUpdateInputs, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationPaymentIntegrationCreateInputs, type OrganizationPaymentIntegrationUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PAYMENT_TAX_METADATA_QUERY_KEY, PREFERENCES_QUERY_KEY, PRESETS_QUERY_KEY, PRESET_QUERY_KEY, PUSH_DEVICES_QUERY_KEY, PUSH_DEVICE_QUERY_KEY, PageType, type PassAddOn, type PassAttribute, type PassAttributesUpdateInputs, type PassExchange, PassTypeAccessLevel, type PassTypeCreateInputs, type PassTypeExchangeTargetCreateInputs, type PassTypeExchangeTargetUpdateInputs, type PassTypePriceScheduleCreateInputs, type PassTypePriceScheduleUpdateInputs, type PassTypeRefundScheduleCreateInputs, type PassTypeRefundScheduleUpdateInputs, type PassTypeTranslationUpdateInputs, type PassTypeUpdateInputs, PassTypeVisibility, type Payment, type PaymentIntegration, PaymentIntegrationType, type PaymentIntentPurchaseMetadataInputs, type PaymentLineItem, PaymentLineItemType, PaymentType, type PaymentUpdateInputs, type PaypalActivationFormParams, type Preset, PublishActivity, type PublishActivityParams, PurchaseStatus, type PushDevice, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_QUERY_KEY, REQUIRED_ATTRIBUTES_QUERY_KEY, type RecordingAction, type RefundLineItem, RefundOrganizationPayment, type RefundOrganizationPaymentParams, RegenerateMeetingParticipantToken, type RegenerateMeetingParticipantTokenParams, type RegistrationBypass, type RegistrationFollowup, type RegistrationFollowupQuestion, type RegistrationFollowupTranslation, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionChoiceSubQuestion, type RegistrationQuestionChoiceTranslation, type RegistrationQuestionResponse, type RegistrationQuestionResponseChange, type RegistrationQuestionTranslation, RegistrationQuestionType, type RegistrationQuestionWithResponse, type RegistrationSection, type RegistrationSectionQuestion, type RegistrationSectionTranslation, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveAllChannelSubscribers, type RemoveAllChannelSubscribersParams, RemoveAllGroupMembers, type RemoveAllGroupMembersParams, RemoveBookingSpaceTier, type RemoveBookingSpaceTierParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveCustomReportUser, type RemoveCustomReportUserParams, RemoveEventAccessUser, RemoveEventActivationSession, type RemoveEventActivationSessionParams, RemoveEventActivationSessions, type RemoveEventActivationSessionsParams, RemoveEventAddOnPassType, type RemoveEventAddOnPassTypeParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventBlockSession, type RemoveEventBlockSessionParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventCouponTier, type RemoveEventCouponTierParams, RemoveEventFollowupAddOn, type RemoveEventFollowupAddOnParams, RemoveEventFollowupPassType, type RemoveEventFollowupPassTypeParams, RemoveEventFollowupQuestion, type RemoveEventFollowupQuestionParams, RemoveEventFollowupTier, type RemoveEventFollowupTierParams, RemoveEventMatchPass, type RemoveEventMatchPassParams, RemoveEventMediaItemPassType, type RemoveEventMediaItemPassTypeParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventPassAddOn, type RemoveEventPassAddOnParams, RemoveEventPassAttribute, type RemoveEventPassAttributeParams, RemoveEventPassTypeAddOn, type RemoveEventPassTypeAddOnParams, RemoveEventPassTypeExchangeTarget, type RemoveEventPassTypeExchangeTargetParams, RemoveEventPassTypeGroupPassTier, type RemoveEventPassTypeGroupPassTierParams, RemoveEventPassTypeTier, type RemoveEventPassTypeTierParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventReservationPass, type RemoveEventReservationPassParams, RemoveEventRoomTypeTier, type RemoveEventRoomTypeTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionPassType, type RemoveEventSectionPassTypeParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionBlock, type RemoveEventSessionBlockParams, RemoveEventSessionLocationSession, type RemoveEventSessionLocationSessionParams, RemoveEventSessionMatchPass, type RemoveEventSessionMatchPassParams, RemoveEventSessionPassType, type RemoveEventSessionPassTypeParams, RemoveEventSessionQuestionChoiceSubQuestion, type RemoveEventSessionQuestionChoiceSubQuestionParams, RemoveEventSessionSectionQuestion, type RemoveEventSessionSectionQuestionParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTier, type RemoveEventSessionTierParams, RemoveEventSessionTimeSpeaker, type RemoveEventSessionTimeSpeakerParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, RemoveEventSessionVisiblePassType, type RemoveEventSessionVisiblePassTypeParams, RemoveEventSessionVisibleTier, type RemoveEventSessionVisibleTierParams, RemoveEventSpeakerSession, type RemoveEventSpeakerSessionParams, RemoveEventSponsorAccount, type RemoveEventSponsorAccountParams, RemoveEventTrackSession, type RemoveEventTrackSessionParams, RemoveEventTrackSponsor, type RemoveEventTrackSponsorParams, RemoveGroupEvent, type RemoveGroupEventParams, RemoveGroupInterest, type RemoveGroupInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveGroupModerator, type RemoveGroupModeratorParams, RemoveGroupSponsor, type RemoveGroupSponsorParams, RemoveLevelAccount, type RemoveLevelAccountParams, RemoveLoginAccount, type RemoveLoginAccountParams, RemoveOrganizationModuleEditableTier, type RemoveOrganizationModuleEditableTierParams, RemoveOrganizationModuleEnabledTier, type RemoveOrganizationModuleEnabledTierParams, RemoveRoomFromRoomType, type RemoveRoomFromRoomTypeParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSurveyQuestionChoiceSubQuestion, type RemoveSurveyQuestionChoiceSubQuestionParams, RemoveSurveySectionQuestion, type RemoveSurveySectionQuestionParams, RemoveSurveySession, type RemoveSurveySessionParams, RemoveTierAccounts, type RemoveTierAccountsParams, ReorderBookingSpaceQuestionChoices, type ReorderBookingSpaceQuestionChoicesParams, ReorderBookingSpaceQuestions, type ReorderBookingSpaceQuestionsParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventFollowupQuestions, type ReorderEventFollowupQuestionsParams, ReorderEventQuestionChoiceSubQuestions, type ReorderEventQuestionChoiceSubQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, ReorderEventSessionQuestionChoiceSubQuestions, type ReorderEventSessionQuestionChoiceSubQuestionsParams, ReorderEventSessionQuestionChoices, type ReorderEventSessionQuestionChoicesParams, ReorderEventSessionSectionQuestions, type ReorderEventSessionSectionQuestionsParams, ReorderEventSponsorshipLevels, type ReorderEventSponsorshipLevelsParams, ReorderEventSponsorships, type ReorderEventSponsorshipsParams, ReorderSeriesQuestionChoices, type ReorderSeriesQuestionChoicesParams, ReorderSurveyQuestionChoiceSubQuestions, type ReorderSurveyQuestionChoiceSubQuestionsParams, ReorderSurveyQuestionChoices, type ReorderSurveyQuestionChoicesParams, ReorderSurveySectionQuestions, type ReorderSurveySectionQuestionsParams, type ReportFilters, ReportType, RequestImageDirectUpload, type RequestImageDirectUploadParams, ResendRegistrationConfirmationEmail, type ResendRegistrationConfirmationEmailParams, ResetLivestreamStreamKey, type ResetLivestreamStreamKeyParams, RevertChannelContentToDraft, type RevertChannelContentToDraftParams, type Room, type RoomCreateInputs, type RoomUpdateInputs, type Round, type RoundEventQuestion, type RoundEventQuestionUpdataInputs, type RoundSessionQuestion, type RoundSessionQuestionUpdateInputs, SEARCHLISTS_QUERY_KEY, SEARCHLIST_CONNECTED_QUESTIONS_QUERY_KEY, SEARCHLIST_QUERY_KEY, SEARCHLIST_VALUES_QUERY_KEY, SEARCHLIST_VALUE_QUERY_KEY, SEARCH_ORGANIZATION_QUERY_KEY, SELF_API_KEYS_QUERY_KEY, SELF_API_KEY_QUERY_KEY, SELF_MEMBERSHIP_QUERY_KEY, SELF_ORGANIZATIONS_QUERY_KEY, SELF_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_PAYMENTS_QUERY_KEY, SERIES_QUERY_KEY, SERIES_QUESTIONS_QUERY_KEY, SERIES_QUESTION_CHOICES_QUERY_KEY, SERIES_QUESTION_CHOICE_QUERY_KEY, SERIES_QUESTION_QUERY_KEY, SERIES_QUESTION_TRANSLATION_QUERY_KEY, SERIES_REGISTRATIONS_QUERY_KEY, SERIES_REGISTRATION_PASSES_QUERY_KEY, SERIES_REGISTRATION_PAYMENTS_QUERY_KEY, SERIES_REGISTRATION_QUERY_KEY, SERIES_REGISTRATION_RESPONSES_QUERY_KEY, SERIES_TRANSLATIONS_QUERY_KEY, SERIES_TRANSLATION_QUERY_KEY, SET_ACCOUNTS_BY_INTERNAL_REF_ID_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_ADDRESSES_QUERY_DATA, SET_ACCOUNT_BOOKINGS_QUERY_DATA, SET_ACCOUNT_COMMENTS_QUERY_DATA, SET_ACCOUNT_EMAILS_QUERY_DATA, SET_ACCOUNT_EVENTS_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWING_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_INTERESTS_QUERY_DATA, SET_ACCOUNT_INVITATIONS_QUERY_DATA, SET_ACCOUNT_LEADS_QUERY_DATA, SET_ACCOUNT_LEAD_QUERY_DATA, SET_ACCOUNT_LEVELS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_NOTIFICATION_PREFERENCES_QUERY_DATA, SET_ACCOUNT_PAYMENTS_QUERY_DATA, SET_ACCOUNT_PUSH_DEVICES_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_REGISTRATIONS_QUERY_DATA, SET_ACCOUNT_SUPPORT_TICKETS_QUERY_DATA, SET_ACCOUNT_THREADS_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_QUERY_DATA, SET_ALL_EVENT_ADD_ON_QUERY_DATA, SET_ALL_EVENT_PASS_TYPES_QUERY_DATA, SET_ANNOUNCEMENTS_QUERY_DATA, SET_ANNOUNCEMENT_AUDIENCE_QUERY_DATA, SET_ANNOUNCEMENT_EMAILS_QUERY_DATA, SET_ANNOUNCEMENT_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATIONS_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATION_QUERY_DATA, SET_API_LOGS_QUERY_DATA, SET_API_LOG_QUERY_DATA, SET_AUTH_SESSIONS_QUERY_DATA, SET_AUTH_SESSION_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BENEFIT_CLICKS_QUERY_DATA, SET_BENEFIT_QUERY_DATA, SET_BENEFIT_TRANSLATIONS_QUERY_DATA, SET_BENEFIT_TRANSLATION_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACE_PAYMENTS_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATION_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_BOOKING_RESPONSES_QUERY_DATA, SET_BOOKING_SPACES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITIES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITY_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUTS_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUT_QUERY_DATA, SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA, SET_BOOKING_SPACE_PAYMENTS_QUERY_DATA, SET_BOOKING_SPACE_QUERY_DATA, SET_BOOKING_SPACE_QUESTIONS_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_CHOICES_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_CHOICE_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_QUESTION_TRANSLATION_QUERY_DATA, SET_BOOKING_SPACE_SLOTS_QUERY_DATA, SET_BOOKING_SPACE_TIERS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATION_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENT_GUESTS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA, SET_CHANNEL_CONTENT_LIKES_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_CHANNEL_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_TRANSLATION_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CUSTOM_MODULES_QUERY_DATA, SET_CUSTOM_MODULE_QUERY_DATA, SET_CUSTOM_MODULE_TRANSLATIONS_QUERY_DATA, SET_CUSTOM_MODULE_TRANSLATION_QUERY_DATA, SET_CUSTOM_REPORTS_QUERY_DATA, SET_CUSTOM_REPORT_QUERY_DATA, SET_CUSTOM_REPORT_SCHEDULE_QUERY_DATA, SET_CUSTOM_REPORT_USERS_QUERY_DATA, SET_DASHBOARDS_QUERY_DATA, SET_DASHBOARD_ATTRIBUTES_QUERY_DATA, SET_DASHBOARD_QUERY_DATA, SET_DASHBOARD_WIDGETS_QUERY_DATA, SET_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_ENTITY_USE_CODES_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETION_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVATION_SESSIONS_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_ADD_ONS_QUERY_DATA, SET_EVENT_ADD_ON_PASSES_QUERY_DATA, SET_EVENT_ADD_ON_PASS_TYPES_QUERY_DATA, SET_EVENT_ADD_ON_QUERY_DATA, SET_EVENT_ADD_ON_TIERS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATIONS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATION_QUERY_DATA, SET_EVENT_ATTENDEES_QUERY_DATA, SET_EVENT_ATTENDEE_PACKAGES_QUERY_DATA, SET_EVENT_ATTENDEE_PACKAGE_QUERY_DATA, SET_EVENT_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_RESERVATIONS_QUERY_DATA, SET_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_ATTRIBUTES_QUERY_DATA, SET_EVENT_ATTRIBUTE_QUERY_DATA, SET_EVENT_BLOCKS_QUERY_DATA, SET_EVENT_BLOCK_QUERY_DATA, SET_EVENT_BLOCK_SESSIONS_QUERY_DATA, SET_EVENT_COUPONS_QUERY_DATA, SET_EVENT_COUPON_PASSES_QUERY_DATA, SET_EVENT_COUPON_PAYMENTS_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_COUPON_TIERS_QUERY_DATA, SET_EVENT_COUPON_VARIANTS_QUERY_DATA, SET_EVENT_CO_HOSTS_QUERY_DATA, SET_EVENT_DASHBOARD_QUESTIONS_QUERY_DATA, SET_EVENT_EMAIL_QUERY_DATA, SET_EVENT_EMAIL_TRANSLATIONS_QUERY_DATA, SET_EVENT_EMAIL_TRANSLATION_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_FAQ_SECTION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_FAQ_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_FAQ_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_FOLLOWUPS_QUERY_DATA, SET_EVENT_FOLLOWUP_ADDONS_QUERY_DATA, SET_EVENT_FOLLOWUP_PASS_TYPES_QUERY_DATA, SET_EVENT_FOLLOWUP_QUERY_DATA, SET_EVENT_FOLLOWUP_QUESTIONS_QUERY_DATA, SET_EVENT_FOLLOWUP_TIERS_QUERY_DATA, SET_EVENT_FOLLOWUP_TRANSLATIONS_QUERY_DATA, SET_EVENT_FOLLOWUP_TRANSLATION_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_MEDIA_ITEM_PASS_TYPES_QUERY_DATA, SET_EVENT_MEDIA_ITEM_QUERY_DATA, SET_EVENT_MEDIA_ITEM_TRANSLATIONS_QUERY_DATA, SET_EVENT_MEDIA_ITEM_TRANSLATION_QUERY_DATA, SET_EVENT_ON_SITE_QUERY_DATA, SET_EVENT_PACKAGES_QUERY_DATA, SET_EVENT_PACKAGE_PASSES_QUERY_DATA, SET_EVENT_PACKAGE_PASS_QUERY_DATA, SET_EVENT_PACKAGE_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_IMAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_PAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PAGE_TRANSLATION_QUERY_DATA, SET_EVENT_PASS_ACCESSES_QUERY_DATA, SET_EVENT_PASS_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_PASS_ATTRIBUTES_QUERY_DATA, SET_EVENT_PASS_MATCHES_QUERY_DATA, SET_EVENT_PASS_PAYMENTS_QUERY_DATA, SET_EVENT_PASS_QUERY_DATA, SET_EVENT_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_EVENT_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_PASS_RESPONSES_QUERY_DATA, SET_EVENT_PASS_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_PASS_RESPONSE_QUERY_DATA, SET_EVENT_PASS_TRANSFERS_QUERY_DATA, SET_EVENT_PASS_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_PASS_TYPES_QUERY_DATA, SET_EVENT_PASS_TYPE_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_TYPE_EXCHANGE_TARGETS_QUERY_DATA, SET_EVENT_PASS_TYPE_EXCHANGE_TARGET_EXCHANGES_QUERY_DATA, SET_EVENT_PASS_TYPE_EXCHANGE_TARGET_PAYMENTS_QUERY_DATA, SET_EVENT_PASS_TYPE_GROUP_PASS_TIERS_QUERY_DATA, SET_EVENT_PASS_TYPE_PASSES_QUERY_DATA, SET_EVENT_PASS_TYPE_PAYMENTS_QUERY_DATA, SET_EVENT_PASS_TYPE_PRICE_SCHEDULES_QUERY_DATA, SET_EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_DATA, SET_EVENT_PASS_TYPE_QUERY_DATA, SET_EVENT_PASS_TYPE_REFUND_SCHEDULES_QUERY_DATA, SET_EVENT_PASS_TYPE_REFUND_SCHEDULE_QUERY_DATA, SET_EVENT_PASS_TYPE_TIERS_QUERY_DATA, SET_EVENT_PASS_TYPE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PASS_TYPE_TRANSLATION_QUERY_DATA, SET_EVENT_PAYMENTS_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_QUESTIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICES_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_EVENT_QUESTION_QUERY_DATA, SET_EVENT_QUESTION_RESPONSES_QUERY_DATA, SET_EVENT_QUESTION_SUMMARIES_QUERY_DATA, SET_EVENT_QUESTION_SUMMARY_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA, SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA, SET_EVENT_RESERVATIONS_QUERY_DATA, SET_EVENT_RESERVATION_PASSES_QUERY_DATA, SET_EVENT_RESERVATION_QUERY_DATA, SET_EVENT_ROOMS_QUERY_DATA, SET_EVENT_ROOM_QUERY_DATA, SET_EVENT_ROOM_TYPES_QUERY_DATA, SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA, SET_EVENT_ROOM_TYPE_QUERY_DATA, SET_EVENT_ROOM_TYPE_RESERVATIONS_QUERY_DATA, SET_EVENT_ROOM_TYPE_ROOMS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TIERS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_DATA, SET_EVENT_ROOM_TYPE_TRANSLATION_QUERY_DATA, SET_EVENT_ROUNDS_QUERY_DATA, SET_EVENT_ROUND_MATCHES_QUERY_DATA, SET_EVENT_ROUND_MATCH_PASSES_QUERY_DATA, SET_EVENT_ROUND_MATCH_QUERY_DATA, SET_EVENT_ROUND_PASSES_QUERY_DATA, SET_EVENT_ROUND_QUESTIONS_QUERY_DATA, SET_EVENT_ROUND_QUESTIONS_SUMMARY_QUERY_DATA, SET_EVENT_SECTIONS_QUERY_DATA, SET_EVENT_SECTION_ADDONS_QUERY_DATA, SET_EVENT_SECTION_PASS_TYPES_QUERY_DATA, SET_EVENT_SECTION_QUERY_DATA, SET_EVENT_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SECTION_TIERS_QUERY_DATA, SET_EVENT_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSIONS_WITH_ROUNDS_QUERY_DATA, SET_EVENT_SESSION_ACCESSES_QUERY_DATA, SET_EVENT_SESSION_ACCESS_QUERY_DATA, SET_EVENT_SESSION_ACCESS_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_SESSION_ACCESS_SESSION_QUESTION_SECTIONS_QUERY_DATA, SET_EVENT_SESSION_ACCOUNTS_QUERY_DATA, SET_EVENT_SESSION_BLOCKS_QUERY_DATA, SET_EVENT_SESSION_LOCATIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_QUERY_DATA, SET_EVENT_SESSION_LOCATION_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_LOCATION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_PASS_TYPES_QUERY_DATA, SET_EVENT_SESSION_PAYMENTS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SESSION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICES_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_RESPONSES_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_ROUNDS_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCHES_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCH_PASSES_QUERY_DATA, SET_EVENT_SESSION_ROUND_MATCH_QUERY_DATA, SET_EVENT_SESSION_ROUND_PASSES_QUERY_DATA, SET_EVENT_SESSION_ROUND_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_ROUND_QUESTIONS_SUMMARY_QUERY_DATA, SET_EVENT_SESSION_SECTIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_QUERY_DATA, SET_EVENT_SESSION_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_SPEAKERS_QUERY_DATA, SET_EVENT_SESSION_SPONSORS_QUERY_DATA, SET_EVENT_SESSION_TIERS_QUERY_DATA, SET_EVENT_SESSION_TIMES_QUERY_DATA, SET_EVENT_SESSION_TIME_QUERY_DATA, SET_EVENT_SESSION_TIME_SPEAKERS_QUERY_DATA, SET_EVENT_SESSION_TIME_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_TIME_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_TRACKS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATION_QUERY_DATA, SET_EVENT_SESSION_VISIBLE_PASS_TYPES_QUERY_DATA, SET_EVENT_SESSION_VISIBLE_TIERS_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPEAKER_SESSIONS_QUERY_DATA, SET_EVENT_SPEAKER_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPEAKER_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORSHIPS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPONSORSHIP_LEVEL_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORSHIP_TRANSLATIONS_QUERY_DATA, SET_EVENT_SPONSORSHIP_TRANSLATION_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_EVENT_SPONSOR_ACCOUNTS_QUERY_DATA, SET_EVENT_TEMPLATES_QUERY_DATA, SET_EVENT_TIERS_QUERY_DATA, SET_EVENT_TRACKS_QUERY_DATA, SET_EVENT_TRACK_QUERY_DATA, SET_EVENT_TRACK_SESSIONS_QUERY_DATA, SET_EVENT_TRACK_SPONSORS_QUERY_DATA, SET_EVENT_TRACK_TRANSLATIONS_QUERY_DATA, SET_EVENT_TRACK_TRANSLATION_QUERY_DATA, SET_EVENT_TRANSLATIONS_QUERY_DATA, SET_EVENT_TRANSLATION_QUERY_DATA, SET_FEATURED_CHANNELS_QUERY_DATA, SET_FILES_QUERY_DATA, SET_FILE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INTERESTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_INVITATION_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_MODERATORS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_GROUP_TRANSLATIONS_QUERY_DATA, SET_GROUP_TRANSLATION_QUERY_DATA, SET_IMAGES_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_IMAGE_USAGE_QUERY_DATA, SET_IMPORT_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_QUERY_DATA, SET_INTEREST_CHANNELS_QUERY_DATA, SET_INTEREST_CONTENTS_QUERY_DATA, SET_INTEREST_EVENTS_QUERY_DATA, SET_INTEREST_GROUPS_QUERY_DATA, SET_INTEREST_QUERY_DATA, SET_INVOICES_QUERY_DATA, SET_INVOICE_LINE_ITEMS_QUERY_DATA, SET_INVOICE_LINE_ITEM_QUERY_DATA, SET_INVOICE_PAYMENTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_ACCOUNTS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_TRANSLATIONS_QUERY_DATA, SET_LEVEL_TRANSLATION_QUERY_DATA, SET_LIVESTREAMS_QUERY_DATA, SET_LIVESTREAM_QUERY_DATA, SET_LIVESTREAM_SESSIONS_QUERY_DATA, SET_LOGIN_AUTH_SESSIONS_QUERY_DATA, SET_MEETINGS_QUERY_DATA, SET_MEETING_LINKS_QUERY_DATA, SET_MEETING_LINK_QUERY_DATA, SET_MEETING_LIVESTREAM_QUERY_DATA, SET_MEETING_PARTICIPANTS_QUERY_DATA, SET_MEETING_PARTICIPANT_QUERY_DATA, SET_MEETING_QUERY_DATA, SET_MEETING_RECORDINGS_QUERY_DATA, SET_MEETING_RECORDING_QUERY_DATA, SET_MEETING_SESSIONS_QUERY_DATA, SET_MEETING_SESSION_MESSAGES_QUERY_DATA, SET_MEETING_SESSION_PARTICIPANTS_QUERY_DATA, SET_MEETING_SESSION_PARTICIPANT_QUERY_DATA, SET_MEETING_SESSION_QUERY_DATA, SET_MEETING_SESSION_SUMMARY_QUERY_DATA, SET_MEETING_SESSION_TRANSCRIPT_QUERY_DATA, SET_NOTIFICATIONS_QUERY_DATA, SET_NOTIFICATION_COUNT_QUERY_DATA, SET_NOTIFICATION_STATS_QUERY_DATA, SET_ORGANIZATION_ACCOUNT_ATTRIBUTES_QUERY_DATA, SET_ORGANIZATION_ACCOUNT_ATTRIBUTE_QUERY_DATA, SET_ORGANIZATION_DOMAIN_QUERY_DATA, SET_ORGANIZATION_MEMBERSHIP_QUERY_DATA, SET_ORGANIZATION_MODULES_QUERY_DATA, SET_ORGANIZATION_MODULE_EDITABLE_TIERS_QUERY_DATA, SET_ORGANIZATION_MODULE_ENABLED_TIERS_QUERY_DATA, SET_ORGANIZATION_MODULE_QUERY_DATA, SET_ORGANIZATION_MODULE_SETTINGS_QUERY_DATA, SET_ORGANIZATION_MODULE_SETTINGS_TRANSLATIONS_QUERY_DATA, SET_ORGANIZATION_MODULE_SETTINGS_TRANSLATION_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATION_QUERY_DATA, SET_ORGANIZATION_QUERY_DATA, SET_ORGANIZATION_SIDE_EFFECTS_QUERY_DATA, SET_ORGANIZATION_SIDE_EFFECT_QUERY_DATA, SET_ORGANIZATION_SYSTEM_LOGS_QUERY_DATA, SET_ORGANIZATION_SYSTEM_LOG_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBERS_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBER_QUERY_DATA, SET_ORGANIZATION_USERS_QUERY_DATA, SET_ORGANIZATION_WEBHOOKS_QUERY_DATA, SET_ORGANIZATION_WEBHOOK_QUERY_DATA, SET_PASS_TYPE_COUPONS_QUERY_DATA, SET_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PAYMENT_TAX_METADATA_QUERY_DATA, SET_PREFERENCES_QUERY_DATA, SET_PRESETS_QUERY_DATA, SET_PRESET_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_REQUIRED_ATTRIBUTES_QUERY_DATA, SET_SEARCHLISTS_QUERY_DATA, SET_SEARCHLIST_CONNECTED_QUESTIONS_QUERY_DATA, SET_SEARCHLIST_QUERY_DATA, SET_SEARCHLIST_VALUES_QUERY_DATA, SET_SEARCHLIST_VALUE_QUERY_DATA, SET_SEARCH_ORGANIZATION_QUERY_DATA, SET_SELF_API_KEYS_QUERY_DATA, SET_SELF_API_KEY_QUERY_DATA, SET_SELF_MEMBERSHIP_QUERY_DATA, SET_SELF_ORGANIZATIONS_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SERIES_QUESTIONS_QUERY_DATA, SET_SERIES_QUESTION_CHOICES_QUERY_DATA, SET_SERIES_QUESTION_CHOICE_QUERY_DATA, SET_SERIES_QUESTION_QUERY_DATA, SET_SERIES_REGISTRATION_QUERY_DATA, SET_SERIES_REGISTRATION_RESPONSES_QUERY_DATA, SET_SERIES_TRANSLATIONS_QUERY_DATA, SET_SERIES_TRANSLATION_QUERY_DATA, SET_STREAM_INPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUT_QUERY_DATA, SET_STREAM_INPUT_QUERY_DATA, SET_STREAM_SESSIONS_QUERY_DATA, SET_STREAM_SESSION_CHAT_QUERY_DATA, SET_STREAM_SESSION_QUERY_DATA, SET_STREAM_SESSION_SUBSCRIPTIONS_QUERY_DATA, SET_STREAM_VIDEOS_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_ACTIVITY_QUERY_DATA, SET_SUPPORT_TICKET_MESSAGES_QUERY_DATA, SET_SUPPORT_TICKET_NOTES_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_SUPPORT_TICKET_VIEWER_QUERY_DATA, SET_SURVEYS_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_QUESTIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICES_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_DATA, SET_SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_DATA, SET_SURVEY_QUESTION_QUERY_DATA, SET_SURVEY_QUESTION_RESPONSES_QUERY_DATA, SET_SURVEY_QUESTION_SECTIONS_QUERY_DATA, SET_SURVEY_QUESTION_TRANSLATIONS_QUERY_DATA, SET_SURVEY_QUESTION_TRANSLATION_QUERY_DATA, SET_SURVEY_SECTIONS_QUERY_DATA, SET_SURVEY_SECTION_QUERY_DATA, SET_SURVEY_SECTION_QUESTIONS_QUERY_DATA, SET_SURVEY_SECTION_TRANSLATIONS_QUERY_DATA, SET_SURVEY_SECTION_TRANSLATION_QUERY_DATA, SET_SURVEY_SESSIONS_QUERY_DATA, SET_SURVEY_SUBMISSION_QUERY_DATA, SET_SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_DATA, SET_SURVEY_TRANSLATIONS_QUERY_DATA, SET_SURVEY_TRANSLATION_QUERY_DATA, SET_TAX_CODES_QUERY_DATA, SET_TAX_INTEGRATIONS_QUERY_DATA, SET_TAX_INTEGRATION_QUERY_DATA, SET_TAX_LOGS_QUERY_DATA, SET_TAX_LOG_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_MESSAGES_POLL_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_FILES_QUERY_DATA, SET_THREAD_MESSAGE_IMAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REACTIONS_QUERY_DATA, SET_THREAD_MESSAGE_VIDEOS_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_THREAD_STORAGE_FILES_QUERY_DATA, SET_THREAD_STORAGE_IMAGES_QUERY_DATA, SET_THREAD_STORAGE_VIDEOS_QUERY_DATA, SET_TIERS_QUERY_DATA, SET_TIER_ACCOUNTS_QUERY_DATA, SET_TIER_IMPORT_QUERY_DATA, SET_TIER_QUERY_DATA, SET_VIDEOS_QUERY_DATA, SET_VIDEO_CAPTIONS_QUERY_DATA, SET_VIDEO_DOWNLOAD_STATUS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_INPUTS_QUERY_KEY, STREAM_INPUT_OUTPUTS_QUERY_KEY, STREAM_INPUT_OUTPUT_QUERY_KEY, STREAM_QUERY_KEY, STREAM_SESSIONS_QUERY_KEY, STREAM_SESSION_CHAT_QUERY_KEY, STREAM_SESSION_QUERY_KEY, STREAM_SESSION_SUBSCRIPTIONS_QUERY_KEY, STREAM_VIDEOS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_ACTIVITY_QUERY_KEY, SUPPORT_TICKET_MESSAGES_QUERY_KEY, SUPPORT_TICKET_NOTES_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, SUPPORT_TICKET_VIEWER_QUERY_KEY, SURVEYS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTIONS_QUERY_KEY, SURVEY_QUESTION_CHOICES_QUERY_KEY, SURVEY_QUESTION_CHOICE_QUERY_KEY, SURVEY_QUESTION_CHOICE_QUESTIONS_QUERY_KEY, SURVEY_QUESTION_CHOICE_TRANSLATIONS_QUERY_KEY, SURVEY_QUESTION_CHOICE_TRANSLATION_QUERY_KEY, SURVEY_QUESTION_QUERY_KEY, SURVEY_QUESTION_RESPONSES_QUERY_KEY, SURVEY_QUESTION_SECTIONS_QUERY_KEY, SURVEY_QUESTION_TRANSLATIONS_QUERY_KEY, SURVEY_QUESTION_TRANSLATION_QUERY_KEY, SURVEY_SECTIONS_QUERY_KEY, SURVEY_SECTION_QUERY_KEY, SURVEY_SECTION_QUESTIONS_QUERY_KEY, SURVEY_SECTION_TRANSLATIONS_QUERY_KEY, SURVEY_SECTION_TRANSLATION_QUERY_KEY, SURVEY_SESSIONS_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_RESPONSE_CHANGES_QUERY_KEY, SURVEY_TRANSLATIONS_QUERY_KEY, SURVEY_TRANSLATION_QUERY_KEY, type Schedule, type SearchField, type SearchList, type SearchListConnectedQuestion, type SearchListCreateInputs, type SearchListUpdateInputs, type SearchListValue, type SearchListValueCreateInputs, type SearchListValueUpdateInputs, SearchOrganization, type SearchOrganizationFilters, type SegmentInputs, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, SendAnnouncementPreview, type SendAnnouncementPreviewParams, SendInvoice, type SendInvoiceParams, type Series, type SeriesCreateInputs, type SeriesQuestion, type SeriesQuestionChoice, type SeriesQuestionChoiceCreateInputs, type SeriesQuestionChoiceTranslation, type SeriesQuestionChoiceUpdateInputs, type SeriesQuestionCreateInputs, type SeriesQuestionTranslation, type SeriesQuestionTranslationUpdateInputs, SeriesQuestionType, type SeriesQuestionUpdateInputs, type SeriesRegistration, type SeriesRegistrationCreateInputs, type SeriesRegistrationQuestionResponse, type SeriesRegistrationResponsesUpdateInputs, type SeriesRegistrationUpdateInputs, type SeriesTranslation, type SeriesTranslationUpdateInputs, type SeriesUpdateInputs, SetEventLocation, type SetEventLocationParams, type SideEffect, SideEffectActionType, SideEffectTriggerType, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StandardReport, StartEventRoundMatchmaking, type StartEventRoundMatchmakingParams, StartEventSessionRoundMatchmaking, type StartEventSessionRoundMatchmakingParams, type StorageConfig, type StreamInput, type StreamInputCreateInputs, type StreamInputDetails, type StreamInputOutput, type StreamInputOutputCreateInputs, type StreamInputOutputUpdateInputs, type StreamInputUpdateInputs, type StreamOutputCreateInputs, type StreamSession, type StreamSessionChatMessage, type StreamSessionSubscription, type StripeActivationFormParams, type SummaryData, type SupportTicket, type SupportTicketActivityLog, SupportTicketActivitySource, SupportTicketActivityType, type SupportTicketCreateInputs, type SupportTicketMessage, type SupportTicketMessageCreateInputs, SupportTicketMessageSource, type SupportTicketMessageUpdateInputs, type SupportTicketNote, type SupportTicketNoteCreateInputs, type SupportTicketNoteUpdateInputs, SupportTicketState, SupportTicketType, type SupportTicketUpdateInputs, type SupportTicketViewer, SupportedLocale, type Survey, type SurveyCreateInputs, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionChoiceCreateInputs, type SurveyQuestionChoiceSubQuestion, type SurveyQuestionChoiceTranslation, type SurveyQuestionChoiceTranslationUpdateInputs, type SurveyQuestionChoiceUpdateInputs, type SurveyQuestionCreateInputs, type SurveyQuestionResponse, type SurveyQuestionResponseChange, type SurveyQuestionTranslation, type SurveyQuestionTranslationUpdateInputs, SurveyQuestionType, type SurveyQuestionUpdateInputs, type SurveySection, type SurveySectionCreateInputs, type SurveySectionQuestion, type SurveySectionTranslation, type SurveySectionTranslationUpdateInputs, type SurveySectionUpdateInputs, SurveyStatus, type SurveySubmission, type SurveySubmissionUpdateInputs, type SurveyTranslation, type SurveyTranslationUpdateInputs, type SurveyUpdateInputs, SwitchImage, type SwitchImageParams, SyncAccount, type SyncAccountParams, SyncAccounts, type SyncAccountsParams, SyncEventAttendees, type SyncEventAttendeesParams, SyncEventCouponToVariants, type SyncEventCouponToVariantsParams, type SystemEventLog, SystemEventLogStatus, TAX_CODES_QUERY_KEY, TAX_INTEGRATIONS_QUERY_KEY, TAX_INTEGRATION_QUERY_KEY, TAX_LOGS_QUERY_KEY, TAX_LOG_QUERY_KEY, THREADS_QUERY_KEY, THREAD_ACCOUNTS_QUERY_KEY, THREAD_MESSAGES_POLL_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_FILES_QUERY_KEY, THREAD_MESSAGE_IMAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REACTIONS_QUERY_KEY, THREAD_MESSAGE_VIDEOS_QUERY_KEY, THREAD_QUERY_KEY, THREAD_STORAGE_FILES_QUERY_KEY, THREAD_STORAGE_IMAGES_QUERY_KEY, THREAD_STORAGE_VIDEOS_QUERY_KEY, TIERS_QUERY_KEY, TIER_ACCOUNTS_QUERY_KEY, TIER_IMPORTS_QUERY_KEY, TIER_IMPORT_ITEMS_QUERY_KEY, TIER_IMPORT_QUERY_KEY, TIER_QUERY_KEY, type TableChartSummaryData, type TaxCode, type TaxIntegration, type TaxIntegrationCreateInputs, type TaxIntegrationLog, TaxIntegrationLogType, TaxIntegrationType, type TaxIntegrationUpdateInputs, TaxLocationType, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, TestTaxIntegration, type TestTaxIntegrationParams, type Thread, type ThreadAccount, type ThreadAccountUpdateInputs, type ThreadAccountsAddInputs, type ThreadCreateInputs, type ThreadMessage, type ThreadMessageCreateInputs, type ThreadMessageEntity, type ThreadMessageReaction, type ThreadMessageReactionCreateInputs, type ThreadMessageReactionUpdateInputs, type ThreadMessageRead, ThreadMessageType, type ThreadMessageUpdateInputs, ThreadType, type ThreadUpdateInputs, type Tier, type TierCreateInputs, type TierUpdateInputs, ToggleOrganizationPaymentIntegration, type ToggleOrganizationPaymentIntegrationParams, ToggleTaxIntegration, type ToggleTaxIntegrationParams, type Transfer, TransferEventPass, type TransferEventPassParams, type TransferLog, TransformPrice, type TriggerCreateInputs, type TriggerUpdateInputs, UndoCheckInBooking, type UndoCheckInBookingParams, UndoCheckinEventPass, type UndoCheckinEventPassParams, UpdateAccount, UpdateAccountAddress, type UpdateAccountAddressParams, UpdateAccountAttribute, type UpdateAccountAttributeParams, UpdateAccountLead, type UpdateAccountLeadParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateActivitySchedule, type UpdateActivityScheduleParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateAnnouncementTranslation, type UpdateAnnouncementTranslationParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateBooking, type UpdateBookingParams, UpdateBookingPlace, type UpdateBookingPlaceParams, UpdateBookingPlaceTranslation, type UpdateBookingPlaceTranslationParams, UpdateBookingSpace, UpdateBookingSpaceAvailability, type UpdateBookingSpaceAvailabilityParams, UpdateBookingSpaceBlackout, type UpdateBookingSpaceBlackoutParams, type UpdateBookingSpaceParams, UpdateBookingSpaceQuestion, UpdateBookingSpaceQuestionChoice, type UpdateBookingSpaceQuestionChoiceParams, UpdateBookingSpaceQuestionChoiceTranslation, type UpdateBookingSpaceQuestionChoiceTranslationParams, type UpdateBookingSpaceQuestionParams, UpdateBookingSpaceQuestionTranslation, type UpdateBookingSpaceQuestionTranslationParams, UpdateBookingSpaceTranslation, type UpdateBookingSpaceTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateCustomModule, type UpdateCustomModuleParams, UpdateCustomModuleTranslation, type UpdateCustomModuleTranslationParams, UpdateCustomReport, type UpdateCustomReportParams, UpdateDashboard, type UpdateDashboardParams, UpdateDashboardWidget, type UpdateDashboardWidgetParams, UpdateEvent, UpdateEventActivation, UpdateEventActivationCompletion, type UpdateEventActivationCompletionParams, type UpdateEventActivationParams, UpdateEventActivationTranslation, type UpdateEventActivationTranslationParams, UpdateEventAddOn, type UpdateEventAddOnParams, UpdateEventAddOnTranslation, type UpdateEventAddOnTranslationParams, UpdateEventAttendee, UpdateEventAttendeePackage, type UpdateEventAttendeePackageParams, type UpdateEventAttendeeParams, UpdateEventAttribute, type UpdateEventAttributeParams, UpdateEventBadgeTemplate, type UpdateEventBadgeTemplateParams, UpdateEventBlock, type UpdateEventBlockParams, UpdateEventCheckinCode, type UpdateEventCheckinCodeParams, UpdateEventCoupon, type UpdateEventCouponParams, UpdateEventEmail, type UpdateEventEmailParams, UpdateEventEmailTranslation, type UpdateEventEmailTranslationParams, UpdateEventFaqSection, type UpdateEventFaqSectionParams, UpdateEventFaqSectionQuestion, type UpdateEventFaqSectionQuestionParams, UpdateEventFaqSectionQuestionTranslation, type UpdateEventFaqSectionQuestionTranslationParams, UpdateEventFaqSectionTranslation, type UpdateEventFaqSectionTranslationParams, UpdateEventFollowup, type UpdateEventFollowupParams, UpdateEventFollowupQuestion, type UpdateEventFollowupQuestionParams, UpdateEventFollowupTranslation, type UpdateEventFollowupTranslationParams, UpdateEventMatch, type UpdateEventMatchParams, UpdateEventMediaItem, type UpdateEventMediaItemParams, UpdateEventMediaItemTranslation, type UpdateEventMediaItemTranslationParams, UpdateEventPackage, type UpdateEventPackageParams, UpdateEventPackagePass, type UpdateEventPackagePassParams, UpdateEventPackageTranslation, type UpdateEventPackageTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, UpdateEventPassAttributes, type UpdateEventPassAttributesParams, UpdateEventPassFollowupResponses, type UpdateEventPassFollowupResponsesParams, type UpdateEventPassParams, UpdateEventPassResponse, type UpdateEventPassResponseInputs, type UpdateEventPassResponseParams, UpdateEventPassResponses, type UpdateEventPassResponsesInputs, type UpdateEventPassResponsesParams, UpdateEventPassSingleFollowupResponses, type UpdateEventPassSingleFollowupResponsesParams, UpdateEventPassType, UpdateEventPassTypeExchangeTarget, type UpdateEventPassTypeExchangeTargetParams, type UpdateEventPassTypeParams, UpdateEventPassTypePriceSchedule, UpdateEventPassTypeRefundSchedule, UpdateEventPassTypeTranslation, type UpdateEventPassTypeTranslationParams, UpdateEventPassesReady, type UpdateEventPassesReadyParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, UpdateEventReservation, type UpdateEventReservationParams, UpdateEventRoomType, UpdateEventRoomTypeAddOnDetails, type UpdateEventRoomTypeAddOnDetailsParams, type UpdateEventRoomTypeParams, UpdateEventRoomTypePassTypeDetails, type UpdateEventRoomTypePassTypeDetailsParams, UpdateEventRoomTypeTranslation, type UpdateEventRoomTypeTranslationParams, UpdateEventRoundQuestion, type UpdateEventRoundQuestionParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, UpdateEventSessionAccess, type UpdateEventSessionAccessParams, UpdateEventSessionAccessResponses, type UpdateEventSessionAccessResponsesParams, UpdateEventSessionLocation, type UpdateEventSessionLocationParams, UpdateEventSessionLocationTranslation, type UpdateEventSessionLocationTranslationParams, UpdateEventSessionMatch, type UpdateEventSessionMatchParams, type UpdateEventSessionParams, UpdateEventSessionPrice, type UpdateEventSessionPriceParams, UpdateEventSessionQuestion, UpdateEventSessionQuestionChoice, type UpdateEventSessionQuestionChoiceParams, UpdateEventSessionQuestionChoiceSubQuestion, type UpdateEventSessionQuestionChoiceSubQuestionParams, UpdateEventSessionQuestionChoiceTranslation, type UpdateEventSessionQuestionChoiceTranslationParams, type UpdateEventSessionQuestionParams, UpdateEventSessionQuestionTranslation, type UpdateEventSessionQuestionTranslationParams, UpdateEventSessionRoundQuestion, type UpdateEventSessionRoundQuestionParams, UpdateEventSessionSection, type UpdateEventSessionSectionParams, UpdateEventSessionSectionQuestion, type UpdateEventSessionSectionQuestionParams, UpdateEventSessionSectionTranslation, type UpdateEventSessionSectionTranslationParams, UpdateEventSessionTime, type UpdateEventSessionTimeParams, UpdateEventSessionTimeTranslation, type UpdateEventSessionTimeTranslationParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, UpdateEventSponsorship, UpdateEventSponsorshipLevel, type UpdateEventSponsorshipLevelParams, UpdateEventSponsorshipLevelTranslation, type UpdateEventSponsorshipLevelTranslationParams, type UpdateEventSponsorshipParams, UpdateEventSponsorshipTranslation, type UpdateEventSponsorshipTranslationParams, UpdateEventTrack, type UpdateEventTrackParams, UpdateEventTrackTranslation, type UpdateEventTrackTranslationParams, UpdateEventTranslation, type UpdateEventTranslationParams, UpdateFile, type UpdateFileParams, UpdateGroup, type UpdateGroupParams, UpdateGroupTranslation, type UpdateGroupTranslationParams, UpdateImage, type UpdateImageParams, UpdateIntegration, type UpdateIntegrationParams, UpdateInterest, type UpdateInterestParams, UpdateInvoice, UpdateInvoiceLineItem, type UpdateInvoiceLineItemParams, type UpdateInvoiceParams, UpdateLevel, type UpdateLevelParams, UpdateLevelTranslation, type UpdateLevelTranslationParams, UpdateLoginEmail, type UpdateLoginEmailParams, UpdateLoginPassword, type UpdateLoginPasswordParams, UpdateMeeting, UpdateMeetingLink, type UpdateMeetingLinkParams, type UpdateMeetingParams, UpdateMeetingParticipant, type UpdateMeetingParticipantParams, UpdateOrganization, UpdateOrganizationDomain, type UpdateOrganizationDomainParams, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationModule, type UpdateOrganizationModuleParams, UpdateOrganizationModuleSettings, type UpdateOrganizationModuleSettingsParams, UpdateOrganizationModuleSettingsTranslation, type UpdateOrganizationModuleSettingsTranslationParams, type UpdateOrganizationParams, UpdateOrganizationPaymentIntegration, type UpdateOrganizationPaymentIntegrationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationWebhook, type UpdateOrganizationWebhookParams, UpdatePayment, type UpdatePaymentParams, UpdatePreferences, type UpdatePreferencesParams, UpdatePreset, type UpdatePresetParams, UpdateRoom, type UpdateRoomParams, UpdateSearchList, type UpdateSearchListParams, UpdateSearchListValue, type UpdateSearchListValueParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateSeriesQuestion, UpdateSeriesQuestionChoice, type UpdateSeriesQuestionChoiceParams, type UpdateSeriesQuestionParams, UpdateSeriesQuestionTranslation, type UpdateSeriesQuestionTranslationParams, UpdateSeriesRegistration, type UpdateSeriesRegistrationParams, UpdateSeriesRegistrationResponses, type UpdateSeriesRegistrationResponsesParams, UpdateSeriesTranslation, type UpdateSeriesTranslationParams, UpdateStream, UpdateStreamInputConfig, type UpdateStreamInputConfigParams, UpdateStreamInputOutput, type UpdateStreamInputOutputParams, type UpdateStreamParams, UpdateSupportTicket, type UpdateSupportTicketParams, UpdateSurvey, type UpdateSurveyParams, UpdateSurveyQuestion, UpdateSurveyQuestionChoice, type UpdateSurveyQuestionChoiceParams, UpdateSurveyQuestionChoiceSubQuestion, type UpdateSurveyQuestionChoiceSubQuestionParams, UpdateSurveyQuestionChoiceTranslation, type UpdateSurveyQuestionChoiceTranslationParams, type UpdateSurveyQuestionParams, UpdateSurveyQuestionTranslation, type UpdateSurveyQuestionTranslationParams, UpdateSurveySection, type UpdateSurveySectionParams, UpdateSurveySectionQuestion, type UpdateSurveySectionQuestionParams, UpdateSurveySectionTranslation, type UpdateSurveySectionTranslationParams, UpdateSurveySubmission, type UpdateSurveySubmissionParams, UpdateSurveySubmissionResponses, type UpdateSurveySubmissionResponsesParams, UpdateSurveyTranslation, type UpdateSurveyTranslationParams, UpdateTaxIntegration, type UpdateTaxIntegrationParams, UpdateThread, UpdateThreadAccount, type UpdateThreadAccountParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, UploadVideoCaptions, type UploadVideoCaptionsParams, UpsertCustomReportSchedule, type UpsertCustomReportScheduleParams, UpsertLinkPreview, type UpsertLinkPreviewParams, type User, type UserApiKey, type UserApiKeyCreateInputs, type UserCreateInputs, type UserImageUpdateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_CAPTIONS_QUERY_KEY, VIDEO_DOWNLOAD_STATUS_QUERY_KEY, VIDEO_QUERY_KEY, VerifyOrganizationWebhook, type VerifyOrganizationWebhookParams, type Video, type VideoCaption, type VideoDownloadResult, type VideoDownloadStatus, VideoSource, VideoStatus, type VideoUpdateInputs, VoidInvoice, type VoidInvoiceParams, type WebSocketConnection, type Webhook, type WebhookCreateInputs, type WebhookUpdateInputs, WidgetCategory, WidgetType, ZERO_DECIMAL_CURRENCIES, getCurrencySymbol, isUUID, isZeroDecimalCurrency, setFirstPageData, useAcceptGroupRequest, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddBookingSpaceTier, useAddChannelSubscriber, useAddCustomReportUser, useAddEventAccessUser, useAddEventActivationSession, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventBlockSession, useAddEventCoHost, useAddEventCouponTier, useAddEventFollowupAddOn, useAddEventFollowupPassType, useAddEventFollowupQuestion, useAddEventFollowupTier, useAddEventMatchPass, useAddEventMediaItemPassType, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeExchangeTarget, useAddEventPassTypeGroupPassTier, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventReservationPass, useAddEventRoomTypeTier, useAddEventSectionAddOn, useAddEventSectionPassType, useAddEventSectionQuestion, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionBlock, useAddEventSessionLocationSession, useAddEventSessionMatchPass, useAddEventSessionPassType, useAddEventSessionQuestionChoiceSubQuestion, useAddEventSessionSectionQuestion, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTier, useAddEventSessionTimeSpeaker, useAddEventSessionTrack, useAddEventSessionVisiblePassType, useAddEventSessionVisibleTier, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddLoginAccount, useAddMeetingLivestream, useAddOrganizationModuleEditableTier, useAddOrganizationModuleEnabledTier, useAddOrganizationUser, useAddRoomToRoomType, useAddSeriesEvent, useAddSurveyQuestionChoiceSubQuestion, useAddSurveySectionQuestion, useAddSurveySession, useAddThreadAccounts, useApproveEventPass, useArchiveActivity, useAttachBookingSpaceQuestionSearchList, useAttachEventQuestionSearchList, useAttachEventSessionQuestionSearchList, useAttachSurveyQuestionSearchList, useBulkUploadSearchListValues, useCancelActivitySchedule, useCancelAnnouncementSchedule, useCancelBooking, useCancelChannelContentPublishSchedule, useCancelEventPass, useCancelEventPassTransfer, useCancelGroupInvitation, useCheckInBooking, useCheckinEventPass, useCloneEvent, useCloneEventSession, useCloseStreamSession, useConfirmImageUpload, useConfirmLogin, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAccountAttribute, useCreateAccountInvitations, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateBenefit, useCreateBooking, useCreateBookingPlace, useCreateBookingSpace, useCreateBookingSpaceAvailability, useCreateBookingSpaceBlackout, useCreateBookingSpaceQuestion, useCreateBookingSpaceQuestionChoice, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateCustomModule, useCreateCustomReport, useCreateDashboard, useCreateDashboardWidget, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventAddOn, useCreateEventAttendee, useCreateEventAttendeePackage, useCreateEventAttribute, useCreateEventBlock, useCreateEventCoupon, useCreateEventCouponVariants, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFollowup, useCreateEventMatch, useCreateEventMediaItem, useCreateEventPackage, useCreateEventPackagePass, useCreateEventPage, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventRegistrationBypass, useCreateEventReservation, useCreateEventRoomType, useCreateEventRound, useCreateEventSection, useCreateEventSession, useCreateEventSessionAccess, useCreateEventSessionLocation, useCreateEventSessionMatch, useCreateEventSessionPrice, useCreateEventSessionQuestion, useCreateEventSessionQuestionChoice, useCreateEventSessionRound, useCreateEventSessionSection, useCreateEventSessionTime, useCreateEventSpeaker, useCreateEventSponsorship, useCreateEventSponsorshipLevel, useCreateEventTrack, useCreateGroup, useCreateGroupInvitations, useCreateImport, useCreateIntegration, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateMeeting, useCreateMeetingLink, useCreateMeetingParticipant, useCreateOrganizationPaymentIntegration, useCreateOrganizationSideEffect, useCreateOrganizationTeamMember, useCreateOrganizationWebhook, useCreatePreset, useCreateRoom, useCreateSearchList, useCreateSearchListValue, useCreateSelfApiKey, useCreateSeries, useCreateSeriesQuestion, useCreateSeriesQuestionChoice, useCreateSeriesRegistration, useCreateStreamInput, useCreateStreamInputOutput, useCreateSupportTicket, useCreateSupportTicketMessage, useCreateSupportTicketNote, useCreateSurvey, useCreateSurveyQuestion, useCreateSurveyQuestionChoice, useCreateSurveySection, useCreateTaxIntegration, useCreateThread, useCreateThreadMessage, useCreateThreadMessageFile, useCreateThreadMessageImage, useCreateThreadMessageReaction, useCreateThreadMessageVideo, useCreateTier, useDeleteAccount, useDeleteAccountAddress, useDeleteAccountAttribute, useDeleteAccountInvitation, useDeleteAccountLead, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteBooking, useDeleteBookingPlace, useDeleteBookingPlaceTranslation, useDeleteBookingSpace, useDeleteBookingSpaceAvailability, useDeleteBookingSpaceBlackout, useDeleteBookingSpaceQuestion, useDeleteBookingSpaceQuestionChoice, useDeleteBookingSpaceQuestionChoiceTranslation, useDeleteBookingSpaceQuestionTranslation, useDeleteBookingSpaceTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteCustomModule, useDeleteCustomModuleTranslation, useDeleteCustomReport, useDeleteCustomReportSchedule, useDeleteDashboard, useDeleteDashboardWidget, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventAttendeePackage, useDeleteEventAttribute, useDeleteEventBlock, useDeleteEventCoupon, useDeleteEventCouponVariants, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventFollowup, useDeleteEventFollowupTranslation, useDeleteEventLocation, useDeleteEventMatch, useDeleteEventMediaItem, useDeleteEventMediaItemTranslation, useDeleteEventPackage, useDeleteEventPackagePass, useDeleteEventPackageTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventPass, useDeleteEventPassType, useDeleteEventPassTypePriceSchedule, useDeleteEventPassTypeRefundSchedule, useDeleteEventPassTypeTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionTranslation, useDeleteEventRegistrationBypass, useDeleteEventReservation, useDeleteEventRoomType, useDeleteEventRoomTypeTranslation, useDeleteEventRound, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionAccess, useDeleteEventSessionLocation, useDeleteEventSessionLocationTranslation, useDeleteEventSessionMatch, useDeleteEventSessionPrice, useDeleteEventSessionQuestion, useDeleteEventSessionQuestionChoice, useDeleteEventSessionQuestionChoiceTranslation, useDeleteEventSessionQuestionTranslation, useDeleteEventSessionRound, useDeleteEventSessionSection, useDeleteEventSessionSectionTranslation, useDeleteEventSessionTime, useDeleteEventSessionTimeTranslation, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventSponsorship, useDeleteEventSponsorshipLevel, useDeleteEventSponsorshipLevelTranslation, useDeleteEventSponsorshipTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupInvitation, useDeleteGroupRequest, useDeleteGroupTranslation, useDeleteImage, useDeleteIntegration, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteLogin, useDeleteManyImages, useDeleteManyVideos, useDeleteMeetingLink, useDeleteMeetingParticipant, useDeleteOrganizationDomain, useDeleteOrganizationModuleSettingsTranslation, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationSideEffect, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteOrganizationWebhook, useDeletePreset, useDeletePushDevice, useDeleteRoom, useDeleteSearchList, useDeleteSearchListValue, useDeleteSelfApiKey, useDeleteSeries, useDeleteSeriesQuestion, useDeleteSeriesQuestionChoice, useDeleteSeriesRegistration, useDeleteSeriesTranslation, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteSurvey, useDeleteSurveyQuestion, useDeleteSurveyQuestionChoice, useDeleteSurveyQuestionChoiceTranslation, useDeleteSurveyQuestionTranslation, useDeleteSurveySection, useDeleteSurveySectionTranslation, useDeleteSurveySubmission, useDeleteSurveyTranslation, useDeleteTaxIntegration, useDeleteThread, useDeleteThreadAccount, useDeleteThreadMessage, useDeleteThreadMessageFile, useDeleteThreadMessageImage, useDeleteThreadMessageReaction, useDeleteThreadMessageVideo, useDeleteTier, useDeleteUserImage, useDeleteVideo, useDeleteVideoCaption, useDenyEventPass, useDetachBookingSpaceQuestionSearchList, useDetachEventQuestionSearchList, useDetachEventSessionQuestionSearchList, useDetachSurveyQuestionSearchList, useDisableEventBuildMode, useDisableLivestream, useDownloadVideoCaption, useEnableEventBuildMode, useEnableLivestream, useEventGetPassTypeCoupons, useExportAccount, useExportCustomReport, useExportStreamSession, useGenerateMeetingSessionSummary, useGenerateVideoCaptions, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountAddress, useGetAccountAddresses, useGetAccountBookings, useGetAccountComments, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountInvitations, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountNotificationPreferences, useGetAccountPayments, useGetAccountRegistrations, useGetAccountSupportTickets, useGetAccountThreads, useGetAccountTiers, useGetAccounts, useGetAccountsByInternalRefId, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAllEventAddOns, useGetAllEventPassTypes, useGetAnnouncement, useGetAnnouncementAudience, useGetAnnouncementEmailReceipts, useGetAnnouncementTranslation, useGetAnnouncementTranslations, useGetAnnouncements, useGetAuthSession, useGetAuthSessions, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetBooking, useGetBookingPlace, useGetBookingPlaceBookings, useGetBookingPlacePayments, useGetBookingPlaceTranslation, useGetBookingPlaceTranslations, useGetBookingPlaces, useGetBookingResponses, useGetBookingSpace, useGetBookingSpaceAvailabilities, useGetBookingSpaceAvailability, useGetBookingSpaceBlackout, useGetBookingSpaceBlackouts, useGetBookingSpaceBookings, useGetBookingSpacePayments, useGetBookingSpaceQuestion, useGetBookingSpaceQuestionChoice, useGetBookingSpaceQuestionChoiceTranslation, useGetBookingSpaceQuestionChoiceTranslations, useGetBookingSpaceQuestionChoices, useGetBookingSpaceQuestionTranslation, useGetBookingSpaceQuestionTranslations, useGetBookingSpaceQuestions, useGetBookingSpaceSlots, useGetBookingSpaceTiers, useGetBookingSpaceTranslation, useGetBookingSpaceTranslations, useGetBookingSpaces, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetCustomModule, useGetCustomModuleTranslation, useGetCustomModuleTranslations, useGetCustomModules, useGetCustomReport, useGetCustomReportSchedule, useGetCustomReportUsers, useGetCustomReports, useGetDashboard, useGetDashboardAttributes, useGetDashboardWidgets, useGetDashboards, useGetEmailReceipt, useGetEmailReceipts, useGetEntityUseCodes, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletion, useGetEventActivationCompletions, useGetEventActivationSessions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePackage, useGetEventAttendeePackages, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeReservations, useGetEventAttendeeTransfersLogs, useGetEventAttendees, useGetEventAttribute, useGetEventAttributes, useGetEventBlock, useGetEventBlockSessions, useGetEventBlocks, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponPasses, useGetEventCouponPayments, useGetEventCouponTiers, useGetEventCouponVariants, useGetEventCoupons, useGetEventDashboardQuestions, useGetEventEmail, useGetEventEmailTranslation, useGetEventEmailTranslations, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventFollowup, useGetEventFollowupAddOns, useGetEventFollowupPassTypes, useGetEventFollowupQuestions, useGetEventFollowupTiers, useGetEventFollowupTranslation, useGetEventFollowupTranslations, useGetEventFollowups, useGetEventMediaItem, useGetEventMediaItemPassTypes, useGetEventMediaItemTranslation, useGetEventMediaItemTranslations, useGetEventMediaItems, useGetEventOnSite, useGetEventPackage, useGetEventPackagePass, useGetEventPackagePasses, useGetEventPackageTranslation, useGetEventPackageTranslations, useGetEventPackages, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPass, useGetEventPassAccesses, useGetEventPassAddOns, useGetEventPassAttendeePasses, useGetEventPassAttributes, useGetEventPassMatches, useGetEventPassPayments, useGetEventPassQuestionFollowups, useGetEventPassQuestionSections, useGetEventPassResponse, useGetEventPassResponseChanges, useGetEventPassResponses, useGetEventPassTransferLogs, useGetEventPassTransfers, useGetEventPassType, useGetEventPassTypeAddOns, useGetEventPassTypeExchangeTargetExchanges, useGetEventPassTypeExchangeTargetPayments, useGetEventPassTypeExchangeTargets, useGetEventPassTypeGroupPassTiers, useGetEventPassTypePasses, useGetEventPassTypePayments, useGetEventPassTypePriceSchedule, useGetEventPassTypePriceSchedules, useGetEventPassTypeRefundSchedule, useGetEventPassTypeRefundSchedules, useGetEventPassTypeTiers, useGetEventPassTypeTranslation, useGetEventPassTypeTranslations, useGetEventPassTypes, useGetEventPasses, useGetEventPayments, useGetEventPendingPasses, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventReservation, useGetEventReservationPasses, useGetEventReservations, useGetEventRoomType, useGetEventRoomTypePasses, useGetEventRoomTypeReservations, useGetEventRoomTypeTiers, useGetEventRoomTypeTranslation, useGetEventRoomTypeTranslations, useGetEventRoomTypes, useGetEventRoundMatch, useGetEventRoundMatchPasses, useGetEventRoundMatches, useGetEventRoundPasses, useGetEventRoundQuestions, useGetEventRoundQuestionsSummary, useGetEventRounds, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionPassTypes, useGetEventSectionQuestions, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccess, useGetEventSessionAccessQuestionSections, useGetEventSessionAccessResponseChanges, useGetEventSessionAccesses, useGetEventSessionAccounts, useGetEventSessionBlocks, useGetEventSessionLocation, useGetEventSessionLocationSessions, useGetEventSessionLocationTranslation, useGetEventSessionLocationTranslations, useGetEventSessionLocations, useGetEventSessionPassTypes, useGetEventSessionPayments, useGetEventSessionQuestion, useGetEventSessionQuestionChoice, useGetEventSessionQuestionChoiceSubQuestions, useGetEventSessionQuestionChoiceTranslation, useGetEventSessionQuestionChoiceTranslations, useGetEventSessionQuestionChoices, useGetEventSessionQuestionResponses, useGetEventSessionQuestionTranslation, useGetEventSessionQuestionTranslations, useGetEventSessionQuestions, useGetEventSessionRoundMatch, useGetEventSessionRoundMatchPasses, useGetEventSessionRoundMatches, useGetEventSessionRoundPasses, useGetEventSessionRoundQuestions, useGetEventSessionRoundQuestionsSummary, useGetEventSessionRounds, useGetEventSessionSection, useGetEventSessionSectionQuestions, useGetEventSessionSectionTranslation, useGetEventSessionSectionTranslations, useGetEventSessionSections, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTiers, useGetEventSessionTime, useGetEventSessionTimeSpeakers, useGetEventSessionTimeTranslation, useGetEventSessionTimeTranslations, useGetEventSessionTimes, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessionVisiblePassTypes, useGetEventSessionVisibleTiers, useGetEventSessions, useGetEventSessionsWithRounds, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevel, useGetEventSponsorshipLevelTranslation, useGetEventSponsorshipLevelTranslations, useGetEventSponsorshipLevels, useGetEventSponsorshipTranslation, useGetEventSponsorshipTranslations, useGetEventSponsorships, useGetEventTiers, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEvents, useGetFeaturedChannels, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImport, useGetImportItems, useGetImports, useGetIntegration, useGetIntegrations, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestChannels, useGetInterestContents, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetLivestream, useGetLivestreamSessions, useGetLivestreams, useGetLogin, useGetLoginAccounts, useGetLoginAuthSessions, useGetLoginDevices, useGetLogins, useGetMeeting, useGetMeetingLink, useGetMeetingLinks, useGetMeetingLivestream, useGetMeetingParticipant, useGetMeetingParticipants, useGetMeetingRecording, useGetMeetingRecordings, useGetMeetingSession, useGetMeetingSessionMessages, useGetMeetingSessionParticipant, useGetMeetingSessionParticipants, useGetMeetingSessionSummary, useGetMeetingSessionTranscript, useGetMeetingSessions, useGetMeetings, useGetNotificationCount, useGetNotificationStats, useGetNotifications, useGetOrganization, useGetOrganizationAccountAttribute, useGetOrganizationAccountAttributes, useGetOrganizationDomain, useGetOrganizationMembership, useGetOrganizationModule, useGetOrganizationModuleEditableTiers, useGetOrganizationModuleEnabledTiers, useGetOrganizationModuleSettings, useGetOrganizationModuleSettingsTranslation, useGetOrganizationModuleSettingsTranslations, useGetOrganizationModules, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationSideEffect, useGetOrganizationSideEffects, useGetOrganizationSystemLog, useGetOrganizationSystemLogs, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationUsers, useGetOrganizationWebhook, useGetOrganizationWebhooks, useGetPayment, useGetPaymentTaxMetadata, useGetPayments, useGetPreferences, useGetPreset, useGetPresets, useGetPushDevice, useGetPushDevices, useGetReport, useGetReports, useGetRequiredAttributes, useGetRoom, useGetRoomTypeRooms, useGetRooms, useGetSearchList, useGetSearchListConnectedQuestions, useGetSearchListValue, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfApiKey, useGetSelfApiKeys, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSeriesPayments, useGetSeriesQuestion, useGetSeriesQuestionChoice, useGetSeriesQuestionChoices, useGetSeriesQuestionTranslation, useGetSeriesQuestions, useGetSeriesRegistration, useGetSeriesRegistrationPasses, useGetSeriesRegistrationPayments, useGetSeriesRegistrationResponses, useGetSeriesRegistrations, useGetSeriesTranslation, useGetSeriesTranslations, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetStreamSession, useGetStreamSessionChat, useGetStreamSessionSubscriptions, useGetStreamSessions, useGetStreamVideos, useGetSupportTicket, useGetSupportTicketActivity, useGetSupportTicketMessages, useGetSupportTicketNotes, useGetSupportTicketViewer, useGetSupportTickets, useGetSurvey, useGetSurveyQuestion, useGetSurveyQuestionChoice, useGetSurveyQuestionChoiceSubQuestions, useGetSurveyQuestionChoiceTranslation, useGetSurveyQuestionChoiceTranslations, useGetSurveyQuestionChoices, useGetSurveyQuestionResponses, useGetSurveyQuestionTranslation, useGetSurveyQuestionTranslations, useGetSurveyQuestions, useGetSurveySection, useGetSurveySectionQuestions, useGetSurveySectionTranslation, useGetSurveySectionTranslations, useGetSurveySections, useGetSurveySessions, useGetSurveySubmission, useGetSurveySubmissionQuestionSections, useGetSurveySubmissionResponseChanges, useGetSurveySubmissions, useGetSurveyTranslation, useGetSurveyTranslations, useGetSurveys, useGetTaxCodes, useGetTaxIntegration, useGetTaxIntegrations, useGetTaxLog, useGetTaxLogs, useGetTemplates, useGetThread, useGetThreadAccounts, useGetThreadMessage, useGetThreadMessageFiles, useGetThreadMessageImages, useGetThreadMessageReactions, useGetThreadMessageVideos, useGetThreadMessages, useGetThreadMessagesPoll, useGetThreadStorageFiles, useGetThreadStorageImages, useGetThreadStorageVideos, useGetThreads, useGetTier, useGetTierAccounts, useGetTierImport, useGetTierImportItems, useGetTierImports, useGetTiers, useGetVideo, useGetVideoCaptions, useGetVideoDownloadStatus, useGetVideos, useImportRooms, useIndexEventPasses, useInitiateVideoDownload, useJoinMeeting, useMarkNotificationsRead, usePublishActivity, useRefundOrganizationPayment, useRegenerateMeetingParticipantToken, useReinviteGroupInvitation, useRejectGroupRequest, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveAllChannelSubscribers, useRemoveAllGroupMembers, useRemoveBookingSpaceTier, useRemoveChannelSubscriber, useRemoveCustomReportUser, useRemoveEventAccessUser, useRemoveEventActivationSession, useRemoveEventActivationSessions, useRemoveEventAddOnPassType, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventBlockSession, useRemoveEventCoHost, useRemoveEventCouponTier, useRemoveEventFollowupAddOn, useRemoveEventFollowupPassType, useRemoveEventFollowupQuestion, useRemoveEventFollowupTier, useRemoveEventMatchPass, useRemoveEventMediaItemPassType, useRemoveEventPageImage, useRemoveEventPassAddOn, useRemoveEventPassAttribute, useRemoveEventPassTypeAddOn, useRemoveEventPassTypeExchangeTarget, useRemoveEventPassTypeGroupPassTier, useRemoveEventPassTypeTier, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventReservationPass, useRemoveEventRoomTypeTier, useRemoveEventSectionAddOn, useRemoveEventSectionPassType, useRemoveEventSectionQuestion, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionBlock, useRemoveEventSessionLocationSession, useRemoveEventSessionMatchPass, useRemoveEventSessionPassType, useRemoveEventSessionQuestionChoiceSubQuestion, useRemoveEventSessionSectionQuestion, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTier, useRemoveEventSessionTimeSpeaker, useRemoveEventSessionTrack, useRemoveEventSessionVisiblePassType, useRemoveEventSessionVisibleTier, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveLoginAccount, useRemoveOrganizationModuleEditableTier, useRemoveOrganizationModuleEnabledTier, useRemoveRoomFromRoomType, useRemoveSeriesEvent, useRemoveSurveyQuestionChoiceSubQuestion, useRemoveSurveySectionQuestion, useRemoveSurveySession, useRemoveTierAccounts, useReorderBookingSpaceQuestionChoices, useReorderBookingSpaceQuestions, useReorderEventFaqSectionQuestions, useReorderEventFollowupQuestions, useReorderEventQuestionChoiceSubQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useReorderEventSessionQuestionChoiceSubQuestions, useReorderEventSessionQuestionChoices, useReorderEventSessionSectionQuestions, useReorderEventSponsorshipLevels, useReorderEventSponsorships, useReorderSeriesQuestionChoices, useReorderSurveyQuestionChoiceSubQuestions, useReorderSurveyQuestionChoices, useReorderSurveySectionQuestions, useRequestImageDirectUpload, useResendRegistrationConfirmationEmail, useResetLivestreamStreamKey, useRevertChannelContentToDraft, useSearchOrganization, useSelfLeaveOrganization, useSendAnnouncementPreview, useSendInvoice, useSetEventLocation, useStartEventRoundMatchmaking, useStartEventSessionRoundMatchmaking, useSwitchImage, useSyncAccount, useSyncAccounts, useSyncEventAttendees, useSyncEventCouponToVariants, useTestTaxIntegration, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUndoCheckInBooking, useUndoCheckinEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountAttribute, useUpdateAccountLead, useUpdateActivity, useUpdateActivitySchedule, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateBooking, useUpdateBookingPlace, useUpdateBookingPlaceTranslation, useUpdateBookingSpace, useUpdateBookingSpaceAvailability, useUpdateBookingSpaceBlackout, useUpdateBookingSpaceQuestion, useUpdateBookingSpaceQuestionChoice, useUpdateBookingSpaceQuestionChoiceTranslation, useUpdateBookingSpaceQuestionTranslation, useUpdateBookingSpaceTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateCustomModule, useUpdateCustomModuleTranslation, useUpdateCustomReport, useUpdateDashboard, useUpdateDashboardWidget, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventAttendeePackage, useUpdateEventAttribute, useUpdateEventBadgeTemplate, useUpdateEventBlock, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventFollowup, useUpdateEventFollowupQuestion, useUpdateEventFollowupTranslation, useUpdateEventMatch, useUpdateEventMediaItem, useUpdateEventMediaItemTranslation, useUpdateEventPackage, useUpdateEventPackagePass, useUpdateEventPackageTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassAttributes, useUpdateEventPassFollowupResponses, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassSingleFollowupResponses, useUpdateEventPassType, useUpdateEventPassTypeExchangeTarget, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventPassesReady, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, useUpdateEventReservation, useUpdateEventRoomType, useUpdateEventRoomTypeAddOnDetails, useUpdateEventRoomTypePassTypeDetails, useUpdateEventRoomTypeTranslation, useUpdateEventRoundQuestion, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionAccess, useUpdateEventSessionAccessResponses, useUpdateEventSessionLocation, useUpdateEventSessionLocationTranslation, useUpdateEventSessionMatch, useUpdateEventSessionPrice, useUpdateEventSessionQuestion, useUpdateEventSessionQuestionChoice, useUpdateEventSessionQuestionChoiceSubQuestion, useUpdateEventSessionQuestionChoiceTranslation, useUpdateEventSessionQuestionTranslation, useUpdateEventSessionRoundQuestion, useUpdateEventSessionSection, useUpdateEventSessionSectionQuestion, useUpdateEventSessionSectionTranslation, useUpdateEventSessionTime, useUpdateEventSessionTimeTranslation, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventSponsorship, useUpdateEventSponsorshipLevel, useUpdateEventSponsorshipLevelTranslation, useUpdateEventSponsorshipTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateIntegration, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateLoginEmail, useUpdateLoginPassword, useUpdateMeeting, useUpdateMeetingLink, useUpdateMeetingParticipant, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationModuleSettings, useUpdateOrganizationModuleSettingsTranslation, useUpdateOrganizationPaymentIntegration, useUpdateOrganizationTeamMember, useUpdateOrganizationWebhook, useUpdatePayment, useUpdatePreferences, useUpdatePreset, useUpdateRoom, useUpdateSearchList, useUpdateSearchListValue, useUpdateSelf, useUpdateSeries, useUpdateSeriesQuestion, useUpdateSeriesQuestionChoice, useUpdateSeriesQuestionTranslation, useUpdateSeriesRegistration, useUpdateSeriesRegistrationResponses, useUpdateSeriesTranslation, useUpdateStreamInput, useUpdateStreamInputConfig, useUpdateStreamInputOutput, useUpdateSupportTicket, useUpdateSurvey, useUpdateSurveyQuestion, useUpdateSurveyQuestionChoice, useUpdateSurveyQuestionChoiceSubQuestion, useUpdateSurveyQuestionChoiceTranslation, useUpdateSurveyQuestionTranslation, useUpdateSurveySection, useUpdateSurveySectionQuestion, useUpdateSurveySectionTranslation, useUpdateSurveySubmission, useUpdateSurveySubmissionResponses, useUpdateSurveyTranslation, useUpdateTaxIntegration, useUpdateThread, useUpdateThreadAccount, useUpdateThreadMessage, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile, useUploadVideoCaptions, useUpsertCustomReportSchedule, useUpsertLinkPreview, useVerifyOrganizationWebhook, useVoidInvoice };