@connectedxm/admin 7.8.1 → 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/.claude/settings.local.json +11 -0
- package/dist/index.cjs +279 -0
- package/dist/index.d.cts +403 -214
- package/dist/index.d.ts +403 -214
- package/dist/index.js +260 -0
- package/openapi.json +1277 -562
- package/package.json +12 -12
package/dist/index.d.cts
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
|
}
|
|
@@ -3294,6 +3295,41 @@ interface BaseEventPassTypeRefundSchedule {
|
|
|
3294
3295
|
}
|
|
3295
3296
|
interface EventPassTypeRefundSchedule extends BaseEventPassTypeRefundSchedule {
|
|
3296
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
|
+
}
|
|
3297
3333
|
interface EventPassTypeTranslation {
|
|
3298
3334
|
id: number;
|
|
3299
3335
|
locale: string;
|
|
@@ -6511,6 +6547,21 @@ interface PassTypeRefundScheduleUpdateInputs {
|
|
|
6511
6547
|
startDate?: string;
|
|
6512
6548
|
endDate?: string;
|
|
6513
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
|
+
}
|
|
6514
6565
|
interface IntegrationCreateInputs {
|
|
6515
6566
|
type: keyof typeof IntegrationType;
|
|
6516
6567
|
enabled?: boolean;
|
|
@@ -7543,7 +7594,7 @@ interface SingleQueryParams {
|
|
|
7543
7594
|
interface SingleQueryOptions<TQueryData = unknown> extends Omit<UseQueryOptions<TQueryData, AxiosError<ConnectedXMResponse<any>>, Awaited<TQueryData>, QueryKey>, "queryFn" | "queryKey"> {
|
|
7544
7595
|
shouldRedirect?: boolean;
|
|
7545
7596
|
}
|
|
7546
|
-
declare const useConnectedSingleQuery: <TQueryData = unknown>(queryKeys: QueryKey, queryFn: (params: SingleQueryParams) => TQueryData, options?: SingleQueryOptions<TQueryData>) => _tanstack_react_query.UseQueryResult<
|
|
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>>;
|
|
7547
7598
|
|
|
7548
7599
|
/**
|
|
7549
7600
|
* @category Keys
|
|
@@ -7565,7 +7616,7 @@ declare const GetAccountAddress: ({ accountId, addressId, adminApiParams, }: Get
|
|
|
7565
7616
|
* @category Hooks
|
|
7566
7617
|
* @group Accounts
|
|
7567
7618
|
*/
|
|
7568
|
-
declare const useGetAccountAddress: (accountId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountAddress>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAddress
|
|
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>>;
|
|
7569
7620
|
|
|
7570
7621
|
interface InfiniteQueryParams {
|
|
7571
7622
|
pageParam: number;
|
|
@@ -7762,7 +7813,7 @@ declare const GetAccountLead: ({ accountId, leadId, adminApiParams, }: GetAccoun
|
|
|
7762
7813
|
* @category Hooks
|
|
7763
7814
|
* @group Accounts
|
|
7764
7815
|
*/
|
|
7765
|
-
declare const useGetAccountLead: (accountId?: string, leadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountLead>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Lead
|
|
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>>;
|
|
7766
7817
|
|
|
7767
7818
|
/**
|
|
7768
7819
|
* @category Keys
|
|
@@ -7869,7 +7920,7 @@ declare const GetAccount: ({ accountId, adminApiParams, }: GetAccountProps) => P
|
|
|
7869
7920
|
* @category Hooks
|
|
7870
7921
|
* @group Accounts
|
|
7871
7922
|
*/
|
|
7872
|
-
declare const useGetAccount: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account
|
|
7923
|
+
declare const useGetAccount: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Account>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
7873
7924
|
|
|
7874
7925
|
/**
|
|
7875
7926
|
* @category Keys
|
|
@@ -8054,7 +8105,7 @@ declare const GetAccountNotificationPreferences: ({ accountId, adminApiParams, }
|
|
|
8054
8105
|
* @category Hooks
|
|
8055
8106
|
* @group Accounts
|
|
8056
8107
|
*/
|
|
8057
|
-
declare const useGetAccountNotificationPreferences: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountNotificationPreferences>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<NotificationPreferences
|
|
8108
|
+
declare const useGetAccountNotificationPreferences: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountNotificationPreferences>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<NotificationPreferences>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8058
8109
|
|
|
8059
8110
|
/**
|
|
8060
8111
|
* @category Keys
|
|
@@ -8211,7 +8262,7 @@ declare const GetAccountsByInternalRefId: ({ internalRefId, adminApiParams, }: G
|
|
|
8211
8262
|
* @category Hooks
|
|
8212
8263
|
* @group Accounts
|
|
8213
8264
|
*/
|
|
8214
|
-
declare const useGetAccountsByInternalRefId: (internalRefId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountsByInternalRefId>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account[]
|
|
8265
|
+
declare const useGetAccountsByInternalRefId: (internalRefId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountsByInternalRefId>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Account[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8215
8266
|
|
|
8216
8267
|
/**
|
|
8217
8268
|
* @category Keys
|
|
@@ -8266,7 +8317,7 @@ declare const GetActivity: ({ activityId, adminApiParams, }: GetActivityProps) =
|
|
|
8266
8317
|
* @category Hooks
|
|
8267
8318
|
* @group Activities
|
|
8268
8319
|
*/
|
|
8269
|
-
declare const useGetActivity: (activityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Activity
|
|
8320
|
+
declare const useGetActivity: (activityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Activity>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8270
8321
|
|
|
8271
8322
|
/**
|
|
8272
8323
|
* @category Keys
|
|
@@ -8344,7 +8395,7 @@ declare const GetAdvertisement: ({ advertisementId, adminApiParams, }: GetAdvert
|
|
|
8344
8395
|
* @category Hooks
|
|
8345
8396
|
* @group Advertisements
|
|
8346
8397
|
*/
|
|
8347
|
-
declare const useGetAdvertisement: (advertisementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Advertisement
|
|
8398
|
+
declare const useGetAdvertisement: (advertisementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Advertisement>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8348
8399
|
|
|
8349
8400
|
/**
|
|
8350
8401
|
* @category Keys
|
|
@@ -8448,7 +8499,7 @@ declare const GetAnnouncementTranslation: ({ announcementId, locale, adminApiPar
|
|
|
8448
8499
|
* @category Hooks
|
|
8449
8500
|
* @announcement Announcements
|
|
8450
8501
|
*/
|
|
8451
|
-
declare const useGetAnnouncementTranslation: (announcementId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncementTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AnnouncementTranslation | null
|
|
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>>;
|
|
8452
8503
|
|
|
8453
8504
|
/**
|
|
8454
8505
|
* @category Keys
|
|
@@ -8500,7 +8551,7 @@ declare const GetAnnouncement: ({ announcementId, adminApiParams, }: GetAnnounce
|
|
|
8500
8551
|
* @category Hooks
|
|
8501
8552
|
* @group Announcements
|
|
8502
8553
|
*/
|
|
8503
|
-
declare const useGetAnnouncement: (announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement
|
|
8554
|
+
declare const useGetAnnouncement: (announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncement>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Announcement>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8504
8555
|
|
|
8505
8556
|
/**
|
|
8506
8557
|
* @category Keys
|
|
@@ -8605,7 +8656,7 @@ declare const GetAPILog: ({ logId, adminApiParams, }: GetAPILogParams) => Promis
|
|
|
8605
8656
|
* @category Hooks
|
|
8606
8657
|
* @group Emails
|
|
8607
8658
|
*/
|
|
8608
|
-
declare const useGetAPILog: (logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAPILog>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<APILog
|
|
8659
|
+
declare const useGetAPILog: (logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAPILog>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<APILog>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8609
8660
|
|
|
8610
8661
|
/**
|
|
8611
8662
|
* @category Key
|
|
@@ -8663,7 +8714,7 @@ declare const GetAuthSession: ({ authSessionId, adminApiParams, }: GetAuthSessio
|
|
|
8663
8714
|
* @category Hooks
|
|
8664
8715
|
* @group Emails
|
|
8665
8716
|
*/
|
|
8666
|
-
declare const useGetAuthSession: (authSessionId?: string | number, options?: SingleQueryOptions<ReturnType<typeof GetAuthSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AuthSession
|
|
8717
|
+
declare const useGetAuthSession: (authSessionId?: string | number, options?: SingleQueryOptions<ReturnType<typeof GetAuthSession>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AuthSession>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8667
8718
|
|
|
8668
8719
|
/**
|
|
8669
8720
|
* @category Key
|
|
@@ -8715,7 +8766,7 @@ declare const GetBenefitTranslation: ({ benefitId, locale, adminApiParams, }: Ge
|
|
|
8715
8766
|
* @category Hooks
|
|
8716
8767
|
* @group Benefits
|
|
8717
8768
|
*/
|
|
8718
|
-
declare const useGetBenefitTranslation: (benefitId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefitTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BenefitTranslation | null
|
|
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>>;
|
|
8719
8770
|
|
|
8720
8771
|
/**
|
|
8721
8772
|
* @category Keys
|
|
@@ -8767,7 +8818,7 @@ declare const GetBenefit: ({ benefitId, adminApiParams, }: GetBenefitProps) => P
|
|
|
8767
8818
|
* @category Hooks
|
|
8768
8819
|
* @group Benefits
|
|
8769
8820
|
*/
|
|
8770
|
-
declare const useGetBenefit: (benefitId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefit>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Benefit
|
|
8821
|
+
declare const useGetBenefit: (benefitId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefit>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Benefit>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8771
8822
|
|
|
8772
8823
|
/**
|
|
8773
8824
|
* @category Keys
|
|
@@ -8849,7 +8900,7 @@ declare const GetBookingSpaceQuestionChoiceTranslation: ({ placeId, spaceId, que
|
|
|
8849
8900
|
* @category Hooks
|
|
8850
8901
|
* @group Bookings
|
|
8851
8902
|
*/
|
|
8852
|
-
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
|
|
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>>;
|
|
8853
8904
|
|
|
8854
8905
|
/**
|
|
8855
8906
|
* @category Keys
|
|
@@ -8878,7 +8929,7 @@ declare const GetBookingSpaceQuestionChoiceTranslations: ({ placeId, spaceId, qu
|
|
|
8878
8929
|
* @category Hooks
|
|
8879
8930
|
* @group Bookings
|
|
8880
8931
|
*/
|
|
8881
|
-
declare const useGetBookingSpaceQuestionChoiceTranslations: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoiceTranslations>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionChoiceTranslation[]
|
|
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>>;
|
|
8882
8933
|
|
|
8883
8934
|
/**
|
|
8884
8935
|
* @category Keys
|
|
@@ -8907,7 +8958,7 @@ declare const GetBookingSpaceQuestionChoice: ({ placeId, spaceId, questionId, ch
|
|
|
8907
8958
|
* @category Hooks
|
|
8908
8959
|
* @group Bookings
|
|
8909
8960
|
*/
|
|
8910
|
-
declare const useGetBookingSpaceQuestionChoice: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionChoice
|
|
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>>;
|
|
8911
8962
|
|
|
8912
8963
|
/**
|
|
8913
8964
|
* @category Keys
|
|
@@ -8964,7 +9015,7 @@ declare const GetBookingSpaceQuestionTranslation: ({ placeId, spaceId, questionI
|
|
|
8964
9015
|
* @category Hooks
|
|
8965
9016
|
* @group Bookings
|
|
8966
9017
|
*/
|
|
8967
|
-
declare const useGetBookingSpaceQuestionTranslation: (placeId?: string, spaceId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionTranslation | null
|
|
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>>;
|
|
8968
9019
|
|
|
8969
9020
|
/**
|
|
8970
9021
|
* @category Keys
|
|
@@ -8992,7 +9043,7 @@ declare const GetBookingSpaceQuestionTranslations: ({ placeId, spaceId, question
|
|
|
8992
9043
|
* @category Hooks
|
|
8993
9044
|
* @group Bookings
|
|
8994
9045
|
*/
|
|
8995
|
-
declare const useGetBookingSpaceQuestionTranslations: (placeId?: string, spaceId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionTranslations>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionTranslation[]
|
|
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>>;
|
|
8996
9047
|
|
|
8997
9048
|
/**
|
|
8998
9049
|
* @category Keys
|
|
@@ -9020,7 +9071,7 @@ declare const GetBookingSpaceQuestion: ({ placeId, spaceId, questionId, adminApi
|
|
|
9020
9071
|
* @category Hooks
|
|
9021
9072
|
* @group Bookings
|
|
9022
9073
|
*/
|
|
9023
|
-
declare const useGetBookingSpaceQuestion: (placeId?: string, spaceId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestion
|
|
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>>;
|
|
9024
9075
|
|
|
9025
9076
|
/**
|
|
9026
9077
|
* @category Keys
|
|
@@ -9073,7 +9124,7 @@ declare const GetBooking: ({ bookingId, adminApiParams, }: GetBookingProps) => P
|
|
|
9073
9124
|
* @category Hooks
|
|
9074
9125
|
* @group Bookings
|
|
9075
9126
|
*/
|
|
9076
|
-
declare const useGetBooking: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBooking>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Booking
|
|
9127
|
+
declare const useGetBooking: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBooking>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Booking>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9077
9128
|
|
|
9078
9129
|
/**
|
|
9079
9130
|
* @category Keys
|
|
@@ -9099,7 +9150,7 @@ declare const GetBookingPlace: ({ placeId, adminApiParams, }: GetBookingPlacePro
|
|
|
9099
9150
|
* @category Hooks
|
|
9100
9151
|
* @group Bookings
|
|
9101
9152
|
*/
|
|
9102
|
-
declare const useGetBookingPlace: (placeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlace>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingPlace
|
|
9153
|
+
declare const useGetBookingPlace: (placeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlace>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingPlace>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9103
9154
|
|
|
9104
9155
|
/**
|
|
9105
9156
|
* @category Keys
|
|
@@ -9180,7 +9231,7 @@ declare const GetBookingPlaceTranslation: ({ placeId, locale, adminApiParams, }:
|
|
|
9180
9231
|
* @category Hooks
|
|
9181
9232
|
* @group Bookings
|
|
9182
9233
|
*/
|
|
9183
|
-
declare const useGetBookingPlaceTranslation: (placeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlaceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingPlaceTranslation | null
|
|
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>>;
|
|
9184
9235
|
|
|
9185
9236
|
/**
|
|
9186
9237
|
* @category Keys
|
|
@@ -9257,7 +9308,7 @@ declare const GetBookingResponses: ({ bookingId, adminApiParams, }: GetBookingRe
|
|
|
9257
9308
|
* @category Hooks
|
|
9258
9309
|
* @group Bookings
|
|
9259
9310
|
*/
|
|
9260
|
-
declare const useGetBookingResponses: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingResponses>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseBookingQuestionResponse[]
|
|
9311
|
+
declare const useGetBookingResponses: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingResponses>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseBookingQuestionResponse[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9261
9312
|
|
|
9262
9313
|
/**
|
|
9263
9314
|
* @category Keys
|
|
@@ -9284,7 +9335,7 @@ declare const GetBookingSpace: ({ placeId, spaceId, adminApiParams, }: GetBookin
|
|
|
9284
9335
|
* @category Hooks
|
|
9285
9336
|
* @group Bookings
|
|
9286
9337
|
*/
|
|
9287
|
-
declare const useGetBookingSpace: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpace>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpace
|
|
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>>;
|
|
9288
9339
|
|
|
9289
9340
|
/**
|
|
9290
9341
|
* @category Keys
|
|
@@ -9311,7 +9362,7 @@ declare const GetBookingSpaceAvailabilities: ({ placeId, spaceId, adminApiParams
|
|
|
9311
9362
|
* @category Hooks
|
|
9312
9363
|
* @group Bookings
|
|
9313
9364
|
*/
|
|
9314
|
-
declare const useGetBookingSpaceAvailabilities: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailabilities>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceAvailability[]
|
|
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>>;
|
|
9315
9366
|
|
|
9316
9367
|
/**
|
|
9317
9368
|
* @category Keys
|
|
@@ -9339,7 +9390,7 @@ declare const GetBookingSpaceAvailability: ({ placeId, spaceId, availabilityId,
|
|
|
9339
9390
|
* @category Hooks
|
|
9340
9391
|
* @group Bookings
|
|
9341
9392
|
*/
|
|
9342
|
-
declare const useGetBookingSpaceAvailability: (placeId?: string, spaceId?: string, availabilityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailability>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceAvailability
|
|
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>>;
|
|
9343
9394
|
|
|
9344
9395
|
/**
|
|
9345
9396
|
* @category Keys
|
|
@@ -9367,7 +9418,7 @@ declare const GetBookingSpaceBlackout: ({ placeId, spaceId, blackoutId, adminApi
|
|
|
9367
9418
|
* @category Hooks
|
|
9368
9419
|
* @group Bookings
|
|
9369
9420
|
*/
|
|
9370
|
-
declare const useGetBookingSpaceBlackout: (placeId?: string, spaceId?: string, blackoutId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceBlackout>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceBlackout
|
|
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>>;
|
|
9371
9422
|
|
|
9372
9423
|
/**
|
|
9373
9424
|
* @category Keys
|
|
@@ -9484,10 +9535,10 @@ declare const GetBookingSpaceSlots: ({ placeId, spaceId, firstDayOfMonth, adminA
|
|
|
9484
9535
|
* @category Hooks
|
|
9485
9536
|
* @group Bookings
|
|
9486
9537
|
*/
|
|
9487
|
-
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<{
|
|
9488
9539
|
day: string;
|
|
9489
9540
|
slots: BookingSlot[];
|
|
9490
|
-
}[]
|
|
9541
|
+
}[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9491
9542
|
|
|
9492
9543
|
/**
|
|
9493
9544
|
* @category Keys
|
|
@@ -9542,7 +9593,7 @@ declare const GetBookingSpaceTranslation: ({ placeId, spaceId, locale, adminApiP
|
|
|
9542
9593
|
* @category Hooks
|
|
9543
9594
|
* @group Bookings
|
|
9544
9595
|
*/
|
|
9545
|
-
declare const useGetBookingSpaceTranslation: (placeId?: string, spaceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceTranslation | null
|
|
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>>;
|
|
9546
9597
|
|
|
9547
9598
|
/**
|
|
9548
9599
|
* @category Keys
|
|
@@ -9624,7 +9675,7 @@ declare const GetChannelContentGuestTranslation: ({ channelId, contentId, guestI
|
|
|
9624
9675
|
* @category Hooks
|
|
9625
9676
|
* @group Channels
|
|
9626
9677
|
*/
|
|
9627
|
-
declare const useGetChannelContentGuestTranslation: (channelId?: string, contentId?: string, guestId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuestTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuestTranslation | null
|
|
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>>;
|
|
9628
9679
|
|
|
9629
9680
|
/**
|
|
9630
9681
|
* @category Keys
|
|
@@ -9680,7 +9731,7 @@ declare const GetChannelContentTranslation: ({ channelId, contentId, locale, adm
|
|
|
9680
9731
|
* @category Hooks
|
|
9681
9732
|
* @group Channels
|
|
9682
9733
|
*/
|
|
9683
|
-
declare const useGetChannelContentTranslation: (channelId?: string, contentId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentTranslation | null
|
|
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>>;
|
|
9684
9735
|
|
|
9685
9736
|
/**
|
|
9686
9737
|
* @category Keys
|
|
@@ -9734,7 +9785,7 @@ declare const GetChannelTranslation: ({ channelId, locale, adminApiParams, }: Ge
|
|
|
9734
9785
|
* @category Hooks
|
|
9735
9786
|
* @group Channels
|
|
9736
9787
|
*/
|
|
9737
|
-
declare const useGetChannelTranslation: (channelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelTranslation | null
|
|
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>>;
|
|
9738
9789
|
|
|
9739
9790
|
/**
|
|
9740
9791
|
* @category Keys
|
|
@@ -9786,7 +9837,7 @@ declare const GetChannel: ({ channelId, adminApiParams, }: GetChannelProps) => P
|
|
|
9786
9837
|
* @category Hooks
|
|
9787
9838
|
* @group Channels
|
|
9788
9839
|
*/
|
|
9789
|
-
declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel
|
|
9840
|
+
declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Channel>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9790
9841
|
|
|
9791
9842
|
/**
|
|
9792
9843
|
* @category Keys
|
|
@@ -9840,7 +9891,7 @@ declare const GetChannelContent: ({ channelId, contentId, adminApiParams, }: Get
|
|
|
9840
9891
|
* @category Hooks
|
|
9841
9892
|
* @group Channels
|
|
9842
9893
|
*/
|
|
9843
|
-
declare const useGetChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContent
|
|
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>>;
|
|
9844
9895
|
|
|
9845
9896
|
/**
|
|
9846
9897
|
* @category Keys
|
|
@@ -9897,7 +9948,7 @@ declare const GetChannelContentGuest: ({ channelId, contentId, guestId, adminApi
|
|
|
9897
9948
|
* @category Hooks
|
|
9898
9949
|
* @group Channels
|
|
9899
9950
|
*/
|
|
9900
|
-
declare const useGetChannelContentGuest: (channelId?: string, contentId?: string, guestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuest
|
|
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>>;
|
|
9901
9952
|
|
|
9902
9953
|
/**
|
|
9903
9954
|
* @category Keys
|
|
@@ -10006,7 +10057,7 @@ declare const GetChannelSubscriber: ({ channelId, accountId, adminApiParams, }:
|
|
|
10006
10057
|
* @category Hooks
|
|
10007
10058
|
* @group Channels
|
|
10008
10059
|
*/
|
|
10009
|
-
declare const useGetChannelSubscriber: (channelId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelSubscriber>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseChannelSubscriber
|
|
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>>;
|
|
10010
10061
|
|
|
10011
10062
|
/**
|
|
10012
10063
|
* @category Keys
|
|
@@ -10137,7 +10188,7 @@ declare const GetDashboard: ({ adminApiParams, dashboardId, }: GetDashboardProps
|
|
|
10137
10188
|
* @category Hooks
|
|
10138
10189
|
* @group Dashboards
|
|
10139
10190
|
*/
|
|
10140
|
-
declare const useGetDashboard: (dashboardId?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboard>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Dashboard
|
|
10191
|
+
declare const useGetDashboard: (dashboardId?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboard>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Dashboard>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10141
10192
|
|
|
10142
10193
|
/**
|
|
10143
10194
|
* @category Keys
|
|
@@ -10190,7 +10241,7 @@ declare const GetDashboardWidgets: ({ adminApiParams, dashboardId, type, }: GetD
|
|
|
10190
10241
|
* @category Hooks
|
|
10191
10242
|
* @group Dashboards
|
|
10192
10243
|
*/
|
|
10193
|
-
declare const useGetDashboardWidgets: (dashboardId: string, type?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardWidgets>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<DashboardWidget[]
|
|
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>>;
|
|
10194
10245
|
|
|
10195
10246
|
/**
|
|
10196
10247
|
* @category Key
|
|
@@ -10216,7 +10267,7 @@ declare const GetEmailReceipt: ({ emailReceiptId, adminApiParams, }: GetEmailRec
|
|
|
10216
10267
|
* @category Hooks
|
|
10217
10268
|
* @group Emails
|
|
10218
10269
|
*/
|
|
10219
|
-
declare const useGetEmailReceipt: (emailReceiptId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEmailReceipt>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EmailReceipt
|
|
10270
|
+
declare const useGetEmailReceipt: (emailReceiptId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEmailReceipt>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EmailReceipt>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10220
10271
|
|
|
10221
10272
|
/**
|
|
10222
10273
|
* @category Key
|
|
@@ -10291,7 +10342,7 @@ declare const GetEventActivationTranslation: ({ eventId, activationId, locale, a
|
|
|
10291
10342
|
* @category Hooks
|
|
10292
10343
|
* @group Events
|
|
10293
10344
|
*/
|
|
10294
|
-
declare const useGetEventActivationTranslation: (eventId?: string, activationId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ActivationTranslation | null
|
|
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>>;
|
|
10295
10346
|
|
|
10296
10347
|
/**
|
|
10297
10348
|
* @category Keys
|
|
@@ -10345,7 +10396,7 @@ declare const GetEventActivation: ({ eventId, activationId, adminApiParams, }: G
|
|
|
10345
10396
|
* @category Hooks
|
|
10346
10397
|
* @group Events
|
|
10347
10398
|
*/
|
|
10348
|
-
declare const useGetEventActivation: (eventId: string, activationId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventActivation
|
|
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>>;
|
|
10349
10400
|
|
|
10350
10401
|
/**
|
|
10351
10402
|
* @category Keys
|
|
@@ -10373,7 +10424,7 @@ declare const GetEventActivationCompletion: ({ eventId, activationId, completion
|
|
|
10373
10424
|
* @category Hooks
|
|
10374
10425
|
* @group Events
|
|
10375
10426
|
*/
|
|
10376
|
-
declare const useGetEventActivationCompletion: (eventId: string, activationId: string, completionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationCompletion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ActivationCompletion
|
|
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>>;
|
|
10377
10428
|
|
|
10378
10429
|
/**
|
|
10379
10430
|
* @category Keys
|
|
@@ -10481,7 +10532,7 @@ declare const GetEventAddOnTranslation: ({ eventId, addOnId, locale, adminApiPar
|
|
|
10481
10532
|
* @category Hooks
|
|
10482
10533
|
* @group Events
|
|
10483
10534
|
*/
|
|
10484
|
-
declare const useGetEventAddOnTranslation: (eventId?: string, addOnId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAddOnTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOnTranslation | null
|
|
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>>;
|
|
10485
10536
|
|
|
10486
10537
|
/**
|
|
10487
10538
|
* @category Keys
|
|
@@ -10534,7 +10585,7 @@ declare const GetAllEventAddOns: ({ eventId, adminApiParams, }: GetAllEventAddOn
|
|
|
10534
10585
|
* @category Hooks
|
|
10535
10586
|
* @group Events
|
|
10536
10587
|
*/
|
|
10537
|
-
declare const useGetAllEventAddOns: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]
|
|
10588
|
+
declare const useGetAllEventAddOns: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventAddOns>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventAddOn[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10538
10589
|
|
|
10539
10590
|
/**
|
|
10540
10591
|
* @category Keys
|
|
@@ -10561,7 +10612,7 @@ declare const GetEventAddOn: ({ eventId, addOnId, adminApiParams, }: GetEventAdd
|
|
|
10561
10612
|
* @category Hooks
|
|
10562
10613
|
* @group Events
|
|
10563
10614
|
*/
|
|
10564
|
-
declare const useGetEventAddOn: (eventId?: string, addOnId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAddOn>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn
|
|
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>>;
|
|
10565
10616
|
|
|
10566
10617
|
/**
|
|
10567
10618
|
* @category Keys
|
|
@@ -10697,7 +10748,7 @@ declare const GetEventAttendeePackage: ({ eventId, accountId, packageId, adminAp
|
|
|
10697
10748
|
* @category Hooks
|
|
10698
10749
|
* @group Events
|
|
10699
10750
|
*/
|
|
10700
|
-
declare const useGetEventAttendeePackage: (eventId: string, accountId: string, packageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePackage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AttendeePackage
|
|
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>>;
|
|
10701
10752
|
|
|
10702
10753
|
/**
|
|
10703
10754
|
* @category Keys
|
|
@@ -10779,7 +10830,7 @@ declare const GetEventReservation: ({ eventId, reservationId, adminApiParams, }:
|
|
|
10779
10830
|
* @category Hooks
|
|
10780
10831
|
* @group Events
|
|
10781
10832
|
*/
|
|
10782
|
-
declare const useGetEventReservation: (eventId: string, reservationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventReservation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomTypeReservation
|
|
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>>;
|
|
10783
10834
|
|
|
10784
10835
|
/**
|
|
10785
10836
|
* @category Keys
|
|
@@ -10859,7 +10910,7 @@ declare const GetEventAttendee: ({ eventId, accountId, adminApiParams, }: GetEve
|
|
|
10859
10910
|
* @category Hooks
|
|
10860
10911
|
* @group Events
|
|
10861
10912
|
*/
|
|
10862
|
-
declare const useGetEventAttendee: (eventId: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAttendee
|
|
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>>;
|
|
10863
10914
|
|
|
10864
10915
|
/**
|
|
10865
10916
|
* @category Keys
|
|
@@ -11051,7 +11102,7 @@ declare const GetEventAttribute: ({ eventId, attributeId, adminApiParams, }: Get
|
|
|
11051
11102
|
* @category Hooks
|
|
11052
11103
|
* @group Events
|
|
11053
11104
|
*/
|
|
11054
|
-
declare const useGetEventAttribute: (eventId?: string, attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttribute>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAttribute
|
|
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>>;
|
|
11055
11106
|
|
|
11056
11107
|
/**
|
|
11057
11108
|
* @category Keys
|
|
@@ -11104,7 +11155,7 @@ declare const GetEventBlock: ({ eventId, blockId, adminApiParams, }: GetEventBlo
|
|
|
11104
11155
|
* @category Hooks
|
|
11105
11156
|
* @group Events
|
|
11106
11157
|
*/
|
|
11107
|
-
declare const useGetEventBlock: (eventId?: string, blockId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventBlock>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventBlock
|
|
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>>;
|
|
11108
11159
|
|
|
11109
11160
|
/**
|
|
11110
11161
|
* @category Keys
|
|
@@ -11184,7 +11235,7 @@ declare const GetEventRegistrationBypass: ({ eventId, bypassId, adminApiParams,
|
|
|
11184
11235
|
* @category Hooks
|
|
11185
11236
|
* @group Events
|
|
11186
11237
|
*/
|
|
11187
|
-
declare const useGetEventRegistrationBypass: (eventId?: string, bypassId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistrationBypass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationBypass
|
|
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>>;
|
|
11188
11239
|
|
|
11189
11240
|
/**
|
|
11190
11241
|
* @category Keys
|
|
@@ -11258,7 +11309,7 @@ declare const GetEventCoupon: ({ eventId, couponId, adminApiParams, }: GetEventC
|
|
|
11258
11309
|
* @category Hooks
|
|
11259
11310
|
* @group Events
|
|
11260
11311
|
*/
|
|
11261
|
-
declare const useGetEventCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Coupon
|
|
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>>;
|
|
11262
11313
|
|
|
11263
11314
|
/**
|
|
11264
11315
|
* @category Keys
|
|
@@ -11423,7 +11474,7 @@ declare const GetEventEmailTranslation: ({ eventId, type, locale, adminApiParams
|
|
|
11423
11474
|
* @category Hooks
|
|
11424
11475
|
* @group Events
|
|
11425
11476
|
*/
|
|
11426
|
-
declare const useGetEventEmailTranslation: (eventId: string | undefined, type: EventEmailType, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventEmailTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventEmailTranslation | null
|
|
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>>;
|
|
11427
11478
|
|
|
11428
11479
|
/**
|
|
11429
11480
|
* @category Keys
|
|
@@ -11477,7 +11528,7 @@ declare const GetEventEmail: ({ eventId, type, adminApiParams, }: GetEventEmailP
|
|
|
11477
11528
|
* @category Hooks
|
|
11478
11529
|
* @group Events
|
|
11479
11530
|
*/
|
|
11480
|
-
declare const useGetEventEmail: (eventId: string | undefined, type: EventEmailType, options?: SingleQueryOptions<ReturnType<typeof GetEventEmail>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventEmail
|
|
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>>;
|
|
11481
11532
|
|
|
11482
11533
|
/**
|
|
11483
11534
|
* @category Keys
|
|
@@ -11506,7 +11557,7 @@ declare const GetEventFaqSectionQuestionTranslation: ({ eventId, sectionId, ques
|
|
|
11506
11557
|
* @category Hooks
|
|
11507
11558
|
* @group Events
|
|
11508
11559
|
*/
|
|
11509
|
-
declare const useGetEventFaqSectionQuestionTranslation: (eventId?: string, sectionId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqTranslation | null
|
|
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>>;
|
|
11510
11561
|
|
|
11511
11562
|
/**
|
|
11512
11563
|
* @category Keys
|
|
@@ -11562,7 +11613,7 @@ declare const GetEventFaqSectionTranslation: ({ eventId, sectionId, locale, admi
|
|
|
11562
11613
|
* @category Hooks
|
|
11563
11614
|
* @group Events
|
|
11564
11615
|
*/
|
|
11565
|
-
declare const useGetEventFaqSectionTranslation: (eventId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqSectionTranslation | null
|
|
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>>;
|
|
11566
11617
|
|
|
11567
11618
|
/**
|
|
11568
11619
|
* @category Keys
|
|
@@ -11616,7 +11667,7 @@ declare const GetEventFaqSection: ({ eventId, sectionId, adminApiParams, }: GetE
|
|
|
11616
11667
|
* @category Hooks
|
|
11617
11668
|
* @group Events
|
|
11618
11669
|
*/
|
|
11619
|
-
declare const useGetEventFaqSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqSection
|
|
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>>;
|
|
11620
11671
|
|
|
11621
11672
|
/**
|
|
11622
11673
|
* @category Keys
|
|
@@ -11644,7 +11695,7 @@ declare const GetEventFaqSectionQuestion: ({ eventId, sectionId, questionId, adm
|
|
|
11644
11695
|
* @category Hooks
|
|
11645
11696
|
* @group Events
|
|
11646
11697
|
*/
|
|
11647
|
-
declare const useGetEventFaqSectionQuestion: (eventId?: string, sectionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Faq
|
|
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>>;
|
|
11648
11699
|
|
|
11649
11700
|
/**
|
|
11650
11701
|
* @category Keys
|
|
@@ -11725,7 +11776,7 @@ declare const GetEventFollowupTranslation: ({ eventId, followupId, locale, admin
|
|
|
11725
11776
|
* @category Hooks
|
|
11726
11777
|
* @group Events
|
|
11727
11778
|
*/
|
|
11728
|
-
declare const useGetEventFollowupTranslation: (eventId?: string, followupId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFollowupTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowupTranslation | null
|
|
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>>;
|
|
11729
11780
|
|
|
11730
11781
|
/**
|
|
11731
11782
|
* @category Keys
|
|
@@ -11779,7 +11830,7 @@ declare const GetEventFollowup: ({ eventId, followupId, adminApiParams, }: GetEv
|
|
|
11779
11830
|
* @category Hooks
|
|
11780
11831
|
* @group Events
|
|
11781
11832
|
*/
|
|
11782
|
-
declare const useGetEventFollowup: (eventId?: string, followupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFollowup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup
|
|
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>>;
|
|
11783
11834
|
|
|
11784
11835
|
/**
|
|
11785
11836
|
* @category Keys
|
|
@@ -11942,7 +11993,7 @@ declare const GetEventRoundMatch: ({ eventId, roundId, matchId, adminApiParams,
|
|
|
11942
11993
|
* @category Hooks
|
|
11943
11994
|
* @group Events
|
|
11944
11995
|
*/
|
|
11945
|
-
declare const useGetEventRoundMatch: (eventId?: string, roundId?: string, matchId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoundMatch>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Match
|
|
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>>;
|
|
11946
11997
|
|
|
11947
11998
|
/**
|
|
11948
11999
|
* @category Keys
|
|
@@ -12079,7 +12130,7 @@ declare const GetEventRoundQuestionsSummary: ({ eventId, roundId, adminApiParams
|
|
|
12079
12130
|
* @category Hooks
|
|
12080
12131
|
* @group Events
|
|
12081
12132
|
*/
|
|
12082
|
-
declare const useGetEventRoundQuestionsSummary: (eventId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoundQuestionsSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<string, "exclude" | "include" | "split"
|
|
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>>;
|
|
12083
12134
|
|
|
12084
12135
|
/**
|
|
12085
12136
|
* @category Keys
|
|
@@ -12105,7 +12156,7 @@ declare const GetEventRounds: ({ eventId, adminApiParams, }: GetEventRoundsProps
|
|
|
12105
12156
|
* @category Hooks
|
|
12106
12157
|
* @group Events
|
|
12107
12158
|
*/
|
|
12108
|
-
declare const useGetEventRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRounds>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Round[]
|
|
12159
|
+
declare const useGetEventRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRounds>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Round[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12109
12160
|
|
|
12110
12161
|
/**
|
|
12111
12162
|
* @category Keys
|
|
@@ -12133,9 +12184,9 @@ declare const GetEventSessionsWithRounds: ({ eventId, adminApiParams, }: GetEven
|
|
|
12133
12184
|
* @category Hooks
|
|
12134
12185
|
* @group Events
|
|
12135
12186
|
*/
|
|
12136
|
-
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 & {
|
|
12137
12188
|
rounds: Round[];
|
|
12138
|
-
})[]
|
|
12189
|
+
})[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12139
12190
|
|
|
12140
12191
|
/**
|
|
12141
12192
|
* @category Keys
|
|
@@ -12163,7 +12214,7 @@ declare const GetEventMediaItemTranslation: ({ eventId, mediaId, locale, adminAp
|
|
|
12163
12214
|
* @category Hooks
|
|
12164
12215
|
* @group Events
|
|
12165
12216
|
*/
|
|
12166
|
-
declare const useGetEventMediaItemTranslation: (eventId?: string, mediaId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItemTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItemTranslation | null
|
|
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>>;
|
|
12167
12218
|
|
|
12168
12219
|
/**
|
|
12169
12220
|
* @category Keys
|
|
@@ -12217,7 +12268,7 @@ declare const GetEventMediaItem: ({ eventId, itemId, adminApiParams, }: GetEvent
|
|
|
12217
12268
|
* @category Hooks
|
|
12218
12269
|
* @group Events
|
|
12219
12270
|
*/
|
|
12220
|
-
declare const useGetEventMediaItem: (eventId?: string, itemId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItem
|
|
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>>;
|
|
12221
12272
|
|
|
12222
12273
|
/**
|
|
12223
12274
|
* @category Keys
|
|
@@ -12297,7 +12348,7 @@ declare const GetEventOnSite: ({ eventId, adminApiParams, }: GetEventOnSiteProps
|
|
|
12297
12348
|
* @category Hooks
|
|
12298
12349
|
* @group Events
|
|
12299
12350
|
*/
|
|
12300
|
-
declare const useGetEventOnSite: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventOnSite>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventOnSite | null
|
|
12351
|
+
declare const useGetEventOnSite: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventOnSite>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventOnSite | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12301
12352
|
|
|
12302
12353
|
/**
|
|
12303
12354
|
* @category Keys
|
|
@@ -12325,7 +12376,7 @@ declare const GetEventPackagePass: ({ eventId, packageId, passId, adminApiParams
|
|
|
12325
12376
|
* @category Hooks
|
|
12326
12377
|
* @group Events
|
|
12327
12378
|
*/
|
|
12328
|
-
declare const useGetEventPackagePass: (eventId?: string, packageId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackagePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackagePass
|
|
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>>;
|
|
12329
12380
|
|
|
12330
12381
|
/**
|
|
12331
12382
|
* @category Keys
|
|
@@ -12380,7 +12431,7 @@ declare const GetEventPackageTranslation: ({ eventId, packageId, locale, adminAp
|
|
|
12380
12431
|
* @category Hooks
|
|
12381
12432
|
* @group Events
|
|
12382
12433
|
*/
|
|
12383
|
-
declare const useGetEventPackageTranslation: (eventId?: string, packageId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackageTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackageTranslation
|
|
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>>;
|
|
12384
12435
|
|
|
12385
12436
|
/**
|
|
12386
12437
|
* @category Keys
|
|
@@ -12434,7 +12485,7 @@ declare const GetEventPackage: ({ eventId, packageId, adminApiParams, }: GetEven
|
|
|
12434
12485
|
* @category Hooks
|
|
12435
12486
|
* @group Events
|
|
12436
12487
|
*/
|
|
12437
|
-
declare const useGetEventPackage: (eventId?: string, packageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackage
|
|
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>>;
|
|
12438
12489
|
|
|
12439
12490
|
/**
|
|
12440
12491
|
* @category Keys
|
|
@@ -12488,7 +12539,7 @@ declare const GetEventPageTranslation: ({ eventId, pageId, locale, adminApiParam
|
|
|
12488
12539
|
* @category Hooks
|
|
12489
12540
|
* @group Events
|
|
12490
12541
|
*/
|
|
12491
|
-
declare const useGetEventPageTranslation: (eventId?: string, pageId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPageTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPageTranslation | null
|
|
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>>;
|
|
12492
12543
|
|
|
12493
12544
|
/**
|
|
12494
12545
|
* @category Keys
|
|
@@ -12542,7 +12593,7 @@ declare const GetEventPage: ({ eventId, pageId, adminApiParams, }: GetEventPageP
|
|
|
12542
12593
|
* @category Hooks
|
|
12543
12594
|
* @group Events
|
|
12544
12595
|
*/
|
|
12545
|
-
declare const useGetEventPage: (eventId?: string, pageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPage
|
|
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>>;
|
|
12546
12597
|
|
|
12547
12598
|
/**
|
|
12548
12599
|
* @category Keys
|
|
@@ -12597,6 +12648,83 @@ declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, a
|
|
|
12597
12648
|
*/
|
|
12598
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>>;
|
|
12599
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
|
+
|
|
12600
12728
|
declare const EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY: (eventId: string, passTypeId: string, scheduleId: string) => string[];
|
|
12601
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;
|
|
12602
12730
|
interface GetEventPassTypePriceScheduleParams extends SingleQueryParams {
|
|
@@ -12611,7 +12739,7 @@ interface GetEventPassTypePriceScheduleParams extends SingleQueryParams {
|
|
|
12611
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.
|
|
12612
12740
|
*/
|
|
12613
12741
|
declare const GetEventPassTypePriceSchedule: ({ eventId, passTypeId, scheduleId, adminApiParams, }: GetEventPassTypePriceScheduleParams) => Promise<ConnectedXMResponse<EventPassTypePriceSchedule>>;
|
|
12614
|
-
declare const useGetEventPassTypePriceSchedule: (eventId?: string, passTypeId?: string, scheduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypePriceSchedule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassTypePriceSchedule
|
|
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>>;
|
|
12615
12743
|
|
|
12616
12744
|
/**
|
|
12617
12745
|
* @category Keys
|
|
@@ -12654,7 +12782,7 @@ interface GetEventPassTypeRefundScheduleParams extends SingleQueryParams {
|
|
|
12654
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.
|
|
12655
12783
|
*/
|
|
12656
12784
|
declare const GetEventPassTypeRefundSchedule: ({ eventId, passTypeId, scheduleId, adminApiParams, }: GetEventPassTypeRefundScheduleParams) => Promise<ConnectedXMResponse<EventPassTypeRefundSchedule>>;
|
|
12657
|
-
declare const useGetEventPassTypeRefundSchedule: (eventId?: string, passTypeId?: string, scheduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypeRefundSchedule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassTypeRefundSchedule
|
|
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>>;
|
|
12658
12786
|
|
|
12659
12787
|
/**
|
|
12660
12788
|
* @category Keys
|
|
@@ -12709,7 +12837,7 @@ declare const GetEventPassTypeTranslation: ({ eventId, passTypeId, locale, admin
|
|
|
12709
12837
|
* @category Hooks
|
|
12710
12838
|
* @group Events
|
|
12711
12839
|
*/
|
|
12712
|
-
declare const useGetEventPassTypeTranslation: (eventId?: string, passTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassTypeTranslation | null
|
|
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>>;
|
|
12713
12841
|
|
|
12714
12842
|
/**
|
|
12715
12843
|
* @category Keys
|
|
@@ -12762,7 +12890,7 @@ declare const GetAllEventPassTypes: ({ eventId, adminApiParams, }: GetAllEventPa
|
|
|
12762
12890
|
* @category Hooks
|
|
12763
12891
|
* @group Events
|
|
12764
12892
|
*/
|
|
12765
|
-
declare const useGetAllEventPassTypes: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassType[]
|
|
12893
|
+
declare const useGetAllEventPassTypes: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventPassTypes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPassType[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12766
12894
|
|
|
12767
12895
|
/**
|
|
12768
12896
|
* @category Keys
|
|
@@ -12789,7 +12917,7 @@ declare const GetEventPassType: ({ eventId, passTypeId, adminApiParams, }: GetEv
|
|
|
12789
12917
|
* @category Hooks
|
|
12790
12918
|
* @group Events
|
|
12791
12919
|
*/
|
|
12792
|
-
declare const useGetEventPassType: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassType
|
|
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>>;
|
|
12793
12921
|
|
|
12794
12922
|
/**
|
|
12795
12923
|
* @category Keys
|
|
@@ -13144,7 +13272,7 @@ declare const GetEventPassResponse: ({ eventId, passId, questionId, adminApiPara
|
|
|
13144
13272
|
* @category Hooks
|
|
13145
13273
|
* @group Events
|
|
13146
13274
|
*/
|
|
13147
|
-
declare const useGetEventPassResponse: (eventId?: string, passId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassResponse>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionResponse
|
|
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>>;
|
|
13148
13276
|
|
|
13149
13277
|
/**
|
|
13150
13278
|
* @category Keys
|
|
@@ -13229,7 +13357,7 @@ declare const GetEventPass: ({ eventId, passId, adminApiParams, }: GetEventPassP
|
|
|
13229
13357
|
* @category Hooks
|
|
13230
13358
|
* @group Events
|
|
13231
13359
|
*/
|
|
13232
|
-
declare const useGetEventPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPass
|
|
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>>;
|
|
13233
13361
|
|
|
13234
13362
|
/**
|
|
13235
13363
|
* @category Keys
|
|
@@ -13258,7 +13386,7 @@ declare const GetEventPassMatches: ({ eventId, passId, sessionId, roundId, admin
|
|
|
13258
13386
|
* @category Hooks
|
|
13259
13387
|
* @group Events
|
|
13260
13388
|
*/
|
|
13261
|
-
declare const useGetEventPassMatches: (eventId?: string, passId?: string, sessionId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassMatches>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Match[]
|
|
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>>;
|
|
13262
13390
|
|
|
13263
13391
|
/**
|
|
13264
13392
|
* @category Keys
|
|
@@ -13384,7 +13512,7 @@ declare const GetEventQuestionChoiceTranslation: ({ eventId, questionId, choiceI
|
|
|
13384
13512
|
* @category Hooks
|
|
13385
13513
|
* @group Events
|
|
13386
13514
|
*/
|
|
13387
|
-
declare const useGetEventQuestionChoiceTranslation: (eventId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionChoiceTranslation | null
|
|
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>>;
|
|
13388
13516
|
|
|
13389
13517
|
/**
|
|
13390
13518
|
* @category Keys
|
|
@@ -13440,7 +13568,7 @@ declare const GetEventQuestionTranslation: ({ eventId, questionId, locale, admin
|
|
|
13440
13568
|
* @category Hooks
|
|
13441
13569
|
* @group Events
|
|
13442
13570
|
*/
|
|
13443
|
-
declare const useGetEventQuestionTranslation: (eventId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionTranslation | null
|
|
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>>;
|
|
13444
13572
|
|
|
13445
13573
|
/**
|
|
13446
13574
|
* @category Keys
|
|
@@ -13493,7 +13621,7 @@ declare const GetEventDashboardQuestions: ({ eventId, adminApiParams, }: GetEven
|
|
|
13493
13621
|
* @category Hooks
|
|
13494
13622
|
* @group Events
|
|
13495
13623
|
*/
|
|
13496
|
-
declare const useGetEventDashboardQuestions: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventDashboardQuestions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseRegistrationQuestion[]
|
|
13624
|
+
declare const useGetEventDashboardQuestions: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventDashboardQuestions>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseRegistrationQuestion[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
13497
13625
|
|
|
13498
13626
|
/**
|
|
13499
13627
|
* @category Keys
|
|
@@ -13520,7 +13648,7 @@ declare const GetEventQuestion: ({ eventId, questionId, adminApiParams, }: GetEv
|
|
|
13520
13648
|
* @category Hooks
|
|
13521
13649
|
* @group Events
|
|
13522
13650
|
*/
|
|
13523
|
-
declare const useGetEventQuestion: (eventId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestion
|
|
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>>;
|
|
13524
13652
|
|
|
13525
13653
|
/**
|
|
13526
13654
|
* @category Keys
|
|
@@ -13548,7 +13676,7 @@ declare const GetEventQuestionChoice: ({ eventId, questionId, choiceId, adminApi
|
|
|
13548
13676
|
* @category Hooks
|
|
13549
13677
|
* @group Events
|
|
13550
13678
|
*/
|
|
13551
|
-
declare const useGetEventQuestionChoice: (eventId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionChoice
|
|
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>>;
|
|
13552
13680
|
|
|
13553
13681
|
/**
|
|
13554
13682
|
* @category Keys
|
|
@@ -13683,7 +13811,7 @@ declare const GetEventQuestionSummary: ({ adminApiParams, eventId, questionId, }
|
|
|
13683
13811
|
* @category Hooks
|
|
13684
13812
|
* @group Events
|
|
13685
13813
|
*/
|
|
13686
|
-
declare const useGetEventQuestionSummary: (eventId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SummaryData
|
|
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>>;
|
|
13687
13815
|
|
|
13688
13816
|
/**
|
|
13689
13817
|
* @category Keys
|
|
@@ -13737,7 +13865,7 @@ declare const GetEventRoomTypeTranslation: ({ eventId, roomTypeId, locale, admin
|
|
|
13737
13865
|
* @category Hooks
|
|
13738
13866
|
* @group Events
|
|
13739
13867
|
*/
|
|
13740
|
-
declare const useGetEventRoomTypeTranslation: (eventId?: string, roomTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomTypeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomTypeTranslation | null
|
|
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>>;
|
|
13741
13869
|
|
|
13742
13870
|
/**
|
|
13743
13871
|
* @category Keys
|
|
@@ -13791,7 +13919,7 @@ declare const GetEventRoomType: ({ eventId, roomTypeId, adminApiParams, }: GetEv
|
|
|
13791
13919
|
* @category Hooks
|
|
13792
13920
|
* @group Events
|
|
13793
13921
|
*/
|
|
13794
|
-
declare const useGetEventRoomType: (eventId?: string, roomTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType
|
|
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>>;
|
|
13795
13923
|
|
|
13796
13924
|
/**
|
|
13797
13925
|
* @category Keys
|
|
@@ -13926,7 +14054,7 @@ declare const GetRoom: ({ eventId, roomId, adminApiParams, }: GetRoomProps) => P
|
|
|
13926
14054
|
* @category Hooks
|
|
13927
14055
|
* @group Events
|
|
13928
14056
|
*/
|
|
13929
|
-
declare const useGetRoom: (eventId?: string, roomId?: string, options?: SingleQueryOptions<ReturnType<typeof GetRoom>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Room
|
|
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>>;
|
|
13930
14058
|
|
|
13931
14059
|
/**
|
|
13932
14060
|
* @category Keys
|
|
@@ -14007,7 +14135,7 @@ declare const GetEventSectionTranslation: ({ eventId, sectionId, locale, adminAp
|
|
|
14007
14135
|
* @category Hooks
|
|
14008
14136
|
* @group Events
|
|
14009
14137
|
*/
|
|
14010
|
-
declare const useGetEventSectionTranslation: (eventId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSectionTranslation | null
|
|
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>>;
|
|
14011
14139
|
|
|
14012
14140
|
/**
|
|
14013
14141
|
* @category Keys
|
|
@@ -14061,7 +14189,7 @@ declare const GetEventSection: ({ eventId, sectionId, adminApiParams, }: GetEven
|
|
|
14061
14189
|
* @category Hooks
|
|
14062
14190
|
* @group Events
|
|
14063
14191
|
*/
|
|
14064
|
-
declare const useGetEventSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection
|
|
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>>;
|
|
14065
14193
|
|
|
14066
14194
|
/**
|
|
14067
14195
|
* @category Keys
|
|
@@ -14224,7 +14352,7 @@ declare const GetEventSessionAccess: ({ eventId, sessionId, passId, adminApiPara
|
|
|
14224
14352
|
* @category Hooks
|
|
14225
14353
|
* @group Events
|
|
14226
14354
|
*/
|
|
14227
|
-
declare const useGetEventSessionAccess: (eventId?: string, sessionId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionAccess>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionAccess
|
|
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>>;
|
|
14228
14356
|
|
|
14229
14357
|
/**
|
|
14230
14358
|
* @category Keys
|
|
@@ -14309,7 +14437,7 @@ declare const GetEventSessionLocationTranslation: ({ eventId, locationId, locale
|
|
|
14309
14437
|
* @category Hooks
|
|
14310
14438
|
* @group Events
|
|
14311
14439
|
*/
|
|
14312
|
-
declare const useGetEventSessionLocationTranslation: (eventId?: string, locationId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionLocationTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionLocationTranslation | null
|
|
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>>;
|
|
14313
14441
|
|
|
14314
14442
|
/**
|
|
14315
14443
|
* @category Keys
|
|
@@ -14363,7 +14491,7 @@ declare const GetEventSessionLocation: ({ eventId, locationId, adminApiParams, }
|
|
|
14363
14491
|
* @category Hooks
|
|
14364
14492
|
* @group Events
|
|
14365
14493
|
*/
|
|
14366
|
-
declare const useGetEventSessionLocation: (eventId?: string, locationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionLocation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionLocation
|
|
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>>;
|
|
14367
14495
|
|
|
14368
14496
|
/**
|
|
14369
14497
|
* @category Keys
|
|
@@ -14445,7 +14573,7 @@ declare const GetEventSessionRoundMatch: ({ eventId, sessionId, roundId, matchId
|
|
|
14445
14573
|
* @category Hooks
|
|
14446
14574
|
* @group Events
|
|
14447
14575
|
*/
|
|
14448
|
-
declare const useGetEventSessionRoundMatch: (eventId?: string, sessionId?: string, roundId?: string, matchId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRoundMatch>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Match
|
|
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>>;
|
|
14449
14577
|
|
|
14450
14578
|
/**
|
|
14451
14579
|
* @category Keys
|
|
@@ -14587,7 +14715,7 @@ declare const GetEventSessionRoundQuestionsSummary: ({ eventId, sessionId, round
|
|
|
14587
14715
|
* @category Hooks
|
|
14588
14716
|
* @group Events
|
|
14589
14717
|
*/
|
|
14590
|
-
declare const useGetEventSessionRoundQuestionsSummary: (eventId?: string, sessionId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRoundQuestionsSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<string, "exclude" | "include" | "split"
|
|
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>>;
|
|
14591
14719
|
|
|
14592
14720
|
/**
|
|
14593
14721
|
* @category Keys
|
|
@@ -14614,7 +14742,7 @@ declare const GetEventSessionRounds: ({ eventId, sessionId, adminApiParams, }: G
|
|
|
14614
14742
|
* @category Hooks
|
|
14615
14743
|
* @group Events
|
|
14616
14744
|
*/
|
|
14617
|
-
declare const useGetEventSessionRounds: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRounds>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Round[]
|
|
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>>;
|
|
14618
14746
|
|
|
14619
14747
|
/**
|
|
14620
14748
|
* @category Keys
|
|
@@ -14644,7 +14772,7 @@ declare const GetEventSessionQuestionChoiceTranslation: ({ eventId, sessionId, q
|
|
|
14644
14772
|
* @category Hooks
|
|
14645
14773
|
* @group Events
|
|
14646
14774
|
*/
|
|
14647
|
-
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
|
|
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>>;
|
|
14648
14776
|
|
|
14649
14777
|
/**
|
|
14650
14778
|
* @category Keys
|
|
@@ -14702,7 +14830,7 @@ declare const GetEventSessionQuestionTranslation: ({ eventId, sessionId, questio
|
|
|
14702
14830
|
* @category Hooks
|
|
14703
14831
|
* @group Events
|
|
14704
14832
|
*/
|
|
14705
|
-
declare const useGetEventSessionQuestionTranslation: (eventId?: string, sessionId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestionTranslation | null
|
|
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>>;
|
|
14706
14834
|
|
|
14707
14835
|
/**
|
|
14708
14836
|
* @category Keys
|
|
@@ -14758,7 +14886,7 @@ declare const GetEventSessionQuestion: ({ eventId, sessionId, questionId, adminA
|
|
|
14758
14886
|
* @category Hooks
|
|
14759
14887
|
* @group Events
|
|
14760
14888
|
*/
|
|
14761
|
-
declare const useGetEventSessionQuestion: (eventId?: string, sessionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestion
|
|
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>>;
|
|
14762
14890
|
|
|
14763
14891
|
/**
|
|
14764
14892
|
* @category Keys
|
|
@@ -14787,7 +14915,7 @@ declare const GetEventSessionQuestionChoice: ({ eventId, sessionId, questionId,
|
|
|
14787
14915
|
* @category Hooks
|
|
14788
14916
|
* @group Events
|
|
14789
14917
|
*/
|
|
14790
|
-
declare const useGetEventSessionQuestionChoice: (eventId: string, sessionId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestionChoice
|
|
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>>;
|
|
14791
14919
|
|
|
14792
14920
|
/**
|
|
14793
14921
|
* @category Keys
|
|
@@ -14928,7 +15056,7 @@ declare const GetEventSessionSectionTranslation: ({ eventId, sessionId, sectionI
|
|
|
14928
15056
|
* @category Hooks
|
|
14929
15057
|
* @group Events
|
|
14930
15058
|
*/
|
|
14931
|
-
declare const useGetEventSessionSectionTranslation: (eventId?: string, sessionId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSectionTranslation | null
|
|
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>>;
|
|
14932
15060
|
|
|
14933
15061
|
/**
|
|
14934
15062
|
* @category Keys
|
|
@@ -14984,7 +15112,7 @@ declare const GetEventSessionSection: ({ eventId, sessionId, sectionId, adminApi
|
|
|
14984
15112
|
* @category Hooks
|
|
14985
15113
|
* @group Events
|
|
14986
15114
|
*/
|
|
14987
|
-
declare const useGetEventSessionSection: (eventId?: string, sessionId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSection
|
|
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>>;
|
|
14988
15116
|
|
|
14989
15117
|
/**
|
|
14990
15118
|
* @category Keys
|
|
@@ -15068,7 +15196,7 @@ declare const GetEventSessionTimeTranslation: ({ eventId, sessionId, timeId, loc
|
|
|
15068
15196
|
* @category Hooks
|
|
15069
15197
|
* @group Events
|
|
15070
15198
|
*/
|
|
15071
|
-
declare const useGetEventSessionTimeTranslation: (eventId?: string, sessionId?: string, timeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTimeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionTimeTranslation | null
|
|
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>>;
|
|
15072
15200
|
|
|
15073
15201
|
/**
|
|
15074
15202
|
* @category Keys
|
|
@@ -15124,7 +15252,7 @@ declare const GetEventSessionTime: ({ eventId, sessionId, timeId, adminApiParams
|
|
|
15124
15252
|
* @category Hooks
|
|
15125
15253
|
* @group Events
|
|
15126
15254
|
*/
|
|
15127
|
-
declare const useGetEventSessionTime: (eventId?: string, sessionId?: string, timeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTime>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionTime
|
|
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>>;
|
|
15128
15256
|
|
|
15129
15257
|
/**
|
|
15130
15258
|
* @category Keys
|
|
@@ -15207,7 +15335,7 @@ declare const GetEventSessionTranslation: ({ eventId, sessionId, locale, adminAp
|
|
|
15207
15335
|
* @category Hooks
|
|
15208
15336
|
* @group Events
|
|
15209
15337
|
*/
|
|
15210
|
-
declare const useGetEventSessionTranslation: (eventId?: string, sessionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionTranslation | null
|
|
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>>;
|
|
15211
15339
|
|
|
15212
15340
|
/**
|
|
15213
15341
|
* @category Keys
|
|
@@ -15261,7 +15389,7 @@ declare const GetEventSession: ({ eventId, sessionId, adminApiParams, }: GetEven
|
|
|
15261
15389
|
* @category Hooks
|
|
15262
15390
|
* @group Events
|
|
15263
15391
|
*/
|
|
15264
|
-
declare const useGetEventSession: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSession
|
|
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>>;
|
|
15265
15393
|
|
|
15266
15394
|
/**
|
|
15267
15395
|
* @category Keys
|
|
@@ -15613,7 +15741,7 @@ declare const GetEventSpeakerTranslation: ({ eventId, speakerId, locale, adminAp
|
|
|
15613
15741
|
* @category Hooks
|
|
15614
15742
|
* @group Events
|
|
15615
15743
|
*/
|
|
15616
|
-
declare const useGetEventSpeakerTranslation: (eventId?: string, speakerId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeakerTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSpeakerTranslation | null
|
|
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>>;
|
|
15617
15745
|
|
|
15618
15746
|
/**
|
|
15619
15747
|
* @category Keys
|
|
@@ -15667,7 +15795,7 @@ declare const GetEventSpeaker: ({ eventId, speakerId, adminApiParams, }: GetEven
|
|
|
15667
15795
|
* @category Hooks
|
|
15668
15796
|
* @group Events
|
|
15669
15797
|
*/
|
|
15670
|
-
declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSpeaker
|
|
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>>;
|
|
15671
15799
|
|
|
15672
15800
|
/**
|
|
15673
15801
|
* @category Keys
|
|
@@ -15800,7 +15928,7 @@ declare const GetEventSponsorshipLevelTranslation: ({ eventId, levelId, locale,
|
|
|
15800
15928
|
* @category Hooks
|
|
15801
15929
|
* @group Events
|
|
15802
15930
|
*/
|
|
15803
|
-
declare const useGetEventSponsorshipLevelTranslation: (eventId?: string, levelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipLevelTranslation
|
|
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>>;
|
|
15804
15932
|
|
|
15805
15933
|
/**
|
|
15806
15934
|
* @category Keys
|
|
@@ -15854,7 +15982,7 @@ declare const GetEventSponsorshipLevel: ({ eventId, levelId, adminApiParams, }:
|
|
|
15854
15982
|
* @category Hooks
|
|
15855
15983
|
* @group Events
|
|
15856
15984
|
*/
|
|
15857
|
-
declare const useGetEventSponsorshipLevel: (eventId?: string, levelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipLevel
|
|
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>>;
|
|
15858
15986
|
|
|
15859
15987
|
/**
|
|
15860
15988
|
* @category Keys
|
|
@@ -15909,7 +16037,7 @@ declare const GetEventSponsorshipTranslation: ({ eventId, levelId, sponsorshipId
|
|
|
15909
16037
|
* @category Hooks
|
|
15910
16038
|
* @group Events
|
|
15911
16039
|
*/
|
|
15912
|
-
declare const useGetEventSponsorshipTranslation: (eventId?: string, levelId?: string, sponsorshipId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipTranslation
|
|
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>>;
|
|
15913
16041
|
|
|
15914
16042
|
/**
|
|
15915
16043
|
* @category Keys
|
|
@@ -15965,7 +16093,7 @@ declare const GetEventSponsorship: ({ eventId, levelId, sponsorshipId, adminApiP
|
|
|
15965
16093
|
* @category Hooks
|
|
15966
16094
|
* @group Events
|
|
15967
16095
|
*/
|
|
15968
|
-
declare const useGetEventSponsorship: (eventId?: string, levelId?: string, sponsorshipId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorship>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorship
|
|
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>>;
|
|
15969
16097
|
|
|
15970
16098
|
/**
|
|
15971
16099
|
* @category Keys
|
|
@@ -16045,7 +16173,7 @@ declare const GetEventTrackTranslation: ({ eventId, trackId, locale, adminApiPar
|
|
|
16045
16173
|
* @category Hooks
|
|
16046
16174
|
* @group Events
|
|
16047
16175
|
*/
|
|
16048
|
-
declare const useGetEventTrackTranslation: (eventId?: string, trackId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTrackTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventTrackTranslation | null
|
|
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>>;
|
|
16049
16177
|
|
|
16050
16178
|
/**
|
|
16051
16179
|
* @category Keys
|
|
@@ -16099,7 +16227,7 @@ declare const GetEventTrack: ({ eventId, trackId, adminApiParams, }: GetEventTra
|
|
|
16099
16227
|
* @category Hooks
|
|
16100
16228
|
* @group Events
|
|
16101
16229
|
*/
|
|
16102
|
-
declare const useGetEventTrack: (eventId?: string, trackId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTrack>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventTrack
|
|
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>>;
|
|
16103
16231
|
|
|
16104
16232
|
/**
|
|
16105
16233
|
* @category Keys
|
|
@@ -16232,7 +16360,7 @@ declare const GetEventTranslation: ({ eventId, locale, adminApiParams, }: GetEve
|
|
|
16232
16360
|
* @category Hooks
|
|
16233
16361
|
* @group Events
|
|
16234
16362
|
*/
|
|
16235
|
-
declare const useGetEventTranslation: (eventId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventTranslation | null
|
|
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>>;
|
|
16236
16364
|
|
|
16237
16365
|
/**
|
|
16238
16366
|
* @category Keys
|
|
@@ -16284,7 +16412,7 @@ declare const GetEvent: ({ eventId, adminApiParams, }: GetEventProps) => Promise
|
|
|
16284
16412
|
* @category Hooks
|
|
16285
16413
|
* @group Events
|
|
16286
16414
|
*/
|
|
16287
|
-
declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Event
|
|
16415
|
+
declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Event>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16288
16416
|
|
|
16289
16417
|
/**
|
|
16290
16418
|
* @category Keys
|
|
@@ -16364,7 +16492,7 @@ declare const GetEventTiers: ({ eventId, adminApiParams, }: GetEventTiersProps)
|
|
|
16364
16492
|
* @category Hooks
|
|
16365
16493
|
* @group Events
|
|
16366
16494
|
*/
|
|
16367
|
-
declare const useGetEventTiers: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTiers>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseTier[]
|
|
16495
|
+
declare const useGetEventTiers: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTiers>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseTier[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16368
16496
|
|
|
16369
16497
|
/**
|
|
16370
16498
|
* @category Keys
|
|
@@ -16471,7 +16599,7 @@ declare const GetGroupInvitation: ({ groupId, invitationId, adminApiParams, }: G
|
|
|
16471
16599
|
* @category Hooks
|
|
16472
16600
|
* @group Groups
|
|
16473
16601
|
*/
|
|
16474
|
-
declare const useGetGroupInvitation: (groupId?: string, invitationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupInvitation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupInvitation
|
|
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>>;
|
|
16475
16603
|
|
|
16476
16604
|
/**
|
|
16477
16605
|
* @category Keys
|
|
@@ -16577,7 +16705,7 @@ declare const GetGroupRequest: ({ groupId, requestId, adminApiParams, }: GetGrou
|
|
|
16577
16705
|
* @category Hooks
|
|
16578
16706
|
* @group Groups
|
|
16579
16707
|
*/
|
|
16580
|
-
declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest
|
|
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>>;
|
|
16581
16709
|
|
|
16582
16710
|
/**
|
|
16583
16711
|
* @category Keys
|
|
@@ -16657,7 +16785,7 @@ declare const GetGroupTranslation: ({ groupId, locale, adminApiParams, }: GetGro
|
|
|
16657
16785
|
* @category Hooks
|
|
16658
16786
|
* @group Groups
|
|
16659
16787
|
*/
|
|
16660
|
-
declare const useGetGroupTranslation: (groupId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupTranslation | null
|
|
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>>;
|
|
16661
16789
|
|
|
16662
16790
|
/**
|
|
16663
16791
|
* @category Keys
|
|
@@ -16709,7 +16837,7 @@ declare const GetGroup: ({ groupId, adminApiParams, }: GetGroupProps) => Promise
|
|
|
16709
16837
|
* @category Hooks
|
|
16710
16838
|
* @group Groups
|
|
16711
16839
|
*/
|
|
16712
|
-
declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Group
|
|
16840
|
+
declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Group>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16713
16841
|
|
|
16714
16842
|
/**
|
|
16715
16843
|
* @category Keys
|
|
@@ -16790,7 +16918,7 @@ declare const GetImport: ({ importId, adminApiParams, }: GetImportProps) => Prom
|
|
|
16790
16918
|
* @category Hooks
|
|
16791
16919
|
* @group Imports
|
|
16792
16920
|
*/
|
|
16793
|
-
declare const useGetImport: (importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Import
|
|
16921
|
+
declare const useGetImport: (importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImport>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Import>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16794
16922
|
|
|
16795
16923
|
/**
|
|
16796
16924
|
* @category Keys
|
|
@@ -16858,7 +16986,7 @@ declare const GetInterest: ({ interestId, adminApiParams, }: GetInterestProps) =
|
|
|
16858
16986
|
* @category Hooks
|
|
16859
16987
|
* @group Interests
|
|
16860
16988
|
*/
|
|
16861
|
-
declare const useGetInterest: (interestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInterest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Interest
|
|
16989
|
+
declare const useGetInterest: (interestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInterest>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Interest>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16862
16990
|
|
|
16863
16991
|
/**
|
|
16864
16992
|
* @category Keys
|
|
@@ -17066,7 +17194,7 @@ declare const GetInvoice: ({ invoiceId, adminApiParams, }: GetInvoiceProps) => P
|
|
|
17066
17194
|
* @category Hooks
|
|
17067
17195
|
* @group Invoices
|
|
17068
17196
|
*/
|
|
17069
|
-
declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice
|
|
17197
|
+
declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Invoice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17070
17198
|
|
|
17071
17199
|
/**
|
|
17072
17200
|
* @category Keys
|
|
@@ -17093,7 +17221,7 @@ declare const GetInvoiceLineItem: ({ invoiceId, lineItemId, adminApiParams, }: G
|
|
|
17093
17221
|
* @category Hooks
|
|
17094
17222
|
* @group Invoices
|
|
17095
17223
|
*/
|
|
17096
|
-
declare const useGetInvoiceLineItem: (invoiceId?: string, lineItemId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceLineItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<InvoiceLineItem
|
|
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>>;
|
|
17097
17225
|
|
|
17098
17226
|
/**
|
|
17099
17227
|
* @category Keys
|
|
@@ -17215,7 +17343,7 @@ declare const GetLogin: ({ username, adminApiParams, }: GetLoginProps) => Promis
|
|
|
17215
17343
|
* @category Hooks
|
|
17216
17344
|
* @group Logins
|
|
17217
17345
|
*/
|
|
17218
|
-
declare const useGetLogin: (username?: string, options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Login
|
|
17346
|
+
declare const useGetLogin: (username?: string, options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Login>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17219
17347
|
|
|
17220
17348
|
/**
|
|
17221
17349
|
* @category Key
|
|
@@ -17310,7 +17438,7 @@ declare const GetMeetingLink: ({ meetingId, linkId, adminApiParams, }: GetMeetin
|
|
|
17310
17438
|
* @category Hooks
|
|
17311
17439
|
* @group StreamsV2
|
|
17312
17440
|
*/
|
|
17313
|
-
declare const useGetMeetingLink: (meetingId?: string, linkId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLink>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingLink
|
|
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>>;
|
|
17314
17442
|
|
|
17315
17443
|
/**
|
|
17316
17444
|
* @category Keys
|
|
@@ -17362,7 +17490,7 @@ declare const GetLivestream: ({ livestreamId, adminApiParams, }: GetLivestreamPa
|
|
|
17362
17490
|
* @category Hooks
|
|
17363
17491
|
* @group StreamsV2
|
|
17364
17492
|
*/
|
|
17365
|
-
declare const useGetLivestream: (livestreamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLivestream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Livestream
|
|
17493
|
+
declare const useGetLivestream: (livestreamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLivestream>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Livestream>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17366
17494
|
|
|
17367
17495
|
/**
|
|
17368
17496
|
* @category Keys
|
|
@@ -17440,7 +17568,7 @@ declare const GetMeetingParticipant: ({ meetingId, participantId, adminApiParams
|
|
|
17440
17568
|
* @category Hooks
|
|
17441
17569
|
* @group StreamsV2
|
|
17442
17570
|
*/
|
|
17443
|
-
declare const useGetMeetingParticipant: (meetingId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingParticipant>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingParticipant
|
|
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>>;
|
|
17444
17572
|
|
|
17445
17573
|
/**
|
|
17446
17574
|
* @category Keys
|
|
@@ -17492,7 +17620,7 @@ declare const GetPreset: ({ presetId, adminApiParams, }: GetPresetParams) => Pro
|
|
|
17492
17620
|
* @category Hooks
|
|
17493
17621
|
* @group StreamsV2
|
|
17494
17622
|
*/
|
|
17495
|
-
declare const useGetPreset: (presetId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPreset>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Preset
|
|
17623
|
+
declare const useGetPreset: (presetId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPreset>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Preset>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17496
17624
|
|
|
17497
17625
|
/**
|
|
17498
17626
|
* @category Keys
|
|
@@ -17543,7 +17671,7 @@ declare const GetMeetingRecording: ({ recordingId, adminApiParams, }: GetMeeting
|
|
|
17543
17671
|
* @category Hooks
|
|
17544
17672
|
* @group StreamsV2
|
|
17545
17673
|
*/
|
|
17546
|
-
declare const useGetMeetingRecording: (recordingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingRecording>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingRecording
|
|
17674
|
+
declare const useGetMeetingRecording: (recordingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingRecording>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingRecording>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17547
17675
|
|
|
17548
17676
|
/**
|
|
17549
17677
|
* @category Keys
|
|
@@ -17595,7 +17723,7 @@ declare const GetMeetingSession: ({ sessionId, adminApiParams, }: GetMeetingSess
|
|
|
17595
17723
|
* @category Hooks
|
|
17596
17724
|
* @group StreamsV2
|
|
17597
17725
|
*/
|
|
17598
|
-
declare const useGetMeetingSession: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSession
|
|
17726
|
+
declare const useGetMeetingSession: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSession>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSession>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17599
17727
|
|
|
17600
17728
|
/**
|
|
17601
17729
|
* @category Keys
|
|
@@ -17621,7 +17749,7 @@ declare const GetMeetingSessionMessages: ({ sessionId, adminApiParams, }: GetMee
|
|
|
17621
17749
|
* @category Hooks
|
|
17622
17750
|
* @group StreamsV2
|
|
17623
17751
|
*/
|
|
17624
|
-
declare const useGetMeetingSessionMessages: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionMessages>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionChatDownload
|
|
17752
|
+
declare const useGetMeetingSessionMessages: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionMessages>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionChatDownload>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17625
17753
|
|
|
17626
17754
|
/**
|
|
17627
17755
|
* @category Keys
|
|
@@ -17648,7 +17776,7 @@ declare const GetMeetingSessionParticipant: ({ sessionId, participantId, adminAp
|
|
|
17648
17776
|
* @category Hooks
|
|
17649
17777
|
* @group StreamsV2
|
|
17650
17778
|
*/
|
|
17651
|
-
declare const useGetMeetingSessionParticipant: (sessionId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionParticipant>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionParticipant
|
|
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>>;
|
|
17652
17780
|
|
|
17653
17781
|
/**
|
|
17654
17782
|
* @category Keys
|
|
@@ -17700,7 +17828,7 @@ declare const GetMeetingSessionSummary: ({ sessionId, adminApiParams, }: GetMeet
|
|
|
17700
17828
|
* @category Hooks
|
|
17701
17829
|
* @group StreamsV2
|
|
17702
17830
|
*/
|
|
17703
|
-
declare const useGetMeetingSessionSummary: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionSummaryDownload
|
|
17831
|
+
declare const useGetMeetingSessionSummary: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionSummary>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionSummaryDownload>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17704
17832
|
|
|
17705
17833
|
/**
|
|
17706
17834
|
* @category Keys
|
|
@@ -17726,7 +17854,7 @@ declare const GetMeetingSessionTranscript: ({ sessionId, adminApiParams, }: GetM
|
|
|
17726
17854
|
* @category Hooks
|
|
17727
17855
|
* @group StreamsV2
|
|
17728
17856
|
*/
|
|
17729
|
-
declare const useGetMeetingSessionTranscript: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionTranscript>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionTranscriptDownload
|
|
17857
|
+
declare const useGetMeetingSessionTranscript: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionTranscript>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionTranscriptDownload>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17730
17858
|
|
|
17731
17859
|
/**
|
|
17732
17860
|
* @category Keys
|
|
@@ -17778,7 +17906,7 @@ declare const GetMeeting: ({ meetingId, adminApiParams, }: GetMeetingParams) =>
|
|
|
17778
17906
|
* @category Hooks
|
|
17779
17907
|
* @group StreamsV2
|
|
17780
17908
|
*/
|
|
17781
|
-
declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Meeting
|
|
17909
|
+
declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Meeting>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17782
17910
|
|
|
17783
17911
|
/**
|
|
17784
17912
|
* @category Keys
|
|
@@ -17804,7 +17932,7 @@ declare const GetMeetingLivestream: ({ meetingId, adminApiParams, }: GetMeetingL
|
|
|
17804
17932
|
* @category Hooks
|
|
17805
17933
|
* @group StreamsV2
|
|
17806
17934
|
*/
|
|
17807
|
-
declare const useGetMeetingLivestream: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLivestream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Livestream
|
|
17935
|
+
declare const useGetMeetingLivestream: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLivestream>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Livestream>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17808
17936
|
|
|
17809
17937
|
/**
|
|
17810
17938
|
* @category Keys
|
|
@@ -17857,9 +17985,9 @@ declare const GetNotificationCount: ({ filters, adminApiParams, }: GetNotificati
|
|
|
17857
17985
|
* @category Hooks
|
|
17858
17986
|
* @group Notifications
|
|
17859
17987
|
*/
|
|
17860
|
-
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<{
|
|
17861
17989
|
notifications: number;
|
|
17862
|
-
}
|
|
17990
|
+
}>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17863
17991
|
|
|
17864
17992
|
/**
|
|
17865
17993
|
* @category Keys
|
|
@@ -17884,7 +18012,7 @@ declare const GetNotificationStats: ({ adminApiParams, }: GetNotificationStatsPr
|
|
|
17884
18012
|
* @category Hooks
|
|
17885
18013
|
* @group Notifications
|
|
17886
18014
|
*/
|
|
17887
|
-
declare const useGetNotificationStats: (options?: SingleQueryOptions<ReturnType<typeof GetNotificationStats>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<NotificationStats
|
|
18015
|
+
declare const useGetNotificationStats: (options?: SingleQueryOptions<ReturnType<typeof GetNotificationStats>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<NotificationStats>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17888
18016
|
|
|
17889
18017
|
/**
|
|
17890
18018
|
* @category Keys
|
|
@@ -17936,7 +18064,7 @@ declare const GetDashboardAttributes: ({ search, adminApiParams, }: GetDashboard
|
|
|
17936
18064
|
* @category Hooks
|
|
17937
18065
|
* @group Organization
|
|
17938
18066
|
*/
|
|
17939
|
-
declare const useGetDashboardAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardAttributes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAttribute[]
|
|
18067
|
+
declare const useGetDashboardAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardAttributes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAttribute[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17940
18068
|
|
|
17941
18069
|
/**
|
|
17942
18070
|
* @category Keys
|
|
@@ -17962,7 +18090,7 @@ declare const GetOrganizationAccountAttribute: ({ attributeId, adminApiParams, }
|
|
|
17962
18090
|
* @category Hooks
|
|
17963
18091
|
* @group Organization
|
|
17964
18092
|
*/
|
|
17965
|
-
declare const useGetOrganizationAccountAttribute: (attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationAccountAttribute>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAttribute
|
|
18093
|
+
declare const useGetOrganizationAccountAttribute: (attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationAccountAttribute>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAttribute>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17966
18094
|
|
|
17967
18095
|
/**
|
|
17968
18096
|
* @category Keys
|
|
@@ -18013,7 +18141,7 @@ declare const GetRequiredAttributes: ({ search, adminApiParams, }: GetRequiredAt
|
|
|
18013
18141
|
* @category Hooks
|
|
18014
18142
|
* @group Organization
|
|
18015
18143
|
*/
|
|
18016
|
-
declare const useGetRequiredAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetRequiredAttributes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAttribute[]
|
|
18144
|
+
declare const useGetRequiredAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetRequiredAttributes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAttribute[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18017
18145
|
|
|
18018
18146
|
/**
|
|
18019
18147
|
* @category Keys
|
|
@@ -18038,7 +18166,7 @@ declare const GetOrganizationDomain: ({ adminApiParams, }: GetOrganizationDomain
|
|
|
18038
18166
|
* @category Hooks
|
|
18039
18167
|
* @group Organization
|
|
18040
18168
|
*/
|
|
18041
|
-
declare const useGetOrganizationDomain: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationDomain>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<DomainDetails | null
|
|
18169
|
+
declare const useGetOrganizationDomain: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationDomain>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<DomainDetails | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18042
18170
|
|
|
18043
18171
|
/**
|
|
18044
18172
|
* @category Keys
|
|
@@ -18064,7 +18192,7 @@ declare const GetIntegration: ({ integrationId, adminApiParams, }: GetIntegratio
|
|
|
18064
18192
|
* @category Hooks
|
|
18065
18193
|
* @group Integrations
|
|
18066
18194
|
*/
|
|
18067
|
-
declare const useGetIntegration: (integrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Integration
|
|
18195
|
+
declare const useGetIntegration: (integrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Integration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18068
18196
|
|
|
18069
18197
|
/**
|
|
18070
18198
|
* @category Keys
|
|
@@ -18116,7 +18244,7 @@ declare const GetCustomModuleTranslation: ({ moduleId, locale, adminApiParams, }
|
|
|
18116
18244
|
* @category Hooks
|
|
18117
18245
|
* @group Organization
|
|
18118
18246
|
*/
|
|
18119
|
-
declare const useGetCustomModuleTranslation: (moduleId: string, locale: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModuleTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomModuleTranslation
|
|
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>>;
|
|
18120
18248
|
|
|
18121
18249
|
/**
|
|
18122
18250
|
* @category Keys
|
|
@@ -18168,7 +18296,7 @@ declare const GetCustomModule: ({ moduleId, adminApiParams, }: GetCustomModulePr
|
|
|
18168
18296
|
* @category Hooks
|
|
18169
18297
|
* @group Organization
|
|
18170
18298
|
*/
|
|
18171
|
-
declare const useGetCustomModule: (moduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomModule
|
|
18299
|
+
declare const useGetCustomModule: (moduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModule>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomModule>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18172
18300
|
|
|
18173
18301
|
/**
|
|
18174
18302
|
* @category Keys
|
|
@@ -18219,7 +18347,7 @@ declare const GetOrganizationModuleSettingsTranslation: ({ locale, adminApiParam
|
|
|
18219
18347
|
* @category Hooks
|
|
18220
18348
|
* @group Organization-Module-Settings
|
|
18221
18349
|
*/
|
|
18222
|
-
declare const useGetOrganizationModuleSettingsTranslation: (locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettingsTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationModuleSettingsTranslation | null
|
|
18350
|
+
declare const useGetOrganizationModuleSettingsTranslation: (locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettingsTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationModuleSettingsTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18223
18351
|
|
|
18224
18352
|
/**
|
|
18225
18353
|
* @category Keys
|
|
@@ -18269,7 +18397,7 @@ declare const GetOrganizationModuleSettings: ({ adminApiParams, }: GetOrganizati
|
|
|
18269
18397
|
* @category Hooks
|
|
18270
18398
|
* @group Organization-Module-Settings
|
|
18271
18399
|
*/
|
|
18272
|
-
declare const useGetOrganizationModuleSettings: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettings>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationModuleSettings
|
|
18400
|
+
declare const useGetOrganizationModuleSettings: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettings>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationModuleSettings>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18273
18401
|
|
|
18274
18402
|
/**
|
|
18275
18403
|
* @category Keys
|
|
@@ -18347,7 +18475,7 @@ declare const GetOrganizationModule: ({ moduleType, adminApiParams, }: GetOrgani
|
|
|
18347
18475
|
* @category Hooks
|
|
18348
18476
|
* @group Organization
|
|
18349
18477
|
*/
|
|
18350
|
-
declare const useGetOrganizationModule: (moduleType: keyof typeof OrganizationModuleType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationModule
|
|
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>>;
|
|
18351
18479
|
|
|
18352
18480
|
/**
|
|
18353
18481
|
* @category Keys
|
|
@@ -18398,7 +18526,7 @@ declare const GetOrganizationPaymentIntegration: ({ integrationId, adminApiParam
|
|
|
18398
18526
|
* @category Hooks
|
|
18399
18527
|
* @group Organization
|
|
18400
18528
|
*/
|
|
18401
|
-
declare const useGetOrganizationPaymentIntegration: (integrationId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntegration
|
|
18529
|
+
declare const useGetOrganizationPaymentIntegration: (integrationId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentIntegration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<PaymentIntegration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18402
18530
|
|
|
18403
18531
|
/**
|
|
18404
18532
|
* @category Keys
|
|
@@ -18449,7 +18577,7 @@ declare const GetPayment: ({ paymentId, adminApiParams, }: GetPaymentProps) => P
|
|
|
18449
18577
|
* @category Hooks
|
|
18450
18578
|
* @group Payments
|
|
18451
18579
|
*/
|
|
18452
|
-
declare const useGetPayment: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment
|
|
18580
|
+
declare const useGetPayment: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPayment>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Payment>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18453
18581
|
|
|
18454
18582
|
/**
|
|
18455
18583
|
* @category Keys
|
|
@@ -18475,7 +18603,7 @@ declare const GetPaymentTaxMetadata: ({ paymentId, adminApiParams, }: GetPayment
|
|
|
18475
18603
|
* @category Hooks
|
|
18476
18604
|
* @group Payments
|
|
18477
18605
|
*/
|
|
18478
|
-
declare const useGetPaymentTaxMetadata: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPaymentTaxMetadata>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<string, 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>>;
|
|
18479
18607
|
|
|
18480
18608
|
/**
|
|
18481
18609
|
* @category Keys
|
|
@@ -18526,7 +18654,7 @@ declare const GetOrganizationSideEffect: ({ sideEffectId, adminApiParams, }: Get
|
|
|
18526
18654
|
* @category Hooks
|
|
18527
18655
|
* @group Organization
|
|
18528
18656
|
*/
|
|
18529
|
-
declare const useGetOrganizationSideEffect: (sideEffectId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSideEffect>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SideEffect
|
|
18657
|
+
declare const useGetOrganizationSideEffect: (sideEffectId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSideEffect>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SideEffect>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18530
18658
|
|
|
18531
18659
|
/**
|
|
18532
18660
|
* @category Keys
|
|
@@ -18579,7 +18707,7 @@ declare const GetEntityUseCodes: ({ type, adminApiParams, }: GetEntityUseCodesPr
|
|
|
18579
18707
|
* @category Hooks
|
|
18580
18708
|
* @group Tax Integrations
|
|
18581
18709
|
*/
|
|
18582
|
-
declare const useGetEntityUseCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetEntityUseCodes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EntityUseCode[]
|
|
18710
|
+
declare const useGetEntityUseCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetEntityUseCodes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EntityUseCode[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18583
18711
|
|
|
18584
18712
|
/**
|
|
18585
18713
|
* @category Keys
|
|
@@ -18605,7 +18733,7 @@ declare const GetTaxCodes: ({ type, adminApiParams, }: GetTaxCodesProps) => Prom
|
|
|
18605
18733
|
* @category Hooks
|
|
18606
18734
|
* @group Tax Integrations
|
|
18607
18735
|
*/
|
|
18608
|
-
declare const useGetTaxCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxCodes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<TaxCode[]
|
|
18736
|
+
declare const useGetTaxCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxCodes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<TaxCode[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18609
18737
|
|
|
18610
18738
|
/**
|
|
18611
18739
|
* @category Keys
|
|
@@ -18631,7 +18759,7 @@ declare const GetTaxIntegration: ({ type, adminApiParams, }: GetTaxIntegrationPr
|
|
|
18631
18759
|
* @category Hooks
|
|
18632
18760
|
* @group Integrations
|
|
18633
18761
|
*/
|
|
18634
|
-
declare const useGetTaxIntegration: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<TaxIntegration
|
|
18762
|
+
declare const useGetTaxIntegration: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxIntegration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<TaxIntegration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18635
18763
|
|
|
18636
18764
|
/**
|
|
18637
18765
|
* @category Keys
|
|
@@ -18683,7 +18811,7 @@ declare const GetTaxLog: ({ type, logId, adminApiParams, }: GetTaxLogProps) => P
|
|
|
18683
18811
|
* @category Hooks
|
|
18684
18812
|
* @group Tax Integrations
|
|
18685
18813
|
*/
|
|
18686
|
-
declare const useGetTaxLog: (type?: string, logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxLog>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<TaxIntegrationLog
|
|
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>>;
|
|
18687
18815
|
|
|
18688
18816
|
/**
|
|
18689
18817
|
* @category Keys
|
|
@@ -18785,7 +18913,7 @@ declare const GetOrganization: ({ adminApiParams, }: GetOrganizationProps) => Pr
|
|
|
18785
18913
|
* @category Hooks
|
|
18786
18914
|
* @group Organization
|
|
18787
18915
|
*/
|
|
18788
|
-
declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Organization
|
|
18916
|
+
declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Organization>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18789
18917
|
|
|
18790
18918
|
/**
|
|
18791
18919
|
* @category Keys
|
|
@@ -18811,7 +18939,7 @@ declare const GetOrganizationMembership: ({ userId, adminApiParams, }: GetOrgani
|
|
|
18811
18939
|
* @category Hooks
|
|
18812
18940
|
* @group Organization
|
|
18813
18941
|
*/
|
|
18814
|
-
declare const useGetOrganizationMembership: (userId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationMembership>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationMembership
|
|
18942
|
+
declare const useGetOrganizationMembership: (userId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationMembership>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationMembership>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18815
18943
|
|
|
18816
18944
|
/**
|
|
18817
18945
|
* @category Keys
|
|
@@ -18837,7 +18965,7 @@ declare const GetOrganizationSystemLog: ({ logId, adminApiParams, }: GetOrganiza
|
|
|
18837
18965
|
* @category Hooks
|
|
18838
18966
|
* @group Organization
|
|
18839
18967
|
*/
|
|
18840
|
-
declare const useGetOrganizationSystemLog: (logId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSystemLog>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SystemEventLog
|
|
18968
|
+
declare const useGetOrganizationSystemLog: (logId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSystemLog>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SystemEventLog>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18841
18969
|
|
|
18842
18970
|
/**
|
|
18843
18971
|
* @category Keys
|
|
@@ -18891,7 +19019,7 @@ declare const SearchOrganization: ({ search, filters, adminApiParams, }: SearchO
|
|
|
18891
19019
|
* @category Hooks
|
|
18892
19020
|
* @group Organization
|
|
18893
19021
|
*/
|
|
18894
|
-
declare const useSearchOrganization: (search?: string, filters?: SearchOrganizationFilters, options?: SingleQueryOptions<ReturnType<typeof SearchOrganization>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchField[]
|
|
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>>;
|
|
18895
19023
|
|
|
18896
19024
|
/**
|
|
18897
19025
|
* @category Keys
|
|
@@ -18942,7 +19070,7 @@ declare const GetOrganizationWebhook: ({ webhookId, adminApiParams, }: GetOrgani
|
|
|
18942
19070
|
* @category Hooks
|
|
18943
19071
|
* @group Organization
|
|
18944
19072
|
*/
|
|
18945
|
-
declare const useGetOrganizationWebhook: (webhookId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationWebhook>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Webhook
|
|
19073
|
+
declare const useGetOrganizationWebhook: (webhookId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationWebhook>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Webhook>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18946
19074
|
|
|
18947
19075
|
/**
|
|
18948
19076
|
* @category Keys
|
|
@@ -18992,7 +19120,7 @@ declare const GetPreferences: ({ adminApiParams, }: GetPreferencesProps) => Prom
|
|
|
18992
19120
|
* @category Hooks
|
|
18993
19121
|
* @group Preferences
|
|
18994
19122
|
*/
|
|
18995
|
-
declare const useGetPreferences: (options?: SingleQueryOptions<ReturnType<typeof GetPreferences>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AdminNotificationPreferences
|
|
19123
|
+
declare const useGetPreferences: (options?: SingleQueryOptions<ReturnType<typeof GetPreferences>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AdminNotificationPreferences>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18996
19124
|
|
|
18997
19125
|
/**
|
|
18998
19126
|
* @category Keys
|
|
@@ -19018,7 +19146,7 @@ declare const GetPushDevice: ({ pushDeviceId, adminApiParams, }: GetPushDevicePr
|
|
|
19018
19146
|
* @category Hooks
|
|
19019
19147
|
* @group Accounts
|
|
19020
19148
|
*/
|
|
19021
|
-
declare const useGetPushDevice: (pushDeviceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPushDevice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PushDevice
|
|
19149
|
+
declare const useGetPushDevice: (pushDeviceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPushDevice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<PushDevice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19022
19150
|
|
|
19023
19151
|
/**
|
|
19024
19152
|
* @category Keys
|
|
@@ -19070,7 +19198,7 @@ declare const GetCustomReport: ({ reportId, adminApiParams, }: GetCustomReportPr
|
|
|
19070
19198
|
* @category Hooks
|
|
19071
19199
|
* @group Reports
|
|
19072
19200
|
*/
|
|
19073
|
-
declare const useGetCustomReport: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomReport
|
|
19201
|
+
declare const useGetCustomReport: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReport>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomReport>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19074
19202
|
|
|
19075
19203
|
/**
|
|
19076
19204
|
* @category Keys
|
|
@@ -19096,7 +19224,7 @@ declare const GetCustomReportSchedule: ({ reportId, adminApiParams, }: GetCustom
|
|
|
19096
19224
|
* @category Hooks
|
|
19097
19225
|
* @group Reports
|
|
19098
19226
|
*/
|
|
19099
|
-
declare const useGetCustomReportSchedule: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportSchedule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomReportSchedule | null
|
|
19227
|
+
declare const useGetCustomReportSchedule: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportSchedule>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomReportSchedule | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19100
19228
|
|
|
19101
19229
|
/**
|
|
19102
19230
|
* @category Keys
|
|
@@ -19149,7 +19277,7 @@ declare const GetReport: ({ standard, filters, adminApiParams, }: GetReportProps
|
|
|
19149
19277
|
* @category Hooks
|
|
19150
19278
|
* @group Reports
|
|
19151
19279
|
*/
|
|
19152
|
-
declare const useGetReport: (standard?: string, filters?: ReportFilters, options?: SingleQueryOptions<ReturnType<typeof GetReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StandardReport
|
|
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>>;
|
|
19153
19281
|
|
|
19154
19282
|
/**
|
|
19155
19283
|
* @category Keys
|
|
@@ -19175,7 +19303,7 @@ declare const GetReports: ({ type, adminApiParams, }: GetReportsProps) => Promis
|
|
|
19175
19303
|
* @category Hooks
|
|
19176
19304
|
* @group Reports
|
|
19177
19305
|
*/
|
|
19178
|
-
declare const useGetReports: (type: keyof typeof ReportType, options?: SingleQueryOptions<ReturnType<typeof GetReports>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseStandardReport[]
|
|
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>>;
|
|
19179
19307
|
|
|
19180
19308
|
/**
|
|
19181
19309
|
* @category Keys
|
|
@@ -19201,7 +19329,7 @@ declare const GetCustomReportUsers: ({ reportId, adminApiParams, }: GetCustomRep
|
|
|
19201
19329
|
* @category Hooks
|
|
19202
19330
|
* @group Reports
|
|
19203
19331
|
*/
|
|
19204
|
-
declare const useGetCustomReportUsers: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportUsers>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<User[]
|
|
19332
|
+
declare const useGetCustomReportUsers: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportUsers>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<User[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19205
19333
|
|
|
19206
19334
|
/**
|
|
19207
19335
|
* @category Keys
|
|
@@ -19227,7 +19355,7 @@ declare const GetSearchList: ({ searchListId, adminApiParams, }: GetSearchListPr
|
|
|
19227
19355
|
* @category Hooks
|
|
19228
19356
|
* @group SearchLists
|
|
19229
19357
|
*/
|
|
19230
|
-
declare const useGetSearchList: (searchListId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchList>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchList
|
|
19358
|
+
declare const useGetSearchList: (searchListId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchList>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SearchList>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19231
19359
|
|
|
19232
19360
|
/**
|
|
19233
19361
|
* @category Keys
|
|
@@ -19318,7 +19446,7 @@ declare const GetSearchListValue: ({ searchListId, valueId, adminApiParams, }: G
|
|
|
19318
19446
|
* @category Hooks
|
|
19319
19447
|
* @group SearchListValues
|
|
19320
19448
|
*/
|
|
19321
|
-
declare const useGetSearchListValue: (searchListId?: string, valueId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchListValue>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchListValue
|
|
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>>;
|
|
19322
19450
|
|
|
19323
19451
|
/**
|
|
19324
19452
|
* @category Keys
|
|
@@ -19370,7 +19498,7 @@ declare const GetSelfApiKey: ({ apiKeyId, adminApiParams, }: GetSelfApiKeyProps)
|
|
|
19370
19498
|
* @category Hooks
|
|
19371
19499
|
* @group SelfApiKeys
|
|
19372
19500
|
*/
|
|
19373
|
-
declare const useGetSelfApiKey: (apiKeyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfApiKey>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<UserApiKey
|
|
19501
|
+
declare const useGetSelfApiKey: (apiKeyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfApiKey>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<UserApiKey>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19374
19502
|
|
|
19375
19503
|
/**
|
|
19376
19504
|
* @category Keys
|
|
@@ -19420,7 +19548,7 @@ declare const GetSelf: ({ adminApiParams, }: GetSelfProps) => Promise<ConnectedX
|
|
|
19420
19548
|
* @category Hooks
|
|
19421
19549
|
* @group Self
|
|
19422
19550
|
*/
|
|
19423
|
-
declare const useGetSelf: (options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Self
|
|
19551
|
+
declare const useGetSelf: (options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Self>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19424
19552
|
|
|
19425
19553
|
/**
|
|
19426
19554
|
* @category Keys
|
|
@@ -19445,7 +19573,7 @@ declare const GetSelfOrgMembership: ({ adminApiParams, }: GetSelfOrgMembershipPr
|
|
|
19445
19573
|
* @category Hooks
|
|
19446
19574
|
* @group Self
|
|
19447
19575
|
*/
|
|
19448
|
-
declare const useGetSelfOrgMembership: (options?: SingleQueryOptions<ReturnType<typeof GetSelfOrgMembership>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationMembership
|
|
19576
|
+
declare const useGetSelfOrgMembership: (options?: SingleQueryOptions<ReturnType<typeof GetSelfOrgMembership>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationMembership>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19449
19577
|
|
|
19450
19578
|
/**
|
|
19451
19579
|
* @category Keys
|
|
@@ -19493,7 +19621,7 @@ declare const GetSeriesQuestionTranslation: ({ seriesId, questionId, locale, adm
|
|
|
19493
19621
|
* @category Hooks
|
|
19494
19622
|
* @group Series
|
|
19495
19623
|
*/
|
|
19496
|
-
declare const useGetSeriesQuestionTranslation: (seriesId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesQuestionTranslation | null
|
|
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>>;
|
|
19497
19625
|
|
|
19498
19626
|
/**
|
|
19499
19627
|
* @category Keys
|
|
@@ -19520,7 +19648,7 @@ declare const GetSeriesQuestion: ({ seriesId, questionId, adminApiParams, }: Get
|
|
|
19520
19648
|
* @category Hooks
|
|
19521
19649
|
* @group Series
|
|
19522
19650
|
*/
|
|
19523
|
-
declare const useGetSeriesQuestion: (seriesId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesQuestion
|
|
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>>;
|
|
19524
19652
|
|
|
19525
19653
|
/**
|
|
19526
19654
|
* @category Keys
|
|
@@ -19548,7 +19676,7 @@ declare const GetSeriesQuestionChoice: ({ seriesId, questionId, choiceId, adminA
|
|
|
19548
19676
|
* @category Hooks
|
|
19549
19677
|
* @group Series
|
|
19550
19678
|
*/
|
|
19551
|
-
declare const useGetSeriesQuestionChoice: (seriesId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesQuestionChoice
|
|
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>>;
|
|
19552
19680
|
|
|
19553
19681
|
/**
|
|
19554
19682
|
* @category Keys
|
|
@@ -19628,7 +19756,7 @@ declare const GetSeriesRegistration: ({ seriesId, registrationId, adminApiParams
|
|
|
19628
19756
|
* @category Hooks
|
|
19629
19757
|
* @group Series
|
|
19630
19758
|
*/
|
|
19631
|
-
declare const useGetSeriesRegistration: (seriesId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesRegistration
|
|
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>>;
|
|
19632
19760
|
|
|
19633
19761
|
/**
|
|
19634
19762
|
* @category Keys
|
|
@@ -19699,7 +19827,7 @@ declare const GetSeriesRegistrationResponses: ({ seriesId, registrationId, admin
|
|
|
19699
19827
|
* @category Hooks
|
|
19700
19828
|
* @group Series
|
|
19701
19829
|
*/
|
|
19702
|
-
declare const useGetSeriesRegistrationResponses: (seriesId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesRegistrationResponses>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesRegistrationQuestionResponse[]
|
|
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>>;
|
|
19703
19831
|
|
|
19704
19832
|
/**
|
|
19705
19833
|
* @category Keys
|
|
@@ -19748,7 +19876,7 @@ declare const GetSeriesTranslation: ({ seriesId, locale, adminApiParams, }: GetS
|
|
|
19748
19876
|
* @category Hooks
|
|
19749
19877
|
* @group Series
|
|
19750
19878
|
*/
|
|
19751
|
-
declare const useGetSeriesTranslation: (seriesId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesTranslation | null
|
|
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>>;
|
|
19752
19880
|
|
|
19753
19881
|
/**
|
|
19754
19882
|
* @category Keys
|
|
@@ -19800,7 +19928,7 @@ declare const GetSeries: ({ seriesId, adminApiParams, }: GetSeriesProps) => Prom
|
|
|
19800
19928
|
* @category Hooks
|
|
19801
19929
|
* @group Series
|
|
19802
19930
|
*/
|
|
19803
|
-
declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Series
|
|
19931
|
+
declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Series>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19804
19932
|
|
|
19805
19933
|
/**
|
|
19806
19934
|
* @category Keys
|
|
@@ -19925,7 +20053,7 @@ declare const GetLevelTranslation: ({ levelId, locale, adminApiParams, }: GetLev
|
|
|
19925
20053
|
* @category Hooks
|
|
19926
20054
|
* @group Levels
|
|
19927
20055
|
*/
|
|
19928
|
-
declare const useGetLevelTranslation: (levelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SponsorshipLevelTranslation | null
|
|
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>>;
|
|
19929
20057
|
|
|
19930
20058
|
/**
|
|
19931
20059
|
* @category Keys
|
|
@@ -19977,7 +20105,7 @@ declare const GetLevel: ({ sponsorshipLevelId, adminApiParams, }: GetLevelProps)
|
|
|
19977
20105
|
* @category Hooks
|
|
19978
20106
|
* @group Levels
|
|
19979
20107
|
*/
|
|
19980
|
-
declare const useGetLevel: (sponsorshipLevelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Level
|
|
20108
|
+
declare const useGetLevel: (sponsorshipLevelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Level>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19981
20109
|
|
|
19982
20110
|
/**
|
|
19983
20111
|
* @category Keys
|
|
@@ -20028,7 +20156,7 @@ declare const GetFile: ({ fileId, adminApiParams, }: GetFileParams) => Promise<C
|
|
|
20028
20156
|
* @category Hooks
|
|
20029
20157
|
* @group Files
|
|
20030
20158
|
*/
|
|
20031
|
-
declare const useGetFile: (fileId?: string, options?: SingleQueryOptions<ReturnType<typeof GetFile>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<File
|
|
20159
|
+
declare const useGetFile: (fileId?: string, options?: SingleQueryOptions<ReturnType<typeof GetFile>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<File>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20032
20160
|
|
|
20033
20161
|
/**
|
|
20034
20162
|
* @category Keys
|
|
@@ -20080,7 +20208,7 @@ declare const GetImage: ({ imageId, adminApiParams, }: GetImageParams) => Promis
|
|
|
20080
20208
|
* @category Hooks
|
|
20081
20209
|
* @group Images
|
|
20082
20210
|
*/
|
|
20083
|
-
declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Image
|
|
20211
|
+
declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Image>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20084
20212
|
|
|
20085
20213
|
/**
|
|
20086
20214
|
* @category Keys
|
|
@@ -20106,7 +20234,7 @@ declare const GetImageUsage: ({ imageId, adminApiParams, }: GetImageUsageParams)
|
|
|
20106
20234
|
* @category Hooks
|
|
20107
20235
|
* @group Images
|
|
20108
20236
|
*/
|
|
20109
|
-
declare const useGetImageUsage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImageUsage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ImageUsage
|
|
20237
|
+
declare const useGetImageUsage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImageUsage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ImageUsage>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20110
20238
|
|
|
20111
20239
|
/**
|
|
20112
20240
|
* @category Keys
|
|
@@ -20184,7 +20312,7 @@ declare const GetVideo: ({ videoId, adminApiParams, }: GetVideoParams) => Promis
|
|
|
20184
20312
|
* @category Hooks
|
|
20185
20313
|
* @group Videos
|
|
20186
20314
|
*/
|
|
20187
|
-
declare const useGetVideo: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideo>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Video
|
|
20315
|
+
declare const useGetVideo: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideo>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Video>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20188
20316
|
|
|
20189
20317
|
/**
|
|
20190
20318
|
* Response interface for video download status
|
|
@@ -20220,7 +20348,7 @@ declare const GetVideoDownloadStatus: ({ videoId, adminApiParams, }: GetVideoDow
|
|
|
20220
20348
|
* @category Hooks
|
|
20221
20349
|
* @group Videos
|
|
20222
20350
|
*/
|
|
20223
|
-
declare const useGetVideoDownloadStatus: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideoDownloadStatus>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<VideoDownloadStatus
|
|
20351
|
+
declare const useGetVideoDownloadStatus: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideoDownloadStatus>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<VideoDownloadStatus>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20224
20352
|
|
|
20225
20353
|
/**
|
|
20226
20354
|
* @category Keys
|
|
@@ -20273,7 +20401,7 @@ declare const GetStreamInputOutput: ({ streamId, output, adminApiParams, }: GetS
|
|
|
20273
20401
|
* @category Hooks
|
|
20274
20402
|
* @group Streams
|
|
20275
20403
|
*/
|
|
20276
|
-
declare const useGetStreamInputOutput: (streamId?: string, output?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInputOutput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInputOutput
|
|
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>>;
|
|
20277
20405
|
|
|
20278
20406
|
/**
|
|
20279
20407
|
* @category Keys
|
|
@@ -20326,7 +20454,7 @@ declare const GetStreamSession: ({ streamId, sessionId, adminApiParams, }: GetSt
|
|
|
20326
20454
|
* @category Hooks
|
|
20327
20455
|
* @group Streams
|
|
20328
20456
|
*/
|
|
20329
|
-
declare const useGetStreamSession: (streamId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamSession
|
|
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>>;
|
|
20330
20458
|
|
|
20331
20459
|
/**
|
|
20332
20460
|
* @category Keys
|
|
@@ -20434,7 +20562,7 @@ declare const GetStreamInput: ({ streamId, adminApiParams, }: GetStreamInputPara
|
|
|
20434
20562
|
* @category Hooks
|
|
20435
20563
|
* @group Streams
|
|
20436
20564
|
*/
|
|
20437
|
-
declare const useGetStreamInput: (streamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInput
|
|
20565
|
+
declare const useGetStreamInput: (streamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInput>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<StreamInput>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20438
20566
|
|
|
20439
20567
|
/**
|
|
20440
20568
|
* @category Keys
|
|
@@ -20567,7 +20695,7 @@ declare const GetSupportTicket: ({ supportTicketId, adminApiParams, }: GetSuppor
|
|
|
20567
20695
|
* @category Hooks
|
|
20568
20696
|
* @group Support Tickets
|
|
20569
20697
|
*/
|
|
20570
|
-
declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicket
|
|
20698
|
+
declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SupportTicket>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20571
20699
|
|
|
20572
20700
|
/**
|
|
20573
20701
|
* @category Keys
|
|
@@ -20594,7 +20722,7 @@ declare const GetSupportTicketActivity: ({ supportTicketId, orderBy, adminApiPar
|
|
|
20594
20722
|
* @category Hooks
|
|
20595
20723
|
* @group Support Tickets
|
|
20596
20724
|
*/
|
|
20597
|
-
declare const useGetSupportTicketActivity: (supportTicketId?: string, orderBy?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicketActivity>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicketActivityLog[]
|
|
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>>;
|
|
20598
20726
|
|
|
20599
20727
|
/**
|
|
20600
20728
|
* @category Keys
|
|
@@ -20678,7 +20806,7 @@ declare const GetSurveyQuestionChoiceTranslation: ({ surveyId, questionId, choic
|
|
|
20678
20806
|
* @category Hooks
|
|
20679
20807
|
* @group Surveys
|
|
20680
20808
|
*/
|
|
20681
|
-
declare const useGetSurveyQuestionChoiceTranslation: (surveyId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionChoiceTranslation | null
|
|
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>>;
|
|
20682
20810
|
|
|
20683
20811
|
/**
|
|
20684
20812
|
* @category Keys
|
|
@@ -20734,7 +20862,7 @@ declare const GetSurveyQuestionTranslation: ({ surveyId, questionId, locale, adm
|
|
|
20734
20862
|
* @category Hooks
|
|
20735
20863
|
* @group Surveys
|
|
20736
20864
|
*/
|
|
20737
|
-
declare const useGetSurveyQuestionTranslation: (surveyId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionTranslation | null
|
|
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>>;
|
|
20738
20866
|
|
|
20739
20867
|
/**
|
|
20740
20868
|
* @category Keys
|
|
@@ -20788,7 +20916,7 @@ declare const GetSurveyQuestion: ({ surveyId, questionId, adminApiParams, }: Get
|
|
|
20788
20916
|
* @category Hooks
|
|
20789
20917
|
* @group Surveys
|
|
20790
20918
|
*/
|
|
20791
|
-
declare const useGetSurveyQuestion: (surveyId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestion
|
|
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>>;
|
|
20792
20920
|
|
|
20793
20921
|
/**
|
|
20794
20922
|
* @category Keys
|
|
@@ -20816,7 +20944,7 @@ declare const GetSurveyQuestionChoice: ({ surveyId, questionId, choiceId, adminA
|
|
|
20816
20944
|
* @category Hooks
|
|
20817
20945
|
* @group Surveys
|
|
20818
20946
|
*/
|
|
20819
|
-
declare const useGetSurveyQuestionChoice: (surveyId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionChoice
|
|
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>>;
|
|
20820
20948
|
|
|
20821
20949
|
/**
|
|
20822
20950
|
* @category Keys
|
|
@@ -20952,7 +21080,7 @@ declare const GetSurveySectionTranslation: ({ surveyId, sectionId, locale, admin
|
|
|
20952
21080
|
* @category Hooks
|
|
20953
21081
|
* @group Surveys
|
|
20954
21082
|
*/
|
|
20955
|
-
declare const useGetSurveySectionTranslation: (surveyId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySectionTranslation | null
|
|
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>>;
|
|
20956
21084
|
|
|
20957
21085
|
/**
|
|
20958
21086
|
* @category Keys
|
|
@@ -21006,7 +21134,7 @@ declare const GetSurveySection: ({ surveyId, sectionId, adminApiParams, }: GetSu
|
|
|
21006
21134
|
* @category Hooks
|
|
21007
21135
|
* @group Surveys
|
|
21008
21136
|
*/
|
|
21009
|
-
declare const useGetSurveySection: (surveyId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySection
|
|
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>>;
|
|
21010
21138
|
|
|
21011
21139
|
/**
|
|
21012
21140
|
* @category Keys
|
|
@@ -21086,7 +21214,7 @@ declare const GetSurveySubmission: ({ surveyId, submissionId, adminApiParams, }:
|
|
|
21086
21214
|
* @category Hooks
|
|
21087
21215
|
* @group Surveys
|
|
21088
21216
|
*/
|
|
21089
|
-
declare const useGetSurveySubmission: (surveyId?: string, submissionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmission>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySubmission
|
|
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>>;
|
|
21090
21218
|
|
|
21091
21219
|
/**
|
|
21092
21220
|
* @category Keys
|
|
@@ -21190,7 +21318,7 @@ declare const GetSurveyTranslation: ({ surveyId, locale, adminApiParams, }: GetS
|
|
|
21190
21318
|
* @category Hooks
|
|
21191
21319
|
* @group Surveys
|
|
21192
21320
|
*/
|
|
21193
|
-
declare const useGetSurveyTranslation: (surveyId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyTranslation | null
|
|
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>>;
|
|
21194
21322
|
|
|
21195
21323
|
/**
|
|
21196
21324
|
* @category Keys
|
|
@@ -21242,7 +21370,7 @@ declare const GetSurvey: ({ surveyId, adminApiParams, }: GetSurveyProps) => Prom
|
|
|
21242
21370
|
* @category Hooks
|
|
21243
21371
|
* @group Surveys
|
|
21244
21372
|
*/
|
|
21245
|
-
declare const useGetSurvey: (surveyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurvey>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Survey
|
|
21373
|
+
declare const useGetSurvey: (surveyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurvey>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Survey>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
21246
21374
|
|
|
21247
21375
|
/**
|
|
21248
21376
|
* @category Keys
|
|
@@ -21396,7 +21524,7 @@ interface GetThreadMessageProps {
|
|
|
21396
21524
|
* @description Returns a single message from the given thread by its ID; requires read permission on threads.
|
|
21397
21525
|
*/
|
|
21398
21526
|
declare const GetThreadMessage: ({ threadId, messageId, adminApiParams, }: GetThreadMessageProps) => Promise<ConnectedXMResponse<ThreadMessage>>;
|
|
21399
|
-
declare const useGetThreadMessage: (threadId: string, messageId: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage
|
|
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>>;
|
|
21400
21528
|
|
|
21401
21529
|
declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string) => QueryKey;
|
|
21402
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;
|
|
@@ -21425,7 +21553,7 @@ interface GetThreadMessagesPollProps extends SingleQueryParams {
|
|
|
21425
21553
|
* @description Returns any messages sent in the given thread after the provided lastMessageId, for lightweight polling-based updates; requires read permission on threads.
|
|
21426
21554
|
*/
|
|
21427
21555
|
declare const GetThreadMessagesPoll: ({ threadId, lastMessageId, adminApiParams, }: GetThreadMessagesPollProps) => Promise<ConnectedXMResponse<ThreadMessage[]>>;
|
|
21428
|
-
declare const useGetThreadMessagesPoll: (threadId?: string, lastMessageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThreadMessagesPoll>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ThreadMessage[]
|
|
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>>;
|
|
21429
21557
|
|
|
21430
21558
|
declare const THREAD_MESSAGE_VIDEOS_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
|
|
21431
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;
|
|
@@ -21514,7 +21642,7 @@ declare const GetThread: ({ threadId, adminApiParams, }: GetThreadProps) => Prom
|
|
|
21514
21642
|
* @category Hooks
|
|
21515
21643
|
* @group Threads
|
|
21516
21644
|
*/
|
|
21517
|
-
declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread
|
|
21645
|
+
declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Thread>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
21518
21646
|
|
|
21519
21647
|
/**
|
|
21520
21648
|
* @category Keys
|
|
@@ -21566,7 +21694,7 @@ declare const GetTier: ({ tierId, adminApiParams, }: GetTierProps) => Promise<Co
|
|
|
21566
21694
|
* @category Hooks
|
|
21567
21695
|
* @group Tiers
|
|
21568
21696
|
*/
|
|
21569
|
-
declare const useGetTier: (tierId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTier>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Tier
|
|
21697
|
+
declare const useGetTier: (tierId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTier>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Tier>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
21570
21698
|
|
|
21571
21699
|
/**
|
|
21572
21700
|
* @category Keys
|
|
@@ -21619,7 +21747,7 @@ declare const GetTierImport: ({ tierId, importId, adminApiParams, }: GetTierImpo
|
|
|
21619
21747
|
* @category Hooks
|
|
21620
21748
|
* @group Imports
|
|
21621
21749
|
*/
|
|
21622
|
-
declare const useGetTierImport: (tierId?: string, importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTierImport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Import
|
|
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>>;
|
|
21623
21751
|
|
|
21624
21752
|
/**
|
|
21625
21753
|
* @category Keys
|
|
@@ -26747,6 +26875,67 @@ declare const UpdateEventPage: ({ eventId, pageId, page, adminApiParams, queryCl
|
|
|
26747
26875
|
*/
|
|
26748
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>;
|
|
26749
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
|
+
|
|
26750
26939
|
/**
|
|
26751
26940
|
* @category Params
|
|
26752
26941
|
* @group Events
|
|
@@ -36501,4 +36690,4 @@ declare const UpdateTier: ({ tierId, tier, adminApiParams, queryClient, }: Updat
|
|
|
36501
36690
|
*/
|
|
36502
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>;
|
|
36503
36692
|
|
|
36504
|
-
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, 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, 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, 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, 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 };
|