@connectedxm/admin 5.4.4 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -38,7 +38,6 @@ declare enum OrganizationModuleType {
38
38
  benefits = "benefits",
39
39
  interests = "interests",
40
40
  advertisements = "advertisements",
41
- subscriptions = "subscriptions",
42
41
  invoices = "invoices",
43
42
  streams = "streams"
44
43
  }
@@ -261,11 +260,6 @@ interface BaseAccount {
261
260
  internalRefId: string | null;
262
261
  accountTiers: BaseTier[];
263
262
  chatConnected: boolean;
264
- subscriptions: {
265
- subscriptionProduct: {
266
- tiers: BaseTier[];
267
- };
268
- }[];
269
263
  attributes?: AccountAttributeValue[];
270
264
  createdAt: string;
271
265
  }
@@ -1482,7 +1476,6 @@ interface OrganizationMembership {
1482
1476
  benefits: ModulePermissions;
1483
1477
  interests: ModulePermissions;
1484
1478
  advertisements: ModulePermissions;
1485
- subscriptions: ModulePermissions;
1486
1479
  invoices: ModulePermissions;
1487
1480
  announcements: ModulePermissions;
1488
1481
  bookings: ModulePermissions;
@@ -1734,7 +1727,6 @@ interface Payment extends BasePayment {
1734
1727
  session: BaseEventSession | null;
1735
1728
  place: BaseBookingPlace | null;
1736
1729
  space: BaseBookingSpace | null;
1737
- membership: BaseMembership | null;
1738
1730
  coupon: BaseCoupon | null;
1739
1731
  invoice: BaseInvoice | null;
1740
1732
  metadata?: any;
@@ -1750,7 +1742,6 @@ declare enum PaymentLineItemType {
1750
1742
  invoice = "invoice",
1751
1743
  booking = "booking",
1752
1744
  coupon = "coupon",
1753
- subscription = "subscription",
1754
1745
  refund = "refund"
1755
1746
  }
1756
1747
  interface BasePaymentLineItem {
@@ -1776,7 +1767,6 @@ interface BasePaymentLineItem {
1776
1767
  reservationId: string | null;
1777
1768
  accessId: string | null;
1778
1769
  bookingId: string | null;
1779
- subscriptionId: string | null;
1780
1770
  }
1781
1771
  interface PaymentLineItem extends BasePaymentLineItem {
1782
1772
  pass: BaseEventPass | null;
@@ -1785,7 +1775,6 @@ interface PaymentLineItem extends BasePaymentLineItem {
1785
1775
  reservation: BaseEventRoomTypeReservation | null;
1786
1776
  access: BaseEventSessionAccess | null;
1787
1777
  booking: BaseBooking | null;
1788
- subscription: BaseSubscription | null;
1789
1778
  coupon: BaseCoupon | null;
1790
1779
  payment: BasePayment;
1791
1780
  }
@@ -1825,7 +1814,6 @@ interface TaxIntegration {
1825
1814
  invoiceTaxCode: string;
1826
1815
  bookingTaxCode: string;
1827
1816
  couponTaxCode: string;
1828
- subscriptionTaxCode: string;
1829
1817
  createdAt: string;
1830
1818
  updatedAt: string;
1831
1819
  }
@@ -2076,7 +2064,6 @@ declare enum ReportType {
2076
2064
  accounts = "accounts",
2077
2065
  account = "account",
2078
2066
  revenue = "revenue",
2079
- subscriptionProduct = "subscriptionProduct",
2080
2067
  series = "series"
2081
2068
  }
2082
2069
  declare enum EventReportDateType {
@@ -2092,7 +2079,6 @@ interface ReportFilters {
2092
2079
  channelId?: string;
2093
2080
  accountId?: string;
2094
2081
  surveyId?: string;
2095
- subscriptionProductId?: string;
2096
2082
  sessionId?: string;
2097
2083
  seriesId?: string;
2098
2084
  }
@@ -2710,80 +2696,6 @@ interface MeetingLink extends BaseMeetingLink {
2710
2696
  createdAt: string;
2711
2697
  updatedAt: string;
2712
2698
  }
2713
- declare enum MembershipPriceType {
2714
- flat = "flat",
2715
- payWhatYouWant = "payWhatYouWant"
2716
- }
2717
- declare enum MembershipPriceInterval {
2718
- day = "day",
2719
- week = "week",
2720
- month = "month",
2721
- year = "year"
2722
- }
2723
- interface BaseMembershipPrice {
2724
- id: string;
2725
- active: boolean;
2726
- amount: number;
2727
- currency: string;
2728
- interval: MembershipPriceInterval;
2729
- intervalCount: number;
2730
- minAmount: number;
2731
- maxAmount: number;
2732
- type: MembershipPriceType;
2733
- }
2734
- interface MembershipPrice extends BaseMembershipPrice {
2735
- subscriptionProduct: BaseMembership;
2736
- createdAt: string;
2737
- updatedAt: string;
2738
- }
2739
- interface BaseMembership {
2740
- id: string;
2741
- active: boolean;
2742
- name: string;
2743
- description: string | null;
2744
- }
2745
- interface Membership extends BaseMembership {
2746
- prices: BaseMembershipPrice[];
2747
- statementDescriptor: string | null;
2748
- features: string[];
2749
- createdAt: string;
2750
- updatedAt: string;
2751
- }
2752
- declare enum SubscriptionStatus {
2753
- active = "active",
2754
- canceled = "canceled",
2755
- paused = "paused",
2756
- trialing = "trialing",
2757
- past_due = "past_due",
2758
- unpaid = "unpaid"
2759
- }
2760
- interface BaseSubscription {
2761
- id: string;
2762
- status: SubscriptionStatus;
2763
- expiresAt: string;
2764
- cancelAtEnd: boolean;
2765
- integrationId: string | null;
2766
- subscriptionProductId: string;
2767
- subscriptionProduct: BaseMembership;
2768
- }
2769
- interface Subscription extends BaseSubscription {
2770
- accountId: string;
2771
- account: BaseAccount;
2772
- priceId: string;
2773
- price: BaseMembershipPrice;
2774
- createdAt: string;
2775
- updatedAt: string;
2776
- }
2777
- interface BaseSubscriptionPayment {
2778
- id: string;
2779
- amount: number;
2780
- currency: string;
2781
- }
2782
- interface SubscriptionPayment extends BaseSubscriptionPayment {
2783
- subscription: BaseSubscription;
2784
- createdAt: string;
2785
- updatedAt: string;
2786
- }
2787
2699
  interface BaseSupportTicketNote {
2788
2700
  id: string;
2789
2701
  userId: string;
@@ -5062,7 +4974,6 @@ interface OrganizationMembershipUpdateInputs {
5062
4974
  benefits: Omit<ModulePermissions, "superEnabled" | "enabled">;
5063
4975
  interests: Omit<ModulePermissions, "superEnabled" | "enabled">;
5064
4976
  advertisements: Omit<ModulePermissions, "superEnabled" | "enabled">;
5065
- subscriptions: Omit<ModulePermissions, "superEnabled" | "enabled">;
5066
4977
  invoices: Omit<ModulePermissions, "superEnabled" | "enabled">;
5067
4978
  announcements: Omit<ModulePermissions, "superEnabled" | "enabled">;
5068
4979
  surveys: Omit<ModulePermissions, "superEnabled" | "enabled">;
@@ -5394,46 +5305,6 @@ interface StreamOutputCreateInputs {
5394
5305
  streamKey: string;
5395
5306
  url: string;
5396
5307
  }
5397
- interface MembershipCreateInputs {
5398
- name: string;
5399
- active?: boolean;
5400
- description?: string | null;
5401
- statementDescriptor?: string | null;
5402
- features?: string[] | null;
5403
- }
5404
- interface MembershipPriceCreateInputs {
5405
- active?: boolean;
5406
- type: keyof typeof MembershipPriceType;
5407
- amount: string | number;
5408
- currency: "usd";
5409
- interval: keyof typeof MembershipPriceInterval;
5410
- intervalCount: string | number;
5411
- }
5412
- interface MembershipPriceUpdateInputs {
5413
- active?: boolean;
5414
- }
5415
- interface MembershipUpdateInputs {
5416
- active?: boolean;
5417
- name?: string | null;
5418
- description?: string | null;
5419
- statementDescriptor?: string | null;
5420
- features?: string[] | null;
5421
- }
5422
- interface SubscriptionCreateInputs {
5423
- status?: SubscriptionStatus;
5424
- expiresAt?: string | null;
5425
- cancelAtEnd?: boolean;
5426
- integrationId?: string | null;
5427
- subscriptionProductId?: string | null;
5428
- subscriptionProduct?: BaseMembership;
5429
- accountId?: string | null;
5430
- account?: BaseAccount;
5431
- priceId?: string | null;
5432
- price?: BaseMembershipPrice;
5433
- }
5434
- interface SubscriptionUpdateInputs {
5435
- accountId?: string | null;
5436
- }
5437
5308
  interface SupportTicketCreateInputs {
5438
5309
  }
5439
5310
  interface SupportTicketUpdateInputs {
@@ -5805,7 +5676,6 @@ interface TaxIntegrationUpdateInputs {
5805
5676
  invoiceTaxCode?: string | null;
5806
5677
  bookingTaxCode?: string | null;
5807
5678
  couponTaxCode?: string | null;
5808
- subscriptionTaxCode?: string | null;
5809
5679
  }
5810
5680
  interface CloneOptions {
5811
5681
  name: string;
@@ -7015,30 +6885,6 @@ declare const GetAccountPayments: ({ accountId, pageParam, pageSize, orderBy, se
7015
6885
  */
7016
6886
  declare const useGetAccountPayments: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7017
6887
 
7018
- /**
7019
- * @category Keys
7020
- * @group Accounts
7021
- */
7022
- declare const ACCOUNT_SUBSCRIPTIONS_QUERY_KEY: (accountId: string) => string[];
7023
- /**
7024
- * @category Setters
7025
- * @group Accounts
7026
- */
7027
- declare const SET_ACCOUNT_SUBSCRIPTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_SUBSCRIPTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountSubscriptions>>) => void;
7028
- interface GetAccountSubscriptionsProps extends InfiniteQueryParams {
7029
- accountId: string;
7030
- }
7031
- /**
7032
- * @category Queries
7033
- * @group Accounts
7034
- */
7035
- declare const GetAccountSubscriptions: ({ accountId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetAccountSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
7036
- /**
7037
- * @category Hooks
7038
- * @group Accounts
7039
- */
7040
- declare const useGetAccountSubscriptions: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7041
-
7042
6888
  /**
7043
6889
  * @category Keys
7044
6890
  * @group Threads
@@ -15589,224 +15435,6 @@ declare const GetMeetingSessions: ({ meetingId, pageParam, pageSize, orderBy, se
15589
15435
  */
15590
15436
  declare const useGetMeetingSessions: (meetingId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMeetingSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<MeetingSession[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15591
15437
 
15592
- /**
15593
- * @category Keys
15594
- * @group Subscriptions
15595
- */
15596
- declare const MEMBERSHIP_QUERY_KEY: (membershipId: string) => string[];
15597
- /**
15598
- * @category Setters
15599
- * @group Subscriptions
15600
- */
15601
- declare const SET_MEMBERSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembership>>) => void;
15602
- interface GetMembershipProps extends SingleQueryParams {
15603
- membershipId: string;
15604
- }
15605
- /**
15606
- * @category Queries
15607
- * @group Subscriptions
15608
- */
15609
- declare const GetMembership: ({ membershipId, adminApiParams, }: GetMembershipProps) => Promise<ConnectedXMResponse<Membership>>;
15610
- /**
15611
- * @category Hooks
15612
- * @group Subscriptions
15613
- */
15614
- declare const useGetMembership: (membershipId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMembership>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Membership>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15615
-
15616
- /**
15617
- * @category Keys
15618
- * @group Subscriptions
15619
- */
15620
- declare const MEMBERSHIP_PRICE_QUERY_KEY: (membershipId: string, membershipPriceId: string) => string[];
15621
- /**
15622
- * @category Setters
15623
- * @group Subscriptions
15624
- */
15625
- declare const SET_MEMBERSHIP_PRICE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_PRICE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembershipPrice>>) => void;
15626
- interface GetMembershipPriceProps extends SingleQueryParams {
15627
- membershipId: string;
15628
- membershipPriceId: string;
15629
- }
15630
- /**
15631
- * @category Queries
15632
- * @group Subscriptions
15633
- */
15634
- declare const GetMembershipPrice: ({ membershipId, membershipPriceId, adminApiParams, }: GetMembershipPriceProps) => Promise<ConnectedXMResponse<MembershipPrice>>;
15635
- /**
15636
- * @category Hooks
15637
- * @group Subscriptions
15638
- */
15639
- declare const useGetMembershipPrice: (membershipId?: string, membershipPriceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetMembershipPrice>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<MembershipPrice>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15640
-
15641
- /**
15642
- * @category Keys
15643
- * @group Subscriptions
15644
- */
15645
- declare const MEMBERSHIP_PRICES_QUERY_KEY: (membershipId: string) => string[];
15646
- /**
15647
- * @category Setters
15648
- * @group Subscriptions
15649
- */
15650
- declare const SET_MEMBERSHIP_PRICES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_PRICES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembershipPrices>>) => void;
15651
- interface GetMembershipPricesProps extends InfiniteQueryParams {
15652
- membershipId: string;
15653
- }
15654
- /**
15655
- * @category Queries
15656
- * @group Subscriptions
15657
- */
15658
- declare const GetMembershipPrices: ({ pageParam, pageSize, orderBy, search, membershipId, adminApiParams, }: GetMembershipPricesProps) => Promise<ConnectedXMResponse<MembershipPrice[]>>;
15659
- /**
15660
- * @category Hooks
15661
- * @group Subscriptions
15662
- */
15663
- declare const useGetMembershipPrices: (membershipId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMembershipPrices>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<MembershipPrice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15664
-
15665
- /**
15666
- * @category Keys
15667
- * @group Subscriptions
15668
- */
15669
- declare const MEMBERSHIP_SUBSCRIPTIONS_QUERY_KEY: (membershipId: string, status?: SubscriptionStatus) => string[];
15670
- /**
15671
- * @category Setters
15672
- * @group Subscriptions
15673
- */
15674
- declare const SET_MEMBERSHIP_SUBSCRIPTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_SUBSCRIPTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembershipSubscriptions>>) => void;
15675
- interface GetMembershipSubscriptionsProps extends InfiniteQueryParams {
15676
- membershipId: string;
15677
- status?: SubscriptionStatus;
15678
- }
15679
- /**
15680
- * @category Queries
15681
- * @group Subscriptions
15682
- */
15683
- declare const GetMembershipSubscriptions: ({ membershipId, status, pageParam, pageSize, orderBy, search, adminApiParams, }: GetMembershipSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
15684
- /**
15685
- * @category Hooks
15686
- * @group Subscriptions
15687
- */
15688
- declare const useGetMembershipSubscriptions: (membershipId: string, status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMembershipSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15689
-
15690
- /**
15691
- * @category Keys
15692
- * @group Subscriptions
15693
- */
15694
- declare const MEMBERSHIP_TIERS_QUERY_KEY: (membershipId: string) => string[];
15695
- /**
15696
- * @category Setters
15697
- * @group Subscriptions
15698
- */
15699
- declare const SET_MEMBERSHIP_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIP_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMembershipTiers>>) => void;
15700
- interface GetMembershipTiersProps extends InfiniteQueryParams {
15701
- membershipId: string;
15702
- }
15703
- /**
15704
- * @category Queries
15705
- * @group Subscriptions
15706
- */
15707
- declare const GetMembershipTiers: ({ pageParam, pageSize, orderBy, search, membershipId, adminApiParams, }: GetMembershipTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
15708
- /**
15709
- * @category Hooks
15710
- * @group Subscriptions
15711
- */
15712
- declare const useGetMembershipTiers: (membershipId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMembershipTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15713
-
15714
- /**
15715
- * @category Keys
15716
- * @group Subscriptions
15717
- */
15718
- declare const MEMBERSHIPS_QUERY_KEY: () => string[];
15719
- /**
15720
- * @category Setters
15721
- * @group Subscriptions
15722
- */
15723
- declare const SET_MEMBERSHIPS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof MEMBERSHIPS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetMemberships>>) => void;
15724
- interface GetMembershipsProps extends InfiniteQueryParams {
15725
- }
15726
- /**
15727
- * @category Queries
15728
- * @group Subscriptions
15729
- */
15730
- declare const GetMemberships: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetMembershipsProps) => Promise<ConnectedXMResponse<Membership[]>>;
15731
- /**
15732
- * @category Hooks
15733
- * @group Subscriptions
15734
- */
15735
- declare const useGetMemberships: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetMemberships>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Membership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15736
-
15737
- /**
15738
- * @category Keys
15739
- * @group Subscriptions
15740
- */
15741
- declare const SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => string[];
15742
- /**
15743
- * @category Setters
15744
- * @group Subscriptions
15745
- */
15746
- declare const SET_SUBSCRIPTION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscription>>) => void;
15747
- interface GetSubscriptionProps extends SingleQueryParams {
15748
- subscriptionId: string;
15749
- }
15750
- /**
15751
- * @category Queries
15752
- * @group Subscriptions
15753
- */
15754
- declare const GetSubscription: ({ subscriptionId, adminApiParams, }: GetSubscriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
15755
- /**
15756
- * @category Hooks
15757
- * @group Subscriptions
15758
- */
15759
- declare const useGetSubscription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSubscription>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
15760
-
15761
- /**
15762
- * @category Keys
15763
- * @group Subscriptions
15764
- */
15765
- declare const SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => string[];
15766
- /**
15767
- * @category Setters
15768
- * @group Subscriptions
15769
- */
15770
- declare const SET_SUBSCRIPTION_PAYMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_PAYMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptionPayments>>) => void;
15771
- interface GetSubscriptionPaymentsProps extends InfiniteQueryParams {
15772
- subscriptionId: string;
15773
- }
15774
- /**
15775
- * @category Queries
15776
- * @group Subscriptions
15777
- */
15778
- declare const GetSubscriptionPayments: ({ pageParam, pageSize, orderBy, search, subscriptionId, adminApiParams, }: GetSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
15779
- /**
15780
- * @category Hooks
15781
- * @group Subscriptions
15782
- */
15783
- declare const useGetSubscriptionPayments: (subscriptionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscriptionPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15784
-
15785
- /**
15786
- * @category Keys
15787
- * @group Subscriptions
15788
- */
15789
- declare const SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => string[];
15790
- /**
15791
- * @category Setters
15792
- * @group Subscriptions
15793
- */
15794
- declare const SET_SUBSCRIPTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptions>>) => void;
15795
- interface GetSubscriptionsProps extends InfiniteQueryParams {
15796
- status?: SubscriptionStatus;
15797
- membershipId?: string;
15798
- }
15799
- /**
15800
- * @category Queries
15801
- * @group Subscriptions
15802
- */
15803
- declare const GetSubscriptions: ({ pageParam, pageSize, orderBy, search, status, membershipId, adminApiParams, }: GetSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
15804
- /**
15805
- * @category Hooks
15806
- * @group Subscriptions
15807
- */
15808
- declare const useGetSubscriptions: (status?: SubscriptionStatus, membershipId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
15809
-
15810
15438
  /**
15811
15439
  * @category Keys
15812
15440
  * @group Integrations
@@ -16450,30 +16078,6 @@ declare const GetOrganizationPaymentIntegration: ({ type, adminApiParams, }: Get
16450
16078
  */
16451
16079
  declare const useGetOrganizationPaymentIntegration: (type: keyof typeof PaymentIntegrationType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentIntegration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PaymentIntegration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16452
16080
 
16453
- /**
16454
- * @category Keys
16455
- * @group Organization
16456
- */
16457
- declare const ORGANIZATION_PAYMENT_INTEGRATION_LINK_QUERY_KEY: (type: keyof typeof PaymentIntegrationType) => string[];
16458
- /**
16459
- * @category Setters
16460
- * @group Organization
16461
- */
16462
- declare const SET_ORGANIZATION_STRIPE_LINK_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ORGANIZATION_PAYMENT_INTEGRATION_LINK_QUERY_KEY>, response: Awaited<ReturnType<typeof GetOrganizationPaymentLink>>) => void;
16463
- interface GetOrganizationPaymentLinkProps extends SingleQueryParams {
16464
- type: keyof typeof PaymentIntegrationType;
16465
- }
16466
- /**
16467
- * @category Queries
16468
- * @group Organization
16469
- */
16470
- declare const GetOrganizationPaymentLink: ({ type, adminApiParams, }: GetOrganizationPaymentLinkProps) => Promise<ConnectedXMResponse<string>>;
16471
- /**
16472
- * @category Hooks
16473
- * @group Organization
16474
- */
16475
- declare const useGetOrganizationPaymentLink: (type: keyof typeof PaymentIntegrationType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPaymentLink>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<string>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
16476
-
16477
16081
  /**
16478
16082
  * @category Keys
16479
16083
  * @group Organization
@@ -18363,30 +17967,6 @@ declare const GetTierImports: ({ tierId, pageParam, pageSize, orderBy, search, a
18363
17967
  */
18364
17968
  declare const useGetTierImports: (tierId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetTierImports>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Import[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
18365
17969
 
18366
- /**
18367
- * @category Keys
18368
- * @group Tiers
18369
- */
18370
- declare const TIER_SUBSCRIBERS_QUERY_KEY: (tierId: string) => string[];
18371
- /**
18372
- * @category Setters
18373
- * @group Tiers
18374
- */
18375
- declare const SET_TIER_SUBSCRIBERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof TIER_SUBSCRIBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetTierSubscribers>>) => void;
18376
- interface GetTierSubscribersProps extends InfiniteQueryParams {
18377
- tierId?: string;
18378
- }
18379
- /**
18380
- * @category Queries
18381
- * @group Tiers
18382
- */
18383
- declare const GetTierSubscribers: ({ pageParam, pageSize, orderBy, search, tierId, adminApiParams, }: GetTierSubscribersProps) => Promise<ConnectedXMResponse<Account[]>>;
18384
- /**
18385
- * @category Hooks
18386
- * @group Tiers
18387
- */
18388
- declare const useGetTierSubscribers: (tierId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetTierSubscribers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
18389
-
18390
17970
  /**
18391
17971
  * @category Keys
18392
17972
  * @group Tiers
@@ -27890,211 +27470,6 @@ declare const GenerateMeetingSessionSummary: ({ sessionId, adminApiParams, query
27890
27470
  */
27891
27471
  declare const useGenerateMeetingSessionSummary: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof GenerateMeetingSessionSummary>>, Omit<GenerateMeetingSessionSummaryParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>, Omit<GenerateMeetingSessionSummaryParams, "queryClient" | "adminApiParams">, unknown>;
27892
27472
 
27893
- /**
27894
- * @category Params
27895
- * @group Subscriptions
27896
- */
27897
- interface AddMembershipTierParams extends MutationParams {
27898
- membershipId: string;
27899
- tierId: string;
27900
- }
27901
- /**
27902
- * @category Methods
27903
- * @group Subscriptions
27904
- */
27905
- declare const AddMembershipTier: ({ membershipId, tierId, adminApiParams, queryClient, }: AddMembershipTierParams) => Promise<ConnectedXMResponse<Tier>>;
27906
- /**
27907
- * @category Mutations
27908
- * @group Subscriptions
27909
- */
27910
- declare const useAddMembershipTier: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof AddMembershipTier>>, Omit<AddMembershipTierParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Tier>, axios.AxiosError<ConnectedXMResponse<Tier>, any>, Omit<AddMembershipTierParams, "queryClient" | "adminApiParams">, unknown>;
27911
-
27912
- /**
27913
- * @category Params
27914
- * @group Subscriptions
27915
- */
27916
- interface CancelSubscriptionParams extends MutationParams {
27917
- subscriptionId: string;
27918
- }
27919
- /**
27920
- * @category Methods
27921
- * @group Subscriptions
27922
- */
27923
- declare const CancelSubscription: ({ subscriptionId, adminApiParams, queryClient, }: CancelSubscriptionParams) => Promise<ConnectedXMResponse<Subscription>>;
27924
- /**
27925
- * @category Mutations
27926
- * @group Subscriptions
27927
- */
27928
- declare const useCancelSubscription: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CancelSubscription>>, Omit<CancelSubscriptionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<Subscription>, any>, Omit<CancelSubscriptionParams, "queryClient" | "adminApiParams">, unknown>;
27929
-
27930
- /**
27931
- * @category Params
27932
- * @group Subscriptions
27933
- */
27934
- interface CreateMembershipParams extends MutationParams {
27935
- membership: MembershipCreateInputs;
27936
- }
27937
- /**
27938
- * @category Methods
27939
- * @group Subscriptions
27940
- */
27941
- declare const CreateMembership: ({ membership, adminApiParams, queryClient, }: CreateMembershipParams) => Promise<ConnectedXMResponse<Membership>>;
27942
- /**
27943
- * @category Mutations
27944
- * @group Subscriptions
27945
- */
27946
- declare const useCreateMembership: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateMembership>>, Omit<CreateMembershipParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Membership>, axios.AxiosError<ConnectedXMResponse<Membership>, any>, Omit<CreateMembershipParams, "queryClient" | "adminApiParams">, unknown>;
27947
-
27948
- /**
27949
- * @category Params
27950
- * @group Subscriptions
27951
- */
27952
- interface CreateMembershipPriceParams extends MutationParams {
27953
- membershipId: string;
27954
- membershipPrice: MembershipPriceCreateInputs;
27955
- }
27956
- /**
27957
- * @category Methods
27958
- * @group Subscriptions
27959
- */
27960
- declare const CreateMembershipPrice: ({ membershipId, membershipPrice, adminApiParams, queryClient, }: CreateMembershipPriceParams) => Promise<ConnectedXMResponse<MembershipPrice>>;
27961
- /**
27962
- * @category Mutations
27963
- * @group Subscriptions
27964
- */
27965
- declare const useCreateMembershipPrice: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateMembershipPrice>>, Omit<CreateMembershipPriceParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<MembershipPrice>, axios.AxiosError<ConnectedXMResponse<MembershipPrice>, any>, Omit<CreateMembershipPriceParams, "queryClient" | "adminApiParams">, unknown>;
27966
-
27967
- /**
27968
- * @category Params
27969
- * @group Subscriptions
27970
- */
27971
- interface CreateSubscriptionParams extends MutationParams {
27972
- subscription: SubscriptionCreateInputs;
27973
- }
27974
- /**
27975
- * @category Methods
27976
- * @group Subscriptions
27977
- */
27978
- declare const CreateSubscription: ({ subscription, adminApiParams, }: CreateSubscriptionParams) => Promise<ConnectedXMResponse<Subscription>>;
27979
- /**
27980
- * @category Mutations
27981
- * @group Subscriptions
27982
- */
27983
- declare const useCreateSubscription: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateSubscription>>, Omit<CreateSubscriptionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<Subscription>, any>, Omit<CreateSubscriptionParams, "queryClient" | "adminApiParams">, unknown>;
27984
-
27985
- /**
27986
- * @category Params
27987
- * @group Subscriptions
27988
- */
27989
- interface DeleteMembershipParams extends MutationParams {
27990
- membershipId: string;
27991
- }
27992
- /**
27993
- * @category Methods
27994
- * @group Subscriptions
27995
- */
27996
- declare const DeleteMembership: ({ membershipId, adminApiParams, queryClient, }: DeleteMembershipParams) => Promise<ConnectedXMResponse<void>>;
27997
- /**
27998
- * @category Mutations
27999
- * @group Subscriptions
28000
- */
28001
- declare const useDeleteMembership: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteMembership>>, Omit<DeleteMembershipParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<void>, axios.AxiosError<ConnectedXMResponse<void>, any>, Omit<DeleteMembershipParams, "queryClient" | "adminApiParams">, unknown>;
28002
-
28003
- /**
28004
- * @category Params
28005
- * @group Subscriptions
28006
- */
28007
- interface DeleteMembershipPriceParams extends MutationParams {
28008
- membershipId: string;
28009
- }
28010
- /**
28011
- * @category Methods
28012
- * @group Subscriptions
28013
- */
28014
- declare const DeleteMembershipPrice: ({ membershipId, adminApiParams, queryClient, }: DeleteMembershipPriceParams) => Promise<ConnectedXMResponse<void>>;
28015
- /**
28016
- * @category Mutations
28017
- * @group Subscriptions
28018
- */
28019
- declare const useDeleteMembershipPrice: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteMembershipPrice>>, Omit<DeleteMembershipPriceParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<void>, axios.AxiosError<ConnectedXMResponse<void>, any>, Omit<DeleteMembershipPriceParams, "queryClient" | "adminApiParams">, unknown>;
28020
-
28021
- /**
28022
- * @category Params
28023
- * @group Subscriptions
28024
- */
28025
- interface RemoveMembershipTierParams extends MutationParams {
28026
- membershipId: string;
28027
- tierId: string;
28028
- }
28029
- /**
28030
- * @category Methods
28031
- * @group Subscriptions
28032
- */
28033
- declare const RemoveMembershipTier: ({ membershipId, tierId, adminApiParams, queryClient, }: RemoveMembershipTierParams) => Promise<ConnectedXMResponse<Tier>>;
28034
- /**
28035
- * @category Mutations
28036
- * @group Subscriptions
28037
- */
28038
- declare const useRemoveMembershipTier: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveMembershipTier>>, Omit<RemoveMembershipTierParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Tier>, axios.AxiosError<ConnectedXMResponse<Tier>, any>, Omit<RemoveMembershipTierParams, "queryClient" | "adminApiParams">, unknown>;
28039
-
28040
- /**
28041
- * @category Params
28042
- * @group Subscriptions
28043
- */
28044
- interface UpdateMembershipParams extends MutationParams {
28045
- membershipId: string;
28046
- membership: MembershipUpdateInputs;
28047
- }
28048
- /**
28049
- * @category Methods
28050
- * @group Subscriptions
28051
- */
28052
- declare const UpdateMembership: ({ membershipId, membership, queryClient, adminApiParams, }: UpdateMembershipParams) => Promise<ConnectedXMResponse<Membership>>;
28053
- /**
28054
- * @category Mutations
28055
- * @group Subscriptions
28056
- */
28057
- declare const useUpdateMembership: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateMembership>>, Omit<UpdateMembershipParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Membership>, axios.AxiosError<ConnectedXMResponse<Membership>, any>, Omit<UpdateMembershipParams, "queryClient" | "adminApiParams">, unknown>;
28058
-
28059
- /**
28060
- * @category Params
28061
- * @group Subscriptions
28062
- */
28063
- interface UpdateMembershipPriceParams extends MutationParams {
28064
- membershipId: string;
28065
- membershipPriceId: string;
28066
- membershipPrice: MembershipPriceUpdateInputs;
28067
- }
28068
- /**
28069
- * @category Methods
28070
- * @group Subscriptions
28071
- */
28072
- declare const UpdateMembershipPrice: ({ membershipId, membershipPriceId, membershipPrice, queryClient, adminApiParams, }: UpdateMembershipPriceParams) => Promise<ConnectedXMResponse<MembershipPrice>>;
28073
- /**
28074
- * @category Mutations
28075
- * @group Subscriptions
28076
- */
28077
- declare const useUpdateMembershipPrice: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateMembershipPrice>>, Omit<UpdateMembershipPriceParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<MembershipPrice>, axios.AxiosError<ConnectedXMResponse<MembershipPrice>, any>, Omit<UpdateMembershipPriceParams, "queryClient" | "adminApiParams">, unknown>;
28078
-
28079
- /**
28080
- * @category Params
28081
- * @group Subscriptions
28082
- */
28083
- interface UpdateSubscriptionParams extends MutationParams {
28084
- subscriptionId: string;
28085
- subscription: SubscriptionUpdateInputs;
28086
- }
28087
- /**
28088
- * @category Methods
28089
- * @group Subscriptions
28090
- */
28091
- declare const UpdateSubscription: ({ subscriptionId, subscription, adminApiParams, }: UpdateSubscriptionParams) => Promise<ConnectedXMResponse<Subscription>>;
28092
- /**
28093
- * @category Mutations
28094
- * @group Subscriptions
28095
- */
28096
- declare const useUpdateSubscription: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateSubscription>>, Omit<UpdateSubscriptionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<Subscription>, any>, Omit<UpdateSubscriptionParams, "queryClient" | "adminApiParams">, unknown>;
28097
-
28098
27473
  /**
28099
27474
  * @category Params
28100
27475
  * @group Integration
@@ -31000,4 +30375,4 @@ declare const UploadVideoCaptions: ({ videoId, language, file, filename, adminAp
31000
30375
  */
31001
30376
  declare const useUploadVideoCaptions: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UploadVideoCaptions>>, Omit<UploadVideoCaptionsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<VideoCaption>, axios.AxiosError<ConnectedXMResponse<VideoCaption>, any>, Omit<UploadVideoCaptionsParams, "queryClient" | "adminApiParams">, unknown>;
31002
30377
 
31003
- export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_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_SUBSCRIPTIONS_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, type AccountAttributeUpdateInputs, type AccountAttributeValue, type AccountCreateInputs, type AccountInvitation, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityEntity, ActivityEntityType, ActivityPreference, ActivityStatus, type ActivityUpdateInputs, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddCustomReportUser, type AddCustomReportUserParams, AddEventAccessUser, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, 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, 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, AddEventSessionLocationSession, type AddEventSessionLocationSessionParams, AddEventSessionMatchPass, type AddEventSessionMatchPassParams, AddEventSessionPassType, type AddEventSessionPassTypeParams, AddEventSessionQuestionChoiceSubQuestion, type AddEventSessionQuestionChoiceSubQuestionParams, AddEventSessionSectionQuestion, type AddEventSessionSectionQuestionParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTrack, type AddEventSessionTrackParams, 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, AddMembershipTier, type AddMembershipTierParams, AddOrganizationModuleEditableTier, type AddOrganizationModuleEditableTierParams, AddOrganizationModuleEnabledTier, type AddOrganizationModuleEnabledTierParams, AddOrganizationUser, type AddOrganizationUserParams, AddRoomToRoomType, type AddRoomToRoomTypeParams, AddSeriesEvent, type AddSeriesEventParams, AddSurveyQuestionChoiceSubQuestion, type AddSurveyQuestionChoiceSubQuestionParams, AddSurveySectionQuestion, type AddSurveySectionQuestionParams, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementTranslation, type AnnouncementTranslationUpdateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ArchiveActivity, type ArchiveActivityParams, 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_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_SLOTS_QUERY_KEY, BOOKING_SPACE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAPILog, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountInvitation, type BaseActivationCompletion, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, 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 BaseEventEmail, type BaseEventMediaItem, type BaseEventOnSite, type BaseEventOnSiteBadgeField, 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 BaseMembership, type BaseMembershipPrice, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BasePassAddOn, type BasePayment, 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 BaseSideEffect, type BaseStandardReport, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionPayment, type BaseSupportTicket, type BaseSupportTicketNote, 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 BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMember, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, 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 BookingSlot, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceAvailabilityCreateInputs, type BookingSpaceAvailabilityUpdateInputs, type BookingSpaceBlackout, type BookingSpaceBlackoutCreateInputs, type BookingSpaceBlackoutUpdateInputs, type BookingSpaceCreateInputs, 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_USERS_QUERY_KEY, CacheIndividualQueries, CalculateDuration, CancelActivitySchedule, type CancelActivityScheduleParams, CancelAnnouncementSchedule, type CancelAnnouncementScheduleParams, CancelChannelContentPublishSchedule, type CancelChannelContentPublishScheduleParams, CancelEventPass, type CancelEventPassParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelSubscription, type CancelSubscriptionParams, 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, CloneEvent, type CloneEventParams, type CloneOptions, 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, CreateAnnouncementTranslation, type CreateAnnouncementTranslationParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateBooking, type CreateBookingParams, CreateBookingPlace, type CreateBookingPlaceParams, CreateBookingPlaceTranslation, type CreateBookingPlaceTranslationParams, CreateBookingSpace, CreateBookingSpaceAvailability, type CreateBookingSpaceAvailabilityParams, CreateBookingSpaceBlackout, type CreateBookingSpaceBlackoutParams, type CreateBookingSpaceParams, CreateBookingSpaceTranslation, type CreateBookingSpaceTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateCustomModule, type CreateCustomModuleParams, CreateCustomModuleTranslation, type CreateCustomModuleTranslationParams, CreateCustomReport, type CreateCustomReportParams, CreateDashboard, type CreateDashboardParams, CreateDashboardWidget, type CreateDashboardWidgetParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventActivationTranslation, type CreateEventActivationTranslationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAddOnTranslation, type CreateEventAddOnTranslationParams, CreateEventAttendee, CreateEventAttendeePackage, type CreateEventAttendeePackageParams, type CreateEventAttendeeParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventCouponVariants, type CreateEventCouponVariantsParams, CreateEventEmailTranslation, type CreateEventEmailTranslationParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, CreateEventFollowup, type CreateEventFollowupParams, CreateEventFollowupTranslation, type CreateEventFollowupTranslationParams, CreateEventMatch, type CreateEventMatchParams, CreateEventMediaItem, type CreateEventMediaItemParams, CreateEventPackage, type CreateEventPackageParams, CreateEventPackagePass, type CreateEventPackagePassParams, CreateEventPackageTranslation, type CreateEventPackageTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventPass, type CreateEventPassParams, CreateEventPassType, type CreateEventPassTypeParams, CreateEventPassTypePriceSchedule, CreateEventPassTypeRefundSchedule, CreateEventPassTypeTranslation, type CreateEventPassTypeTranslationParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, CreateEventReservation, type CreateEventReservationParams, CreateEventRoomType, type CreateEventRoomTypeParams, CreateEventRoomTypeTranslation, type CreateEventRoomTypeTranslationParams, CreateEventRound, type CreateEventRoundParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, CreateEventSessionAccess, type CreateEventSessionAccessParams, CreateEventSessionLocation, type CreateEventSessionLocationParams, CreateEventSessionLocationTranslation, type CreateEventSessionLocationTranslationParams, CreateEventSessionMatch, type CreateEventSessionMatchParams, type CreateEventSessionParams, CreateEventSessionQuestion, CreateEventSessionQuestionChoice, type CreateEventSessionQuestionChoiceParams, CreateEventSessionQuestionChoiceTranslation, type CreateEventSessionQuestionChoiceTranslationParams, type CreateEventSessionQuestionParams, CreateEventSessionQuestionTranslation, type CreateEventSessionQuestionTranslationParams, CreateEventSessionRound, type CreateEventSessionRoundParams, CreateEventSessionSection, type CreateEventSessionSectionParams, CreateEventSessionSectionTranslation, type CreateEventSessionSectionTranslationParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventSponsorship, CreateEventSponsorshipLevel, type CreateEventSponsorshipLevelParams, CreateEventSponsorshipLevelTranslation, type CreateEventSponsorshipLevelTranslationParams, type CreateEventSponsorshipParams, CreateEventSponsorshipTranslation, type CreateEventSponsorshipTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupTranslation, type CreateGroupTranslationParams, CreateImage, type CreateImageParams, CreateImport, type CreateImportParams, CreateIntegration, type CreateIntegrationParams, CreateInterest, type CreateInterestParams, CreateInvoice, CreateInvoiceLineItem, type CreateInvoiceLineItemParams, type CreateInvoiceParams, CreateLevel, type CreateLevelParams, CreateLevelTranslation, type CreateLevelTranslationParams, CreateMeeting, CreateMeetingLink, type CreateMeetingLinkParams, type CreateMeetingParams, CreateMeetingParticipant, type CreateMeetingParticipantParams, CreateMembership, type CreateMembershipParams, CreateMembershipPrice, type CreateMembershipPriceParams, 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, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSubscription, type CreateSubscriptionParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateSurvey, type CreateSurveyParams, CreateSurveyQuestion, CreateSurveyQuestionChoice, type CreateSurveyQuestionChoiceParams, CreateSurveyQuestionChoiceTranslation, type CreateSurveyQuestionChoiceTranslationParams, type CreateSurveyQuestionParams, CreateSurveyQuestionTranslation, type CreateSurveyQuestionTranslationParams, CreateSurveySection, type CreateSurveySectionParams, CreateSurveySectionTranslation, type CreateSurveySectionTranslationParams, CreateSurveyTranslation, type CreateSurveyTranslationParams, CreateTaxIntegration, type CreateTaxIntegrationParams, CreateThread, CreateThreadCircle, CreateThreadCircleAccount, type CreateThreadCircleAccountParams, type CreateThreadCircleParams, 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 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, 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, 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, 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, DeleteEventMatch, type DeleteEventMatchParams, DeleteEventMediaItem, type DeleteEventMediaItemParams, 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, DeleteEventSessionQuestion, DeleteEventSessionQuestionChoice, type DeleteEventSessionQuestionChoiceParams, DeleteEventSessionQuestionChoiceTranslation, type DeleteEventSessionQuestionChoiceTranslationParams, type DeleteEventSessionQuestionParams, DeleteEventSessionQuestionTranslation, type DeleteEventSessionQuestionTranslationParams, DeleteEventSessionRound, type DeleteEventSessionRoundParams, DeleteEventSessionSection, type DeleteEventSessionSectionParams, DeleteEventSessionSectionTranslation, type DeleteEventSessionSectionTranslationParams, 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 DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteMeetingLink, type DeleteMeetingLinkParams, DeleteMeetingParticipant, type DeleteMeetingParticipantParams, DeleteMembership, type DeleteMembershipParams, DeleteMembershipPrice, type DeleteMembershipPriceParams, DeleteOrganizationDomain, type DeleteOrganizationDomainParams, 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, 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, DeleteThreadCircle, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, type DeleteThreadCircleParams, 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, DetachEventQuestionSearchList, type DetachEventQuestionSearchListParams, DetachEventSessionQuestionSearchList, type DetachEventSessionQuestionSearchListParams, DetachSurveyQuestionSearchList, type DetachSurveyQuestionSearchListParams, 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_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_COUPONS_QUERY_KEY, EVENT_COUPON_PASSES_QUERY_KEY, EVENT_COUPON_PAYMENTS_QUERY_KEY, EVENT_COUPON_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_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_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_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_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_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_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_TRACKS_QUERY_KEY, EVENT_SESSION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_TRANSLATION_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_THREADS_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, EVENT_ZPL_TEMPLATE_BADGE_FIELDS_QUERY_KEY, EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_KEY, type EmailReceipt, EmailReceiptStatus, EnableLivestream, type EnableLivestreamParams, type EntityUseCode, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, EventActivationType, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, EventAgendaVisibility, type EventAnnouncementFilters, type EventAttendee, type EventAttendeePackageCreateInputs, type EventAttendeePackageUpdateInputs, type EventAttendeeUpdateInputs, type EventBadgeFieldUpdateInputs, 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 EventMediaItem, type EventMediaItemCreateInputs, type EventMediaItemUpdateInputs, type EventOnSite, type EventOnSiteBadgeField, 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 EventSessionCreateInputs, type EventSessionLocation, type EventSessionLocationCreateInputs, type EventSessionLocationTranslation, type EventSessionLocationTranslationUpdateInputs, type EventSessionLocationUpdateInputs, 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 EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, 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, ExportStatus, 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_THREADS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GenerateMeetingSessionSummary, type GenerateMeetingSessionSummaryParams, GenerateVideoCaptions, type GenerateVideoCaptionsParams, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountAddress, GetAccountAddresses, GetAccountComments, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountInvitations, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountNotificationPreferences, GetAccountPayments, GetAccountSubscriptions, GetAccountThreads, GetAccountTiers, GetAccounts, 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, GetBookingSpace, GetBookingSpaceAvailabilities, GetBookingSpaceAvailability, GetBookingSpaceBlackout, GetBookingSpaceBlackouts, GetBookingSpaceBookings, GetBookingSpacePayments, GetBookingSpaceSlots, 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, GetCustomReportUsers, GetCustomReports, GetDashboard, GetDashboardAttributes, GetDashboardWidgets, GetDashboards, GetEmailReceipt, GetEmailReceipts, GetEntityUseCodes, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletion, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePackage, GetEventAttendeePackages, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeReservations, GetEventAttendeeTransfersLogs, GetEventAttendees, GetEventCoHosts, GetEventCoupon, GetEventCouponPasses, GetEventCouponPayments, GetEventCouponVariants, GetEventCoupons, GetEventDashboardQuestions, GetEventEmail, GetEventEmailTranslation, GetEventEmailTranslations, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventFollowup, GetEventFollowupAddOns, GetEventFollowupPassTypes, GetEventFollowupQuestions, GetEventFollowupTiers, GetEventFollowupTranslation, GetEventFollowupTranslations, GetEventFollowups, GetEventMediaItem, GetEventMediaItemPassTypes, GetEventMediaItems, GetEventOnSite, GetEventPackage, GetEventPackagePass, GetEventPackagePasses, GetEventPackageTranslation, GetEventPackageTranslations, GetEventPackages, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPass, GetEventPassAccesses, GetEventPassAddOns, GetEventPassAttendeePasses, GetEventPassMatches, GetEventPassPayments, GetEventPassQuestionFollowups, GetEventPassQuestionSections, GetEventPassResponse, GetEventPassResponseChanges, GetEventPassResponses, GetEventPassTransferLogs, GetEventPassType, GetEventPassTypeAddOns, GetEventPassTypePasses, GetEventPassTypePayments, GetEventPassTypePriceSchedule, GetEventPassTypePriceSchedules, GetEventPassTypeRefundSchedule, GetEventPassTypeRefundSchedules, GetEventPassTypeTiers, GetEventPassTypeTranslation, GetEventPassTypeTranslations, GetEventPassTypes, GetEventPasses, GetEventPayments, 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, 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, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSessionsWithRounds, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventSponsorship, GetEventSponsorshipLevel, GetEventSponsorshipLevelTranslation, GetEventSponsorshipLevelTranslations, GetEventSponsorshipLevels, GetEventSponsorshipTranslation, GetEventSponsorshipTranslations, GetEventSponsorships, GetEventThreads, GetEventTiers, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedChannels, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupThreads, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImport, GetImportItems, GetImports, GetIntegration, GetIntegrations, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestChannels, GetInterestContents, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetLinkPreview, GetLivestream, GetLivestreamSessions, GetLivestreams, GetLogin, GetLoginAccounts, GetLoginAuthSessions, GetLoginDevices, GetLogins, GetMeeting, GetMeetingLink, GetMeetingLinks, GetMeetingLivestream, GetMeetingParticipant, GetMeetingParticipants, GetMeetingRecording, GetMeetingRecordings, GetMeetingSession, GetMeetingSessionMessages, GetMeetingSessionParticipant, GetMeetingSessionParticipants, GetMeetingSessionSummary, GetMeetingSessionTranscript, GetMeetingSessions, GetMeetings, GetMembership, GetMembershipPrice, GetMembershipPrices, GetMembershipSubscriptions, GetMembershipTiers, GetMemberships, GetOrganization, GetOrganizationAccountAttribute, GetOrganizationAccountAttributes, GetOrganizationDomain, GetOrganizationMembership, GetOrganizationModule, GetOrganizationModuleEditableTiers, GetOrganizationModuleEnabledTiers, GetOrganizationModules, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationPaymentLink, GetOrganizationSideEffect, GetOrganizationSideEffects, GetOrganizationSystemLog, GetOrganizationSystemLogs, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationUsers, GetOrganizationWebhook, GetOrganizationWebhooks, GetPayment, GetPayments, GetPreset, GetPresets, GetPushDevice, GetPushDevices, GetReport, GetReports, GetRequiredAttributes, GetRoom, GetRoomTypeRooms, GetRooms, GetSearchList, GetSearchListConnectedQuestions, GetSearchListValue, GetSearchListValues, GetSearchLists, GetSelf, GetSelfApiKey, GetSelfApiKeys, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetStreamVideos, GetSubscription, GetSubscriptionPayments, GetSubscriptions, GetSupportTicket, GetSupportTickets, GetSurvey, GetSurveyQuestion, GetSurveyQuestionChoice, GetSurveyQuestionChoiceSubQuestions, GetSurveyQuestionChoiceTranslation, GetSurveyQuestionChoiceTranslations, GetSurveyQuestionChoices, GetSurveyQuestionResponses, GetSurveyQuestionTranslation, GetSurveyQuestionTranslations, GetSurveyQuestions, GetSurveySection, GetSurveySectionQuestions, GetSurveySectionTranslation, GetSurveySectionTranslations, GetSurveySections, GetSurveySubmission, GetSurveySubmissionQuestionSections, GetSurveySubmissionResponseChanges, GetSurveySubmissions, GetSurveyTranslation, GetSurveyTranslations, GetSurveys, GetTaxCodes, GetTaxIntegration, GetTaxIntegrations, GetTaxLog, GetTaxLogs, GetTemplates, GetThread, GetThreadAccounts, GetThreadCircle, GetThreadCircleAccount, GetThreadCircleAccounts, GetThreadCircleThreads, GetThreadCircles, GetThreadMembers, GetThreadMessage, GetThreadMessageFiles, type GetThreadMessageFilesProps, GetThreadMessageImages, type GetThreadMessageImagesProps, type GetThreadMessageProps, GetThreadMessageReactions, type GetThreadMessageReactionsProps, GetThreadMessageVideos, type GetThreadMessageVideosProps, GetThreadMessages, GetThreadMessagesPoll, type GetThreadMessagesPollProps, type GetThreadMessagesProps, GetThreads, GetTier, GetTierAccounts, GetTierImport, GetTierImportItems, GetTierImports, GetTierSubscribers, 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_QUERY_KEY, type ISupportedLocale, type Image, type ImageCreateInputs, ImageType, type ImageUpdateInputs, type ImageVariant, type ImageWCopyUri, ImpersonateAccount, type ImpersonateAccountParams, 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, LEVELS_QUERY_KEY, LEVEL_ACCOUNTS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_TRANSLATIONS_QUERY_KEY, LEVEL_TRANSLATION_QUERY_KEY, LINK_PREVIEW_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, MEMBERSHIPS_QUERY_KEY, MEMBERSHIP_PRICES_QUERY_KEY, MEMBERSHIP_PRICE_QUERY_KEY, MEMBERSHIP_QUERY_KEY, MEMBERSHIP_SUBSCRIPTIONS_QUERY_KEY, MEMBERSHIP_TIERS_QUERY_KEY, type Match, MatchQuestionType, type MatchUpdateInputs, type Meeting, type MeetingCreateInputs, type MeetingLink, type MeetingLinkCreateInputs, type MeetingLinkUpdateInputs, type MeetingParticipantCreateInputs, type MeetingParticipantUpdateInputs, type MeetingPresetCreateInputs, type MeetingPresetUpdateInputs, type MeetingRecording, type MeetingRecordingCreateInputs, type MeetingRecordingUpdateInputs, type MeetingSession, type MeetingSessionChatDownload, type MeetingSessionSummaryDownload, type MeetingSessionTranscriptDownload, MeetingType, type MeetingUpdateInputs, type Membership, type MembershipCreateInputs, type MembershipPrice, type MembershipPriceCreateInputs, MembershipPriceInterval, MembershipPriceType, type MembershipPriceUpdateInputs, type MembershipUpdateInputs, type MentionInputs, MergeInfinitePages, ModerationStatus, type ModulePermissions, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, 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_PAYMENT_INTEGRATIONS_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_LINK_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, type Organization, OrganizationActionType, type OrganizationMembership, type OrganizationMembershipUpdateInputs, type OrganizationModule, OrganizationModuleType, type OrganizationModuleUpdateInputs, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PRESETS_QUERY_KEY, PRESET_QUERY_KEY, PUSH_DEVICES_QUERY_KEY, PUSH_DEVICE_QUERY_KEY, PageType, type Participant, type PassAddOn, 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, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveCustomReportUser, type RemoveCustomReportUserParams, RemoveEventAccessUser, RemoveEventAddOnPassType, type RemoveEventAddOnPassTypeParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventFollowupAddOn, type RemoveEventFollowupAddOnParams, RemoveEventFollowupPassType, type RemoveEventFollowupPassTypeParams, RemoveEventFollowupQuestion, type RemoveEventFollowupQuestionParams, RemoveEventFollowupTier, type RemoveEventFollowupTierParams, RemoveEventMatchPass, type RemoveEventMatchPassParams, RemoveEventMediaItemPassType, type RemoveEventMediaItemPassTypeParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventPassAddOn, type RemoveEventPassAddOnParams, RemoveEventPassTypeAddOn, type RemoveEventPassTypeAddOnParams, 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, RemoveEventSessionLocationSession, type RemoveEventSessionLocationSessionParams, RemoveEventSessionMatchPass, type RemoveEventSessionMatchPassParams, RemoveEventSessionPassType, type RemoveEventSessionPassTypeParams, RemoveEventSessionQuestionChoiceSubQuestion, type RemoveEventSessionQuestionChoiceSubQuestionParams, RemoveEventSessionSectionQuestion, type RemoveEventSessionSectionQuestionParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, 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, RemoveMembershipTier, type RemoveMembershipTierParams, RemoveOrganizationModuleEditableTier, type RemoveOrganizationModuleEditableTierParams, RemoveOrganizationModuleEnabledTier, type RemoveOrganizationModuleEnabledTierParams, RemoveRoomFromRoomType, type RemoveRoomFromRoomTypeParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSurveyQuestionChoiceSubQuestion, type RemoveSurveyQuestionChoiceSubQuestionParams, RemoveSurveySectionQuestion, type RemoveSurveySectionQuestionParams, RemoveTierAccounts, type RemoveTierAccountsParams, 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, ReorderSurveyQuestionChoiceSubQuestions, type ReorderSurveyQuestionChoiceSubQuestionsParams, ReorderSurveyQuestionChoices, type ReorderSurveyQuestionChoicesParams, ReorderSurveySectionQuestions, type ReorderSurveySectionQuestionsParams, type ReportFilters, ReportType, 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_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_ADDRESSES_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_SUBSCRIPTIONS_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_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_SLOTS_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_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_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_COUPONS_QUERY_DATA, SET_EVENT_COUPON_PASSES_QUERY_DATA, SET_EVENT_COUPON_PAYMENTS_QUERY_DATA, SET_EVENT_COUPON_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_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_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_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_PASS_TYPES_QUERY_DATA, SET_EVENT_PASS_TYPE_ADD_ONS_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_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_TRACKS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATION_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_THREADS_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_EVENT_ZPL_TEMPLATE_BADGE_FIELDS_QUERY_DATA, SET_EVENT_ZPL_TEMPLATE_BADGE_FIELD_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_THREADS_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_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_LINK_PREVIEW_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_MEMBERSHIPS_QUERY_DATA, SET_MEMBERSHIP_PRICES_QUERY_DATA, SET_MEMBERSHIP_PRICE_QUERY_DATA, SET_MEMBERSHIP_QUERY_DATA, SET_MEMBERSHIP_SUBSCRIPTIONS_QUERY_DATA, SET_MEMBERSHIP_TIERS_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_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_STRIPE_LINK_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_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_STREAM_INPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUT_QUERY_DATA, SET_STREAM_INPUT_QUERY_DATA, SET_STREAM_VIDEOS_QUERY_DATA, SET_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PAYMENTS_QUERY_DATA, SET_SUBSCRIPTION_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_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_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_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_CIRCLE_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_TIERS_QUERY_DATA, SET_TIER_ACCOUNTS_QUERY_DATA, SET_TIER_IMPORT_QUERY_DATA, SET_TIER_QUERY_DATA, SET_TIER_SUBSCRIBERS_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_VIDEOS_QUERY_KEY, SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PAYMENTS_QUERY_KEY, SUBSCRIPTION_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_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_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 SeriesUpdateInputs, SessionAccess, 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 Subscription, type SubscriptionCreateInputs, type SubscriptionPayment, SubscriptionStatus, type SubscriptionUpdateInputs, type SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, type SupportTicketNoteCreateInputs, type SupportTicketNoteUpdateInputs, SupportTicketState, SupportTicketType, type SupportTicketUpdateInputs, 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, type SurveySubmission, type SurveySubmissionUpdateInputs, type SurveyTranslation, type SurveyTranslationUpdateInputs, type SurveyUpdateInputs, SwitchImage, type SwitchImageParams, 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_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_CIRCLE_THREADS_QUERY_KEY, THREAD_MEMBERS_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, TIERS_QUERY_KEY, TIER_ACCOUNTS_QUERY_KEY, TIER_IMPORTS_QUERY_KEY, TIER_IMPORT_ITEMS_QUERY_KEY, TIER_IMPORT_QUERY_KEY, TIER_QUERY_KEY, TIER_SUBSCRIBERS_QUERY_KEY, type TableChartSummaryData, type TaxCode, type TaxIntegration, type TaxIntegrationCreateInputs, type TaxIntegrationLog, TaxIntegrationType, type TaxIntegrationUpdateInputs, TaxLocationType, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, TestTaxIntegration, type TestTaxIntegrationParams, type Thread, type ThreadCircle, type ThreadCircleAccount, type ThreadCircleAccountCreateInputs, ThreadCircleAccountRole, type ThreadCircleAccountUpdateInputs, type ThreadCircleCreateInputs, ThreadCircleType, type ThreadCircleUpdateInputs, type ThreadCreateInputs, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, type ThreadMemberCreateInputs, ThreadMemberRole, type ThreadMemberUpdateInputs, type ThreadMessage, type ThreadMessageCreateInputs, type ThreadMessageEntity, type ThreadMessageReaction, type ThreadMessageReactionCreateInputs, type ThreadMessageReactionUpdateInputs, 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, 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, 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, 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, UpdateEventPackage, type UpdateEventPackageParams, UpdateEventPackagePass, type UpdateEventPackagePassParams, UpdateEventPackageTranslation, type UpdateEventPackageTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, UpdateEventPassFollowupResponses, type UpdateEventPassFollowupResponsesParams, type UpdateEventPassParams, UpdateEventPassResponse, type UpdateEventPassResponseInputs, type UpdateEventPassResponseParams, UpdateEventPassResponses, type UpdateEventPassResponsesParams, UpdateEventPassSingleFollowupResponses, type UpdateEventPassSingleFollowupResponsesParams, UpdateEventPassType, type UpdateEventPassTypeParams, UpdateEventPassTypePriceSchedule, UpdateEventPassTypeRefundSchedule, UpdateEventPassTypeTranslation, type UpdateEventPassTypeTranslationParams, 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, 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, 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, UpdateEventZplTemplate, UpdateEventZplTemplateBadgeField, type UpdateEventZplTemplateBadgeFieldParams, type UpdateEventZplTemplateParams, 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, UpdateMembership, type UpdateMembershipParams, UpdateMembershipPrice, type UpdateMembershipPriceParams, UpdateOrganization, UpdateOrganizationDomain, type UpdateOrganizationDomainParams, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationModule, type UpdateOrganizationModuleParams, type UpdateOrganizationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationWebhook, type UpdateOrganizationWebhookParams, UpdatePayment, type UpdatePaymentParams, UpdatePreset, type UpdatePresetParams, UpdateRoom, type UpdateRoomParams, UpdateSearchList, type UpdateSearchListParams, UpdateSearchListValue, type UpdateSearchListValueParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateStream, UpdateStreamConfig, type UpdateStreamConfigParams, UpdateStreamInputOutput, type UpdateStreamInputOutputParams, type UpdateStreamParams, UpdateSubscription, type UpdateSubscriptionParams, 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, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, UploadVideoCaptions, type UploadVideoCaptionsParams, 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 Webhook, type WebhookCreateInputs, type WebhookUpdateInputs, WidgetCategory, WidgetType, isUUID, setFirstPageData, useAcceptGroupRequest, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddChannelSubscriber, useAddCustomReportUser, useAddEventAccessUser, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventFollowupAddOn, useAddEventFollowupPassType, useAddEventFollowupQuestion, useAddEventFollowupTier, useAddEventMatchPass, useAddEventMediaItemPassType, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventReservationPass, useAddEventRoomTypeTier, useAddEventSectionAddOn, useAddEventSectionPassType, useAddEventSectionQuestion, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionLocationSession, useAddEventSessionMatchPass, useAddEventSessionPassType, useAddEventSessionQuestionChoiceSubQuestion, useAddEventSessionSectionQuestion, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddLoginAccount, useAddMeetingLivestream, useAddMembershipTier, useAddOrganizationModuleEditableTier, useAddOrganizationModuleEnabledTier, useAddOrganizationUser, useAddRoomToRoomType, useAddSeriesEvent, useAddSurveyQuestionChoiceSubQuestion, useAddSurveySectionQuestion, useArchiveActivity, useAttachEventQuestionSearchList, useAttachEventSessionQuestionSearchList, useAttachSurveyQuestionSearchList, useBulkUploadSearchListValues, useCancelActivitySchedule, useCancelAnnouncementSchedule, useCancelChannelContentPublishSchedule, useCancelEventPass, useCancelGroupInvitation, useCancelSubscription, useCloneEvent, useConfirmLogin, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAccountAttribute, useCreateAccountInvitations, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateBooking, useCreateBookingPlace, useCreateBookingPlaceTranslation, useCreateBookingSpace, useCreateBookingSpaceAvailability, useCreateBookingSpaceBlackout, useCreateBookingSpaceTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateCustomModule, useCreateCustomModuleTranslation, useCreateCustomReport, useCreateDashboard, useCreateDashboardWidget, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventAttendee, useCreateEventAttendeePackage, useCreateEventCoupon, useCreateEventCouponVariants, useCreateEventEmailTranslation, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventFollowup, useCreateEventFollowupTranslation, useCreateEventMatch, useCreateEventMediaItem, useCreateEventPackage, useCreateEventPackagePass, useCreateEventPackageTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventPassTypeTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionTranslation, useCreateEventRegistrationBypass, useCreateEventReservation, useCreateEventRoomType, useCreateEventRoomTypeTranslation, useCreateEventRound, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionAccess, useCreateEventSessionLocation, useCreateEventSessionLocationTranslation, useCreateEventSessionMatch, useCreateEventSessionQuestion, useCreateEventSessionQuestionChoice, useCreateEventSessionQuestionChoiceTranslation, useCreateEventSessionQuestionTranslation, useCreateEventSessionRound, useCreateEventSessionSection, useCreateEventSessionSectionTranslation, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventSponsorship, useCreateEventSponsorshipLevel, useCreateEventSponsorshipLevelTranslation, useCreateEventSponsorshipTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupInvitations, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateIntegration, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateMeeting, useCreateMeetingLink, useCreateMeetingParticipant, useCreateMembership, useCreateMembershipPrice, useCreateOrganizationPaymentIntegration, useCreateOrganizationSideEffect, useCreateOrganizationTeamMember, useCreateOrganizationWebhook, useCreatePreset, useCreateRoom, useCreateSearchList, useCreateSearchListValue, useCreateSelfApiKey, useCreateSeries, useCreateStreamInput, useCreateStreamInputOutput, useCreateSubscription, useCreateSupportTicket, useCreateSupportTicketNote, useCreateSurvey, useCreateSurveyQuestion, useCreateSurveyQuestionChoice, useCreateSurveyQuestionChoiceTranslation, useCreateSurveyQuestionTranslation, useCreateSurveySection, useCreateSurveySectionTranslation, useCreateSurveyTranslation, useCreateTaxIntegration, useCreateThread, useCreateThreadCircle, useCreateThreadCircleAccount, useCreateThreadMessage, useCreateThreadMessageFile, useCreateThreadMessageImage, useCreateThreadMessageReaction, useCreateThreadMessageVideo, useCreateTier, useDeleteAccount, useDeleteAccountAddress, useDeleteAccountAttribute, useDeleteAccountInvitation, useDeleteAccountLead, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteBooking, useDeleteBookingPlace, useDeleteBookingPlaceTranslation, useDeleteBookingSpace, useDeleteBookingSpaceAvailability, useDeleteBookingSpaceBlackout, useDeleteBookingSpaceTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteCustomModule, useDeleteCustomModuleTranslation, useDeleteCustomReport, useDeleteDashboard, useDeleteDashboardWidget, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventAttendeePackage, useDeleteEventCoupon, useDeleteEventCouponVariants, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventFollowup, useDeleteEventFollowupTranslation, useDeleteEventMatch, useDeleteEventMediaItem, 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, useDeleteEventSessionQuestion, useDeleteEventSessionQuestionChoice, useDeleteEventSessionQuestionChoiceTranslation, useDeleteEventSessionQuestionTranslation, useDeleteEventSessionRound, useDeleteEventSessionSection, useDeleteEventSessionSectionTranslation, 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, useDeleteMembership, useDeleteMembershipPrice, useDeleteOrganizationDomain, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationSideEffect, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteOrganizationWebhook, useDeletePreset, useDeletePushDevice, useDeleteRoom, useDeleteSearchList, useDeleteSearchListValue, useDeleteSelfApiKey, useDeleteSeries, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteSurvey, useDeleteSurveyQuestion, useDeleteSurveyQuestionChoice, useDeleteSurveyQuestionChoiceTranslation, useDeleteSurveyQuestionTranslation, useDeleteSurveySection, useDeleteSurveySectionTranslation, useDeleteSurveySubmission, useDeleteSurveyTranslation, useDeleteTaxIntegration, useDeleteThread, useDeleteThreadCircle, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDeleteThreadMessageFile, useDeleteThreadMessageImage, useDeleteThreadMessageReaction, useDeleteThreadMessageVideo, useDeleteTier, useDeleteUserImage, useDeleteVideo, useDeleteVideoCaption, useDetachEventQuestionSearchList, useDetachEventSessionQuestionSearchList, useDetachSurveyQuestionSearchList, useDisableLivestream, useDownloadVideoCaption, useEnableLivestream, useEventGetPassTypeCoupons, useExportAccount, useGenerateMeetingSessionSummary, useGenerateVideoCaptions, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountAddress, useGetAccountAddresses, useGetAccountComments, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountInvitations, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountNotificationPreferences, useGetAccountPayments, useGetAccountSubscriptions, useGetAccountThreads, useGetAccountTiers, useGetAccounts, 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, useGetBookingSpace, useGetBookingSpaceAvailabilities, useGetBookingSpaceAvailability, useGetBookingSpaceBlackout, useGetBookingSpaceBlackouts, useGetBookingSpaceBookings, useGetBookingSpacePayments, useGetBookingSpaceSlots, 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, useGetCustomReportUsers, useGetCustomReports, useGetDashboard, useGetDashboardAttributes, useGetDashboardWidgets, useGetDashboards, useGetEmailReceipt, useGetEmailReceipts, useGetEntityUseCodes, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletion, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePackage, useGetEventAttendeePackages, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeReservations, useGetEventAttendeeTransfersLogs, useGetEventAttendees, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponPasses, useGetEventCouponPayments, useGetEventCouponVariants, useGetEventCoupons, useGetEventDashboardQuestions, useGetEventEmail, useGetEventEmailTranslation, useGetEventEmailTranslations, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventFollowup, useGetEventFollowupAddOns, useGetEventFollowupPassTypes, useGetEventFollowupQuestions, useGetEventFollowupTiers, useGetEventFollowupTranslation, useGetEventFollowupTranslations, useGetEventFollowups, useGetEventMediaItem, useGetEventMediaItemPassTypes, useGetEventMediaItems, useGetEventOnSite, useGetEventPackage, useGetEventPackagePass, useGetEventPackagePasses, useGetEventPackageTranslation, useGetEventPackageTranslations, useGetEventPackages, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPass, useGetEventPassAccesses, useGetEventPassAddOns, useGetEventPassAttendeePasses, useGetEventPassMatches, useGetEventPassPayments, useGetEventPassQuestionFollowups, useGetEventPassQuestionSections, useGetEventPassResponse, useGetEventPassResponseChanges, useGetEventPassResponses, useGetEventPassTransferLogs, useGetEventPassType, useGetEventPassTypeAddOns, useGetEventPassTypePasses, useGetEventPassTypePayments, useGetEventPassTypePriceSchedule, useGetEventPassTypePriceSchedules, useGetEventPassTypeRefundSchedule, useGetEventPassTypeRefundSchedules, useGetEventPassTypeTiers, useGetEventPassTypeTranslation, useGetEventPassTypeTranslations, useGetEventPassTypes, useGetEventPasses, useGetEventPayments, 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, 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, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSessionsWithRounds, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevel, useGetEventSponsorshipLevelTranslation, useGetEventSponsorshipLevelTranslations, useGetEventSponsorshipLevels, useGetEventSponsorshipTranslation, useGetEventSponsorshipTranslations, useGetEventSponsorships, useGetEventThreads, useGetEventTiers, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedChannels, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupThreads, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImport, useGetImportItems, useGetImports, useGetIntegration, useGetIntegrations, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestChannels, useGetInterestContents, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetLinkPreview, useGetLivestream, useGetLivestreamSessions, useGetLivestreams, useGetLogin, useGetLoginAccounts, useGetLoginAuthSessions, useGetLoginDevices, useGetLogins, useGetMeeting, useGetMeetingLink, useGetMeetingLinks, useGetMeetingLivestream, useGetMeetingParticipant, useGetMeetingParticipants, useGetMeetingRecording, useGetMeetingRecordings, useGetMeetingSession, useGetMeetingSessionMessages, useGetMeetingSessionParticipant, useGetMeetingSessionParticipants, useGetMeetingSessionSummary, useGetMeetingSessionTranscript, useGetMeetingSessions, useGetMeetings, useGetMembership, useGetMembershipPrice, useGetMembershipPrices, useGetMembershipSubscriptions, useGetMembershipTiers, useGetMemberships, useGetOrganization, useGetOrganizationAccountAttribute, useGetOrganizationAccountAttributes, useGetOrganizationDomain, useGetOrganizationMembership, useGetOrganizationModule, useGetOrganizationModuleEditableTiers, useGetOrganizationModuleEnabledTiers, useGetOrganizationModules, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationPaymentLink, useGetOrganizationSideEffect, useGetOrganizationSideEffects, useGetOrganizationSystemLog, useGetOrganizationSystemLogs, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationUsers, useGetOrganizationWebhook, useGetOrganizationWebhooks, useGetPayment, useGetPayments, useGetPreset, useGetPresets, useGetPushDevice, useGetPushDevices, useGetReport, useGetReports, useGetRequiredAttributes, useGetRoom, useGetRoomTypeRooms, useGetRooms, useGetSearchList, useGetSearchListConnectedQuestions, useGetSearchListValue, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfApiKey, useGetSelfApiKeys, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetStreamVideos, useGetSubscription, useGetSubscriptionPayments, useGetSubscriptions, useGetSupportTicket, useGetSupportTickets, useGetSurvey, useGetSurveyQuestion, useGetSurveyQuestionChoice, useGetSurveyQuestionChoiceSubQuestions, useGetSurveyQuestionChoiceTranslation, useGetSurveyQuestionChoiceTranslations, useGetSurveyQuestionChoices, useGetSurveyQuestionResponses, useGetSurveyQuestionTranslation, useGetSurveyQuestionTranslations, useGetSurveyQuestions, useGetSurveySection, useGetSurveySectionQuestions, useGetSurveySectionTranslation, useGetSurveySectionTranslations, useGetSurveySections, useGetSurveySubmission, useGetSurveySubmissionQuestionSections, useGetSurveySubmissionResponseChanges, useGetSurveySubmissions, useGetSurveyTranslation, useGetSurveyTranslations, useGetSurveys, useGetTaxCodes, useGetTaxIntegration, useGetTaxIntegrations, useGetTaxLog, useGetTaxLogs, useGetTemplates, useGetThread, useGetThreadAccounts, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircleThreads, useGetThreadCircles, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageFiles, useGetThreadMessageImages, useGetThreadMessageReactions, useGetThreadMessageVideos, useGetThreadMessages, useGetThreadMessagesPoll, useGetThreads, useGetTier, useGetTierAccounts, useGetTierImport, useGetTierImportItems, useGetTierImports, useGetTierSubscribers, useGetTiers, useGetVideo, useGetVideoCaptions, useGetVideoDownloadStatus, useGetVideos, useImpersonateAccount, useImportRooms, useIndexEventPasses, useInitiateVideoDownload, usePublishActivity, useRefundOrganizationPayment, useRegenerateMeetingParticipantToken, useReinviteGroupInvitation, useRejectGroupRequest, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveAllChannelSubscribers, useRemoveAllGroupMembers, useRemoveChannelSubscriber, useRemoveCustomReportUser, useRemoveEventAccessUser, useRemoveEventAddOnPassType, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventFollowupAddOn, useRemoveEventFollowupPassType, useRemoveEventFollowupQuestion, useRemoveEventFollowupTier, useRemoveEventMatchPass, useRemoveEventMediaItemPassType, useRemoveEventPageImage, useRemoveEventPassAddOn, useRemoveEventPassTypeAddOn, useRemoveEventPassTypeTier, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventReservationPass, useRemoveEventRoomTypeTier, useRemoveEventSectionAddOn, useRemoveEventSectionPassType, useRemoveEventSectionQuestion, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionLocationSession, useRemoveEventSessionMatchPass, useRemoveEventSessionPassType, useRemoveEventSessionQuestionChoiceSubQuestion, useRemoveEventSessionSectionQuestion, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveLoginAccount, useRemoveMembershipTier, useRemoveOrganizationModuleEditableTier, useRemoveOrganizationModuleEnabledTier, useRemoveRoomFromRoomType, useRemoveSeriesEvent, useRemoveSurveyQuestionChoiceSubQuestion, useRemoveSurveySectionQuestion, useRemoveTierAccounts, useReorderEventFaqSectionQuestions, useReorderEventFollowupQuestions, useReorderEventQuestionChoiceSubQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useReorderEventSessionQuestionChoiceSubQuestions, useReorderEventSessionQuestionChoices, useReorderEventSessionSectionQuestions, useReorderEventSponsorshipLevels, useReorderEventSponsorships, useReorderSurveyQuestionChoiceSubQuestions, useReorderSurveyQuestionChoices, useReorderSurveySectionQuestions, useResendRegistrationConfirmationEmail, useResetLivestreamStreamKey, useRevertChannelContentToDraft, useSearchOrganization, useSelfLeaveOrganization, useSendAnnouncementPreview, useSendInvoice, useStartEventRoundMatchmaking, useStartEventSessionRoundMatchmaking, useSwitchImage, useSyncEventCouponToVariants, useTestTaxIntegration, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountAttribute, useUpdateAccountLead, useUpdateActivity, useUpdateActivitySchedule, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateBooking, useUpdateBookingPlace, useUpdateBookingPlaceTranslation, useUpdateBookingSpace, useUpdateBookingSpaceAvailability, useUpdateBookingSpaceBlackout, useUpdateBookingSpaceTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateCustomModule, useUpdateCustomModuleTranslation, useUpdateCustomReport, useUpdateDashboard, useUpdateDashboardWidget, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventAttendeePackage, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventFollowup, useUpdateEventFollowupQuestion, useUpdateEventFollowupTranslation, useUpdateEventMatch, useUpdateEventMediaItem, useUpdateEventPackage, useUpdateEventPackagePass, useUpdateEventPackageTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassFollowupResponses, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassSingleFollowupResponses, useUpdateEventPassType, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, useUpdateEventReservation, useUpdateEventRoomType, useUpdateEventRoomTypeAddOnDetails, useUpdateEventRoomTypePassTypeDetails, useUpdateEventRoomTypeTranslation, useUpdateEventRoundQuestion, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionAccess, useUpdateEventSessionAccessResponses, useUpdateEventSessionLocation, useUpdateEventSessionLocationTranslation, useUpdateEventSessionMatch, useUpdateEventSessionQuestion, useUpdateEventSessionQuestionChoice, useUpdateEventSessionQuestionChoiceSubQuestion, useUpdateEventSessionQuestionChoiceTranslation, useUpdateEventSessionQuestionTranslation, useUpdateEventSessionRoundQuestion, useUpdateEventSessionSection, useUpdateEventSessionSectionQuestion, useUpdateEventSessionSectionTranslation, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventSponsorship, useUpdateEventSponsorshipLevel, useUpdateEventSponsorshipLevelTranslation, useUpdateEventSponsorshipTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateIntegration, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateLoginEmail, useUpdateLoginPassword, useUpdateMeeting, useUpdateMeetingLink, useUpdateMeetingParticipant, useUpdateMembership, useUpdateMembershipPrice, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationTeamMember, useUpdateOrganizationWebhook, useUpdatePayment, useUpdatePreset, useUpdateRoom, useUpdateSearchList, useUpdateSearchListValue, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSupportTicket, useUpdateSurvey, useUpdateSurveyQuestion, useUpdateSurveyQuestionChoice, useUpdateSurveyQuestionChoiceSubQuestion, useUpdateSurveyQuestionChoiceTranslation, useUpdateSurveyQuestionTranslation, useUpdateSurveySection, useUpdateSurveySectionQuestion, useUpdateSurveySectionTranslation, useUpdateSurveySubmission, useUpdateSurveySubmissionResponses, useUpdateSurveyTranslation, useUpdateTaxIntegration, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMember, useUpdateThreadMessage, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile, useUploadVideoCaptions, useVerifyOrganizationWebhook, useVoidInvoice };
30378
+ export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_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_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, type AccountAttributeUpdateInputs, type AccountAttributeValue, type AccountCreateInputs, type AccountInvitation, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityEntity, ActivityEntityType, ActivityPreference, ActivityStatus, type ActivityUpdateInputs, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddCustomReportUser, type AddCustomReportUserParams, AddEventAccessUser, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, 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, 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, AddEventSessionLocationSession, type AddEventSessionLocationSessionParams, AddEventSessionMatchPass, type AddEventSessionMatchPassParams, AddEventSessionPassType, type AddEventSessionPassTypeParams, AddEventSessionQuestionChoiceSubQuestion, type AddEventSessionQuestionChoiceSubQuestionParams, AddEventSessionSectionQuestion, type AddEventSessionSectionQuestionParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTrack, type AddEventSessionTrackParams, 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, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementTranslation, type AnnouncementTranslationUpdateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ArchiveActivity, type ArchiveActivityParams, 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_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_SLOTS_QUERY_KEY, BOOKING_SPACE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAPILog, type BaseAccount, type BaseAccountAddress, type BaseAccountAttribute, type BaseAccountAttributeValue, type BaseAccountInvitation, type BaseActivationCompletion, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, 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 BaseEventEmail, type BaseEventMediaItem, type BaseEventOnSite, type BaseEventOnSiteBadgeField, 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 BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BasePassAddOn, type BasePayment, 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 BaseSideEffect, type BaseStandardReport, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketNote, 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 BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMember, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, 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 BookingSlot, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceAvailabilityCreateInputs, type BookingSpaceAvailabilityUpdateInputs, type BookingSpaceBlackout, type BookingSpaceBlackoutCreateInputs, type BookingSpaceBlackoutUpdateInputs, type BookingSpaceCreateInputs, 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_USERS_QUERY_KEY, CacheIndividualQueries, CalculateDuration, CancelActivitySchedule, type CancelActivityScheduleParams, CancelAnnouncementSchedule, type CancelAnnouncementScheduleParams, CancelChannelContentPublishSchedule, type CancelChannelContentPublishScheduleParams, CancelEventPass, type CancelEventPassParams, 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, CloneEvent, type CloneEventParams, type CloneOptions, 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, CreateAnnouncementTranslation, type CreateAnnouncementTranslationParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateBooking, type CreateBookingParams, CreateBookingPlace, type CreateBookingPlaceParams, CreateBookingPlaceTranslation, type CreateBookingPlaceTranslationParams, CreateBookingSpace, CreateBookingSpaceAvailability, type CreateBookingSpaceAvailabilityParams, CreateBookingSpaceBlackout, type CreateBookingSpaceBlackoutParams, type CreateBookingSpaceParams, CreateBookingSpaceTranslation, type CreateBookingSpaceTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateCustomModule, type CreateCustomModuleParams, CreateCustomModuleTranslation, type CreateCustomModuleTranslationParams, CreateCustomReport, type CreateCustomReportParams, CreateDashboard, type CreateDashboardParams, CreateDashboardWidget, type CreateDashboardWidgetParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventActivationTranslation, type CreateEventActivationTranslationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAddOnTranslation, type CreateEventAddOnTranslationParams, CreateEventAttendee, CreateEventAttendeePackage, type CreateEventAttendeePackageParams, type CreateEventAttendeeParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventCouponVariants, type CreateEventCouponVariantsParams, CreateEventEmailTranslation, type CreateEventEmailTranslationParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, CreateEventFollowup, type CreateEventFollowupParams, CreateEventFollowupTranslation, type CreateEventFollowupTranslationParams, CreateEventMatch, type CreateEventMatchParams, CreateEventMediaItem, type CreateEventMediaItemParams, CreateEventPackage, type CreateEventPackageParams, CreateEventPackagePass, type CreateEventPackagePassParams, CreateEventPackageTranslation, type CreateEventPackageTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventPass, type CreateEventPassParams, CreateEventPassType, type CreateEventPassTypeParams, CreateEventPassTypePriceSchedule, CreateEventPassTypeRefundSchedule, CreateEventPassTypeTranslation, type CreateEventPassTypeTranslationParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, CreateEventReservation, type CreateEventReservationParams, CreateEventRoomType, type CreateEventRoomTypeParams, CreateEventRoomTypeTranslation, type CreateEventRoomTypeTranslationParams, CreateEventRound, type CreateEventRoundParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, CreateEventSessionAccess, type CreateEventSessionAccessParams, CreateEventSessionLocation, type CreateEventSessionLocationParams, CreateEventSessionLocationTranslation, type CreateEventSessionLocationTranslationParams, CreateEventSessionMatch, type CreateEventSessionMatchParams, type CreateEventSessionParams, CreateEventSessionQuestion, CreateEventSessionQuestionChoice, type CreateEventSessionQuestionChoiceParams, CreateEventSessionQuestionChoiceTranslation, type CreateEventSessionQuestionChoiceTranslationParams, type CreateEventSessionQuestionParams, CreateEventSessionQuestionTranslation, type CreateEventSessionQuestionTranslationParams, CreateEventSessionRound, type CreateEventSessionRoundParams, CreateEventSessionSection, type CreateEventSessionSectionParams, CreateEventSessionSectionTranslation, type CreateEventSessionSectionTranslationParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventSponsorship, CreateEventSponsorshipLevel, type CreateEventSponsorshipLevelParams, CreateEventSponsorshipLevelTranslation, type CreateEventSponsorshipLevelTranslationParams, type CreateEventSponsorshipParams, CreateEventSponsorshipTranslation, type CreateEventSponsorshipTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupTranslation, type CreateGroupTranslationParams, CreateImage, type CreateImageParams, CreateImport, type CreateImportParams, CreateIntegration, type CreateIntegrationParams, CreateInterest, type CreateInterestParams, CreateInvoice, CreateInvoiceLineItem, type CreateInvoiceLineItemParams, type CreateInvoiceParams, CreateLevel, type CreateLevelParams, CreateLevelTranslation, type CreateLevelTranslationParams, 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, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateSurvey, type CreateSurveyParams, CreateSurveyQuestion, CreateSurveyQuestionChoice, type CreateSurveyQuestionChoiceParams, CreateSurveyQuestionChoiceTranslation, type CreateSurveyQuestionChoiceTranslationParams, type CreateSurveyQuestionParams, CreateSurveyQuestionTranslation, type CreateSurveyQuestionTranslationParams, CreateSurveySection, type CreateSurveySectionParams, CreateSurveySectionTranslation, type CreateSurveySectionTranslationParams, CreateSurveyTranslation, type CreateSurveyTranslationParams, CreateTaxIntegration, type CreateTaxIntegrationParams, CreateThread, CreateThreadCircle, CreateThreadCircleAccount, type CreateThreadCircleAccountParams, type CreateThreadCircleParams, 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 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, 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, 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, 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, DeleteEventMatch, type DeleteEventMatchParams, DeleteEventMediaItem, type DeleteEventMediaItemParams, 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, DeleteEventSessionQuestion, DeleteEventSessionQuestionChoice, type DeleteEventSessionQuestionChoiceParams, DeleteEventSessionQuestionChoiceTranslation, type DeleteEventSessionQuestionChoiceTranslationParams, type DeleteEventSessionQuestionParams, DeleteEventSessionQuestionTranslation, type DeleteEventSessionQuestionTranslationParams, DeleteEventSessionRound, type DeleteEventSessionRoundParams, DeleteEventSessionSection, type DeleteEventSessionSectionParams, DeleteEventSessionSectionTranslation, type DeleteEventSessionSectionTranslationParams, 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 DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteMeetingLink, type DeleteMeetingLinkParams, DeleteMeetingParticipant, type DeleteMeetingParticipantParams, DeleteOrganizationDomain, type DeleteOrganizationDomainParams, 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, 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, DeleteThreadCircle, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, type DeleteThreadCircleParams, 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, DetachEventQuestionSearchList, type DetachEventQuestionSearchListParams, DetachEventSessionQuestionSearchList, type DetachEventSessionQuestionSearchListParams, DetachSurveyQuestionSearchList, type DetachSurveyQuestionSearchListParams, 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_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_COUPONS_QUERY_KEY, EVENT_COUPON_PASSES_QUERY_KEY, EVENT_COUPON_PAYMENTS_QUERY_KEY, EVENT_COUPON_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_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_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_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_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_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_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_TRACKS_QUERY_KEY, EVENT_SESSION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_TRANSLATION_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_THREADS_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, EVENT_ZPL_TEMPLATE_BADGE_FIELDS_QUERY_KEY, EVENT_ZPL_TEMPLATE_BADGE_FIELD_QUERY_KEY, type EmailReceipt, EmailReceiptStatus, EnableLivestream, type EnableLivestreamParams, type EntityUseCode, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, EventActivationType, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, EventAgendaVisibility, type EventAnnouncementFilters, type EventAttendee, type EventAttendeePackageCreateInputs, type EventAttendeePackageUpdateInputs, type EventAttendeeUpdateInputs, type EventBadgeFieldUpdateInputs, 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 EventMediaItem, type EventMediaItemCreateInputs, type EventMediaItemUpdateInputs, type EventOnSite, type EventOnSiteBadgeField, 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 EventSessionCreateInputs, type EventSessionLocation, type EventSessionLocationCreateInputs, type EventSessionLocationTranslation, type EventSessionLocationTranslationUpdateInputs, type EventSessionLocationUpdateInputs, 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 EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, 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, ExportStatus, 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_THREADS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GenerateMeetingSessionSummary, type GenerateMeetingSessionSummaryParams, GenerateVideoCaptions, type GenerateVideoCaptionsParams, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountAddress, GetAccountAddresses, GetAccountComments, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountInvitations, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountNotificationPreferences, GetAccountPayments, GetAccountThreads, GetAccountTiers, GetAccounts, 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, GetBookingSpace, GetBookingSpaceAvailabilities, GetBookingSpaceAvailability, GetBookingSpaceBlackout, GetBookingSpaceBlackouts, GetBookingSpaceBookings, GetBookingSpacePayments, GetBookingSpaceSlots, 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, GetCustomReportUsers, GetCustomReports, GetDashboard, GetDashboardAttributes, GetDashboardWidgets, GetDashboards, GetEmailReceipt, GetEmailReceipts, GetEntityUseCodes, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletion, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePackage, GetEventAttendeePackages, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeReservations, GetEventAttendeeTransfersLogs, GetEventAttendees, GetEventCoHosts, GetEventCoupon, GetEventCouponPasses, GetEventCouponPayments, GetEventCouponVariants, GetEventCoupons, GetEventDashboardQuestions, GetEventEmail, GetEventEmailTranslation, GetEventEmailTranslations, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventFollowup, GetEventFollowupAddOns, GetEventFollowupPassTypes, GetEventFollowupQuestions, GetEventFollowupTiers, GetEventFollowupTranslation, GetEventFollowupTranslations, GetEventFollowups, GetEventMediaItem, GetEventMediaItemPassTypes, GetEventMediaItems, GetEventOnSite, GetEventPackage, GetEventPackagePass, GetEventPackagePasses, GetEventPackageTranslation, GetEventPackageTranslations, GetEventPackages, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPass, GetEventPassAccesses, GetEventPassAddOns, GetEventPassAttendeePasses, GetEventPassMatches, GetEventPassPayments, GetEventPassQuestionFollowups, GetEventPassQuestionSections, GetEventPassResponse, GetEventPassResponseChanges, GetEventPassResponses, GetEventPassTransferLogs, GetEventPassType, GetEventPassTypeAddOns, GetEventPassTypePasses, GetEventPassTypePayments, GetEventPassTypePriceSchedule, GetEventPassTypePriceSchedules, GetEventPassTypeRefundSchedule, GetEventPassTypeRefundSchedules, GetEventPassTypeTiers, GetEventPassTypeTranslation, GetEventPassTypeTranslations, GetEventPassTypes, GetEventPasses, GetEventPayments, 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, 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, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSessionsWithRounds, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventSponsorship, GetEventSponsorshipLevel, GetEventSponsorshipLevelTranslation, GetEventSponsorshipLevelTranslations, GetEventSponsorshipLevels, GetEventSponsorshipTranslation, GetEventSponsorshipTranslations, GetEventSponsorships, GetEventThreads, GetEventTiers, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedChannels, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupThreads, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImport, GetImportItems, GetImports, GetIntegration, GetIntegrations, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestChannels, GetInterestContents, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetLinkPreview, GetLivestream, GetLivestreamSessions, GetLivestreams, GetLogin, GetLoginAccounts, GetLoginAuthSessions, GetLoginDevices, GetLogins, GetMeeting, GetMeetingLink, GetMeetingLinks, GetMeetingLivestream, GetMeetingParticipant, GetMeetingParticipants, GetMeetingRecording, GetMeetingRecordings, GetMeetingSession, GetMeetingSessionMessages, GetMeetingSessionParticipant, GetMeetingSessionParticipants, GetMeetingSessionSummary, GetMeetingSessionTranscript, GetMeetingSessions, GetMeetings, GetOrganization, GetOrganizationAccountAttribute, GetOrganizationAccountAttributes, GetOrganizationDomain, GetOrganizationMembership, GetOrganizationModule, GetOrganizationModuleEditableTiers, GetOrganizationModuleEnabledTiers, GetOrganizationModules, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationSideEffect, GetOrganizationSideEffects, GetOrganizationSystemLog, GetOrganizationSystemLogs, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationUsers, GetOrganizationWebhook, GetOrganizationWebhooks, GetPayment, GetPayments, GetPreset, GetPresets, GetPushDevice, GetPushDevices, GetReport, GetReports, GetRequiredAttributes, GetRoom, GetRoomTypeRooms, GetRooms, GetSearchList, GetSearchListConnectedQuestions, GetSearchListValue, GetSearchListValues, GetSearchLists, GetSelf, GetSelfApiKey, GetSelfApiKeys, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetStreamVideos, GetSupportTicket, GetSupportTickets, GetSurvey, GetSurveyQuestion, GetSurveyQuestionChoice, GetSurveyQuestionChoiceSubQuestions, GetSurveyQuestionChoiceTranslation, GetSurveyQuestionChoiceTranslations, GetSurveyQuestionChoices, GetSurveyQuestionResponses, GetSurveyQuestionTranslation, GetSurveyQuestionTranslations, GetSurveyQuestions, GetSurveySection, GetSurveySectionQuestions, GetSurveySectionTranslation, GetSurveySectionTranslations, GetSurveySections, GetSurveySubmission, GetSurveySubmissionQuestionSections, GetSurveySubmissionResponseChanges, GetSurveySubmissions, GetSurveyTranslation, GetSurveyTranslations, GetSurveys, GetTaxCodes, GetTaxIntegration, GetTaxIntegrations, GetTaxLog, GetTaxLogs, GetTemplates, GetThread, GetThreadAccounts, GetThreadCircle, GetThreadCircleAccount, GetThreadCircleAccounts, GetThreadCircleThreads, GetThreadCircles, GetThreadMembers, GetThreadMessage, GetThreadMessageFiles, type GetThreadMessageFilesProps, GetThreadMessageImages, type GetThreadMessageImagesProps, type GetThreadMessageProps, GetThreadMessageReactions, type GetThreadMessageReactionsProps, GetThreadMessageVideos, type GetThreadMessageVideosProps, GetThreadMessages, GetThreadMessagesPoll, type GetThreadMessagesPollProps, type GetThreadMessagesProps, 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_QUERY_KEY, type ISupportedLocale, type Image, type ImageCreateInputs, ImageType, type ImageUpdateInputs, type ImageVariant, type ImageWCopyUri, ImpersonateAccount, type ImpersonateAccountParams, 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, LEVELS_QUERY_KEY, LEVEL_ACCOUNTS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_TRANSLATIONS_QUERY_KEY, LEVEL_TRANSLATION_QUERY_KEY, LINK_PREVIEW_QUERY_KEY, LIVESTREAMS_QUERY_KEY, LIVESTREAM_QUERY_KEY, LIVESTREAM_SESSIONS_QUERY_KEY, LOGINS_QUERY_KEY, LOGIN_ACCOUNTS_QUERY_KEY, LOGIN_AUTH_SESSIONS_QUERY_KEY, LOGIN_DEVICES_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, type LeadCreateInputs, LeadStatus, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkInputs, type LinkPreview, type Livestream, type LivestreamSession, LocationQuestionOption, type Login, MEETINGS_QUERY_KEY, MEETING_LINKS_QUERY_KEY, MEETING_LINK_QUERY_KEY, MEETING_LIVESTREAM_QUERY_KEY, MEETING_PARTICIPANTS_QUERY_KEY, MEETING_PARTICIPANT_QUERY_KEY, MEETING_QUERY_KEY, MEETING_RECORDINGS_QUERY_KEY, MEETING_RECORDING_QUERY_KEY, MEETING_SESSIONS_QUERY_KEY, MEETING_SESSION_MESSAGES_QUERY_KEY, MEETING_SESSION_PARTICIPANTS_QUERY_KEY, MEETING_SESSION_PARTICIPANT_QUERY_KEY, MEETING_SESSION_QUERY_KEY, MEETING_SESSION_SUMMARY_QUERY_KEY, MEETING_SESSION_TRANSCRIPT_QUERY_KEY, type Match, MatchQuestionType, type MatchUpdateInputs, type Meeting, type MeetingCreateInputs, type MeetingLink, type MeetingLinkCreateInputs, type MeetingLinkUpdateInputs, type MeetingParticipantCreateInputs, type MeetingParticipantUpdateInputs, type MeetingPresetCreateInputs, type MeetingPresetUpdateInputs, type MeetingRecording, type MeetingRecordingCreateInputs, type MeetingRecordingUpdateInputs, type MeetingSession, type MeetingSessionChatDownload, type MeetingSessionSummaryDownload, type MeetingSessionTranscriptDownload, MeetingType, type MeetingUpdateInputs, type MentionInputs, MergeInfinitePages, ModerationStatus, type ModulePermissions, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, 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_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, type Organization, OrganizationActionType, type OrganizationMembership, type OrganizationMembershipUpdateInputs, type OrganizationModule, OrganizationModuleType, type OrganizationModuleUpdateInputs, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PRESETS_QUERY_KEY, PRESET_QUERY_KEY, PUSH_DEVICES_QUERY_KEY, PUSH_DEVICE_QUERY_KEY, PageType, type Participant, type PassAddOn, 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, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveCustomReportUser, type RemoveCustomReportUserParams, RemoveEventAccessUser, RemoveEventAddOnPassType, type RemoveEventAddOnPassTypeParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventFollowupAddOn, type RemoveEventFollowupAddOnParams, RemoveEventFollowupPassType, type RemoveEventFollowupPassTypeParams, RemoveEventFollowupQuestion, type RemoveEventFollowupQuestionParams, RemoveEventFollowupTier, type RemoveEventFollowupTierParams, RemoveEventMatchPass, type RemoveEventMatchPassParams, RemoveEventMediaItemPassType, type RemoveEventMediaItemPassTypeParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventPassAddOn, type RemoveEventPassAddOnParams, RemoveEventPassTypeAddOn, type RemoveEventPassTypeAddOnParams, 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, RemoveEventSessionLocationSession, type RemoveEventSessionLocationSessionParams, RemoveEventSessionMatchPass, type RemoveEventSessionMatchPassParams, RemoveEventSessionPassType, type RemoveEventSessionPassTypeParams, RemoveEventSessionQuestionChoiceSubQuestion, type RemoveEventSessionQuestionChoiceSubQuestionParams, RemoveEventSessionSectionQuestion, type RemoveEventSessionSectionQuestionParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, 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, RemoveTierAccounts, type RemoveTierAccountsParams, 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, ReorderSurveyQuestionChoiceSubQuestions, type ReorderSurveyQuestionChoiceSubQuestionsParams, ReorderSurveyQuestionChoices, type ReorderSurveyQuestionChoicesParams, ReorderSurveySectionQuestions, type ReorderSurveySectionQuestionsParams, type ReportFilters, ReportType, 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_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_ADDRESSES_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_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_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_SLOTS_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_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_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_COUPONS_QUERY_DATA, SET_EVENT_COUPON_PASSES_QUERY_DATA, SET_EVENT_COUPON_PAYMENTS_QUERY_DATA, SET_EVENT_COUPON_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_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_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_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_PASS_TYPES_QUERY_DATA, SET_EVENT_PASS_TYPE_ADD_ONS_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_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_TRACKS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_TRANSLATION_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_THREADS_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_EVENT_ZPL_TEMPLATE_BADGE_FIELDS_QUERY_DATA, SET_EVENT_ZPL_TEMPLATE_BADGE_FIELD_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_THREADS_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_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_LINK_PREVIEW_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_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_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_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_STREAM_INPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUTS_QUERY_DATA, SET_STREAM_INPUT_OUTPUT_QUERY_DATA, SET_STREAM_INPUT_QUERY_DATA, SET_STREAM_VIDEOS_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_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_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_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_CIRCLE_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_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_VIDEOS_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_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_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 SeriesUpdateInputs, SessionAccess, 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 SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, type SupportTicketNoteCreateInputs, type SupportTicketNoteUpdateInputs, SupportTicketState, SupportTicketType, type SupportTicketUpdateInputs, 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, type SurveySubmission, type SurveySubmissionUpdateInputs, type SurveyTranslation, type SurveyTranslationUpdateInputs, type SurveyUpdateInputs, SwitchImage, type SwitchImageParams, 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_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_CIRCLE_THREADS_QUERY_KEY, THREAD_MEMBERS_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, 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, TaxIntegrationType, type TaxIntegrationUpdateInputs, TaxLocationType, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, TestTaxIntegration, type TestTaxIntegrationParams, type Thread, type ThreadCircle, type ThreadCircleAccount, type ThreadCircleAccountCreateInputs, ThreadCircleAccountRole, type ThreadCircleAccountUpdateInputs, type ThreadCircleCreateInputs, ThreadCircleType, type ThreadCircleUpdateInputs, type ThreadCreateInputs, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, type ThreadMemberCreateInputs, ThreadMemberRole, type ThreadMemberUpdateInputs, type ThreadMessage, type ThreadMessageCreateInputs, type ThreadMessageEntity, type ThreadMessageReaction, type ThreadMessageReactionCreateInputs, type ThreadMessageReactionUpdateInputs, 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, 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, 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, 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, UpdateEventPackage, type UpdateEventPackageParams, UpdateEventPackagePass, type UpdateEventPackagePassParams, UpdateEventPackageTranslation, type UpdateEventPackageTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, UpdateEventPassFollowupResponses, type UpdateEventPassFollowupResponsesParams, type UpdateEventPassParams, UpdateEventPassResponse, type UpdateEventPassResponseInputs, type UpdateEventPassResponseParams, UpdateEventPassResponses, type UpdateEventPassResponsesParams, UpdateEventPassSingleFollowupResponses, type UpdateEventPassSingleFollowupResponsesParams, UpdateEventPassType, type UpdateEventPassTypeParams, UpdateEventPassTypePriceSchedule, UpdateEventPassTypeRefundSchedule, UpdateEventPassTypeTranslation, type UpdateEventPassTypeTranslationParams, 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, 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, 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, UpdateEventZplTemplate, UpdateEventZplTemplateBadgeField, type UpdateEventZplTemplateBadgeFieldParams, type UpdateEventZplTemplateParams, 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, type UpdateOrganizationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationWebhook, type UpdateOrganizationWebhookParams, UpdatePayment, type UpdatePaymentParams, UpdatePreset, type UpdatePresetParams, UpdateRoom, type UpdateRoomParams, UpdateSearchList, type UpdateSearchListParams, UpdateSearchListValue, type UpdateSearchListValueParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateStream, UpdateStreamConfig, type UpdateStreamConfigParams, 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, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMember, type UpdateThreadMemberParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, UploadVideoCaptions, type UploadVideoCaptionsParams, 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 Webhook, type WebhookCreateInputs, type WebhookUpdateInputs, WidgetCategory, WidgetType, isUUID, setFirstPageData, useAcceptGroupRequest, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddChannelSubscriber, useAddCustomReportUser, useAddEventAccessUser, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventFollowupAddOn, useAddEventFollowupPassType, useAddEventFollowupQuestion, useAddEventFollowupTier, useAddEventMatchPass, useAddEventMediaItemPassType, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventReservationPass, useAddEventRoomTypeTier, useAddEventSectionAddOn, useAddEventSectionPassType, useAddEventSectionQuestion, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionLocationSession, useAddEventSessionMatchPass, useAddEventSessionPassType, useAddEventSessionQuestionChoiceSubQuestion, useAddEventSessionSectionQuestion, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddLoginAccount, useAddMeetingLivestream, useAddOrganizationModuleEditableTier, useAddOrganizationModuleEnabledTier, useAddOrganizationUser, useAddRoomToRoomType, useAddSeriesEvent, useAddSurveyQuestionChoiceSubQuestion, useAddSurveySectionQuestion, useArchiveActivity, useAttachEventQuestionSearchList, useAttachEventSessionQuestionSearchList, useAttachSurveyQuestionSearchList, useBulkUploadSearchListValues, useCancelActivitySchedule, useCancelAnnouncementSchedule, useCancelChannelContentPublishSchedule, useCancelEventPass, useCancelGroupInvitation, useCloneEvent, useConfirmLogin, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAccountAttribute, useCreateAccountInvitations, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateBooking, useCreateBookingPlace, useCreateBookingPlaceTranslation, useCreateBookingSpace, useCreateBookingSpaceAvailability, useCreateBookingSpaceBlackout, useCreateBookingSpaceTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateCustomModule, useCreateCustomModuleTranslation, useCreateCustomReport, useCreateDashboard, useCreateDashboardWidget, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventAttendee, useCreateEventAttendeePackage, useCreateEventCoupon, useCreateEventCouponVariants, useCreateEventEmailTranslation, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventFollowup, useCreateEventFollowupTranslation, useCreateEventMatch, useCreateEventMediaItem, useCreateEventPackage, useCreateEventPackagePass, useCreateEventPackageTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventPassTypeTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionTranslation, useCreateEventRegistrationBypass, useCreateEventReservation, useCreateEventRoomType, useCreateEventRoomTypeTranslation, useCreateEventRound, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionAccess, useCreateEventSessionLocation, useCreateEventSessionLocationTranslation, useCreateEventSessionMatch, useCreateEventSessionQuestion, useCreateEventSessionQuestionChoice, useCreateEventSessionQuestionChoiceTranslation, useCreateEventSessionQuestionTranslation, useCreateEventSessionRound, useCreateEventSessionSection, useCreateEventSessionSectionTranslation, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventSponsorship, useCreateEventSponsorshipLevel, useCreateEventSponsorshipLevelTranslation, useCreateEventSponsorshipTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupInvitations, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateIntegration, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateMeeting, useCreateMeetingLink, useCreateMeetingParticipant, useCreateOrganizationPaymentIntegration, useCreateOrganizationSideEffect, useCreateOrganizationTeamMember, useCreateOrganizationWebhook, useCreatePreset, useCreateRoom, useCreateSearchList, useCreateSearchListValue, useCreateSelfApiKey, useCreateSeries, useCreateStreamInput, useCreateStreamInputOutput, useCreateSupportTicket, useCreateSupportTicketNote, useCreateSurvey, useCreateSurveyQuestion, useCreateSurveyQuestionChoice, useCreateSurveyQuestionChoiceTranslation, useCreateSurveyQuestionTranslation, useCreateSurveySection, useCreateSurveySectionTranslation, useCreateSurveyTranslation, useCreateTaxIntegration, useCreateThread, useCreateThreadCircle, useCreateThreadCircleAccount, useCreateThreadMessage, useCreateThreadMessageFile, useCreateThreadMessageImage, useCreateThreadMessageReaction, useCreateThreadMessageVideo, useCreateTier, useDeleteAccount, useDeleteAccountAddress, useDeleteAccountAttribute, useDeleteAccountInvitation, useDeleteAccountLead, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteBooking, useDeleteBookingPlace, useDeleteBookingPlaceTranslation, useDeleteBookingSpace, useDeleteBookingSpaceAvailability, useDeleteBookingSpaceBlackout, useDeleteBookingSpaceTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteCustomModule, useDeleteCustomModuleTranslation, useDeleteCustomReport, useDeleteDashboard, useDeleteDashboardWidget, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventAttendeePackage, useDeleteEventCoupon, useDeleteEventCouponVariants, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventFollowup, useDeleteEventFollowupTranslation, useDeleteEventMatch, useDeleteEventMediaItem, 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, useDeleteEventSessionQuestion, useDeleteEventSessionQuestionChoice, useDeleteEventSessionQuestionChoiceTranslation, useDeleteEventSessionQuestionTranslation, useDeleteEventSessionRound, useDeleteEventSessionSection, useDeleteEventSessionSectionTranslation, 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, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationSideEffect, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteOrganizationWebhook, useDeletePreset, useDeletePushDevice, useDeleteRoom, useDeleteSearchList, useDeleteSearchListValue, useDeleteSelfApiKey, useDeleteSeries, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteSurvey, useDeleteSurveyQuestion, useDeleteSurveyQuestionChoice, useDeleteSurveyQuestionChoiceTranslation, useDeleteSurveyQuestionTranslation, useDeleteSurveySection, useDeleteSurveySectionTranslation, useDeleteSurveySubmission, useDeleteSurveyTranslation, useDeleteTaxIntegration, useDeleteThread, useDeleteThreadCircle, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDeleteThreadMessageFile, useDeleteThreadMessageImage, useDeleteThreadMessageReaction, useDeleteThreadMessageVideo, useDeleteTier, useDeleteUserImage, useDeleteVideo, useDeleteVideoCaption, useDetachEventQuestionSearchList, useDetachEventSessionQuestionSearchList, useDetachSurveyQuestionSearchList, useDisableLivestream, useDownloadVideoCaption, useEnableLivestream, useEventGetPassTypeCoupons, useExportAccount, useGenerateMeetingSessionSummary, useGenerateVideoCaptions, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountAddress, useGetAccountAddresses, useGetAccountComments, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountInvitations, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountNotificationPreferences, useGetAccountPayments, useGetAccountThreads, useGetAccountTiers, useGetAccounts, 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, useGetBookingSpace, useGetBookingSpaceAvailabilities, useGetBookingSpaceAvailability, useGetBookingSpaceBlackout, useGetBookingSpaceBlackouts, useGetBookingSpaceBookings, useGetBookingSpacePayments, useGetBookingSpaceSlots, 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, useGetCustomReportUsers, useGetCustomReports, useGetDashboard, useGetDashboardAttributes, useGetDashboardWidgets, useGetDashboards, useGetEmailReceipt, useGetEmailReceipts, useGetEntityUseCodes, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletion, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePackage, useGetEventAttendeePackages, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeReservations, useGetEventAttendeeTransfersLogs, useGetEventAttendees, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponPasses, useGetEventCouponPayments, useGetEventCouponVariants, useGetEventCoupons, useGetEventDashboardQuestions, useGetEventEmail, useGetEventEmailTranslation, useGetEventEmailTranslations, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventFollowup, useGetEventFollowupAddOns, useGetEventFollowupPassTypes, useGetEventFollowupQuestions, useGetEventFollowupTiers, useGetEventFollowupTranslation, useGetEventFollowupTranslations, useGetEventFollowups, useGetEventMediaItem, useGetEventMediaItemPassTypes, useGetEventMediaItems, useGetEventOnSite, useGetEventPackage, useGetEventPackagePass, useGetEventPackagePasses, useGetEventPackageTranslation, useGetEventPackageTranslations, useGetEventPackages, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPass, useGetEventPassAccesses, useGetEventPassAddOns, useGetEventPassAttendeePasses, useGetEventPassMatches, useGetEventPassPayments, useGetEventPassQuestionFollowups, useGetEventPassQuestionSections, useGetEventPassResponse, useGetEventPassResponseChanges, useGetEventPassResponses, useGetEventPassTransferLogs, useGetEventPassType, useGetEventPassTypeAddOns, useGetEventPassTypePasses, useGetEventPassTypePayments, useGetEventPassTypePriceSchedule, useGetEventPassTypePriceSchedules, useGetEventPassTypeRefundSchedule, useGetEventPassTypeRefundSchedules, useGetEventPassTypeTiers, useGetEventPassTypeTranslation, useGetEventPassTypeTranslations, useGetEventPassTypes, useGetEventPasses, useGetEventPayments, 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, 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, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSessionsWithRounds, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevel, useGetEventSponsorshipLevelTranslation, useGetEventSponsorshipLevelTranslations, useGetEventSponsorshipLevels, useGetEventSponsorshipTranslation, useGetEventSponsorshipTranslations, useGetEventSponsorships, useGetEventThreads, useGetEventTiers, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedChannels, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupThreads, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImport, useGetImportItems, useGetImports, useGetIntegration, useGetIntegrations, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestChannels, useGetInterestContents, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetLinkPreview, useGetLivestream, useGetLivestreamSessions, useGetLivestreams, useGetLogin, useGetLoginAccounts, useGetLoginAuthSessions, useGetLoginDevices, useGetLogins, useGetMeeting, useGetMeetingLink, useGetMeetingLinks, useGetMeetingLivestream, useGetMeetingParticipant, useGetMeetingParticipants, useGetMeetingRecording, useGetMeetingRecordings, useGetMeetingSession, useGetMeetingSessionMessages, useGetMeetingSessionParticipant, useGetMeetingSessionParticipants, useGetMeetingSessionSummary, useGetMeetingSessionTranscript, useGetMeetingSessions, useGetMeetings, useGetOrganization, useGetOrganizationAccountAttribute, useGetOrganizationAccountAttributes, useGetOrganizationDomain, useGetOrganizationMembership, useGetOrganizationModule, useGetOrganizationModuleEditableTiers, useGetOrganizationModuleEnabledTiers, useGetOrganizationModules, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationSideEffect, useGetOrganizationSideEffects, useGetOrganizationSystemLog, useGetOrganizationSystemLogs, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationUsers, useGetOrganizationWebhook, useGetOrganizationWebhooks, useGetPayment, useGetPayments, useGetPreset, useGetPresets, useGetPushDevice, useGetPushDevices, useGetReport, useGetReports, useGetRequiredAttributes, useGetRoom, useGetRoomTypeRooms, useGetRooms, useGetSearchList, useGetSearchListConnectedQuestions, useGetSearchListValue, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfApiKey, useGetSelfApiKeys, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetStreamVideos, useGetSupportTicket, useGetSupportTickets, useGetSurvey, useGetSurveyQuestion, useGetSurveyQuestionChoice, useGetSurveyQuestionChoiceSubQuestions, useGetSurveyQuestionChoiceTranslation, useGetSurveyQuestionChoiceTranslations, useGetSurveyQuestionChoices, useGetSurveyQuestionResponses, useGetSurveyQuestionTranslation, useGetSurveyQuestionTranslations, useGetSurveyQuestions, useGetSurveySection, useGetSurveySectionQuestions, useGetSurveySectionTranslation, useGetSurveySectionTranslations, useGetSurveySections, useGetSurveySubmission, useGetSurveySubmissionQuestionSections, useGetSurveySubmissionResponseChanges, useGetSurveySubmissions, useGetSurveyTranslation, useGetSurveyTranslations, useGetSurveys, useGetTaxCodes, useGetTaxIntegration, useGetTaxIntegrations, useGetTaxLog, useGetTaxLogs, useGetTemplates, useGetThread, useGetThreadAccounts, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircleThreads, useGetThreadCircles, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageFiles, useGetThreadMessageImages, useGetThreadMessageReactions, useGetThreadMessageVideos, useGetThreadMessages, useGetThreadMessagesPoll, useGetThreads, useGetTier, useGetTierAccounts, useGetTierImport, useGetTierImportItems, useGetTierImports, useGetTiers, useGetVideo, useGetVideoCaptions, useGetVideoDownloadStatus, useGetVideos, useImpersonateAccount, useImportRooms, useIndexEventPasses, useInitiateVideoDownload, usePublishActivity, useRefundOrganizationPayment, useRegenerateMeetingParticipantToken, useReinviteGroupInvitation, useRejectGroupRequest, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveAllChannelSubscribers, useRemoveAllGroupMembers, useRemoveChannelSubscriber, useRemoveCustomReportUser, useRemoveEventAccessUser, useRemoveEventAddOnPassType, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventFollowupAddOn, useRemoveEventFollowupPassType, useRemoveEventFollowupQuestion, useRemoveEventFollowupTier, useRemoveEventMatchPass, useRemoveEventMediaItemPassType, useRemoveEventPageImage, useRemoveEventPassAddOn, useRemoveEventPassTypeAddOn, useRemoveEventPassTypeTier, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventReservationPass, useRemoveEventRoomTypeTier, useRemoveEventSectionAddOn, useRemoveEventSectionPassType, useRemoveEventSectionQuestion, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionLocationSession, useRemoveEventSessionMatchPass, useRemoveEventSessionPassType, useRemoveEventSessionQuestionChoiceSubQuestion, useRemoveEventSessionSectionQuestion, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveLoginAccount, useRemoveOrganizationModuleEditableTier, useRemoveOrganizationModuleEnabledTier, useRemoveRoomFromRoomType, useRemoveSeriesEvent, useRemoveSurveyQuestionChoiceSubQuestion, useRemoveSurveySectionQuestion, useRemoveTierAccounts, useReorderEventFaqSectionQuestions, useReorderEventFollowupQuestions, useReorderEventQuestionChoiceSubQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useReorderEventSessionQuestionChoiceSubQuestions, useReorderEventSessionQuestionChoices, useReorderEventSessionSectionQuestions, useReorderEventSponsorshipLevels, useReorderEventSponsorships, useReorderSurveyQuestionChoiceSubQuestions, useReorderSurveyQuestionChoices, useReorderSurveySectionQuestions, useResendRegistrationConfirmationEmail, useResetLivestreamStreamKey, useRevertChannelContentToDraft, useSearchOrganization, useSelfLeaveOrganization, useSendAnnouncementPreview, useSendInvoice, useStartEventRoundMatchmaking, useStartEventSessionRoundMatchmaking, useSwitchImage, useSyncEventCouponToVariants, useTestTaxIntegration, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountAttribute, useUpdateAccountLead, useUpdateActivity, useUpdateActivitySchedule, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateBooking, useUpdateBookingPlace, useUpdateBookingPlaceTranslation, useUpdateBookingSpace, useUpdateBookingSpaceAvailability, useUpdateBookingSpaceBlackout, useUpdateBookingSpaceTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateCustomModule, useUpdateCustomModuleTranslation, useUpdateCustomReport, useUpdateDashboard, useUpdateDashboardWidget, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventAttendeePackage, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventFollowup, useUpdateEventFollowupQuestion, useUpdateEventFollowupTranslation, useUpdateEventMatch, useUpdateEventMediaItem, useUpdateEventPackage, useUpdateEventPackagePass, useUpdateEventPackageTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassFollowupResponses, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassSingleFollowupResponses, useUpdateEventPassType, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, useUpdateEventReservation, useUpdateEventRoomType, useUpdateEventRoomTypeAddOnDetails, useUpdateEventRoomTypePassTypeDetails, useUpdateEventRoomTypeTranslation, useUpdateEventRoundQuestion, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionAccess, useUpdateEventSessionAccessResponses, useUpdateEventSessionLocation, useUpdateEventSessionLocationTranslation, useUpdateEventSessionMatch, useUpdateEventSessionQuestion, useUpdateEventSessionQuestionChoice, useUpdateEventSessionQuestionChoiceSubQuestion, useUpdateEventSessionQuestionChoiceTranslation, useUpdateEventSessionQuestionTranslation, useUpdateEventSessionRoundQuestion, useUpdateEventSessionSection, useUpdateEventSessionSectionQuestion, useUpdateEventSessionSectionTranslation, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventSponsorship, useUpdateEventSponsorshipLevel, useUpdateEventSponsorshipLevelTranslation, useUpdateEventSponsorshipTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateIntegration, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateLoginEmail, useUpdateLoginPassword, useUpdateMeeting, useUpdateMeetingLink, useUpdateMeetingParticipant, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationTeamMember, useUpdateOrganizationWebhook, useUpdatePayment, useUpdatePreset, useUpdateRoom, useUpdateSearchList, useUpdateSearchListValue, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSupportTicket, useUpdateSurvey, useUpdateSurveyQuestion, useUpdateSurveyQuestionChoice, useUpdateSurveyQuestionChoiceSubQuestion, useUpdateSurveyQuestionChoiceTranslation, useUpdateSurveyQuestionTranslation, useUpdateSurveySection, useUpdateSurveySectionQuestion, useUpdateSurveySectionTranslation, useUpdateSurveySubmission, useUpdateSurveySubmissionResponses, useUpdateSurveyTranslation, useUpdateTaxIntegration, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMember, useUpdateThreadMessage, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile, useUploadVideoCaptions, useVerifyOrganizationWebhook, useVoidInvoice };