@connectedxm/admin 7.8.1 → 7.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +279 -0
- package/dist/index.d.cts +406 -214
- package/dist/index.d.ts +406 -214
- package/dist/index.js +260 -0
- package/openapi.json +1331 -606
- package/package.json +12 -12
package/dist/index.d.cts
CHANGED
|
@@ -1054,6 +1054,7 @@ interface Event extends BaseEvent {
|
|
|
1054
1054
|
groupId: string | null;
|
|
1055
1055
|
group: BaseGroup | null;
|
|
1056
1056
|
groupOnly: boolean;
|
|
1057
|
+
guestRegistration: boolean;
|
|
1057
1058
|
backgroundImageId: string | null;
|
|
1058
1059
|
backgroundImage: BaseImage | null;
|
|
1059
1060
|
registrationHeaderImageId: string | null;
|
|
@@ -1884,6 +1885,7 @@ interface Payment extends BasePayment {
|
|
|
1884
1885
|
coupon: BaseCoupon | null;
|
|
1885
1886
|
invoice: BaseInvoice | null;
|
|
1886
1887
|
series: BaseSeries | null;
|
|
1888
|
+
exchangeTarget: BaseEventPassTypeExchangeTarget | null;
|
|
1887
1889
|
metadata?: any;
|
|
1888
1890
|
lineItems: Omit<PaymentLineItem, "payment">[];
|
|
1889
1891
|
}
|
|
@@ -3294,6 +3296,41 @@ interface BaseEventPassTypeRefundSchedule {
|
|
|
3294
3296
|
}
|
|
3295
3297
|
interface EventPassTypeRefundSchedule extends BaseEventPassTypeRefundSchedule {
|
|
3296
3298
|
}
|
|
3299
|
+
interface BaseEventPassTypeExchangeTarget {
|
|
3300
|
+
id: string;
|
|
3301
|
+
enabled: boolean;
|
|
3302
|
+
sourcePassTypeId: string;
|
|
3303
|
+
sourcePassType: BaseEventPassType;
|
|
3304
|
+
targetPassTypeId: string;
|
|
3305
|
+
targetPassType: BaseEventPassType;
|
|
3306
|
+
fixedPricing: boolean;
|
|
3307
|
+
amount: number;
|
|
3308
|
+
startDate: string | null;
|
|
3309
|
+
endDate: string | null;
|
|
3310
|
+
}
|
|
3311
|
+
interface EventPassTypeExchangeTarget extends BaseEventPassTypeExchangeTarget {
|
|
3312
|
+
createdAt: string;
|
|
3313
|
+
updatedAt: string;
|
|
3314
|
+
}
|
|
3315
|
+
declare enum ExchangeType {
|
|
3316
|
+
upgrade = "upgrade",
|
|
3317
|
+
downgrade = "downgrade",
|
|
3318
|
+
swap = "swap"
|
|
3319
|
+
}
|
|
3320
|
+
interface BasePassExchange {
|
|
3321
|
+
id: string;
|
|
3322
|
+
accountId: string;
|
|
3323
|
+
passId: string;
|
|
3324
|
+
exchangeType: ExchangeType;
|
|
3325
|
+
exchangeTargetId: string;
|
|
3326
|
+
exchangeTarget: EventPassTypeExchangeTarget;
|
|
3327
|
+
lineItem: BasePaymentLineItem | null;
|
|
3328
|
+
}
|
|
3329
|
+
interface PassExchange extends BasePassExchange {
|
|
3330
|
+
account: BaseAccount;
|
|
3331
|
+
pass: BaseEventPass;
|
|
3332
|
+
createdAt: string;
|
|
3333
|
+
}
|
|
3297
3334
|
interface EventPassTypeTranslation {
|
|
3298
3335
|
id: number;
|
|
3299
3336
|
locale: string;
|
|
@@ -5294,6 +5331,7 @@ interface EventCreateInputs {
|
|
|
5294
5331
|
streamReplayId?: string | null;
|
|
5295
5332
|
groupId?: string | null;
|
|
5296
5333
|
groupOnly?: boolean;
|
|
5334
|
+
guestRegistration?: boolean;
|
|
5297
5335
|
passSupply?: number | string | null;
|
|
5298
5336
|
passLimitPerAccount?: string | number | null;
|
|
5299
5337
|
roundName?: string | null;
|
|
@@ -5352,6 +5390,7 @@ interface EventUpdateInputs {
|
|
|
5352
5390
|
streamReplayId?: string | null;
|
|
5353
5391
|
groupId?: string | null;
|
|
5354
5392
|
groupOnly?: boolean;
|
|
5393
|
+
guestRegistration?: boolean;
|
|
5355
5394
|
passSupply?: number | string | null;
|
|
5356
5395
|
passLimitPerAccount?: string | number | null;
|
|
5357
5396
|
roundName?: string | null;
|
|
@@ -6511,6 +6550,21 @@ interface PassTypeRefundScheduleUpdateInputs {
|
|
|
6511
6550
|
startDate?: string;
|
|
6512
6551
|
endDate?: string;
|
|
6513
6552
|
}
|
|
6553
|
+
interface PassTypeExchangeTargetCreateInputs {
|
|
6554
|
+
enabled: boolean;
|
|
6555
|
+
targetPassTypeId: string;
|
|
6556
|
+
fixedPricing?: boolean;
|
|
6557
|
+
amount?: number;
|
|
6558
|
+
startDate?: string | null;
|
|
6559
|
+
endDate?: string | null;
|
|
6560
|
+
}
|
|
6561
|
+
interface PassTypeExchangeTargetUpdateInputs {
|
|
6562
|
+
enabled?: boolean;
|
|
6563
|
+
fixedPricing?: boolean;
|
|
6564
|
+
amount?: number;
|
|
6565
|
+
startDate?: string | null;
|
|
6566
|
+
endDate?: string | null;
|
|
6567
|
+
}
|
|
6514
6568
|
interface IntegrationCreateInputs {
|
|
6515
6569
|
type: keyof typeof IntegrationType;
|
|
6516
6570
|
enabled?: boolean;
|
|
@@ -7543,7 +7597,7 @@ interface SingleQueryParams {
|
|
|
7543
7597
|
interface SingleQueryOptions<TQueryData = unknown> extends Omit<UseQueryOptions<TQueryData, AxiosError<ConnectedXMResponse<any>>, Awaited<TQueryData>, QueryKey>, "queryFn" | "queryKey"> {
|
|
7544
7598
|
shouldRedirect?: boolean;
|
|
7545
7599
|
}
|
|
7546
|
-
declare const useConnectedSingleQuery: <TQueryData = unknown>(queryKeys: QueryKey, queryFn: (params: SingleQueryParams) => TQueryData, options?: SingleQueryOptions<TQueryData>) => _tanstack_react_query.UseQueryResult<
|
|
7600
|
+
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
7601
|
|
|
7548
7602
|
/**
|
|
7549
7603
|
* @category Keys
|
|
@@ -7565,7 +7619,7 @@ declare const GetAccountAddress: ({ accountId, addressId, adminApiParams, }: Get
|
|
|
7565
7619
|
* @category Hooks
|
|
7566
7620
|
* @group Accounts
|
|
7567
7621
|
*/
|
|
7568
|
-
declare const useGetAccountAddress: (accountId?: string, addressId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountAddress>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAddress
|
|
7622
|
+
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
7623
|
|
|
7570
7624
|
interface InfiniteQueryParams {
|
|
7571
7625
|
pageParam: number;
|
|
@@ -7762,7 +7816,7 @@ declare const GetAccountLead: ({ accountId, leadId, adminApiParams, }: GetAccoun
|
|
|
7762
7816
|
* @category Hooks
|
|
7763
7817
|
* @group Accounts
|
|
7764
7818
|
*/
|
|
7765
|
-
declare const useGetAccountLead: (accountId?: string, leadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountLead>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Lead
|
|
7819
|
+
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
7820
|
|
|
7767
7821
|
/**
|
|
7768
7822
|
* @category Keys
|
|
@@ -7869,7 +7923,7 @@ declare const GetAccount: ({ accountId, adminApiParams, }: GetAccountProps) => P
|
|
|
7869
7923
|
* @category Hooks
|
|
7870
7924
|
* @group Accounts
|
|
7871
7925
|
*/
|
|
7872
|
-
declare const useGetAccount: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account
|
|
7926
|
+
declare const useGetAccount: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccount>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Account>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
7873
7927
|
|
|
7874
7928
|
/**
|
|
7875
7929
|
* @category Keys
|
|
@@ -8054,7 +8108,7 @@ declare const GetAccountNotificationPreferences: ({ accountId, adminApiParams, }
|
|
|
8054
8108
|
* @category Hooks
|
|
8055
8109
|
* @group Accounts
|
|
8056
8110
|
*/
|
|
8057
|
-
declare const useGetAccountNotificationPreferences: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountNotificationPreferences>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<NotificationPreferences
|
|
8111
|
+
declare const useGetAccountNotificationPreferences: (accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountNotificationPreferences>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<NotificationPreferences>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8058
8112
|
|
|
8059
8113
|
/**
|
|
8060
8114
|
* @category Keys
|
|
@@ -8211,7 +8265,7 @@ declare const GetAccountsByInternalRefId: ({ internalRefId, adminApiParams, }: G
|
|
|
8211
8265
|
* @category Hooks
|
|
8212
8266
|
* @group Accounts
|
|
8213
8267
|
*/
|
|
8214
|
-
declare const useGetAccountsByInternalRefId: (internalRefId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountsByInternalRefId>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Account[]
|
|
8268
|
+
declare const useGetAccountsByInternalRefId: (internalRefId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountsByInternalRefId>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Account[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8215
8269
|
|
|
8216
8270
|
/**
|
|
8217
8271
|
* @category Keys
|
|
@@ -8266,7 +8320,7 @@ declare const GetActivity: ({ activityId, adminApiParams, }: GetActivityProps) =
|
|
|
8266
8320
|
* @category Hooks
|
|
8267
8321
|
* @group Activities
|
|
8268
8322
|
*/
|
|
8269
|
-
declare const useGetActivity: (activityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Activity
|
|
8323
|
+
declare const useGetActivity: (activityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetActivity>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Activity>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8270
8324
|
|
|
8271
8325
|
/**
|
|
8272
8326
|
* @category Keys
|
|
@@ -8344,7 +8398,7 @@ declare const GetAdvertisement: ({ advertisementId, adminApiParams, }: GetAdvert
|
|
|
8344
8398
|
* @category Hooks
|
|
8345
8399
|
* @group Advertisements
|
|
8346
8400
|
*/
|
|
8347
|
-
declare const useGetAdvertisement: (advertisementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Advertisement
|
|
8401
|
+
declare const useGetAdvertisement: (advertisementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAdvertisement>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Advertisement>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8348
8402
|
|
|
8349
8403
|
/**
|
|
8350
8404
|
* @category Keys
|
|
@@ -8448,7 +8502,7 @@ declare const GetAnnouncementTranslation: ({ announcementId, locale, adminApiPar
|
|
|
8448
8502
|
* @category Hooks
|
|
8449
8503
|
* @announcement Announcements
|
|
8450
8504
|
*/
|
|
8451
|
-
declare const useGetAnnouncementTranslation: (announcementId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncementTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AnnouncementTranslation | null
|
|
8505
|
+
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
8506
|
|
|
8453
8507
|
/**
|
|
8454
8508
|
* @category Keys
|
|
@@ -8500,7 +8554,7 @@ declare const GetAnnouncement: ({ announcementId, adminApiParams, }: GetAnnounce
|
|
|
8500
8554
|
* @category Hooks
|
|
8501
8555
|
* @group Announcements
|
|
8502
8556
|
*/
|
|
8503
|
-
declare const useGetAnnouncement: (announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncement>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Announcement
|
|
8557
|
+
declare const useGetAnnouncement: (announcementId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAnnouncement>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Announcement>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8504
8558
|
|
|
8505
8559
|
/**
|
|
8506
8560
|
* @category Keys
|
|
@@ -8605,7 +8659,7 @@ declare const GetAPILog: ({ logId, adminApiParams, }: GetAPILogParams) => Promis
|
|
|
8605
8659
|
* @category Hooks
|
|
8606
8660
|
* @group Emails
|
|
8607
8661
|
*/
|
|
8608
|
-
declare const useGetAPILog: (logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAPILog>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<APILog
|
|
8662
|
+
declare const useGetAPILog: (logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAPILog>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<APILog>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8609
8663
|
|
|
8610
8664
|
/**
|
|
8611
8665
|
* @category Key
|
|
@@ -8663,7 +8717,7 @@ declare const GetAuthSession: ({ authSessionId, adminApiParams, }: GetAuthSessio
|
|
|
8663
8717
|
* @category Hooks
|
|
8664
8718
|
* @group Emails
|
|
8665
8719
|
*/
|
|
8666
|
-
declare const useGetAuthSession: (authSessionId?: string | number, options?: SingleQueryOptions<ReturnType<typeof GetAuthSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AuthSession
|
|
8720
|
+
declare const useGetAuthSession: (authSessionId?: string | number, options?: SingleQueryOptions<ReturnType<typeof GetAuthSession>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AuthSession>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8667
8721
|
|
|
8668
8722
|
/**
|
|
8669
8723
|
* @category Key
|
|
@@ -8715,7 +8769,7 @@ declare const GetBenefitTranslation: ({ benefitId, locale, adminApiParams, }: Ge
|
|
|
8715
8769
|
* @category Hooks
|
|
8716
8770
|
* @group Benefits
|
|
8717
8771
|
*/
|
|
8718
|
-
declare const useGetBenefitTranslation: (benefitId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefitTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BenefitTranslation | null
|
|
8772
|
+
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
8773
|
|
|
8720
8774
|
/**
|
|
8721
8775
|
* @category Keys
|
|
@@ -8767,7 +8821,7 @@ declare const GetBenefit: ({ benefitId, adminApiParams, }: GetBenefitProps) => P
|
|
|
8767
8821
|
* @category Hooks
|
|
8768
8822
|
* @group Benefits
|
|
8769
8823
|
*/
|
|
8770
|
-
declare const useGetBenefit: (benefitId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefit>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Benefit
|
|
8824
|
+
declare const useGetBenefit: (benefitId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBenefit>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Benefit>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8771
8825
|
|
|
8772
8826
|
/**
|
|
8773
8827
|
* @category Keys
|
|
@@ -8849,7 +8903,7 @@ declare const GetBookingSpaceQuestionChoiceTranslation: ({ placeId, spaceId, que
|
|
|
8849
8903
|
* @category Hooks
|
|
8850
8904
|
* @group Bookings
|
|
8851
8905
|
*/
|
|
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
|
|
8906
|
+
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
8907
|
|
|
8854
8908
|
/**
|
|
8855
8909
|
* @category Keys
|
|
@@ -8878,7 +8932,7 @@ declare const GetBookingSpaceQuestionChoiceTranslations: ({ placeId, spaceId, qu
|
|
|
8878
8932
|
* @category Hooks
|
|
8879
8933
|
* @group Bookings
|
|
8880
8934
|
*/
|
|
8881
|
-
declare const useGetBookingSpaceQuestionChoiceTranslations: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoiceTranslations>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionChoiceTranslation[]
|
|
8935
|
+
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
8936
|
|
|
8883
8937
|
/**
|
|
8884
8938
|
* @category Keys
|
|
@@ -8907,7 +8961,7 @@ declare const GetBookingSpaceQuestionChoice: ({ placeId, spaceId, questionId, ch
|
|
|
8907
8961
|
* @category Hooks
|
|
8908
8962
|
* @group Bookings
|
|
8909
8963
|
*/
|
|
8910
|
-
declare const useGetBookingSpaceQuestionChoice: (placeId?: string, spaceId?: string, questionId?: string, choiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionChoice
|
|
8964
|
+
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
8965
|
|
|
8912
8966
|
/**
|
|
8913
8967
|
* @category Keys
|
|
@@ -8964,7 +9018,7 @@ declare const GetBookingSpaceQuestionTranslation: ({ placeId, spaceId, questionI
|
|
|
8964
9018
|
* @category Hooks
|
|
8965
9019
|
* @group Bookings
|
|
8966
9020
|
*/
|
|
8967
|
-
declare const useGetBookingSpaceQuestionTranslation: (placeId?: string, spaceId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionTranslation | null
|
|
9021
|
+
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
9022
|
|
|
8969
9023
|
/**
|
|
8970
9024
|
* @category Keys
|
|
@@ -8992,7 +9046,7 @@ declare const GetBookingSpaceQuestionTranslations: ({ placeId, spaceId, question
|
|
|
8992
9046
|
* @category Hooks
|
|
8993
9047
|
* @group Bookings
|
|
8994
9048
|
*/
|
|
8995
|
-
declare const useGetBookingSpaceQuestionTranslations: (placeId?: string, spaceId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestionTranslations>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestionTranslation[]
|
|
9049
|
+
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
9050
|
|
|
8997
9051
|
/**
|
|
8998
9052
|
* @category Keys
|
|
@@ -9020,7 +9074,7 @@ declare const GetBookingSpaceQuestion: ({ placeId, spaceId, questionId, adminApi
|
|
|
9020
9074
|
* @category Hooks
|
|
9021
9075
|
* @group Bookings
|
|
9022
9076
|
*/
|
|
9023
|
-
declare const useGetBookingSpaceQuestion: (placeId?: string, spaceId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceQuestion
|
|
9077
|
+
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
9078
|
|
|
9025
9079
|
/**
|
|
9026
9080
|
* @category Keys
|
|
@@ -9073,7 +9127,7 @@ declare const GetBooking: ({ bookingId, adminApiParams, }: GetBookingProps) => P
|
|
|
9073
9127
|
* @category Hooks
|
|
9074
9128
|
* @group Bookings
|
|
9075
9129
|
*/
|
|
9076
|
-
declare const useGetBooking: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBooking>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Booking
|
|
9130
|
+
declare const useGetBooking: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBooking>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Booking>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9077
9131
|
|
|
9078
9132
|
/**
|
|
9079
9133
|
* @category Keys
|
|
@@ -9099,7 +9153,7 @@ declare const GetBookingPlace: ({ placeId, adminApiParams, }: GetBookingPlacePro
|
|
|
9099
9153
|
* @category Hooks
|
|
9100
9154
|
* @group Bookings
|
|
9101
9155
|
*/
|
|
9102
|
-
declare const useGetBookingPlace: (placeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlace>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingPlace
|
|
9156
|
+
declare const useGetBookingPlace: (placeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlace>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BookingPlace>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9103
9157
|
|
|
9104
9158
|
/**
|
|
9105
9159
|
* @category Keys
|
|
@@ -9180,7 +9234,7 @@ declare const GetBookingPlaceTranslation: ({ placeId, locale, adminApiParams, }:
|
|
|
9180
9234
|
* @category Hooks
|
|
9181
9235
|
* @group Bookings
|
|
9182
9236
|
*/
|
|
9183
|
-
declare const useGetBookingPlaceTranslation: (placeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlaceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingPlaceTranslation | null
|
|
9237
|
+
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
9238
|
|
|
9185
9239
|
/**
|
|
9186
9240
|
* @category Keys
|
|
@@ -9257,7 +9311,7 @@ declare const GetBookingResponses: ({ bookingId, adminApiParams, }: GetBookingRe
|
|
|
9257
9311
|
* @category Hooks
|
|
9258
9312
|
* @group Bookings
|
|
9259
9313
|
*/
|
|
9260
|
-
declare const useGetBookingResponses: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingResponses>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseBookingQuestionResponse[]
|
|
9314
|
+
declare const useGetBookingResponses: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingResponses>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseBookingQuestionResponse[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9261
9315
|
|
|
9262
9316
|
/**
|
|
9263
9317
|
* @category Keys
|
|
@@ -9284,7 +9338,7 @@ declare const GetBookingSpace: ({ placeId, spaceId, adminApiParams, }: GetBookin
|
|
|
9284
9338
|
* @category Hooks
|
|
9285
9339
|
* @group Bookings
|
|
9286
9340
|
*/
|
|
9287
|
-
declare const useGetBookingSpace: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpace>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpace
|
|
9341
|
+
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
9342
|
|
|
9289
9343
|
/**
|
|
9290
9344
|
* @category Keys
|
|
@@ -9311,7 +9365,7 @@ declare const GetBookingSpaceAvailabilities: ({ placeId, spaceId, adminApiParams
|
|
|
9311
9365
|
* @category Hooks
|
|
9312
9366
|
* @group Bookings
|
|
9313
9367
|
*/
|
|
9314
|
-
declare const useGetBookingSpaceAvailabilities: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailabilities>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceAvailability[]
|
|
9368
|
+
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
9369
|
|
|
9316
9370
|
/**
|
|
9317
9371
|
* @category Keys
|
|
@@ -9339,7 +9393,7 @@ declare const GetBookingSpaceAvailability: ({ placeId, spaceId, availabilityId,
|
|
|
9339
9393
|
* @category Hooks
|
|
9340
9394
|
* @group Bookings
|
|
9341
9395
|
*/
|
|
9342
|
-
declare const useGetBookingSpaceAvailability: (placeId?: string, spaceId?: string, availabilityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailability>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceAvailability
|
|
9396
|
+
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
9397
|
|
|
9344
9398
|
/**
|
|
9345
9399
|
* @category Keys
|
|
@@ -9367,7 +9421,7 @@ declare const GetBookingSpaceBlackout: ({ placeId, spaceId, blackoutId, adminApi
|
|
|
9367
9421
|
* @category Hooks
|
|
9368
9422
|
* @group Bookings
|
|
9369
9423
|
*/
|
|
9370
|
-
declare const useGetBookingSpaceBlackout: (placeId?: string, spaceId?: string, blackoutId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceBlackout>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceBlackout
|
|
9424
|
+
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
9425
|
|
|
9372
9426
|
/**
|
|
9373
9427
|
* @category Keys
|
|
@@ -9484,10 +9538,10 @@ declare const GetBookingSpaceSlots: ({ placeId, spaceId, firstDayOfMonth, adminA
|
|
|
9484
9538
|
* @category Hooks
|
|
9485
9539
|
* @group Bookings
|
|
9486
9540
|
*/
|
|
9487
|
-
declare const useGetBookingSpaceSlots: (placeId: string | undefined, spaceId: string | undefined, firstDayOfMonth: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceSlots>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
|
|
9541
|
+
declare const useGetBookingSpaceSlots: (placeId: string | undefined, spaceId: string | undefined, firstDayOfMonth: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceSlots>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<{
|
|
9488
9542
|
day: string;
|
|
9489
9543
|
slots: BookingSlot[];
|
|
9490
|
-
}[]
|
|
9544
|
+
}[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9491
9545
|
|
|
9492
9546
|
/**
|
|
9493
9547
|
* @category Keys
|
|
@@ -9542,7 +9596,7 @@ declare const GetBookingSpaceTranslation: ({ placeId, spaceId, locale, adminApiP
|
|
|
9542
9596
|
* @category Hooks
|
|
9543
9597
|
* @group Bookings
|
|
9544
9598
|
*/
|
|
9545
|
-
declare const useGetBookingSpaceTranslation: (placeId?: string, spaceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceTranslation | null
|
|
9599
|
+
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
9600
|
|
|
9547
9601
|
/**
|
|
9548
9602
|
* @category Keys
|
|
@@ -9624,7 +9678,7 @@ declare const GetChannelContentGuestTranslation: ({ channelId, contentId, guestI
|
|
|
9624
9678
|
* @category Hooks
|
|
9625
9679
|
* @group Channels
|
|
9626
9680
|
*/
|
|
9627
|
-
declare const useGetChannelContentGuestTranslation: (channelId?: string, contentId?: string, guestId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuestTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuestTranslation | null
|
|
9681
|
+
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
9682
|
|
|
9629
9683
|
/**
|
|
9630
9684
|
* @category Keys
|
|
@@ -9680,7 +9734,7 @@ declare const GetChannelContentTranslation: ({ channelId, contentId, locale, adm
|
|
|
9680
9734
|
* @category Hooks
|
|
9681
9735
|
* @group Channels
|
|
9682
9736
|
*/
|
|
9683
|
-
declare const useGetChannelContentTranslation: (channelId?: string, contentId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentTranslation | null
|
|
9737
|
+
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
9738
|
|
|
9685
9739
|
/**
|
|
9686
9740
|
* @category Keys
|
|
@@ -9734,7 +9788,7 @@ declare const GetChannelTranslation: ({ channelId, locale, adminApiParams, }: Ge
|
|
|
9734
9788
|
* @category Hooks
|
|
9735
9789
|
* @group Channels
|
|
9736
9790
|
*/
|
|
9737
|
-
declare const useGetChannelTranslation: (channelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelTranslation | null
|
|
9791
|
+
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
9792
|
|
|
9739
9793
|
/**
|
|
9740
9794
|
* @category Keys
|
|
@@ -9786,7 +9840,7 @@ declare const GetChannel: ({ channelId, adminApiParams, }: GetChannelProps) => P
|
|
|
9786
9840
|
* @category Hooks
|
|
9787
9841
|
* @group Channels
|
|
9788
9842
|
*/
|
|
9789
|
-
declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel
|
|
9843
|
+
declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Channel>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
9790
9844
|
|
|
9791
9845
|
/**
|
|
9792
9846
|
* @category Keys
|
|
@@ -9840,7 +9894,7 @@ declare const GetChannelContent: ({ channelId, contentId, adminApiParams, }: Get
|
|
|
9840
9894
|
* @category Hooks
|
|
9841
9895
|
* @group Channels
|
|
9842
9896
|
*/
|
|
9843
|
-
declare const useGetChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContent
|
|
9897
|
+
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
9898
|
|
|
9845
9899
|
/**
|
|
9846
9900
|
* @category Keys
|
|
@@ -9897,7 +9951,7 @@ declare const GetChannelContentGuest: ({ channelId, contentId, guestId, adminApi
|
|
|
9897
9951
|
* @category Hooks
|
|
9898
9952
|
* @group Channels
|
|
9899
9953
|
*/
|
|
9900
|
-
declare const useGetChannelContentGuest: (channelId?: string, contentId?: string, guestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuest
|
|
9954
|
+
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
9955
|
|
|
9902
9956
|
/**
|
|
9903
9957
|
* @category Keys
|
|
@@ -10006,7 +10060,7 @@ declare const GetChannelSubscriber: ({ channelId, accountId, adminApiParams, }:
|
|
|
10006
10060
|
* @category Hooks
|
|
10007
10061
|
* @group Channels
|
|
10008
10062
|
*/
|
|
10009
|
-
declare const useGetChannelSubscriber: (channelId?: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelSubscriber>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseChannelSubscriber
|
|
10063
|
+
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
10064
|
|
|
10011
10065
|
/**
|
|
10012
10066
|
* @category Keys
|
|
@@ -10137,7 +10191,7 @@ declare const GetDashboard: ({ adminApiParams, dashboardId, }: GetDashboardProps
|
|
|
10137
10191
|
* @category Hooks
|
|
10138
10192
|
* @group Dashboards
|
|
10139
10193
|
*/
|
|
10140
|
-
declare const useGetDashboard: (dashboardId?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboard>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Dashboard
|
|
10194
|
+
declare const useGetDashboard: (dashboardId?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboard>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Dashboard>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10141
10195
|
|
|
10142
10196
|
/**
|
|
10143
10197
|
* @category Keys
|
|
@@ -10190,7 +10244,7 @@ declare const GetDashboardWidgets: ({ adminApiParams, dashboardId, type, }: GetD
|
|
|
10190
10244
|
* @category Hooks
|
|
10191
10245
|
* @group Dashboards
|
|
10192
10246
|
*/
|
|
10193
|
-
declare const useGetDashboardWidgets: (dashboardId: string, type?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardWidgets>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<DashboardWidget[]
|
|
10247
|
+
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
10248
|
|
|
10195
10249
|
/**
|
|
10196
10250
|
* @category Key
|
|
@@ -10216,7 +10270,7 @@ declare const GetEmailReceipt: ({ emailReceiptId, adminApiParams, }: GetEmailRec
|
|
|
10216
10270
|
* @category Hooks
|
|
10217
10271
|
* @group Emails
|
|
10218
10272
|
*/
|
|
10219
|
-
declare const useGetEmailReceipt: (emailReceiptId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEmailReceipt>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EmailReceipt
|
|
10273
|
+
declare const useGetEmailReceipt: (emailReceiptId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEmailReceipt>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EmailReceipt>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10220
10274
|
|
|
10221
10275
|
/**
|
|
10222
10276
|
* @category Key
|
|
@@ -10291,7 +10345,7 @@ declare const GetEventActivationTranslation: ({ eventId, activationId, locale, a
|
|
|
10291
10345
|
* @category Hooks
|
|
10292
10346
|
* @group Events
|
|
10293
10347
|
*/
|
|
10294
|
-
declare const useGetEventActivationTranslation: (eventId?: string, activationId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ActivationTranslation | null
|
|
10348
|
+
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
10349
|
|
|
10296
10350
|
/**
|
|
10297
10351
|
* @category Keys
|
|
@@ -10345,7 +10399,7 @@ declare const GetEventActivation: ({ eventId, activationId, adminApiParams, }: G
|
|
|
10345
10399
|
* @category Hooks
|
|
10346
10400
|
* @group Events
|
|
10347
10401
|
*/
|
|
10348
|
-
declare const useGetEventActivation: (eventId: string, activationId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventActivation
|
|
10402
|
+
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
10403
|
|
|
10350
10404
|
/**
|
|
10351
10405
|
* @category Keys
|
|
@@ -10373,7 +10427,7 @@ declare const GetEventActivationCompletion: ({ eventId, activationId, completion
|
|
|
10373
10427
|
* @category Hooks
|
|
10374
10428
|
* @group Events
|
|
10375
10429
|
*/
|
|
10376
|
-
declare const useGetEventActivationCompletion: (eventId: string, activationId: string, completionId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventActivationCompletion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ActivationCompletion
|
|
10430
|
+
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
10431
|
|
|
10378
10432
|
/**
|
|
10379
10433
|
* @category Keys
|
|
@@ -10481,7 +10535,7 @@ declare const GetEventAddOnTranslation: ({ eventId, addOnId, locale, adminApiPar
|
|
|
10481
10535
|
* @category Hooks
|
|
10482
10536
|
* @group Events
|
|
10483
10537
|
*/
|
|
10484
|
-
declare const useGetEventAddOnTranslation: (eventId?: string, addOnId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAddOnTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOnTranslation | null
|
|
10538
|
+
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
10539
|
|
|
10486
10540
|
/**
|
|
10487
10541
|
* @category Keys
|
|
@@ -10534,7 +10588,7 @@ declare const GetAllEventAddOns: ({ eventId, adminApiParams, }: GetAllEventAddOn
|
|
|
10534
10588
|
* @category Hooks
|
|
10535
10589
|
* @group Events
|
|
10536
10590
|
*/
|
|
10537
|
-
declare const useGetAllEventAddOns: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]
|
|
10591
|
+
declare const useGetAllEventAddOns: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventAddOns>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventAddOn[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
10538
10592
|
|
|
10539
10593
|
/**
|
|
10540
10594
|
* @category Keys
|
|
@@ -10561,7 +10615,7 @@ declare const GetEventAddOn: ({ eventId, addOnId, adminApiParams, }: GetEventAdd
|
|
|
10561
10615
|
* @category Hooks
|
|
10562
10616
|
* @group Events
|
|
10563
10617
|
*/
|
|
10564
|
-
declare const useGetEventAddOn: (eventId?: string, addOnId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAddOn>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn
|
|
10618
|
+
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
10619
|
|
|
10566
10620
|
/**
|
|
10567
10621
|
* @category Keys
|
|
@@ -10697,7 +10751,7 @@ declare const GetEventAttendeePackage: ({ eventId, accountId, packageId, adminAp
|
|
|
10697
10751
|
* @category Hooks
|
|
10698
10752
|
* @group Events
|
|
10699
10753
|
*/
|
|
10700
|
-
declare const useGetEventAttendeePackage: (eventId: string, accountId: string, packageId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendeePackage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AttendeePackage
|
|
10754
|
+
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
10755
|
|
|
10702
10756
|
/**
|
|
10703
10757
|
* @category Keys
|
|
@@ -10779,7 +10833,7 @@ declare const GetEventReservation: ({ eventId, reservationId, adminApiParams, }:
|
|
|
10779
10833
|
* @category Hooks
|
|
10780
10834
|
* @group Events
|
|
10781
10835
|
*/
|
|
10782
|
-
declare const useGetEventReservation: (eventId: string, reservationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventReservation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomTypeReservation
|
|
10836
|
+
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
10837
|
|
|
10784
10838
|
/**
|
|
10785
10839
|
* @category Keys
|
|
@@ -10859,7 +10913,7 @@ declare const GetEventAttendee: ({ eventId, accountId, adminApiParams, }: GetEve
|
|
|
10859
10913
|
* @category Hooks
|
|
10860
10914
|
* @group Events
|
|
10861
10915
|
*/
|
|
10862
|
-
declare const useGetEventAttendee: (eventId: string, accountId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttendee>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAttendee
|
|
10916
|
+
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
10917
|
|
|
10864
10918
|
/**
|
|
10865
10919
|
* @category Keys
|
|
@@ -11051,7 +11105,7 @@ declare const GetEventAttribute: ({ eventId, attributeId, adminApiParams, }: Get
|
|
|
11051
11105
|
* @category Hooks
|
|
11052
11106
|
* @group Events
|
|
11053
11107
|
*/
|
|
11054
|
-
declare const useGetEventAttribute: (eventId?: string, attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventAttribute>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAttribute
|
|
11108
|
+
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
11109
|
|
|
11056
11110
|
/**
|
|
11057
11111
|
* @category Keys
|
|
@@ -11104,7 +11158,7 @@ declare const GetEventBlock: ({ eventId, blockId, adminApiParams, }: GetEventBlo
|
|
|
11104
11158
|
* @category Hooks
|
|
11105
11159
|
* @group Events
|
|
11106
11160
|
*/
|
|
11107
|
-
declare const useGetEventBlock: (eventId?: string, blockId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventBlock>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventBlock
|
|
11161
|
+
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
11162
|
|
|
11109
11163
|
/**
|
|
11110
11164
|
* @category Keys
|
|
@@ -11184,7 +11238,7 @@ declare const GetEventRegistrationBypass: ({ eventId, bypassId, adminApiParams,
|
|
|
11184
11238
|
* @category Hooks
|
|
11185
11239
|
* @group Events
|
|
11186
11240
|
*/
|
|
11187
|
-
declare const useGetEventRegistrationBypass: (eventId?: string, bypassId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRegistrationBypass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationBypass
|
|
11241
|
+
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
11242
|
|
|
11189
11243
|
/**
|
|
11190
11244
|
* @category Keys
|
|
@@ -11258,7 +11312,7 @@ declare const GetEventCoupon: ({ eventId, couponId, adminApiParams, }: GetEventC
|
|
|
11258
11312
|
* @category Hooks
|
|
11259
11313
|
* @group Events
|
|
11260
11314
|
*/
|
|
11261
|
-
declare const useGetEventCoupon: (eventId?: string, couponId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventCoupon>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Coupon
|
|
11315
|
+
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
11316
|
|
|
11263
11317
|
/**
|
|
11264
11318
|
* @category Keys
|
|
@@ -11423,7 +11477,7 @@ declare const GetEventEmailTranslation: ({ eventId, type, locale, adminApiParams
|
|
|
11423
11477
|
* @category Hooks
|
|
11424
11478
|
* @group Events
|
|
11425
11479
|
*/
|
|
11426
|
-
declare const useGetEventEmailTranslation: (eventId: string | undefined, type: EventEmailType, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventEmailTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventEmailTranslation | null
|
|
11480
|
+
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
11481
|
|
|
11428
11482
|
/**
|
|
11429
11483
|
* @category Keys
|
|
@@ -11477,7 +11531,7 @@ declare const GetEventEmail: ({ eventId, type, adminApiParams, }: GetEventEmailP
|
|
|
11477
11531
|
* @category Hooks
|
|
11478
11532
|
* @group Events
|
|
11479
11533
|
*/
|
|
11480
|
-
declare const useGetEventEmail: (eventId: string | undefined, type: EventEmailType, options?: SingleQueryOptions<ReturnType<typeof GetEventEmail>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventEmail
|
|
11534
|
+
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
11535
|
|
|
11482
11536
|
/**
|
|
11483
11537
|
* @category Keys
|
|
@@ -11506,7 +11560,7 @@ declare const GetEventFaqSectionQuestionTranslation: ({ eventId, sectionId, ques
|
|
|
11506
11560
|
* @category Hooks
|
|
11507
11561
|
* @group Events
|
|
11508
11562
|
*/
|
|
11509
|
-
declare const useGetEventFaqSectionQuestionTranslation: (eventId?: string, sectionId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqTranslation | null
|
|
11563
|
+
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
11564
|
|
|
11511
11565
|
/**
|
|
11512
11566
|
* @category Keys
|
|
@@ -11562,7 +11616,7 @@ declare const GetEventFaqSectionTranslation: ({ eventId, sectionId, locale, admi
|
|
|
11562
11616
|
* @category Hooks
|
|
11563
11617
|
* @group Events
|
|
11564
11618
|
*/
|
|
11565
|
-
declare const useGetEventFaqSectionTranslation: (eventId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqSectionTranslation | null
|
|
11619
|
+
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
11620
|
|
|
11567
11621
|
/**
|
|
11568
11622
|
* @category Keys
|
|
@@ -11616,7 +11670,7 @@ declare const GetEventFaqSection: ({ eventId, sectionId, adminApiParams, }: GetE
|
|
|
11616
11670
|
* @category Hooks
|
|
11617
11671
|
* @group Events
|
|
11618
11672
|
*/
|
|
11619
|
-
declare const useGetEventFaqSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<FaqSection
|
|
11673
|
+
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
11674
|
|
|
11621
11675
|
/**
|
|
11622
11676
|
* @category Keys
|
|
@@ -11644,7 +11698,7 @@ declare const GetEventFaqSectionQuestion: ({ eventId, sectionId, questionId, adm
|
|
|
11644
11698
|
* @category Hooks
|
|
11645
11699
|
* @group Events
|
|
11646
11700
|
*/
|
|
11647
|
-
declare const useGetEventFaqSectionQuestion: (eventId?: string, sectionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFaqSectionQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Faq
|
|
11701
|
+
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
11702
|
|
|
11649
11703
|
/**
|
|
11650
11704
|
* @category Keys
|
|
@@ -11725,7 +11779,7 @@ declare const GetEventFollowupTranslation: ({ eventId, followupId, locale, admin
|
|
|
11725
11779
|
* @category Hooks
|
|
11726
11780
|
* @group Events
|
|
11727
11781
|
*/
|
|
11728
|
-
declare const useGetEventFollowupTranslation: (eventId?: string, followupId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFollowupTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowupTranslation | null
|
|
11782
|
+
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
11783
|
|
|
11730
11784
|
/**
|
|
11731
11785
|
* @category Keys
|
|
@@ -11779,7 +11833,7 @@ declare const GetEventFollowup: ({ eventId, followupId, adminApiParams, }: GetEv
|
|
|
11779
11833
|
* @category Hooks
|
|
11780
11834
|
* @group Events
|
|
11781
11835
|
*/
|
|
11782
|
-
declare const useGetEventFollowup: (eventId?: string, followupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventFollowup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationFollowup
|
|
11836
|
+
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
11837
|
|
|
11784
11838
|
/**
|
|
11785
11839
|
* @category Keys
|
|
@@ -11942,7 +11996,7 @@ declare const GetEventRoundMatch: ({ eventId, roundId, matchId, adminApiParams,
|
|
|
11942
11996
|
* @category Hooks
|
|
11943
11997
|
* @group Events
|
|
11944
11998
|
*/
|
|
11945
|
-
declare const useGetEventRoundMatch: (eventId?: string, roundId?: string, matchId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoundMatch>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Match
|
|
11999
|
+
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
12000
|
|
|
11947
12001
|
/**
|
|
11948
12002
|
* @category Keys
|
|
@@ -12079,7 +12133,7 @@ declare const GetEventRoundQuestionsSummary: ({ eventId, roundId, adminApiParams
|
|
|
12079
12133
|
* @category Hooks
|
|
12080
12134
|
* @group Events
|
|
12081
12135
|
*/
|
|
12082
|
-
declare const useGetEventRoundQuestionsSummary: (eventId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoundQuestionsSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<string, "exclude" | "include" | "split"
|
|
12136
|
+
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
12137
|
|
|
12084
12138
|
/**
|
|
12085
12139
|
* @category Keys
|
|
@@ -12105,7 +12159,7 @@ declare const GetEventRounds: ({ eventId, adminApiParams, }: GetEventRoundsProps
|
|
|
12105
12159
|
* @category Hooks
|
|
12106
12160
|
* @group Events
|
|
12107
12161
|
*/
|
|
12108
|
-
declare const useGetEventRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRounds>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Round[]
|
|
12162
|
+
declare const useGetEventRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRounds>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Round[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12109
12163
|
|
|
12110
12164
|
/**
|
|
12111
12165
|
* @category Keys
|
|
@@ -12133,9 +12187,9 @@ declare const GetEventSessionsWithRounds: ({ eventId, adminApiParams, }: GetEven
|
|
|
12133
12187
|
* @category Hooks
|
|
12134
12188
|
* @group Events
|
|
12135
12189
|
*/
|
|
12136
|
-
declare const useGetEventSessionsWithRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionsWithRounds>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<(EventSession & {
|
|
12190
|
+
declare const useGetEventSessionsWithRounds: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionsWithRounds>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<(EventSession & {
|
|
12137
12191
|
rounds: Round[];
|
|
12138
|
-
})[]
|
|
12192
|
+
})[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12139
12193
|
|
|
12140
12194
|
/**
|
|
12141
12195
|
* @category Keys
|
|
@@ -12163,7 +12217,7 @@ declare const GetEventMediaItemTranslation: ({ eventId, mediaId, locale, adminAp
|
|
|
12163
12217
|
* @category Hooks
|
|
12164
12218
|
* @group Events
|
|
12165
12219
|
*/
|
|
12166
|
-
declare const useGetEventMediaItemTranslation: (eventId?: string, mediaId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItemTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItemTranslation | null
|
|
12220
|
+
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
12221
|
|
|
12168
12222
|
/**
|
|
12169
12223
|
* @category Keys
|
|
@@ -12217,7 +12271,7 @@ declare const GetEventMediaItem: ({ eventId, itemId, adminApiParams, }: GetEvent
|
|
|
12217
12271
|
* @category Hooks
|
|
12218
12272
|
* @group Events
|
|
12219
12273
|
*/
|
|
12220
|
-
declare const useGetEventMediaItem: (eventId?: string, itemId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventMediaItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventMediaItem
|
|
12274
|
+
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
12275
|
|
|
12222
12276
|
/**
|
|
12223
12277
|
* @category Keys
|
|
@@ -12297,7 +12351,7 @@ declare const GetEventOnSite: ({ eventId, adminApiParams, }: GetEventOnSiteProps
|
|
|
12297
12351
|
* @category Hooks
|
|
12298
12352
|
* @group Events
|
|
12299
12353
|
*/
|
|
12300
|
-
declare const useGetEventOnSite: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventOnSite>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventOnSite | null
|
|
12354
|
+
declare const useGetEventOnSite: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventOnSite>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventOnSite | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12301
12355
|
|
|
12302
12356
|
/**
|
|
12303
12357
|
* @category Keys
|
|
@@ -12325,7 +12379,7 @@ declare const GetEventPackagePass: ({ eventId, packageId, passId, adminApiParams
|
|
|
12325
12379
|
* @category Hooks
|
|
12326
12380
|
* @group Events
|
|
12327
12381
|
*/
|
|
12328
|
-
declare const useGetEventPackagePass: (eventId?: string, packageId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackagePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackagePass
|
|
12382
|
+
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
12383
|
|
|
12330
12384
|
/**
|
|
12331
12385
|
* @category Keys
|
|
@@ -12380,7 +12434,7 @@ declare const GetEventPackageTranslation: ({ eventId, packageId, locale, adminAp
|
|
|
12380
12434
|
* @category Hooks
|
|
12381
12435
|
* @group Events
|
|
12382
12436
|
*/
|
|
12383
|
-
declare const useGetEventPackageTranslation: (eventId?: string, packageId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackageTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackageTranslation
|
|
12437
|
+
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
12438
|
|
|
12385
12439
|
/**
|
|
12386
12440
|
* @category Keys
|
|
@@ -12434,7 +12488,7 @@ declare const GetEventPackage: ({ eventId, packageId, adminApiParams, }: GetEven
|
|
|
12434
12488
|
* @category Hooks
|
|
12435
12489
|
* @group Events
|
|
12436
12490
|
*/
|
|
12437
|
-
declare const useGetEventPackage: (eventId?: string, packageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackage
|
|
12491
|
+
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
12492
|
|
|
12439
12493
|
/**
|
|
12440
12494
|
* @category Keys
|
|
@@ -12488,7 +12542,7 @@ declare const GetEventPageTranslation: ({ eventId, pageId, locale, adminApiParam
|
|
|
12488
12542
|
* @category Hooks
|
|
12489
12543
|
* @group Events
|
|
12490
12544
|
*/
|
|
12491
|
-
declare const useGetEventPageTranslation: (eventId?: string, pageId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPageTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPageTranslation | null
|
|
12545
|
+
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
12546
|
|
|
12493
12547
|
/**
|
|
12494
12548
|
* @category Keys
|
|
@@ -12542,7 +12596,7 @@ declare const GetEventPage: ({ eventId, pageId, adminApiParams, }: GetEventPageP
|
|
|
12542
12596
|
* @category Hooks
|
|
12543
12597
|
* @group Events
|
|
12544
12598
|
*/
|
|
12545
|
-
declare const useGetEventPage: (eventId?: string, pageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPage
|
|
12599
|
+
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
12600
|
|
|
12547
12601
|
/**
|
|
12548
12602
|
* @category Keys
|
|
@@ -12597,6 +12651,83 @@ declare const GetEventPages: ({ eventId, pageParam, pageSize, orderBy, search, a
|
|
|
12597
12651
|
*/
|
|
12598
12652
|
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
12653
|
|
|
12654
|
+
/**
|
|
12655
|
+
* @category Keys
|
|
12656
|
+
* @group Events
|
|
12657
|
+
*/
|
|
12658
|
+
declare const EVENT_PASS_TYPE_EXCHANGE_TARGET_EXCHANGES_QUERY_KEY: (eventId: string, passTypeId: string, exchangeTargetId: string) => string[];
|
|
12659
|
+
/**
|
|
12660
|
+
* @category Setters
|
|
12661
|
+
* @group Events
|
|
12662
|
+
*/
|
|
12663
|
+
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;
|
|
12664
|
+
interface GetEventPassTypeExchangeTargetExchangesParams extends InfiniteQueryParams {
|
|
12665
|
+
eventId: string;
|
|
12666
|
+
passTypeId: string;
|
|
12667
|
+
exchangeTargetId: string;
|
|
12668
|
+
}
|
|
12669
|
+
/**
|
|
12670
|
+
* @category Queries
|
|
12671
|
+
* @group Events
|
|
12672
|
+
*/
|
|
12673
|
+
declare const GetEventPassTypeExchangeTargetExchanges: ({ pageParam, pageSize, orderBy, search, eventId, passTypeId, exchangeTargetId, adminApiParams, }: GetEventPassTypeExchangeTargetExchangesParams) => Promise<ConnectedXMResponse<PassExchange[]>>;
|
|
12674
|
+
/**
|
|
12675
|
+
* @category Hooks
|
|
12676
|
+
* @group Events
|
|
12677
|
+
*/
|
|
12678
|
+
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>>;
|
|
12679
|
+
|
|
12680
|
+
/**
|
|
12681
|
+
* @category Keys
|
|
12682
|
+
* @group Events
|
|
12683
|
+
*/
|
|
12684
|
+
declare const EVENT_PASS_TYPE_EXCHANGE_TARGET_PAYMENTS_QUERY_KEY: (eventId: string, passTypeId: string, exchangeTargetId: string) => string[];
|
|
12685
|
+
/**
|
|
12686
|
+
* @category Setters
|
|
12687
|
+
* @group Events
|
|
12688
|
+
*/
|
|
12689
|
+
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;
|
|
12690
|
+
interface GetEventPassTypeExchangeTargetPaymentsParams extends InfiniteQueryParams {
|
|
12691
|
+
eventId: string;
|
|
12692
|
+
passTypeId: string;
|
|
12693
|
+
exchangeTargetId: string;
|
|
12694
|
+
}
|
|
12695
|
+
/**
|
|
12696
|
+
* @category Queries
|
|
12697
|
+
* @group Events
|
|
12698
|
+
*/
|
|
12699
|
+
declare const GetEventPassTypeExchangeTargetPayments: ({ pageParam, pageSize, orderBy, search, eventId, passTypeId, exchangeTargetId, adminApiParams, }: GetEventPassTypeExchangeTargetPaymentsParams) => Promise<ConnectedXMResponse<Payment[]>>;
|
|
12700
|
+
/**
|
|
12701
|
+
* @category Hooks
|
|
12702
|
+
* @group Events
|
|
12703
|
+
*/
|
|
12704
|
+
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>>;
|
|
12705
|
+
|
|
12706
|
+
/**
|
|
12707
|
+
* @category Keys
|
|
12708
|
+
* @group Events
|
|
12709
|
+
*/
|
|
12710
|
+
declare const EVENT_PASS_TYPE_EXCHANGE_TARGETS_QUERY_KEY: (eventId: string, passTypeId: string) => string[];
|
|
12711
|
+
/**
|
|
12712
|
+
* @category Setters
|
|
12713
|
+
* @group Events
|
|
12714
|
+
*/
|
|
12715
|
+
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;
|
|
12716
|
+
interface GetEventPassTypeExchangeTargetsParams extends InfiniteQueryParams {
|
|
12717
|
+
eventId: string;
|
|
12718
|
+
passTypeId: string;
|
|
12719
|
+
}
|
|
12720
|
+
/**
|
|
12721
|
+
* @category Queries
|
|
12722
|
+
* @group Events
|
|
12723
|
+
*/
|
|
12724
|
+
declare const GetEventPassTypeExchangeTargets: ({ pageParam, pageSize, orderBy, search, eventId, passTypeId, adminApiParams, }: GetEventPassTypeExchangeTargetsParams) => Promise<ConnectedXMResponse<EventPassTypeExchangeTarget[]>>;
|
|
12725
|
+
/**
|
|
12726
|
+
* @category Hooks
|
|
12727
|
+
* @group Events
|
|
12728
|
+
*/
|
|
12729
|
+
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>>;
|
|
12730
|
+
|
|
12600
12731
|
declare const EVENT_PASS_TYPE_PRICE_SCHEDULE_QUERY_KEY: (eventId: string, passTypeId: string, scheduleId: string) => string[];
|
|
12601
12732
|
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
12733
|
interface GetEventPassTypePriceScheduleParams extends SingleQueryParams {
|
|
@@ -12611,7 +12742,7 @@ interface GetEventPassTypePriceScheduleParams extends SingleQueryParams {
|
|
|
12611
12742
|
* @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
12743
|
*/
|
|
12613
12744
|
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
|
|
12745
|
+
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
12746
|
|
|
12616
12747
|
/**
|
|
12617
12748
|
* @category Keys
|
|
@@ -12654,7 +12785,7 @@ interface GetEventPassTypeRefundScheduleParams extends SingleQueryParams {
|
|
|
12654
12785
|
* @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
12786
|
*/
|
|
12656
12787
|
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
|
|
12788
|
+
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
12789
|
|
|
12659
12790
|
/**
|
|
12660
12791
|
* @category Keys
|
|
@@ -12709,7 +12840,7 @@ declare const GetEventPassTypeTranslation: ({ eventId, passTypeId, locale, admin
|
|
|
12709
12840
|
* @category Hooks
|
|
12710
12841
|
* @group Events
|
|
12711
12842
|
*/
|
|
12712
|
-
declare const useGetEventPassTypeTranslation: (eventId?: string, passTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassTypeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassTypeTranslation | null
|
|
12843
|
+
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
12844
|
|
|
12714
12845
|
/**
|
|
12715
12846
|
* @category Keys
|
|
@@ -12762,7 +12893,7 @@ declare const GetAllEventPassTypes: ({ eventId, adminApiParams, }: GetAllEventPa
|
|
|
12762
12893
|
* @category Hooks
|
|
12763
12894
|
* @group Events
|
|
12764
12895
|
*/
|
|
12765
|
-
declare const useGetAllEventPassTypes: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassType[]
|
|
12896
|
+
declare const useGetAllEventPassTypes: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventPassTypes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EventPassType[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12766
12897
|
|
|
12767
12898
|
/**
|
|
12768
12899
|
* @category Keys
|
|
@@ -12789,7 +12920,7 @@ declare const GetEventPassType: ({ eventId, passTypeId, adminApiParams, }: GetEv
|
|
|
12789
12920
|
* @category Hooks
|
|
12790
12921
|
* @group Events
|
|
12791
12922
|
*/
|
|
12792
|
-
declare const useGetEventPassType: (eventId?: string, passTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassType
|
|
12923
|
+
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
12924
|
|
|
12794
12925
|
/**
|
|
12795
12926
|
* @category Keys
|
|
@@ -13144,7 +13275,7 @@ declare const GetEventPassResponse: ({ eventId, passId, questionId, adminApiPara
|
|
|
13144
13275
|
* @category Hooks
|
|
13145
13276
|
* @group Events
|
|
13146
13277
|
*/
|
|
13147
|
-
declare const useGetEventPassResponse: (eventId?: string, passId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassResponse>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionResponse
|
|
13278
|
+
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
13279
|
|
|
13149
13280
|
/**
|
|
13150
13281
|
* @category Keys
|
|
@@ -13229,7 +13360,7 @@ declare const GetEventPass: ({ eventId, passId, adminApiParams, }: GetEventPassP
|
|
|
13229
13360
|
* @category Hooks
|
|
13230
13361
|
* @group Events
|
|
13231
13362
|
*/
|
|
13232
|
-
declare const useGetEventPass: (eventId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPass
|
|
13363
|
+
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
13364
|
|
|
13234
13365
|
/**
|
|
13235
13366
|
* @category Keys
|
|
@@ -13258,7 +13389,7 @@ declare const GetEventPassMatches: ({ eventId, passId, sessionId, roundId, admin
|
|
|
13258
13389
|
* @category Hooks
|
|
13259
13390
|
* @group Events
|
|
13260
13391
|
*/
|
|
13261
|
-
declare const useGetEventPassMatches: (eventId?: string, passId?: string, sessionId?: string, roundId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPassMatches>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Match[]
|
|
13392
|
+
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
13393
|
|
|
13263
13394
|
/**
|
|
13264
13395
|
* @category Keys
|
|
@@ -13384,7 +13515,7 @@ declare const GetEventQuestionChoiceTranslation: ({ eventId, questionId, choiceI
|
|
|
13384
13515
|
* @category Hooks
|
|
13385
13516
|
* @group Events
|
|
13386
13517
|
*/
|
|
13387
|
-
declare const useGetEventQuestionChoiceTranslation: (eventId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionChoiceTranslation | null
|
|
13518
|
+
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
13519
|
|
|
13389
13520
|
/**
|
|
13390
13521
|
* @category Keys
|
|
@@ -13440,7 +13571,7 @@ declare const GetEventQuestionTranslation: ({ eventId, questionId, locale, admin
|
|
|
13440
13571
|
* @category Hooks
|
|
13441
13572
|
* @group Events
|
|
13442
13573
|
*/
|
|
13443
|
-
declare const useGetEventQuestionTranslation: (eventId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionTranslation | null
|
|
13574
|
+
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
13575
|
|
|
13445
13576
|
/**
|
|
13446
13577
|
* @category Keys
|
|
@@ -13493,7 +13624,7 @@ declare const GetEventDashboardQuestions: ({ eventId, adminApiParams, }: GetEven
|
|
|
13493
13624
|
* @category Hooks
|
|
13494
13625
|
* @group Events
|
|
13495
13626
|
*/
|
|
13496
|
-
declare const useGetEventDashboardQuestions: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventDashboardQuestions>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseRegistrationQuestion[]
|
|
13627
|
+
declare const useGetEventDashboardQuestions: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventDashboardQuestions>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseRegistrationQuestion[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
13497
13628
|
|
|
13498
13629
|
/**
|
|
13499
13630
|
* @category Keys
|
|
@@ -13520,7 +13651,7 @@ declare const GetEventQuestion: ({ eventId, questionId, adminApiParams, }: GetEv
|
|
|
13520
13651
|
* @category Hooks
|
|
13521
13652
|
* @group Events
|
|
13522
13653
|
*/
|
|
13523
|
-
declare const useGetEventQuestion: (eventId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestion
|
|
13654
|
+
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
13655
|
|
|
13525
13656
|
/**
|
|
13526
13657
|
* @category Keys
|
|
@@ -13548,7 +13679,7 @@ declare const GetEventQuestionChoice: ({ eventId, questionId, choiceId, adminApi
|
|
|
13548
13679
|
* @category Hooks
|
|
13549
13680
|
* @group Events
|
|
13550
13681
|
*/
|
|
13551
|
-
declare const useGetEventQuestionChoice: (eventId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationQuestionChoice
|
|
13682
|
+
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
13683
|
|
|
13553
13684
|
/**
|
|
13554
13685
|
* @category Keys
|
|
@@ -13683,7 +13814,7 @@ declare const GetEventQuestionSummary: ({ adminApiParams, eventId, questionId, }
|
|
|
13683
13814
|
* @category Hooks
|
|
13684
13815
|
* @group Events
|
|
13685
13816
|
*/
|
|
13686
|
-
declare const useGetEventQuestionSummary: (eventId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventQuestionSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SummaryData
|
|
13817
|
+
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
13818
|
|
|
13688
13819
|
/**
|
|
13689
13820
|
* @category Keys
|
|
@@ -13737,7 +13868,7 @@ declare const GetEventRoomTypeTranslation: ({ eventId, roomTypeId, locale, admin
|
|
|
13737
13868
|
* @category Hooks
|
|
13738
13869
|
* @group Events
|
|
13739
13870
|
*/
|
|
13740
|
-
declare const useGetEventRoomTypeTranslation: (eventId?: string, roomTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomTypeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomTypeTranslation | null
|
|
13871
|
+
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
13872
|
|
|
13742
13873
|
/**
|
|
13743
13874
|
* @category Keys
|
|
@@ -13791,7 +13922,7 @@ declare const GetEventRoomType: ({ eventId, roomTypeId, adminApiParams, }: GetEv
|
|
|
13791
13922
|
* @category Hooks
|
|
13792
13923
|
* @group Events
|
|
13793
13924
|
*/
|
|
13794
|
-
declare const useGetEventRoomType: (eventId?: string, roomTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType
|
|
13925
|
+
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
13926
|
|
|
13796
13927
|
/**
|
|
13797
13928
|
* @category Keys
|
|
@@ -13926,7 +14057,7 @@ declare const GetRoom: ({ eventId, roomId, adminApiParams, }: GetRoomProps) => P
|
|
|
13926
14057
|
* @category Hooks
|
|
13927
14058
|
* @group Events
|
|
13928
14059
|
*/
|
|
13929
|
-
declare const useGetRoom: (eventId?: string, roomId?: string, options?: SingleQueryOptions<ReturnType<typeof GetRoom>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Room
|
|
14060
|
+
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
14061
|
|
|
13931
14062
|
/**
|
|
13932
14063
|
* @category Keys
|
|
@@ -14007,7 +14138,7 @@ declare const GetEventSectionTranslation: ({ eventId, sectionId, locale, adminAp
|
|
|
14007
14138
|
* @category Hooks
|
|
14008
14139
|
* @group Events
|
|
14009
14140
|
*/
|
|
14010
|
-
declare const useGetEventSectionTranslation: (eventId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSectionTranslation | null
|
|
14141
|
+
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
14142
|
|
|
14012
14143
|
/**
|
|
14013
14144
|
* @category Keys
|
|
@@ -14061,7 +14192,7 @@ declare const GetEventSection: ({ eventId, sectionId, adminApiParams, }: GetEven
|
|
|
14061
14192
|
* @category Hooks
|
|
14062
14193
|
* @group Events
|
|
14063
14194
|
*/
|
|
14064
|
-
declare const useGetEventSection: (eventId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection
|
|
14195
|
+
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
14196
|
|
|
14066
14197
|
/**
|
|
14067
14198
|
* @category Keys
|
|
@@ -14224,7 +14355,7 @@ declare const GetEventSessionAccess: ({ eventId, sessionId, passId, adminApiPara
|
|
|
14224
14355
|
* @category Hooks
|
|
14225
14356
|
* @group Events
|
|
14226
14357
|
*/
|
|
14227
|
-
declare const useGetEventSessionAccess: (eventId?: string, sessionId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionAccess>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionAccess
|
|
14358
|
+
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
14359
|
|
|
14229
14360
|
/**
|
|
14230
14361
|
* @category Keys
|
|
@@ -14309,7 +14440,7 @@ declare const GetEventSessionLocationTranslation: ({ eventId, locationId, locale
|
|
|
14309
14440
|
* @category Hooks
|
|
14310
14441
|
* @group Events
|
|
14311
14442
|
*/
|
|
14312
|
-
declare const useGetEventSessionLocationTranslation: (eventId?: string, locationId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionLocationTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionLocationTranslation | null
|
|
14443
|
+
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
14444
|
|
|
14314
14445
|
/**
|
|
14315
14446
|
* @category Keys
|
|
@@ -14363,7 +14494,7 @@ declare const GetEventSessionLocation: ({ eventId, locationId, adminApiParams, }
|
|
|
14363
14494
|
* @category Hooks
|
|
14364
14495
|
* @group Events
|
|
14365
14496
|
*/
|
|
14366
|
-
declare const useGetEventSessionLocation: (eventId?: string, locationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionLocation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionLocation
|
|
14497
|
+
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
14498
|
|
|
14368
14499
|
/**
|
|
14369
14500
|
* @category Keys
|
|
@@ -14445,7 +14576,7 @@ declare const GetEventSessionRoundMatch: ({ eventId, sessionId, roundId, matchId
|
|
|
14445
14576
|
* @category Hooks
|
|
14446
14577
|
* @group Events
|
|
14447
14578
|
*/
|
|
14448
|
-
declare const useGetEventSessionRoundMatch: (eventId?: string, sessionId?: string, roundId?: string, matchId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRoundMatch>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Match
|
|
14579
|
+
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
14580
|
|
|
14450
14581
|
/**
|
|
14451
14582
|
* @category Keys
|
|
@@ -14587,7 +14718,7 @@ declare const GetEventSessionRoundQuestionsSummary: ({ eventId, sessionId, round
|
|
|
14587
14718
|
* @category Hooks
|
|
14588
14719
|
* @group Events
|
|
14589
14720
|
*/
|
|
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"
|
|
14721
|
+
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
14722
|
|
|
14592
14723
|
/**
|
|
14593
14724
|
* @category Keys
|
|
@@ -14614,7 +14745,7 @@ declare const GetEventSessionRounds: ({ eventId, sessionId, adminApiParams, }: G
|
|
|
14614
14745
|
* @category Hooks
|
|
14615
14746
|
* @group Events
|
|
14616
14747
|
*/
|
|
14617
|
-
declare const useGetEventSessionRounds: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionRounds>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Round[]
|
|
14748
|
+
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
14749
|
|
|
14619
14750
|
/**
|
|
14620
14751
|
* @category Keys
|
|
@@ -14644,7 +14775,7 @@ declare const GetEventSessionQuestionChoiceTranslation: ({ eventId, sessionId, q
|
|
|
14644
14775
|
* @category Hooks
|
|
14645
14776
|
* @group Events
|
|
14646
14777
|
*/
|
|
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
|
|
14778
|
+
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
14779
|
|
|
14649
14780
|
/**
|
|
14650
14781
|
* @category Keys
|
|
@@ -14702,7 +14833,7 @@ declare const GetEventSessionQuestionTranslation: ({ eventId, sessionId, questio
|
|
|
14702
14833
|
* @category Hooks
|
|
14703
14834
|
* @group Events
|
|
14704
14835
|
*/
|
|
14705
|
-
declare const useGetEventSessionQuestionTranslation: (eventId?: string, sessionId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestionTranslation | null
|
|
14836
|
+
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
14837
|
|
|
14707
14838
|
/**
|
|
14708
14839
|
* @category Keys
|
|
@@ -14758,7 +14889,7 @@ declare const GetEventSessionQuestion: ({ eventId, sessionId, questionId, adminA
|
|
|
14758
14889
|
* @category Hooks
|
|
14759
14890
|
* @group Events
|
|
14760
14891
|
*/
|
|
14761
|
-
declare const useGetEventSessionQuestion: (eventId?: string, sessionId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestion
|
|
14892
|
+
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
14893
|
|
|
14763
14894
|
/**
|
|
14764
14895
|
* @category Keys
|
|
@@ -14787,7 +14918,7 @@ declare const GetEventSessionQuestionChoice: ({ eventId, sessionId, questionId,
|
|
|
14787
14918
|
* @category Hooks
|
|
14788
14919
|
* @group Events
|
|
14789
14920
|
*/
|
|
14790
|
-
declare const useGetEventSessionQuestionChoice: (eventId: string, sessionId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionQuestionChoice
|
|
14921
|
+
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
14922
|
|
|
14792
14923
|
/**
|
|
14793
14924
|
* @category Keys
|
|
@@ -14928,7 +15059,7 @@ declare const GetEventSessionSectionTranslation: ({ eventId, sessionId, sectionI
|
|
|
14928
15059
|
* @category Hooks
|
|
14929
15060
|
* @group Events
|
|
14930
15061
|
*/
|
|
14931
|
-
declare const useGetEventSessionSectionTranslation: (eventId?: string, sessionId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSectionTranslation | null
|
|
15062
|
+
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
15063
|
|
|
14933
15064
|
/**
|
|
14934
15065
|
* @category Keys
|
|
@@ -14984,7 +15115,7 @@ declare const GetEventSessionSection: ({ eventId, sessionId, sectionId, adminApi
|
|
|
14984
15115
|
* @category Hooks
|
|
14985
15116
|
* @group Events
|
|
14986
15117
|
*/
|
|
14987
|
-
declare const useGetEventSessionSection: (eventId?: string, sessionId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionSection
|
|
15118
|
+
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
15119
|
|
|
14989
15120
|
/**
|
|
14990
15121
|
* @category Keys
|
|
@@ -15068,7 +15199,7 @@ declare const GetEventSessionTimeTranslation: ({ eventId, sessionId, timeId, loc
|
|
|
15068
15199
|
* @category Hooks
|
|
15069
15200
|
* @group Events
|
|
15070
15201
|
*/
|
|
15071
|
-
declare const useGetEventSessionTimeTranslation: (eventId?: string, sessionId?: string, timeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTimeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionTimeTranslation | null
|
|
15202
|
+
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
15203
|
|
|
15073
15204
|
/**
|
|
15074
15205
|
* @category Keys
|
|
@@ -15124,7 +15255,7 @@ declare const GetEventSessionTime: ({ eventId, sessionId, timeId, adminApiParams
|
|
|
15124
15255
|
* @category Hooks
|
|
15125
15256
|
* @group Events
|
|
15126
15257
|
*/
|
|
15127
|
-
declare const useGetEventSessionTime: (eventId?: string, sessionId?: string, timeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTime>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionTime
|
|
15258
|
+
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
15259
|
|
|
15129
15260
|
/**
|
|
15130
15261
|
* @category Keys
|
|
@@ -15207,7 +15338,7 @@ declare const GetEventSessionTranslation: ({ eventId, sessionId, locale, adminAp
|
|
|
15207
15338
|
* @category Hooks
|
|
15208
15339
|
* @group Events
|
|
15209
15340
|
*/
|
|
15210
|
-
declare const useGetEventSessionTranslation: (eventId?: string, sessionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSessionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSessionTranslation | null
|
|
15341
|
+
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
15342
|
|
|
15212
15343
|
/**
|
|
15213
15344
|
* @category Keys
|
|
@@ -15261,7 +15392,7 @@ declare const GetEventSession: ({ eventId, sessionId, adminApiParams, }: GetEven
|
|
|
15261
15392
|
* @category Hooks
|
|
15262
15393
|
* @group Events
|
|
15263
15394
|
*/
|
|
15264
|
-
declare const useGetEventSession: (eventId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSession
|
|
15395
|
+
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
15396
|
|
|
15266
15397
|
/**
|
|
15267
15398
|
* @category Keys
|
|
@@ -15613,7 +15744,7 @@ declare const GetEventSpeakerTranslation: ({ eventId, speakerId, locale, adminAp
|
|
|
15613
15744
|
* @category Hooks
|
|
15614
15745
|
* @group Events
|
|
15615
15746
|
*/
|
|
15616
|
-
declare const useGetEventSpeakerTranslation: (eventId?: string, speakerId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeakerTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSpeakerTranslation | null
|
|
15747
|
+
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
15748
|
|
|
15618
15749
|
/**
|
|
15619
15750
|
* @category Keys
|
|
@@ -15667,7 +15798,7 @@ declare const GetEventSpeaker: ({ eventId, speakerId, adminApiParams, }: GetEven
|
|
|
15667
15798
|
* @category Hooks
|
|
15668
15799
|
* @group Events
|
|
15669
15800
|
*/
|
|
15670
|
-
declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpeaker>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSpeaker
|
|
15801
|
+
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
15802
|
|
|
15672
15803
|
/**
|
|
15673
15804
|
* @category Keys
|
|
@@ -15800,7 +15931,7 @@ declare const GetEventSponsorshipLevelTranslation: ({ eventId, levelId, locale,
|
|
|
15800
15931
|
* @category Hooks
|
|
15801
15932
|
* @group Events
|
|
15802
15933
|
*/
|
|
15803
|
-
declare const useGetEventSponsorshipLevelTranslation: (eventId?: string, levelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipLevelTranslation
|
|
15934
|
+
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
15935
|
|
|
15805
15936
|
/**
|
|
15806
15937
|
* @category Keys
|
|
@@ -15854,7 +15985,7 @@ declare const GetEventSponsorshipLevel: ({ eventId, levelId, adminApiParams, }:
|
|
|
15854
15985
|
* @category Hooks
|
|
15855
15986
|
* @group Events
|
|
15856
15987
|
*/
|
|
15857
|
-
declare const useGetEventSponsorshipLevel: (eventId?: string, levelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipLevel
|
|
15988
|
+
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
15989
|
|
|
15859
15990
|
/**
|
|
15860
15991
|
* @category Keys
|
|
@@ -15909,7 +16040,7 @@ declare const GetEventSponsorshipTranslation: ({ eventId, levelId, sponsorshipId
|
|
|
15909
16040
|
* @category Hooks
|
|
15910
16041
|
* @group Events
|
|
15911
16042
|
*/
|
|
15912
|
-
declare const useGetEventSponsorshipTranslation: (eventId?: string, levelId?: string, sponsorshipId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorshipTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorshipTranslation
|
|
16043
|
+
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
16044
|
|
|
15914
16045
|
/**
|
|
15915
16046
|
* @category Keys
|
|
@@ -15965,7 +16096,7 @@ declare const GetEventSponsorship: ({ eventId, levelId, sponsorshipId, adminApiP
|
|
|
15965
16096
|
* @category Hooks
|
|
15966
16097
|
* @group Events
|
|
15967
16098
|
*/
|
|
15968
|
-
declare const useGetEventSponsorship: (eventId?: string, levelId?: string, sponsorshipId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSponsorship>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventSponsorship
|
|
16099
|
+
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
16100
|
|
|
15970
16101
|
/**
|
|
15971
16102
|
* @category Keys
|
|
@@ -16045,7 +16176,7 @@ declare const GetEventTrackTranslation: ({ eventId, trackId, locale, adminApiPar
|
|
|
16045
16176
|
* @category Hooks
|
|
16046
16177
|
* @group Events
|
|
16047
16178
|
*/
|
|
16048
|
-
declare const useGetEventTrackTranslation: (eventId?: string, trackId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTrackTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventTrackTranslation | null
|
|
16179
|
+
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
16180
|
|
|
16050
16181
|
/**
|
|
16051
16182
|
* @category Keys
|
|
@@ -16099,7 +16230,7 @@ declare const GetEventTrack: ({ eventId, trackId, adminApiParams, }: GetEventTra
|
|
|
16099
16230
|
* @category Hooks
|
|
16100
16231
|
* @group Events
|
|
16101
16232
|
*/
|
|
16102
|
-
declare const useGetEventTrack: (eventId?: string, trackId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTrack>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventTrack
|
|
16233
|
+
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
16234
|
|
|
16104
16235
|
/**
|
|
16105
16236
|
* @category Keys
|
|
@@ -16232,7 +16363,7 @@ declare const GetEventTranslation: ({ eventId, locale, adminApiParams, }: GetEve
|
|
|
16232
16363
|
* @category Hooks
|
|
16233
16364
|
* @group Events
|
|
16234
16365
|
*/
|
|
16235
|
-
declare const useGetEventTranslation: (eventId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventTranslation | null
|
|
16366
|
+
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
16367
|
|
|
16237
16368
|
/**
|
|
16238
16369
|
* @category Keys
|
|
@@ -16284,7 +16415,7 @@ declare const GetEvent: ({ eventId, adminApiParams, }: GetEventProps) => Promise
|
|
|
16284
16415
|
* @category Hooks
|
|
16285
16416
|
* @group Events
|
|
16286
16417
|
*/
|
|
16287
|
-
declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Event
|
|
16418
|
+
declare const useGetEvent: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEvent>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Event>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16288
16419
|
|
|
16289
16420
|
/**
|
|
16290
16421
|
* @category Keys
|
|
@@ -16364,7 +16495,7 @@ declare const GetEventTiers: ({ eventId, adminApiParams, }: GetEventTiersProps)
|
|
|
16364
16495
|
* @category Hooks
|
|
16365
16496
|
* @group Events
|
|
16366
16497
|
*/
|
|
16367
|
-
declare const useGetEventTiers: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTiers>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseTier[]
|
|
16498
|
+
declare const useGetEventTiers: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventTiers>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<BaseTier[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16368
16499
|
|
|
16369
16500
|
/**
|
|
16370
16501
|
* @category Keys
|
|
@@ -16471,7 +16602,7 @@ declare const GetGroupInvitation: ({ groupId, invitationId, adminApiParams, }: G
|
|
|
16471
16602
|
* @category Hooks
|
|
16472
16603
|
* @group Groups
|
|
16473
16604
|
*/
|
|
16474
|
-
declare const useGetGroupInvitation: (groupId?: string, invitationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupInvitation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupInvitation
|
|
16605
|
+
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
16606
|
|
|
16476
16607
|
/**
|
|
16477
16608
|
* @category Keys
|
|
@@ -16577,7 +16708,7 @@ declare const GetGroupRequest: ({ groupId, requestId, adminApiParams, }: GetGrou
|
|
|
16577
16708
|
* @category Hooks
|
|
16578
16709
|
* @group Groups
|
|
16579
16710
|
*/
|
|
16580
|
-
declare const useGetGroupRequest: (groupId?: string, requestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupRequest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupRequest
|
|
16711
|
+
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
16712
|
|
|
16582
16713
|
/**
|
|
16583
16714
|
* @category Keys
|
|
@@ -16657,7 +16788,7 @@ declare const GetGroupTranslation: ({ groupId, locale, adminApiParams, }: GetGro
|
|
|
16657
16788
|
* @category Hooks
|
|
16658
16789
|
* @group Groups
|
|
16659
16790
|
*/
|
|
16660
|
-
declare const useGetGroupTranslation: (groupId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroupTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<GroupTranslation | null
|
|
16791
|
+
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
16792
|
|
|
16662
16793
|
/**
|
|
16663
16794
|
* @category Keys
|
|
@@ -16709,7 +16840,7 @@ declare const GetGroup: ({ groupId, adminApiParams, }: GetGroupProps) => Promise
|
|
|
16709
16840
|
* @category Hooks
|
|
16710
16841
|
* @group Groups
|
|
16711
16842
|
*/
|
|
16712
|
-
declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Group
|
|
16843
|
+
declare const useGetGroup: (groupId?: string, options?: SingleQueryOptions<ReturnType<typeof GetGroup>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Group>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16713
16844
|
|
|
16714
16845
|
/**
|
|
16715
16846
|
* @category Keys
|
|
@@ -16790,7 +16921,7 @@ declare const GetImport: ({ importId, adminApiParams, }: GetImportProps) => Prom
|
|
|
16790
16921
|
* @category Hooks
|
|
16791
16922
|
* @group Imports
|
|
16792
16923
|
*/
|
|
16793
|
-
declare const useGetImport: (importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Import
|
|
16924
|
+
declare const useGetImport: (importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImport>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Import>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16794
16925
|
|
|
16795
16926
|
/**
|
|
16796
16927
|
* @category Keys
|
|
@@ -16858,7 +16989,7 @@ declare const GetInterest: ({ interestId, adminApiParams, }: GetInterestProps) =
|
|
|
16858
16989
|
* @category Hooks
|
|
16859
16990
|
* @group Interests
|
|
16860
16991
|
*/
|
|
16861
|
-
declare const useGetInterest: (interestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInterest>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Interest
|
|
16992
|
+
declare const useGetInterest: (interestId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInterest>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Interest>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
16862
16993
|
|
|
16863
16994
|
/**
|
|
16864
16995
|
* @category Keys
|
|
@@ -17066,7 +17197,7 @@ declare const GetInvoice: ({ invoiceId, adminApiParams, }: GetInvoiceProps) => P
|
|
|
17066
17197
|
* @category Hooks
|
|
17067
17198
|
* @group Invoices
|
|
17068
17199
|
*/
|
|
17069
|
-
declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Invoice
|
|
17200
|
+
declare const useGetInvoice: (invoiceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Invoice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17070
17201
|
|
|
17071
17202
|
/**
|
|
17072
17203
|
* @category Keys
|
|
@@ -17093,7 +17224,7 @@ declare const GetInvoiceLineItem: ({ invoiceId, lineItemId, adminApiParams, }: G
|
|
|
17093
17224
|
* @category Hooks
|
|
17094
17225
|
* @group Invoices
|
|
17095
17226
|
*/
|
|
17096
|
-
declare const useGetInvoiceLineItem: (invoiceId?: string, lineItemId?: string, options?: SingleQueryOptions<ReturnType<typeof GetInvoiceLineItem>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<InvoiceLineItem
|
|
17227
|
+
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
17228
|
|
|
17098
17229
|
/**
|
|
17099
17230
|
* @category Keys
|
|
@@ -17215,7 +17346,7 @@ declare const GetLogin: ({ username, adminApiParams, }: GetLoginProps) => Promis
|
|
|
17215
17346
|
* @category Hooks
|
|
17216
17347
|
* @group Logins
|
|
17217
17348
|
*/
|
|
17218
|
-
declare const useGetLogin: (username?: string, options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Login
|
|
17349
|
+
declare const useGetLogin: (username?: string, options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Login>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17219
17350
|
|
|
17220
17351
|
/**
|
|
17221
17352
|
* @category Key
|
|
@@ -17310,7 +17441,7 @@ declare const GetMeetingLink: ({ meetingId, linkId, adminApiParams, }: GetMeetin
|
|
|
17310
17441
|
* @category Hooks
|
|
17311
17442
|
* @group StreamsV2
|
|
17312
17443
|
*/
|
|
17313
|
-
declare const useGetMeetingLink: (meetingId?: string, linkId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLink>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingLink
|
|
17444
|
+
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
17445
|
|
|
17315
17446
|
/**
|
|
17316
17447
|
* @category Keys
|
|
@@ -17362,7 +17493,7 @@ declare const GetLivestream: ({ livestreamId, adminApiParams, }: GetLivestreamPa
|
|
|
17362
17493
|
* @category Hooks
|
|
17363
17494
|
* @group StreamsV2
|
|
17364
17495
|
*/
|
|
17365
|
-
declare const useGetLivestream: (livestreamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLivestream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Livestream
|
|
17496
|
+
declare const useGetLivestream: (livestreamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLivestream>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Livestream>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17366
17497
|
|
|
17367
17498
|
/**
|
|
17368
17499
|
* @category Keys
|
|
@@ -17440,7 +17571,7 @@ declare const GetMeetingParticipant: ({ meetingId, participantId, adminApiParams
|
|
|
17440
17571
|
* @category Hooks
|
|
17441
17572
|
* @group StreamsV2
|
|
17442
17573
|
*/
|
|
17443
|
-
declare const useGetMeetingParticipant: (meetingId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingParticipant>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingParticipant
|
|
17574
|
+
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
17575
|
|
|
17445
17576
|
/**
|
|
17446
17577
|
* @category Keys
|
|
@@ -17492,7 +17623,7 @@ declare const GetPreset: ({ presetId, adminApiParams, }: GetPresetParams) => Pro
|
|
|
17492
17623
|
* @category Hooks
|
|
17493
17624
|
* @group StreamsV2
|
|
17494
17625
|
*/
|
|
17495
|
-
declare const useGetPreset: (presetId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPreset>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Preset
|
|
17626
|
+
declare const useGetPreset: (presetId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPreset>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Preset>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17496
17627
|
|
|
17497
17628
|
/**
|
|
17498
17629
|
* @category Keys
|
|
@@ -17543,7 +17674,7 @@ declare const GetMeetingRecording: ({ recordingId, adminApiParams, }: GetMeeting
|
|
|
17543
17674
|
* @category Hooks
|
|
17544
17675
|
* @group StreamsV2
|
|
17545
17676
|
*/
|
|
17546
|
-
declare const useGetMeetingRecording: (recordingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingRecording>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingRecording
|
|
17677
|
+
declare const useGetMeetingRecording: (recordingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingRecording>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingRecording>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17547
17678
|
|
|
17548
17679
|
/**
|
|
17549
17680
|
* @category Keys
|
|
@@ -17595,7 +17726,7 @@ declare const GetMeetingSession: ({ sessionId, adminApiParams, }: GetMeetingSess
|
|
|
17595
17726
|
* @category Hooks
|
|
17596
17727
|
* @group StreamsV2
|
|
17597
17728
|
*/
|
|
17598
|
-
declare const useGetMeetingSession: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSession
|
|
17729
|
+
declare const useGetMeetingSession: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSession>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSession>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17599
17730
|
|
|
17600
17731
|
/**
|
|
17601
17732
|
* @category Keys
|
|
@@ -17621,7 +17752,7 @@ declare const GetMeetingSessionMessages: ({ sessionId, adminApiParams, }: GetMee
|
|
|
17621
17752
|
* @category Hooks
|
|
17622
17753
|
* @group StreamsV2
|
|
17623
17754
|
*/
|
|
17624
|
-
declare const useGetMeetingSessionMessages: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionMessages>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionChatDownload
|
|
17755
|
+
declare const useGetMeetingSessionMessages: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionMessages>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionChatDownload>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17625
17756
|
|
|
17626
17757
|
/**
|
|
17627
17758
|
* @category Keys
|
|
@@ -17648,7 +17779,7 @@ declare const GetMeetingSessionParticipant: ({ sessionId, participantId, adminAp
|
|
|
17648
17779
|
* @category Hooks
|
|
17649
17780
|
* @group StreamsV2
|
|
17650
17781
|
*/
|
|
17651
|
-
declare const useGetMeetingSessionParticipant: (sessionId?: string, participantId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionParticipant>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionParticipant
|
|
17782
|
+
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
17783
|
|
|
17653
17784
|
/**
|
|
17654
17785
|
* @category Keys
|
|
@@ -17700,7 +17831,7 @@ declare const GetMeetingSessionSummary: ({ sessionId, adminApiParams, }: GetMeet
|
|
|
17700
17831
|
* @category Hooks
|
|
17701
17832
|
* @group StreamsV2
|
|
17702
17833
|
*/
|
|
17703
|
-
declare const useGetMeetingSessionSummary: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionSummary>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionSummaryDownload
|
|
17834
|
+
declare const useGetMeetingSessionSummary: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionSummary>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionSummaryDownload>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17704
17835
|
|
|
17705
17836
|
/**
|
|
17706
17837
|
* @category Keys
|
|
@@ -17726,7 +17857,7 @@ declare const GetMeetingSessionTranscript: ({ sessionId, adminApiParams, }: GetM
|
|
|
17726
17857
|
* @category Hooks
|
|
17727
17858
|
* @group StreamsV2
|
|
17728
17859
|
*/
|
|
17729
|
-
declare const useGetMeetingSessionTranscript: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionTranscript>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MeetingSessionTranscriptDownload
|
|
17860
|
+
declare const useGetMeetingSessionTranscript: (sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingSessionTranscript>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<MeetingSessionTranscriptDownload>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17730
17861
|
|
|
17731
17862
|
/**
|
|
17732
17863
|
* @category Keys
|
|
@@ -17778,7 +17909,7 @@ declare const GetMeeting: ({ meetingId, adminApiParams, }: GetMeetingParams) =>
|
|
|
17778
17909
|
* @category Hooks
|
|
17779
17910
|
* @group StreamsV2
|
|
17780
17911
|
*/
|
|
17781
|
-
declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Meeting
|
|
17912
|
+
declare const useGetMeeting: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeeting>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Meeting>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17782
17913
|
|
|
17783
17914
|
/**
|
|
17784
17915
|
* @category Keys
|
|
@@ -17804,7 +17935,7 @@ declare const GetMeetingLivestream: ({ meetingId, adminApiParams, }: GetMeetingL
|
|
|
17804
17935
|
* @category Hooks
|
|
17805
17936
|
* @group StreamsV2
|
|
17806
17937
|
*/
|
|
17807
|
-
declare const useGetMeetingLivestream: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLivestream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Livestream
|
|
17938
|
+
declare const useGetMeetingLivestream: (meetingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMeetingLivestream>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Livestream>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17808
17939
|
|
|
17809
17940
|
/**
|
|
17810
17941
|
* @category Keys
|
|
@@ -17857,9 +17988,9 @@ declare const GetNotificationCount: ({ filters, adminApiParams, }: GetNotificati
|
|
|
17857
17988
|
* @category Hooks
|
|
17858
17989
|
* @group Notifications
|
|
17859
17990
|
*/
|
|
17860
|
-
declare const useGetNotificationCount: (filters?: NotificationFilters, options?: SingleQueryOptions<ReturnType<typeof GetNotificationCount>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
|
|
17991
|
+
declare const useGetNotificationCount: (filters?: NotificationFilters, options?: SingleQueryOptions<ReturnType<typeof GetNotificationCount>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<{
|
|
17861
17992
|
notifications: number;
|
|
17862
|
-
}
|
|
17993
|
+
}>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17863
17994
|
|
|
17864
17995
|
/**
|
|
17865
17996
|
* @category Keys
|
|
@@ -17884,7 +18015,7 @@ declare const GetNotificationStats: ({ adminApiParams, }: GetNotificationStatsPr
|
|
|
17884
18015
|
* @category Hooks
|
|
17885
18016
|
* @group Notifications
|
|
17886
18017
|
*/
|
|
17887
|
-
declare const useGetNotificationStats: (options?: SingleQueryOptions<ReturnType<typeof GetNotificationStats>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<NotificationStats
|
|
18018
|
+
declare const useGetNotificationStats: (options?: SingleQueryOptions<ReturnType<typeof GetNotificationStats>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<NotificationStats>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17888
18019
|
|
|
17889
18020
|
/**
|
|
17890
18021
|
* @category Keys
|
|
@@ -17936,7 +18067,7 @@ declare const GetDashboardAttributes: ({ search, adminApiParams, }: GetDashboard
|
|
|
17936
18067
|
* @category Hooks
|
|
17937
18068
|
* @group Organization
|
|
17938
18069
|
*/
|
|
17939
|
-
declare const useGetDashboardAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardAttributes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAttribute[]
|
|
18070
|
+
declare const useGetDashboardAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardAttributes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAttribute[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17940
18071
|
|
|
17941
18072
|
/**
|
|
17942
18073
|
* @category Keys
|
|
@@ -17962,7 +18093,7 @@ declare const GetOrganizationAccountAttribute: ({ attributeId, adminApiParams, }
|
|
|
17962
18093
|
* @category Hooks
|
|
17963
18094
|
* @group Organization
|
|
17964
18095
|
*/
|
|
17965
|
-
declare const useGetOrganizationAccountAttribute: (attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationAccountAttribute>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAttribute
|
|
18096
|
+
declare const useGetOrganizationAccountAttribute: (attributeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationAccountAttribute>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAttribute>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
17966
18097
|
|
|
17967
18098
|
/**
|
|
17968
18099
|
* @category Keys
|
|
@@ -18013,7 +18144,7 @@ declare const GetRequiredAttributes: ({ search, adminApiParams, }: GetRequiredAt
|
|
|
18013
18144
|
* @category Hooks
|
|
18014
18145
|
* @group Organization
|
|
18015
18146
|
*/
|
|
18016
|
-
declare const useGetRequiredAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetRequiredAttributes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AccountAttribute[]
|
|
18147
|
+
declare const useGetRequiredAttributes: (search?: string, options?: SingleQueryOptions<ReturnType<typeof GetRequiredAttributes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AccountAttribute[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18017
18148
|
|
|
18018
18149
|
/**
|
|
18019
18150
|
* @category Keys
|
|
@@ -18038,7 +18169,7 @@ declare const GetOrganizationDomain: ({ adminApiParams, }: GetOrganizationDomain
|
|
|
18038
18169
|
* @category Hooks
|
|
18039
18170
|
* @group Organization
|
|
18040
18171
|
*/
|
|
18041
|
-
declare const useGetOrganizationDomain: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationDomain>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<DomainDetails | null
|
|
18172
|
+
declare const useGetOrganizationDomain: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationDomain>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<DomainDetails | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18042
18173
|
|
|
18043
18174
|
/**
|
|
18044
18175
|
* @category Keys
|
|
@@ -18064,7 +18195,7 @@ declare const GetIntegration: ({ integrationId, adminApiParams, }: GetIntegratio
|
|
|
18064
18195
|
* @category Hooks
|
|
18065
18196
|
* @group Integrations
|
|
18066
18197
|
*/
|
|
18067
|
-
declare const useGetIntegration: (integrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Integration
|
|
18198
|
+
declare const useGetIntegration: (integrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetIntegration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Integration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18068
18199
|
|
|
18069
18200
|
/**
|
|
18070
18201
|
* @category Keys
|
|
@@ -18116,7 +18247,7 @@ declare const GetCustomModuleTranslation: ({ moduleId, locale, adminApiParams, }
|
|
|
18116
18247
|
* @category Hooks
|
|
18117
18248
|
* @group Organization
|
|
18118
18249
|
*/
|
|
18119
|
-
declare const useGetCustomModuleTranslation: (moduleId: string, locale: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModuleTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomModuleTranslation
|
|
18250
|
+
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
18251
|
|
|
18121
18252
|
/**
|
|
18122
18253
|
* @category Keys
|
|
@@ -18168,7 +18299,7 @@ declare const GetCustomModule: ({ moduleId, adminApiParams, }: GetCustomModulePr
|
|
|
18168
18299
|
* @category Hooks
|
|
18169
18300
|
* @group Organization
|
|
18170
18301
|
*/
|
|
18171
|
-
declare const useGetCustomModule: (moduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomModule
|
|
18302
|
+
declare const useGetCustomModule: (moduleId?: string, options?: SingleQueryOptions<ReturnType<typeof GetCustomModule>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomModule>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18172
18303
|
|
|
18173
18304
|
/**
|
|
18174
18305
|
* @category Keys
|
|
@@ -18219,7 +18350,7 @@ declare const GetOrganizationModuleSettingsTranslation: ({ locale, adminApiParam
|
|
|
18219
18350
|
* @category Hooks
|
|
18220
18351
|
* @group Organization-Module-Settings
|
|
18221
18352
|
*/
|
|
18222
|
-
declare const useGetOrganizationModuleSettingsTranslation: (locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettingsTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationModuleSettingsTranslation | null
|
|
18353
|
+
declare const useGetOrganizationModuleSettingsTranslation: (locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettingsTranslation>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationModuleSettingsTranslation | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18223
18354
|
|
|
18224
18355
|
/**
|
|
18225
18356
|
* @category Keys
|
|
@@ -18269,7 +18400,7 @@ declare const GetOrganizationModuleSettings: ({ adminApiParams, }: GetOrganizati
|
|
|
18269
18400
|
* @category Hooks
|
|
18270
18401
|
* @group Organization-Module-Settings
|
|
18271
18402
|
*/
|
|
18272
|
-
declare const useGetOrganizationModuleSettings: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettings>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationModuleSettings
|
|
18403
|
+
declare const useGetOrganizationModuleSettings: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModuleSettings>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationModuleSettings>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18273
18404
|
|
|
18274
18405
|
/**
|
|
18275
18406
|
* @category Keys
|
|
@@ -18347,7 +18478,7 @@ declare const GetOrganizationModule: ({ moduleType, adminApiParams, }: GetOrgani
|
|
|
18347
18478
|
* @category Hooks
|
|
18348
18479
|
* @group Organization
|
|
18349
18480
|
*/
|
|
18350
|
-
declare const useGetOrganizationModule: (moduleType: keyof typeof OrganizationModuleType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationModule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationModule
|
|
18481
|
+
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
18482
|
|
|
18352
18483
|
/**
|
|
18353
18484
|
* @category Keys
|
|
@@ -18398,7 +18529,7 @@ declare const GetOrganizationPaymentIntegration: ({ integrationId, adminApiParam
|
|
|
18398
18529
|
* @category Hooks
|
|
18399
18530
|
* @group Organization
|
|
18400
18531
|
*/
|
|
18401
|
-
declare const useGetOrganizationPaymentIntegration: (integrationId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntegration
|
|
18532
|
+
declare const useGetOrganizationPaymentIntegration: (integrationId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentIntegration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<PaymentIntegration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18402
18533
|
|
|
18403
18534
|
/**
|
|
18404
18535
|
* @category Keys
|
|
@@ -18449,7 +18580,7 @@ declare const GetPayment: ({ paymentId, adminApiParams, }: GetPaymentProps) => P
|
|
|
18449
18580
|
* @category Hooks
|
|
18450
18581
|
* @group Payments
|
|
18451
18582
|
*/
|
|
18452
|
-
declare const useGetPayment: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPayment>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Payment
|
|
18583
|
+
declare const useGetPayment: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPayment>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Payment>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18453
18584
|
|
|
18454
18585
|
/**
|
|
18455
18586
|
* @category Keys
|
|
@@ -18475,7 +18606,7 @@ declare const GetPaymentTaxMetadata: ({ paymentId, adminApiParams, }: GetPayment
|
|
|
18475
18606
|
* @category Hooks
|
|
18476
18607
|
* @group Payments
|
|
18477
18608
|
*/
|
|
18478
|
-
declare const useGetPaymentTaxMetadata: (paymentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPaymentTaxMetadata>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Record<string, any
|
|
18609
|
+
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
18610
|
|
|
18480
18611
|
/**
|
|
18481
18612
|
* @category Keys
|
|
@@ -18526,7 +18657,7 @@ declare const GetOrganizationSideEffect: ({ sideEffectId, adminApiParams, }: Get
|
|
|
18526
18657
|
* @category Hooks
|
|
18527
18658
|
* @group Organization
|
|
18528
18659
|
*/
|
|
18529
|
-
declare const useGetOrganizationSideEffect: (sideEffectId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSideEffect>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SideEffect
|
|
18660
|
+
declare const useGetOrganizationSideEffect: (sideEffectId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSideEffect>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SideEffect>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18530
18661
|
|
|
18531
18662
|
/**
|
|
18532
18663
|
* @category Keys
|
|
@@ -18579,7 +18710,7 @@ declare const GetEntityUseCodes: ({ type, adminApiParams, }: GetEntityUseCodesPr
|
|
|
18579
18710
|
* @category Hooks
|
|
18580
18711
|
* @group Tax Integrations
|
|
18581
18712
|
*/
|
|
18582
|
-
declare const useGetEntityUseCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetEntityUseCodes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EntityUseCode[]
|
|
18713
|
+
declare const useGetEntityUseCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetEntityUseCodes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<EntityUseCode[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18583
18714
|
|
|
18584
18715
|
/**
|
|
18585
18716
|
* @category Keys
|
|
@@ -18605,7 +18736,7 @@ declare const GetTaxCodes: ({ type, adminApiParams, }: GetTaxCodesProps) => Prom
|
|
|
18605
18736
|
* @category Hooks
|
|
18606
18737
|
* @group Tax Integrations
|
|
18607
18738
|
*/
|
|
18608
|
-
declare const useGetTaxCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxCodes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<TaxCode[]
|
|
18739
|
+
declare const useGetTaxCodes: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxCodes>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<TaxCode[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18609
18740
|
|
|
18610
18741
|
/**
|
|
18611
18742
|
* @category Keys
|
|
@@ -18631,7 +18762,7 @@ declare const GetTaxIntegration: ({ type, adminApiParams, }: GetTaxIntegrationPr
|
|
|
18631
18762
|
* @category Hooks
|
|
18632
18763
|
* @group Integrations
|
|
18633
18764
|
*/
|
|
18634
|
-
declare const useGetTaxIntegration: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<TaxIntegration
|
|
18765
|
+
declare const useGetTaxIntegration: (type?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxIntegration>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<TaxIntegration>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18635
18766
|
|
|
18636
18767
|
/**
|
|
18637
18768
|
* @category Keys
|
|
@@ -18683,7 +18814,7 @@ declare const GetTaxLog: ({ type, logId, adminApiParams, }: GetTaxLogProps) => P
|
|
|
18683
18814
|
* @category Hooks
|
|
18684
18815
|
* @group Tax Integrations
|
|
18685
18816
|
*/
|
|
18686
|
-
declare const useGetTaxLog: (type?: string, logId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTaxLog>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<TaxIntegrationLog
|
|
18817
|
+
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
18818
|
|
|
18688
18819
|
/**
|
|
18689
18820
|
* @category Keys
|
|
@@ -18785,7 +18916,7 @@ declare const GetOrganization: ({ adminApiParams, }: GetOrganizationProps) => Pr
|
|
|
18785
18916
|
* @category Hooks
|
|
18786
18917
|
* @group Organization
|
|
18787
18918
|
*/
|
|
18788
|
-
declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Organization
|
|
18919
|
+
declare const useGetOrganization: (options?: SingleQueryOptions<ReturnType<typeof GetOrganization>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Organization>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18789
18920
|
|
|
18790
18921
|
/**
|
|
18791
18922
|
* @category Keys
|
|
@@ -18811,7 +18942,7 @@ declare const GetOrganizationMembership: ({ userId, adminApiParams, }: GetOrgani
|
|
|
18811
18942
|
* @category Hooks
|
|
18812
18943
|
* @group Organization
|
|
18813
18944
|
*/
|
|
18814
|
-
declare const useGetOrganizationMembership: (userId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationMembership>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationMembership
|
|
18945
|
+
declare const useGetOrganizationMembership: (userId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationMembership>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationMembership>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18815
18946
|
|
|
18816
18947
|
/**
|
|
18817
18948
|
* @category Keys
|
|
@@ -18837,7 +18968,7 @@ declare const GetOrganizationSystemLog: ({ logId, adminApiParams, }: GetOrganiza
|
|
|
18837
18968
|
* @category Hooks
|
|
18838
18969
|
* @group Organization
|
|
18839
18970
|
*/
|
|
18840
|
-
declare const useGetOrganizationSystemLog: (logId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSystemLog>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SystemEventLog
|
|
18971
|
+
declare const useGetOrganizationSystemLog: (logId: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationSystemLog>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SystemEventLog>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18841
18972
|
|
|
18842
18973
|
/**
|
|
18843
18974
|
* @category Keys
|
|
@@ -18891,7 +19022,7 @@ declare const SearchOrganization: ({ search, filters, adminApiParams, }: SearchO
|
|
|
18891
19022
|
* @category Hooks
|
|
18892
19023
|
* @group Organization
|
|
18893
19024
|
*/
|
|
18894
|
-
declare const useSearchOrganization: (search?: string, filters?: SearchOrganizationFilters, options?: SingleQueryOptions<ReturnType<typeof SearchOrganization>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchField[]
|
|
19025
|
+
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
19026
|
|
|
18896
19027
|
/**
|
|
18897
19028
|
* @category Keys
|
|
@@ -18942,7 +19073,7 @@ declare const GetOrganizationWebhook: ({ webhookId, adminApiParams, }: GetOrgani
|
|
|
18942
19073
|
* @category Hooks
|
|
18943
19074
|
* @group Organization
|
|
18944
19075
|
*/
|
|
18945
|
-
declare const useGetOrganizationWebhook: (webhookId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationWebhook>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Webhook
|
|
19076
|
+
declare const useGetOrganizationWebhook: (webhookId?: string, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationWebhook>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Webhook>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18946
19077
|
|
|
18947
19078
|
/**
|
|
18948
19079
|
* @category Keys
|
|
@@ -18992,7 +19123,7 @@ declare const GetPreferences: ({ adminApiParams, }: GetPreferencesProps) => Prom
|
|
|
18992
19123
|
* @category Hooks
|
|
18993
19124
|
* @group Preferences
|
|
18994
19125
|
*/
|
|
18995
|
-
declare const useGetPreferences: (options?: SingleQueryOptions<ReturnType<typeof GetPreferences>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<AdminNotificationPreferences
|
|
19126
|
+
declare const useGetPreferences: (options?: SingleQueryOptions<ReturnType<typeof GetPreferences>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<AdminNotificationPreferences>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
18996
19127
|
|
|
18997
19128
|
/**
|
|
18998
19129
|
* @category Keys
|
|
@@ -19018,7 +19149,7 @@ declare const GetPushDevice: ({ pushDeviceId, adminApiParams, }: GetPushDevicePr
|
|
|
19018
19149
|
* @category Hooks
|
|
19019
19150
|
* @group Accounts
|
|
19020
19151
|
*/
|
|
19021
|
-
declare const useGetPushDevice: (pushDeviceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPushDevice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PushDevice
|
|
19152
|
+
declare const useGetPushDevice: (pushDeviceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetPushDevice>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<PushDevice>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19022
19153
|
|
|
19023
19154
|
/**
|
|
19024
19155
|
* @category Keys
|
|
@@ -19070,7 +19201,7 @@ declare const GetCustomReport: ({ reportId, adminApiParams, }: GetCustomReportPr
|
|
|
19070
19201
|
* @category Hooks
|
|
19071
19202
|
* @group Reports
|
|
19072
19203
|
*/
|
|
19073
|
-
declare const useGetCustomReport: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomReport
|
|
19204
|
+
declare const useGetCustomReport: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReport>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomReport>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19074
19205
|
|
|
19075
19206
|
/**
|
|
19076
19207
|
* @category Keys
|
|
@@ -19096,7 +19227,7 @@ declare const GetCustomReportSchedule: ({ reportId, adminApiParams, }: GetCustom
|
|
|
19096
19227
|
* @category Hooks
|
|
19097
19228
|
* @group Reports
|
|
19098
19229
|
*/
|
|
19099
|
-
declare const useGetCustomReportSchedule: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportSchedule>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CustomReportSchedule | null
|
|
19230
|
+
declare const useGetCustomReportSchedule: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportSchedule>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<CustomReportSchedule | null>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19100
19231
|
|
|
19101
19232
|
/**
|
|
19102
19233
|
* @category Keys
|
|
@@ -19149,7 +19280,7 @@ declare const GetReport: ({ standard, filters, adminApiParams, }: GetReportProps
|
|
|
19149
19280
|
* @category Hooks
|
|
19150
19281
|
* @group Reports
|
|
19151
19282
|
*/
|
|
19152
|
-
declare const useGetReport: (standard?: string, filters?: ReportFilters, options?: SingleQueryOptions<ReturnType<typeof GetReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StandardReport
|
|
19283
|
+
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
19284
|
|
|
19154
19285
|
/**
|
|
19155
19286
|
* @category Keys
|
|
@@ -19175,7 +19306,7 @@ declare const GetReports: ({ type, adminApiParams, }: GetReportsProps) => Promis
|
|
|
19175
19306
|
* @category Hooks
|
|
19176
19307
|
* @group Reports
|
|
19177
19308
|
*/
|
|
19178
|
-
declare const useGetReports: (type: keyof typeof ReportType, options?: SingleQueryOptions<ReturnType<typeof GetReports>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BaseStandardReport[]
|
|
19309
|
+
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
19310
|
|
|
19180
19311
|
/**
|
|
19181
19312
|
* @category Keys
|
|
@@ -19201,7 +19332,7 @@ declare const GetCustomReportUsers: ({ reportId, adminApiParams, }: GetCustomRep
|
|
|
19201
19332
|
* @category Hooks
|
|
19202
19333
|
* @group Reports
|
|
19203
19334
|
*/
|
|
19204
|
-
declare const useGetCustomReportUsers: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportUsers>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<User[]
|
|
19335
|
+
declare const useGetCustomReportUsers: (reportId: number, options?: SingleQueryOptions<ReturnType<typeof GetCustomReportUsers>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<User[]>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19205
19336
|
|
|
19206
19337
|
/**
|
|
19207
19338
|
* @category Keys
|
|
@@ -19227,7 +19358,7 @@ declare const GetSearchList: ({ searchListId, adminApiParams, }: GetSearchListPr
|
|
|
19227
19358
|
* @category Hooks
|
|
19228
19359
|
* @group SearchLists
|
|
19229
19360
|
*/
|
|
19230
|
-
declare const useGetSearchList: (searchListId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchList>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchList
|
|
19361
|
+
declare const useGetSearchList: (searchListId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchList>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SearchList>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19231
19362
|
|
|
19232
19363
|
/**
|
|
19233
19364
|
* @category Keys
|
|
@@ -19318,7 +19449,7 @@ declare const GetSearchListValue: ({ searchListId, valueId, adminApiParams, }: G
|
|
|
19318
19449
|
* @category Hooks
|
|
19319
19450
|
* @group SearchListValues
|
|
19320
19451
|
*/
|
|
19321
|
-
declare const useGetSearchListValue: (searchListId?: string, valueId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSearchListValue>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SearchListValue
|
|
19452
|
+
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
19453
|
|
|
19323
19454
|
/**
|
|
19324
19455
|
* @category Keys
|
|
@@ -19370,7 +19501,7 @@ declare const GetSelfApiKey: ({ apiKeyId, adminApiParams, }: GetSelfApiKeyProps)
|
|
|
19370
19501
|
* @category Hooks
|
|
19371
19502
|
* @group SelfApiKeys
|
|
19372
19503
|
*/
|
|
19373
|
-
declare const useGetSelfApiKey: (apiKeyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfApiKey>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<UserApiKey
|
|
19504
|
+
declare const useGetSelfApiKey: (apiKeyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfApiKey>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<UserApiKey>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19374
19505
|
|
|
19375
19506
|
/**
|
|
19376
19507
|
* @category Keys
|
|
@@ -19420,7 +19551,7 @@ declare const GetSelf: ({ adminApiParams, }: GetSelfProps) => Promise<ConnectedX
|
|
|
19420
19551
|
* @category Hooks
|
|
19421
19552
|
* @group Self
|
|
19422
19553
|
*/
|
|
19423
|
-
declare const useGetSelf: (options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Self
|
|
19554
|
+
declare const useGetSelf: (options?: SingleQueryOptions<ReturnType<typeof GetSelf>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Self>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19424
19555
|
|
|
19425
19556
|
/**
|
|
19426
19557
|
* @category Keys
|
|
@@ -19445,7 +19576,7 @@ declare const GetSelfOrgMembership: ({ adminApiParams, }: GetSelfOrgMembershipPr
|
|
|
19445
19576
|
* @category Hooks
|
|
19446
19577
|
* @group Self
|
|
19447
19578
|
*/
|
|
19448
|
-
declare const useGetSelfOrgMembership: (options?: SingleQueryOptions<ReturnType<typeof GetSelfOrgMembership>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<OrganizationMembership
|
|
19579
|
+
declare const useGetSelfOrgMembership: (options?: SingleQueryOptions<ReturnType<typeof GetSelfOrgMembership>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<OrganizationMembership>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19449
19580
|
|
|
19450
19581
|
/**
|
|
19451
19582
|
* @category Keys
|
|
@@ -19493,7 +19624,7 @@ declare const GetSeriesQuestionTranslation: ({ seriesId, questionId, locale, adm
|
|
|
19493
19624
|
* @category Hooks
|
|
19494
19625
|
* @group Series
|
|
19495
19626
|
*/
|
|
19496
|
-
declare const useGetSeriesQuestionTranslation: (seriesId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesQuestionTranslation | null
|
|
19627
|
+
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
19628
|
|
|
19498
19629
|
/**
|
|
19499
19630
|
* @category Keys
|
|
@@ -19520,7 +19651,7 @@ declare const GetSeriesQuestion: ({ seriesId, questionId, adminApiParams, }: Get
|
|
|
19520
19651
|
* @category Hooks
|
|
19521
19652
|
* @group Series
|
|
19522
19653
|
*/
|
|
19523
|
-
declare const useGetSeriesQuestion: (seriesId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesQuestion
|
|
19654
|
+
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
19655
|
|
|
19525
19656
|
/**
|
|
19526
19657
|
* @category Keys
|
|
@@ -19548,7 +19679,7 @@ declare const GetSeriesQuestionChoice: ({ seriesId, questionId, choiceId, adminA
|
|
|
19548
19679
|
* @category Hooks
|
|
19549
19680
|
* @group Series
|
|
19550
19681
|
*/
|
|
19551
|
-
declare const useGetSeriesQuestionChoice: (seriesId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesQuestionChoice
|
|
19682
|
+
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
19683
|
|
|
19553
19684
|
/**
|
|
19554
19685
|
* @category Keys
|
|
@@ -19628,7 +19759,7 @@ declare const GetSeriesRegistration: ({ seriesId, registrationId, adminApiParams
|
|
|
19628
19759
|
* @category Hooks
|
|
19629
19760
|
* @group Series
|
|
19630
19761
|
*/
|
|
19631
|
-
declare const useGetSeriesRegistration: (seriesId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesRegistration
|
|
19762
|
+
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
19763
|
|
|
19633
19764
|
/**
|
|
19634
19765
|
* @category Keys
|
|
@@ -19699,7 +19830,7 @@ declare const GetSeriesRegistrationResponses: ({ seriesId, registrationId, admin
|
|
|
19699
19830
|
* @category Hooks
|
|
19700
19831
|
* @group Series
|
|
19701
19832
|
*/
|
|
19702
|
-
declare const useGetSeriesRegistrationResponses: (seriesId?: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesRegistrationResponses>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesRegistrationQuestionResponse[]
|
|
19833
|
+
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
19834
|
|
|
19704
19835
|
/**
|
|
19705
19836
|
* @category Keys
|
|
@@ -19748,7 +19879,7 @@ declare const GetSeriesTranslation: ({ seriesId, locale, adminApiParams, }: GetS
|
|
|
19748
19879
|
* @category Hooks
|
|
19749
19880
|
* @group Series
|
|
19750
19881
|
*/
|
|
19751
|
-
declare const useGetSeriesTranslation: (seriesId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeriesTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SeriesTranslation | null
|
|
19882
|
+
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
19883
|
|
|
19753
19884
|
/**
|
|
19754
19885
|
* @category Keys
|
|
@@ -19800,7 +19931,7 @@ declare const GetSeries: ({ seriesId, adminApiParams, }: GetSeriesProps) => Prom
|
|
|
19800
19931
|
* @category Hooks
|
|
19801
19932
|
* @group Series
|
|
19802
19933
|
*/
|
|
19803
|
-
declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Series
|
|
19934
|
+
declare const useGetSeries: (seriesId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSeries>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Series>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19804
19935
|
|
|
19805
19936
|
/**
|
|
19806
19937
|
* @category Keys
|
|
@@ -19925,7 +20056,7 @@ declare const GetLevelTranslation: ({ levelId, locale, adminApiParams, }: GetLev
|
|
|
19925
20056
|
* @category Hooks
|
|
19926
20057
|
* @group Levels
|
|
19927
20058
|
*/
|
|
19928
|
-
declare const useGetLevelTranslation: (levelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SponsorshipLevelTranslation | null
|
|
20059
|
+
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
20060
|
|
|
19930
20061
|
/**
|
|
19931
20062
|
* @category Keys
|
|
@@ -19977,7 +20108,7 @@ declare const GetLevel: ({ sponsorshipLevelId, adminApiParams, }: GetLevelProps)
|
|
|
19977
20108
|
* @category Hooks
|
|
19978
20109
|
* @group Levels
|
|
19979
20110
|
*/
|
|
19980
|
-
declare const useGetLevel: (sponsorshipLevelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Level
|
|
20111
|
+
declare const useGetLevel: (sponsorshipLevelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetLevel>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Level>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
19981
20112
|
|
|
19982
20113
|
/**
|
|
19983
20114
|
* @category Keys
|
|
@@ -20028,7 +20159,7 @@ declare const GetFile: ({ fileId, adminApiParams, }: GetFileParams) => Promise<C
|
|
|
20028
20159
|
* @category Hooks
|
|
20029
20160
|
* @group Files
|
|
20030
20161
|
*/
|
|
20031
|
-
declare const useGetFile: (fileId?: string, options?: SingleQueryOptions<ReturnType<typeof GetFile>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<File
|
|
20162
|
+
declare const useGetFile: (fileId?: string, options?: SingleQueryOptions<ReturnType<typeof GetFile>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<File>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20032
20163
|
|
|
20033
20164
|
/**
|
|
20034
20165
|
* @category Keys
|
|
@@ -20080,7 +20211,7 @@ declare const GetImage: ({ imageId, adminApiParams, }: GetImageParams) => Promis
|
|
|
20080
20211
|
* @category Hooks
|
|
20081
20212
|
* @group Images
|
|
20082
20213
|
*/
|
|
20083
|
-
declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Image
|
|
20214
|
+
declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Image>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20084
20215
|
|
|
20085
20216
|
/**
|
|
20086
20217
|
* @category Keys
|
|
@@ -20106,7 +20237,7 @@ declare const GetImageUsage: ({ imageId, adminApiParams, }: GetImageUsageParams)
|
|
|
20106
20237
|
* @category Hooks
|
|
20107
20238
|
* @group Images
|
|
20108
20239
|
*/
|
|
20109
|
-
declare const useGetImageUsage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImageUsage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ImageUsage
|
|
20240
|
+
declare const useGetImageUsage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImageUsage>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<ImageUsage>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20110
20241
|
|
|
20111
20242
|
/**
|
|
20112
20243
|
* @category Keys
|
|
@@ -20184,7 +20315,7 @@ declare const GetVideo: ({ videoId, adminApiParams, }: GetVideoParams) => Promis
|
|
|
20184
20315
|
* @category Hooks
|
|
20185
20316
|
* @group Videos
|
|
20186
20317
|
*/
|
|
20187
|
-
declare const useGetVideo: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideo>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Video
|
|
20318
|
+
declare const useGetVideo: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideo>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Video>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20188
20319
|
|
|
20189
20320
|
/**
|
|
20190
20321
|
* Response interface for video download status
|
|
@@ -20220,7 +20351,7 @@ declare const GetVideoDownloadStatus: ({ videoId, adminApiParams, }: GetVideoDow
|
|
|
20220
20351
|
* @category Hooks
|
|
20221
20352
|
* @group Videos
|
|
20222
20353
|
*/
|
|
20223
|
-
declare const useGetVideoDownloadStatus: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideoDownloadStatus>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<VideoDownloadStatus
|
|
20354
|
+
declare const useGetVideoDownloadStatus: (videoId?: string, options?: SingleQueryOptions<ReturnType<typeof GetVideoDownloadStatus>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<VideoDownloadStatus>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20224
20355
|
|
|
20225
20356
|
/**
|
|
20226
20357
|
* @category Keys
|
|
@@ -20273,7 +20404,7 @@ declare const GetStreamInputOutput: ({ streamId, output, adminApiParams, }: GetS
|
|
|
20273
20404
|
* @category Hooks
|
|
20274
20405
|
* @group Streams
|
|
20275
20406
|
*/
|
|
20276
|
-
declare const useGetStreamInputOutput: (streamId?: string, output?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInputOutput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInputOutput
|
|
20407
|
+
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
20408
|
|
|
20278
20409
|
/**
|
|
20279
20410
|
* @category Keys
|
|
@@ -20326,7 +20457,7 @@ declare const GetStreamSession: ({ streamId, sessionId, adminApiParams, }: GetSt
|
|
|
20326
20457
|
* @category Hooks
|
|
20327
20458
|
* @group Streams
|
|
20328
20459
|
*/
|
|
20329
|
-
declare const useGetStreamSession: (streamId?: string, sessionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamSession>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamSession
|
|
20460
|
+
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
20461
|
|
|
20331
20462
|
/**
|
|
20332
20463
|
* @category Keys
|
|
@@ -20434,7 +20565,7 @@ declare const GetStreamInput: ({ streamId, adminApiParams, }: GetStreamInputPara
|
|
|
20434
20565
|
* @category Hooks
|
|
20435
20566
|
* @group Streams
|
|
20436
20567
|
*/
|
|
20437
|
-
declare const useGetStreamInput: (streamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInput>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInput
|
|
20568
|
+
declare const useGetStreamInput: (streamId?: string, options?: SingleQueryOptions<ReturnType<typeof GetStreamInput>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<StreamInput>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20438
20569
|
|
|
20439
20570
|
/**
|
|
20440
20571
|
* @category Keys
|
|
@@ -20567,7 +20698,7 @@ declare const GetSupportTicket: ({ supportTicketId, adminApiParams, }: GetSuppor
|
|
|
20567
20698
|
* @category Hooks
|
|
20568
20699
|
* @group Support Tickets
|
|
20569
20700
|
*/
|
|
20570
|
-
declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicket
|
|
20701
|
+
declare const useGetSupportTicket: (supportTicketId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicket>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<SupportTicket>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
20571
20702
|
|
|
20572
20703
|
/**
|
|
20573
20704
|
* @category Keys
|
|
@@ -20594,7 +20725,7 @@ declare const GetSupportTicketActivity: ({ supportTicketId, orderBy, adminApiPar
|
|
|
20594
20725
|
* @category Hooks
|
|
20595
20726
|
* @group Support Tickets
|
|
20596
20727
|
*/
|
|
20597
|
-
declare const useGetSupportTicketActivity: (supportTicketId?: string, orderBy?: string, options?: SingleQueryOptions<ReturnType<typeof GetSupportTicketActivity>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SupportTicketActivityLog[]
|
|
20728
|
+
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
20729
|
|
|
20599
20730
|
/**
|
|
20600
20731
|
* @category Keys
|
|
@@ -20678,7 +20809,7 @@ declare const GetSurveyQuestionChoiceTranslation: ({ surveyId, questionId, choic
|
|
|
20678
20809
|
* @category Hooks
|
|
20679
20810
|
* @group Surveys
|
|
20680
20811
|
*/
|
|
20681
|
-
declare const useGetSurveyQuestionChoiceTranslation: (surveyId?: string, questionId?: string, choiceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoiceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionChoiceTranslation | null
|
|
20812
|
+
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
20813
|
|
|
20683
20814
|
/**
|
|
20684
20815
|
* @category Keys
|
|
@@ -20734,7 +20865,7 @@ declare const GetSurveyQuestionTranslation: ({ surveyId, questionId, locale, adm
|
|
|
20734
20865
|
* @category Hooks
|
|
20735
20866
|
* @group Surveys
|
|
20736
20867
|
*/
|
|
20737
|
-
declare const useGetSurveyQuestionTranslation: (surveyId?: string, questionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionTranslation | null
|
|
20868
|
+
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
20869
|
|
|
20739
20870
|
/**
|
|
20740
20871
|
* @category Keys
|
|
@@ -20788,7 +20919,7 @@ declare const GetSurveyQuestion: ({ surveyId, questionId, adminApiParams, }: Get
|
|
|
20788
20919
|
* @category Hooks
|
|
20789
20920
|
* @group Surveys
|
|
20790
20921
|
*/
|
|
20791
|
-
declare const useGetSurveyQuestion: (surveyId?: string, questionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestion>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestion
|
|
20922
|
+
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
20923
|
|
|
20793
20924
|
/**
|
|
20794
20925
|
* @category Keys
|
|
@@ -20816,7 +20947,7 @@ declare const GetSurveyQuestionChoice: ({ surveyId, questionId, choiceId, adminA
|
|
|
20816
20947
|
* @category Hooks
|
|
20817
20948
|
* @group Surveys
|
|
20818
20949
|
*/
|
|
20819
|
-
declare const useGetSurveyQuestionChoice: (surveyId: string, questionId: string, choiceId: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyQuestionChoice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyQuestionChoice
|
|
20950
|
+
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
20951
|
|
|
20821
20952
|
/**
|
|
20822
20953
|
* @category Keys
|
|
@@ -20952,7 +21083,7 @@ declare const GetSurveySectionTranslation: ({ surveyId, sectionId, locale, admin
|
|
|
20952
21083
|
* @category Hooks
|
|
20953
21084
|
* @group Surveys
|
|
20954
21085
|
*/
|
|
20955
|
-
declare const useGetSurveySectionTranslation: (surveyId?: string, sectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySectionTranslation | null
|
|
21086
|
+
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
21087
|
|
|
20957
21088
|
/**
|
|
20958
21089
|
* @category Keys
|
|
@@ -21006,7 +21137,7 @@ declare const GetSurveySection: ({ surveyId, sectionId, adminApiParams, }: GetSu
|
|
|
21006
21137
|
* @category Hooks
|
|
21007
21138
|
* @group Surveys
|
|
21008
21139
|
*/
|
|
21009
|
-
declare const useGetSurveySection: (surveyId?: string, sectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySection
|
|
21140
|
+
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
21141
|
|
|
21011
21142
|
/**
|
|
21012
21143
|
* @category Keys
|
|
@@ -21086,7 +21217,7 @@ declare const GetSurveySubmission: ({ surveyId, submissionId, adminApiParams, }:
|
|
|
21086
21217
|
* @category Hooks
|
|
21087
21218
|
* @group Surveys
|
|
21088
21219
|
*/
|
|
21089
|
-
declare const useGetSurveySubmission: (surveyId?: string, submissionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveySubmission>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveySubmission
|
|
21220
|
+
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
21221
|
|
|
21091
21222
|
/**
|
|
21092
21223
|
* @category Keys
|
|
@@ -21190,7 +21321,7 @@ declare const GetSurveyTranslation: ({ surveyId, locale, adminApiParams, }: GetS
|
|
|
21190
21321
|
* @category Hooks
|
|
21191
21322
|
* @group Surveys
|
|
21192
21323
|
*/
|
|
21193
|
-
declare const useGetSurveyTranslation: (surveyId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurveyTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<SurveyTranslation | null
|
|
21324
|
+
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
21325
|
|
|
21195
21326
|
/**
|
|
21196
21327
|
* @category Keys
|
|
@@ -21242,7 +21373,7 @@ declare const GetSurvey: ({ surveyId, adminApiParams, }: GetSurveyProps) => Prom
|
|
|
21242
21373
|
* @category Hooks
|
|
21243
21374
|
* @group Surveys
|
|
21244
21375
|
*/
|
|
21245
|
-
declare const useGetSurvey: (surveyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurvey>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Survey
|
|
21376
|
+
declare const useGetSurvey: (surveyId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSurvey>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Survey>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
21246
21377
|
|
|
21247
21378
|
/**
|
|
21248
21379
|
* @category Keys
|
|
@@ -21396,7 +21527,7 @@ interface GetThreadMessageProps {
|
|
|
21396
21527
|
* @description Returns a single message from the given thread by its ID; requires read permission on threads.
|
|
21397
21528
|
*/
|
|
21398
21529
|
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
|
|
21530
|
+
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
21531
|
|
|
21401
21532
|
declare const THREAD_MESSAGES_QUERY_KEY: (threadId: string) => QueryKey;
|
|
21402
21533
|
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 +21556,7 @@ interface GetThreadMessagesPollProps extends SingleQueryParams {
|
|
|
21425
21556
|
* @description Returns any messages sent in the given thread after the provided lastMessageId, for lightweight polling-based updates; requires read permission on threads.
|
|
21426
21557
|
*/
|
|
21427
21558
|
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[]
|
|
21559
|
+
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
21560
|
|
|
21430
21561
|
declare const THREAD_MESSAGE_VIDEOS_QUERY_KEY: (threadId: string, messageId: string) => QueryKey;
|
|
21431
21562
|
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 +21645,7 @@ declare const GetThread: ({ threadId, adminApiParams, }: GetThreadProps) => Prom
|
|
|
21514
21645
|
* @category Hooks
|
|
21515
21646
|
* @group Threads
|
|
21516
21647
|
*/
|
|
21517
|
-
declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Thread
|
|
21648
|
+
declare const useGetThread: (threadId?: string, options?: SingleQueryOptions<ReturnType<typeof GetThread>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Thread>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
21518
21649
|
|
|
21519
21650
|
/**
|
|
21520
21651
|
* @category Keys
|
|
@@ -21566,7 +21697,7 @@ declare const GetTier: ({ tierId, adminApiParams, }: GetTierProps) => Promise<Co
|
|
|
21566
21697
|
* @category Hooks
|
|
21567
21698
|
* @group Tiers
|
|
21568
21699
|
*/
|
|
21569
|
-
declare const useGetTier: (tierId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTier>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Tier
|
|
21700
|
+
declare const useGetTier: (tierId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTier>>) => _tanstack_react_query.UseQueryResult<NoInfer<ConnectedXMResponse<Tier>>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
21570
21701
|
|
|
21571
21702
|
/**
|
|
21572
21703
|
* @category Keys
|
|
@@ -21619,7 +21750,7 @@ declare const GetTierImport: ({ tierId, importId, adminApiParams, }: GetTierImpo
|
|
|
21619
21750
|
* @category Hooks
|
|
21620
21751
|
* @group Imports
|
|
21621
21752
|
*/
|
|
21622
|
-
declare const useGetTierImport: (tierId?: string, importId?: string, options?: SingleQueryOptions<ReturnType<typeof GetTierImport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Import
|
|
21753
|
+
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
21754
|
|
|
21624
21755
|
/**
|
|
21625
21756
|
* @category Keys
|
|
@@ -26747,6 +26878,67 @@ declare const UpdateEventPage: ({ eventId, pageId, page, adminApiParams, queryCl
|
|
|
26747
26878
|
*/
|
|
26748
26879
|
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
26880
|
|
|
26881
|
+
/**
|
|
26882
|
+
* @category Params
|
|
26883
|
+
* @group Event-PassTypes
|
|
26884
|
+
*/
|
|
26885
|
+
interface AddEventPassTypeExchangeTargetParams extends MutationParams {
|
|
26886
|
+
eventId: string;
|
|
26887
|
+
passTypeId: string;
|
|
26888
|
+
exchangeTarget: PassTypeExchangeTargetCreateInputs;
|
|
26889
|
+
}
|
|
26890
|
+
/**
|
|
26891
|
+
* @category Methods
|
|
26892
|
+
* @group Event-PassTypes
|
|
26893
|
+
*/
|
|
26894
|
+
declare const AddEventPassTypeExchangeTarget: ({ eventId, passTypeId, exchangeTarget, adminApiParams, queryClient, }: AddEventPassTypeExchangeTargetParams) => Promise<ConnectedXMResponse<EventPassTypeExchangeTarget>>;
|
|
26895
|
+
/**
|
|
26896
|
+
* @category Mutations
|
|
26897
|
+
* @group Event-PassTypes
|
|
26898
|
+
*/
|
|
26899
|
+
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>;
|
|
26900
|
+
|
|
26901
|
+
/**
|
|
26902
|
+
* @category Params
|
|
26903
|
+
* @group Event-PassTypes
|
|
26904
|
+
*/
|
|
26905
|
+
interface RemoveEventPassTypeExchangeTargetParams extends MutationParams {
|
|
26906
|
+
eventId: string;
|
|
26907
|
+
passTypeId: string;
|
|
26908
|
+
exchangeTargetId: string;
|
|
26909
|
+
}
|
|
26910
|
+
/**
|
|
26911
|
+
* @category Methods
|
|
26912
|
+
* @group Event-PassTypes
|
|
26913
|
+
*/
|
|
26914
|
+
declare const RemoveEventPassTypeExchangeTarget: ({ eventId, passTypeId, exchangeTargetId, adminApiParams, queryClient, }: RemoveEventPassTypeExchangeTargetParams) => Promise<ConnectedXMResponse<EventPassTypeExchangeTarget>>;
|
|
26915
|
+
/**
|
|
26916
|
+
* @category Mutations
|
|
26917
|
+
* @group Event-PassTypes
|
|
26918
|
+
*/
|
|
26919
|
+
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>;
|
|
26920
|
+
|
|
26921
|
+
/**
|
|
26922
|
+
* @category Params
|
|
26923
|
+
* @group Event-PassTypes
|
|
26924
|
+
*/
|
|
26925
|
+
interface UpdateEventPassTypeExchangeTargetParams extends MutationParams {
|
|
26926
|
+
eventId: string;
|
|
26927
|
+
passTypeId: string;
|
|
26928
|
+
exchangeTargetId: string;
|
|
26929
|
+
exchangeTarget: PassTypeExchangeTargetUpdateInputs;
|
|
26930
|
+
}
|
|
26931
|
+
/**
|
|
26932
|
+
* @category Methods
|
|
26933
|
+
* @group Event-PassTypes
|
|
26934
|
+
*/
|
|
26935
|
+
declare const UpdateEventPassTypeExchangeTarget: ({ eventId, passTypeId, exchangeTargetId, exchangeTarget, adminApiParams, queryClient, }: UpdateEventPassTypeExchangeTargetParams) => Promise<ConnectedXMResponse<EventPassTypeExchangeTarget>>;
|
|
26936
|
+
/**
|
|
26937
|
+
* @category Mutations
|
|
26938
|
+
* @group Event-PassTypes
|
|
26939
|
+
*/
|
|
26940
|
+
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>;
|
|
26941
|
+
|
|
26750
26942
|
/**
|
|
26751
26943
|
* @category Params
|
|
26752
26944
|
* @group Events
|
|
@@ -36501,4 +36693,4 @@ declare const UpdateTier: ({ tierId, tier, adminApiParams, queryClient, }: Updat
|
|
|
36501
36693
|
*/
|
|
36502
36694
|
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
36695
|
|
|
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 };
|
|
36696
|
+
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 };
|