@connectedxm/admin 1.3.3 → 1.3.5

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.mts CHANGED
@@ -456,7 +456,7 @@ interface EventAnnouncementFilters {
456
456
  ticketId?: string;
457
457
  questionId?: number;
458
458
  choiceId?: number;
459
- reservationSectionId?: string;
459
+ eventRoomTypeId?: string;
460
460
  addOnId?: string;
461
461
  }
462
462
  interface Announcement extends BaseAnnouncement {
@@ -696,13 +696,8 @@ interface BaseEventAddOn {
696
696
  shortDescription: string;
697
697
  supply: number | null;
698
698
  price: number;
699
+ pricePerNight: boolean;
699
700
  sortOrder: number;
700
- minReservationStart: string | null;
701
- reservationStart: string | null;
702
- maxReservationStart: string | null;
703
- minReservationEnd: string | null;
704
- reservationEnd: string | null;
705
- maxReservationEnd: string | null;
706
701
  imageId: string | null;
707
702
  image: BaseImage | null;
708
703
  eventId: string | null;
@@ -715,6 +710,9 @@ interface BaseEventAddOn {
715
710
  interface EventAddOn extends BaseEventAddOn {
716
711
  longDescription: string | null;
717
712
  event: BaseEvent | null;
713
+ allowedTickets: BaseEventPassType[];
714
+ allowedTiers: BaseTier[];
715
+ disallowedTiers: BaseTier[];
718
716
  }
719
717
  interface EventAddOnTranslation {
720
718
  id: number;
@@ -1407,9 +1405,8 @@ interface BaseEventPass {
1407
1405
  };
1408
1406
  responses: BaseRegistrationQuestionResponse[];
1409
1407
  status: EventPassStatus;
1410
- reservationStart: string | null;
1411
- reservationEnd: string | null;
1412
- reservationSectionLocation: BaseEventReservationSectionLocation;
1408
+ reservationId: string | null;
1409
+ reservation: BaseEventRoomTypeReservation | null;
1413
1410
  couponId: string | null;
1414
1411
  coupon: BaseCoupon | null;
1415
1412
  createdAt: string;
@@ -1720,68 +1717,6 @@ interface Report {
1720
1717
  createdAt: string;
1721
1718
  updatedAt: string;
1722
1719
  }
1723
- interface BaseEventReservationSectionLocation {
1724
- id: string;
1725
- eventId: string;
1726
- reservationSectionId: string;
1727
- name: string;
1728
- shortDescription: string | null;
1729
- supply: number;
1730
- sortOrder: number;
1731
- premium: number | null;
1732
- reservationSection: BaseEventReservationSection;
1733
- minStart: string | null;
1734
- start: string | null;
1735
- maxStart: string | null;
1736
- minEnd: string | null;
1737
- end: string | null;
1738
- maxEnd: string | null;
1739
- _count: {
1740
- purchases: number;
1741
- };
1742
- createdAt: string;
1743
- updatedAt: string;
1744
- }
1745
- interface EventReservationSectionLocation extends BaseEventReservationSectionLocation {
1746
- _count: {
1747
- purchases: number;
1748
- };
1749
- }
1750
- interface EventReservationSectionLocationTranslation {
1751
- id: string;
1752
- locale: string;
1753
- name: string;
1754
- shortDescription: string;
1755
- createdAt: string;
1756
- updatedAt: string;
1757
- }
1758
- interface BaseEventReservationSection {
1759
- id: string;
1760
- eventId: string;
1761
- name: string;
1762
- shortDescription: string | null;
1763
- price: number;
1764
- pricePerDay: boolean;
1765
- imageId: string | null;
1766
- image: BaseImage | null;
1767
- createdAt: string;
1768
- updatedAt: string;
1769
- }
1770
- interface EventReservationSection extends BaseEventReservationSection {
1771
- locations: BaseEventReservationSectionLocation[];
1772
- event: BaseEvent;
1773
- _count: {
1774
- locations: number;
1775
- };
1776
- }
1777
- interface EventReservationSectionTranslation {
1778
- id: string;
1779
- locale: string;
1780
- name: string;
1781
- shortDescription: string;
1782
- createdAt: string;
1783
- updatedAt: string;
1784
- }
1785
1720
  interface SearchField {
1786
1721
  id: string;
1787
1722
  name: string;
@@ -2187,14 +2122,6 @@ interface BaseEventPassType {
2187
2122
  minQuantityPerSale: number;
2188
2123
  maxQuantityPerSale: number;
2189
2124
  emailDomains: string | null;
2190
- allowedTiers: BaseTier[];
2191
- disallowedTiers: BaseTier[];
2192
- minReservationStart: string | null;
2193
- reservationStart: string | null;
2194
- maxReservationStart: string | null;
2195
- minReservationEnd: string | null;
2196
- reservationEnd: string | null;
2197
- maxReservationEnd: string | null;
2198
2125
  createdAt: string;
2199
2126
  updatedAt: string;
2200
2127
  }
@@ -2225,6 +2152,8 @@ interface EventPassType extends BaseEventPassType {
2225
2152
  overrideStartDate: string | null;
2226
2153
  sortOrder: number;
2227
2154
  event: BaseEvent;
2155
+ allowedTiers: BaseTier[];
2156
+ disallowedTiers: BaseTier[];
2228
2157
  _count: {
2229
2158
  purchases: number;
2230
2159
  };
@@ -2514,6 +2443,87 @@ interface CognitoUser extends BaseCognitoUser {
2514
2443
  interface DomainDetails {
2515
2444
  name: string;
2516
2445
  }
2446
+ interface BaseEventRoomType {
2447
+ id: string;
2448
+ name: string;
2449
+ price: number;
2450
+ pricePerNight: boolean;
2451
+ image: BaseImage | null;
2452
+ passTypes: BaseEventRoomTypePassTypeDetails[];
2453
+ addOns: BaseEventRoomTypePassTypeDetails[];
2454
+ }
2455
+ interface EventRoomType extends BaseEventRoomType {
2456
+ sortOrder: number;
2457
+ description: string | null;
2458
+ supply: number | null;
2459
+ minPasses: number | null;
2460
+ maxPasses: number | null;
2461
+ minStart: string | null;
2462
+ defaultStart: string | null;
2463
+ maxStart: string | null;
2464
+ minEnd: string | null;
2465
+ defaultEnd: string | null;
2466
+ maxEnd: string | null;
2467
+ allowedTiers: BaseTier[];
2468
+ disallowedTiers: BaseTier[];
2469
+ createdAt: string;
2470
+ updatedAt: string;
2471
+ _count: {
2472
+ reservations: number;
2473
+ };
2474
+ }
2475
+ interface EventRoomTypeTranslation {
2476
+ id: number;
2477
+ locale: string;
2478
+ name: string;
2479
+ description: string;
2480
+ createdAt: string;
2481
+ updatedAt: string;
2482
+ }
2483
+ interface BaseEventRoomTypeReservation {
2484
+ id: string;
2485
+ start: string | null;
2486
+ end: string | null;
2487
+ eventRoomTypeId: string;
2488
+ eventRoomType: BaseEventRoomType;
2489
+ }
2490
+ interface EventRoomTypeReservation extends BaseEventRoomTypeReservation {
2491
+ createdAt: string;
2492
+ updatedAt: string;
2493
+ }
2494
+ interface BaseEventRoomTypePassTypeDetails {
2495
+ id: string;
2496
+ passTypeId: string | null;
2497
+ enabled: boolean;
2498
+ premium: number;
2499
+ includedNights: number;
2500
+ minPasses: number | null;
2501
+ maxPasses: number | null;
2502
+ minStart: string | null;
2503
+ defaultStart: string | null;
2504
+ maxStart: string | null;
2505
+ minEnd: string | null;
2506
+ defaultEnd: string | null;
2507
+ maxEnd: string | null;
2508
+ }
2509
+ interface EventRoomTypePassTypeDetails extends BaseEventRoomTypePassTypeDetails {
2510
+ createdAt: string;
2511
+ updatedAt: string;
2512
+ }
2513
+ interface BaseEventRoomTypeAddOnDetails {
2514
+ id: string;
2515
+ addOnId: string;
2516
+ minStart: string | null;
2517
+ defaultStart: string | null;
2518
+ maxStart: string | null;
2519
+ minEnd: string | null;
2520
+ defaultEnd: string | null;
2521
+ maxEnd: string | null;
2522
+ }
2523
+ interface EventRoomTypeAddOnDetails extends BaseEventRoomTypeAddOnDetails {
2524
+ createdAt: string;
2525
+ updatedAt: string;
2526
+ }
2517
2527
 
2518
2528
  interface ConnectedXMClientContextState {
2519
2529
  queryClient: QueryClient;
@@ -2915,15 +2925,10 @@ interface EventAddOnCreateInputs {
2915
2925
  shortDescription: string;
2916
2926
  longDescription?: string | null;
2917
2927
  price: number | string | null;
2928
+ pricePerNight?: boolean;
2918
2929
  supply?: number | string | null;
2919
2930
  sortOrder?: number | string | null;
2920
2931
  imageId?: string | null;
2921
- reservationStart?: string | null;
2922
- minReservationStart?: string | null;
2923
- maxReservationStart?: string | null;
2924
- reservationEnd?: string | null;
2925
- minReservationEnd?: string | null;
2926
- maxReservationEnd?: string | null;
2927
2932
  }
2928
2933
  interface EventAddOnTranslationUpdateInputs {
2929
2934
  name?: string | null;
@@ -2935,15 +2940,10 @@ interface EventAddOnUpdateInputs {
2935
2940
  shortDescription?: string | null;
2936
2941
  longDescription?: string | null;
2937
2942
  price?: number | string | null;
2943
+ pricePerNight?: boolean;
2938
2944
  supply?: number | string | null;
2939
2945
  sortOrder?: number | string | null;
2940
2946
  imageId?: string | null;
2941
- reservationStart?: string | null;
2942
- minReservationStart?: string | null;
2943
- maxReservationStart?: string | null;
2944
- reservationEnd?: string | null;
2945
- minReservationEnd?: string | null;
2946
- maxReservationEnd?: string | null;
2947
2947
  }
2948
2948
  interface EventBadgeFieldUpdateInputs {
2949
2949
  type?: keyof typeof BadgeFieldType | null;
@@ -3102,16 +3102,12 @@ interface EventPassCreateInputs {
3102
3102
  location?: string | null;
3103
3103
  usedAt?: string | null;
3104
3104
  ticketId?: string | null;
3105
- reservationStart?: string | null;
3106
- reservationEnd?: string | null;
3107
3105
  }
3108
3106
  interface EventPassUpdateInputs {
3109
3107
  status?: EventPassStatus | null;
3110
3108
  location?: string | null;
3111
3109
  usedAt?: string | null;
3112
3110
  ticketId?: string | null;
3113
- reservationStart?: string | null;
3114
- reservationEnd?: string | null;
3115
3111
  couponId?: string | null;
3116
3112
  }
3117
3113
  interface EventAttendeeUpdateInputs {
@@ -3128,60 +3124,6 @@ interface EventRegistrationBypassUpdateInputs {
3128
3124
  preRegister?: boolean;
3129
3125
  postRegister?: boolean;
3130
3126
  }
3131
- interface EventReservationSelectInputs {
3132
- reservationStart?: string;
3133
- reservationEnd?: string;
3134
- }
3135
- interface EventReservationSectionCreateInputs {
3136
- name: string;
3137
- shortDescription?: string | null;
3138
- price?: number | string | null;
3139
- sortOrder?: number | string | null;
3140
- pricePerDay?: boolean;
3141
- imageId?: string | null;
3142
- minStart?: string | null;
3143
- start?: string | null;
3144
- maxStart?: string | null;
3145
- minEnd?: string | null;
3146
- end?: string | null;
3147
- maxEnd?: string | null;
3148
- }
3149
- interface EventReservationSectionLocationCreateInputs {
3150
- name: string;
3151
- shortDescription?: string | null;
3152
- premium?: number | string | null;
3153
- supply?: number | string | null;
3154
- sortOrder?: number | string | null;
3155
- }
3156
- interface EventReservationSectionLocationTranslationUpdateInputs {
3157
- name?: string | null;
3158
- shortDescription?: string | null;
3159
- }
3160
- interface EventReservationSectionLocationUpdateInputs {
3161
- name?: string | null;
3162
- shortDescription?: string | null;
3163
- premium?: number | string | null;
3164
- supply?: number | string | null;
3165
- sortOrder?: number | string | null;
3166
- }
3167
- interface EventReservationSectionTranslationUpdateInputs {
3168
- name?: string | null;
3169
- shortDescription?: string | null;
3170
- }
3171
- interface EventReservationSectionUpdateInputs {
3172
- name?: string | null;
3173
- shortDescription?: string | null;
3174
- price?: number | string | null;
3175
- sortOrder?: number | string | null;
3176
- pricePerDay?: boolean;
3177
- imageId?: string | null;
3178
- minStart?: string | null;
3179
- start?: string | null;
3180
- maxStart?: string | null;
3181
- minEnd?: string | null;
3182
- end?: string | null;
3183
- maxEnd?: string | null;
3184
- }
3185
3127
  interface EventSessionCreateInputs {
3186
3128
  name: string;
3187
3129
  startTime: string;
@@ -3879,12 +3821,6 @@ interface PassTypeCreateInputs {
3879
3821
  limitPerAccount?: number | string | null;
3880
3822
  emailDomains?: string | null;
3881
3823
  sortOrder?: number | string | null;
3882
- reservationStart?: string | null;
3883
- minReservationStart?: string | null;
3884
- maxReservationStart?: string | null;
3885
- reservationEnd?: string | null;
3886
- minReservationEnd?: string | null;
3887
- maxReservationEnd?: string | null;
3888
3824
  enableCoupons?: boolean;
3889
3825
  overrideStartDate?: string | null;
3890
3826
  }
@@ -3906,12 +3842,6 @@ interface PassTypeUpdateInputs {
3906
3842
  limitPerAccount?: number | string | null;
3907
3843
  emailDomains?: string | null;
3908
3844
  sortOrder?: number | string | null;
3909
- reservationStart?: string | null;
3910
- minReservationStart?: string | null;
3911
- maxReservationStart?: string | null;
3912
- reservationEnd?: string | null;
3913
- minReservationEnd?: string | null;
3914
- maxReservationEnd?: string | null;
3915
3845
  enableCoupons?: boolean;
3916
3846
  overrideStartDate?: string | null;
3917
3847
  }
@@ -4014,6 +3944,65 @@ interface IntegrationUpdateInputs {
4014
3944
  publicKey?: string | null;
4015
3945
  secretKey?: string | null;
4016
3946
  }
3947
+ interface EventRoomTypeCreateInputs {
3948
+ name: string;
3949
+ price: number | string;
3950
+ pricePerNight?: boolean;
3951
+ description?: string | null;
3952
+ sortOrder?: number | string;
3953
+ supply?: number | string | null;
3954
+ minPasses?: number | string | null;
3955
+ maxPasses?: number | string | null;
3956
+ minStart?: string | null;
3957
+ defaultStart?: string | null;
3958
+ maxStart?: string | null;
3959
+ minEnd?: string | null;
3960
+ defaultEnd?: string | null;
3961
+ maxEnd?: string | null;
3962
+ imageId?: string | null;
3963
+ }
3964
+ interface EventRoomTypeUpdateInputs {
3965
+ name?: string;
3966
+ price?: number | string;
3967
+ pricePerNight?: boolean;
3968
+ description?: string | null;
3969
+ sortOrder?: number | string;
3970
+ supply?: number | string | null;
3971
+ minPasses?: number | string | null;
3972
+ maxPasses?: number | string | null;
3973
+ minStart?: string | null;
3974
+ defaultStart?: string | null;
3975
+ maxStart?: string | null;
3976
+ minEnd?: string | null;
3977
+ defaultEnd?: string | null;
3978
+ maxEnd?: string | null;
3979
+ imageId?: string | null;
3980
+ }
3981
+ interface EventRoomTypeTranslationUpdateInputs {
3982
+ name?: string | null;
3983
+ description?: string | null;
3984
+ }
3985
+ interface EventRoomTypePassTypeDetailsUpdateInputs {
3986
+ enabled?: boolean;
3987
+ premium?: number | string | null;
3988
+ includedNights?: number | string | null;
3989
+ minPasses?: number | string | null;
3990
+ maxPasses?: number | string | null;
3991
+ minStart?: string | null;
3992
+ defaultStart?: string | null;
3993
+ maxStart?: string | null;
3994
+ minEnd?: string | null;
3995
+ defaultEnd?: string | null;
3996
+ maxEnd?: string | null;
3997
+ }
3998
+ interface EventRoomTypeAddOnDetailsUpdateInputs {
3999
+ minStart?: string | null;
4000
+ defaultStart?: string | null;
4001
+ maxStart?: string | null;
4002
+ minEnd?: string | null;
4003
+ defaultEnd?: string | null;
4004
+ maxEnd?: string | null;
4005
+ }
4017
4006
  interface TaxIntegrationCreateInputs {
4018
4007
  apiKey?: string;
4019
4008
  }
@@ -5944,6 +5933,30 @@ declare const GetEventAddOnTranslations: ({ pageParam, pageSize, orderBy, search
5944
5933
  */
5945
5934
  declare const useGetEventAddOnTranslations: (eventId?: string, addOnId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAddOnTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventAddOnTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5946
5935
 
5936
+ /**
5937
+ * @category Keys
5938
+ * @group Events
5939
+ */
5940
+ declare const ALL_EVENT_ADD_ON_QUERY_KEY: (eventId: string) => string[];
5941
+ /**
5942
+ * @category Setters
5943
+ * @group Events
5944
+ */
5945
+ declare const SET_ALL_EVENT_ADD_ON_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ALL_EVENT_ADD_ON_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAllEventAddOns>>) => void;
5946
+ interface GetAllEventAddOnsProps extends SingleQueryParams {
5947
+ eventId: string;
5948
+ }
5949
+ /**
5950
+ * @category Queries
5951
+ * @group Events
5952
+ */
5953
+ declare const GetAllEventAddOns: ({ eventId, adminApiParams, }: GetAllEventAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
5954
+ /**
5955
+ * @category Hooks
5956
+ * @group Events
5957
+ */
5958
+ declare const useGetAllEventAddOns: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventAddOns>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventAddOn[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5959
+
5947
5960
  /**
5948
5961
  * @category Keys
5949
5962
  * @group Events
@@ -6988,6 +7001,30 @@ declare const GetEventPassTypeTranslations: ({ pageParam, pageSize, orderBy, sea
6988
7001
  */
6989
7002
  declare const useGetEventPassTypeTranslations: (eventId?: string, passTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPassTypeTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventPassTypeTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6990
7003
 
7004
+ /**
7005
+ * @category Keys
7006
+ * @group Events
7007
+ */
7008
+ declare const ALL_EVENT_PASS_TYPES_QUERY_KEY: (eventId: string) => string[];
7009
+ /**
7010
+ * @category Setters
7011
+ * @group Events
7012
+ */
7013
+ declare const SET_ALL_EVENT_PASS_TYPES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ALL_EVENT_PASS_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAllEventPassTypes>>) => void;
7014
+ interface GetAllEventPassTypesParams extends SingleQueryParams {
7015
+ eventId: string;
7016
+ }
7017
+ /**
7018
+ * @category Queries
7019
+ * @group Events
7020
+ */
7021
+ declare const GetAllEventPassTypes: ({ eventId, adminApiParams, }: GetAllEventPassTypesParams) => Promise<ConnectedXMResponse<EventPassType[]>>;
7022
+ /**
7023
+ * @category Hooks
7024
+ * @group Events
7025
+ */
7026
+ declare const useGetAllEventPassTypes: (eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetAllEventPassTypes>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPassType[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7027
+
6991
7028
  /**
6992
7029
  * @category Keys
6993
7030
  * @group Events
@@ -7732,281 +7769,152 @@ declare const useGetEventQuestions: (eventId?: string, params?: Omit<InfiniteQue
7732
7769
  * @category Keys
7733
7770
  * @group Events
7734
7771
  */
7735
- declare const EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_KEY: (eventId: string, reservationSectionId: string, locationId: string, locale: string) => string[];
7736
- /**
7737
- * @category Setters
7738
- * @group Events
7739
- */
7740
- declare const SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string, locationId: string, locale: string], response: Awaited<ReturnType<typeof GetReservationSectionLocationTranslation>>) => void;
7741
- interface GetReservationSectionLocationTranslationProps extends SingleQueryParams {
7742
- eventId: string;
7743
- reservationSectionId: string;
7744
- locationId: string;
7745
- locale: string;
7746
- }
7747
- /**
7748
- * @category Queries
7749
- * @group Events
7750
- */
7751
- declare const GetReservationSectionLocationTranslation: ({ eventId, reservationSectionId, locationId, locale, adminApiParams, }: GetReservationSectionLocationTranslationProps) => Promise<ConnectedXMResponse<EventReservationSectionLocationTranslation | null>>;
7752
- /**
7753
- * @category Hooks
7754
- * @group Events
7755
- */
7756
- declare const useGetReservationSectionLocationTranslation: (eventId?: string, reservationSectionId?: string, locationId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetReservationSectionLocationTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventReservationSectionLocationTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7757
-
7758
- /**
7759
- * @category Keys
7760
- * @group Events
7761
- */
7762
- declare const EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_KEY: (eventId: string, reservationSectionId: string, locationId: string) => string[];
7763
- /**
7764
- * @category Setters
7765
- * @group Events
7766
- */
7767
- declare const SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string, locationId: string], response: Awaited<ReturnType<typeof GetReservationSectionLocationTranslations>>) => void;
7768
- interface GetReservationSectionLocationTranslationsProps extends InfiniteQueryParams {
7769
- eventId: string;
7770
- reservationSectionId: string;
7771
- locationId: string;
7772
- }
7773
- /**
7774
- * @category Queries
7775
- * @group Events
7776
- */
7777
- declare const GetReservationSectionLocationTranslations: ({ pageParam, pageSize, orderBy, search, eventId, reservationSectionId, locationId, adminApiParams, }: GetReservationSectionLocationTranslationsProps) => Promise<ConnectedXMResponse<EventReservationSectionLocationTranslation[]>>;
7778
- /**
7779
- * @category Hooks
7780
- * @group Events
7781
- */
7782
- declare const useGetReservationSectionLocationTranslations: (eventId?: string, reservationSectionId?: string, locationId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionLocationTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventReservationSectionLocationTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7783
-
7784
- /**
7785
- * @category Keys
7786
- * @group Events
7787
- */
7788
- declare const EVENT_RESERVATION_SECTION_LOCATION_QUERY_KEY: (eventId: string, reservationSectionId: string, locationId: string) => string[];
7789
- /**
7790
- * @category Setters
7791
- * @group Events
7792
- */
7793
- declare const SET_EVENT_RESERVATION_SECTION_LOCATION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, reservationSectionId: string, locationId: string], response: Awaited<ReturnType<typeof GetReservationSectionLocation>>) => void;
7794
- interface GetReservationSectionProps$1 extends SingleQueryParams {
7795
- eventId: string;
7796
- reservationSectionId: string;
7797
- locationId: string;
7798
- }
7799
- /**
7800
- * @category Queries
7801
- * @group Events
7802
- */
7803
- declare const GetReservationSectionLocation: ({ eventId, reservationSectionId, locationId, adminApiParams, }: GetReservationSectionProps$1) => Promise<ConnectedXMResponse<EventReservationSectionLocation>>;
7804
- /**
7805
- * @category Hooks
7806
- * @group Events
7807
- */
7808
- declare const useGetReservationSectionLocation: (eventId?: string, reservationSectionId?: string, locationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetReservationSectionLocation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventReservationSectionLocation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7809
-
7810
- /**
7811
- * @category Keys
7812
- * @group Events
7813
- */
7814
- declare const EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
7772
+ declare const EVENT_ROOM_TYPE_TRANSLATION_QUERY_KEY: (eventId: string, roomTypeId: string, locale: string) => string[];
7815
7773
  /**
7816
7774
  * @category Setters
7817
7775
  * @group Events
7818
7776
  */
7819
- declare const SET_EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionLocations>>) => void;
7820
- interface GetReservationSectionsProps$1 extends InfiniteQueryParams {
7777
+ declare const SET_EVENT_ROOM_TYPE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, roomTypeId: string, locale: string], response: Awaited<ReturnType<typeof GetEventRoomTypeTranslation>>) => void;
7778
+ interface GetEventRoomTypeTranslationProps extends SingleQueryParams {
7821
7779
  eventId: string;
7822
- reservationSectionId: string;
7823
- }
7824
- /**
7825
- * @category Queries
7826
- * @group Events
7827
- */
7828
- declare const GetReservationSectionLocations: ({ eventId, reservationSectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionsProps$1) => Promise<ConnectedXMResponse<EventReservationSectionLocation[]>>;
7829
- /**
7830
- * @category Hooks
7831
- * @group Events
7832
- */
7833
- declare const useGetReservationSectionLocations: (eventId?: string, reservationSectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionLocations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventReservationSectionLocation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7834
-
7835
- /**
7836
- * @category Keys
7837
- * @group Events
7838
- */
7839
- declare const EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_KEY: (eventId: string, reservationSectionId: string, locale: string) => string[];
7840
- /**
7841
- * @category Setters
7842
- * @group Events
7843
- */
7844
- declare const SET_EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string, locale: string], response: Awaited<ReturnType<typeof GetReservationSectionTranslation>>) => void;
7845
- interface GetReservationSectionTranslationProps extends SingleQueryParams {
7846
- eventId: string;
7847
- reservationSectionId: string;
7780
+ roomTypeId: string;
7848
7781
  locale: string;
7849
7782
  }
7850
7783
  /**
7851
7784
  * @category Queries
7852
7785
  * @group Events
7853
7786
  */
7854
- declare const GetReservationSectionTranslation: ({ eventId, reservationSectionId, locale, adminApiParams, }: GetReservationSectionTranslationProps) => Promise<ConnectedXMResponse<EventReservationSectionTranslation | null>>;
7787
+ declare const GetEventRoomTypeTranslation: ({ eventId, roomTypeId, locale, adminApiParams, }: GetEventRoomTypeTranslationProps) => Promise<ConnectedXMResponse<EventRoomTypeTranslation | null>>;
7855
7788
  /**
7856
7789
  * @category Hooks
7857
7790
  * @group Events
7858
7791
  */
7859
- declare const useGetReservationSectionTranslation: (eventId?: string, reservationSectionId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetReservationSectionTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventReservationSectionTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7792
+ declare const useGetEventRoomTypeTranslation: (eventId?: string, roomTypeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomTypeTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomTypeTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7860
7793
 
7861
7794
  /**
7862
7795
  * @category Keys
7863
7796
  * @group Events
7864
7797
  */
7865
- declare const EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
7798
+ declare const EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY: (eventId: string, roomTypeId: string) => string[];
7866
7799
  /**
7867
7800
  * @category Setters
7868
7801
  * @group Events
7869
7802
  */
7870
- declare const SET_EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionTranslations>>) => void;
7871
- interface GetReservationSectionTranslationsProps extends InfiniteQueryParams {
7803
+ declare const SET_EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, roomTypeId: string], response: Awaited<ReturnType<typeof GetEventRoomTypeTranslations>>) => void;
7804
+ interface GetEventRoomTypeTranslationsProps extends InfiniteQueryParams {
7872
7805
  eventId: string;
7873
- reservationSectionId: string;
7806
+ roomTypeId: string;
7874
7807
  }
7875
7808
  /**
7876
7809
  * @category Queries
7877
7810
  * @group Events
7878
7811
  */
7879
- declare const GetReservationSectionTranslations: ({ pageParam, pageSize, orderBy, search, eventId, reservationSectionId, adminApiParams, }: GetReservationSectionTranslationsProps) => Promise<ConnectedXMResponse<EventReservationSectionTranslation[]>>;
7812
+ declare const GetEventRoomTypeTranslations: ({ pageParam, pageSize, orderBy, search, eventId, roomTypeId, adminApiParams, }: GetEventRoomTypeTranslationsProps) => Promise<ConnectedXMResponse<EventRoomTypeTranslation[]>>;
7880
7813
  /**
7881
7814
  * @category Hooks
7882
7815
  * @group Events
7883
7816
  */
7884
- declare const useGetReservationSectionTranslations: (eventId?: string, reservationSectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventReservationSectionTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7817
+ declare const useGetEventRoomTypeTranslations: (eventId?: string, roomTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRoomTypeTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventRoomTypeTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7885
7818
 
7886
7819
  /**
7887
7820
  * @category Keys
7888
7821
  * @group Events
7889
7822
  */
7890
- declare const EVENT_RESERVATION_SECTION_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
7823
+ declare const EVENT_ROOM_TYPE_QUERY_KEY: (eventId: string, roomTypeId: string) => string[];
7891
7824
  /**
7892
7825
  * @category Setters
7893
7826
  * @group Events
7894
7827
  */
7895
- declare const SET_EVENT_RESERVATION_SECTION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSection>>) => void;
7896
- interface GetReservationSectionProps extends SingleQueryParams {
7828
+ declare const SET_EVENT_ROOM_TYPE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, roomTypeId: string], response: Awaited<ReturnType<typeof GetEventRoomType>>) => void;
7829
+ interface GetEventRoomTypeProps extends SingleQueryParams {
7897
7830
  eventId: string;
7898
- reservationSectionId: string;
7831
+ roomTypeId: string;
7899
7832
  }
7900
7833
  /**
7901
7834
  * @category Queries
7902
7835
  * @group Events
7903
7836
  */
7904
- declare const GetReservationSection: ({ eventId, reservationSectionId, adminApiParams, }: GetReservationSectionProps) => Promise<ConnectedXMResponse<EventReservationSection>>;
7837
+ declare const GetEventRoomType: ({ eventId, roomTypeId, adminApiParams, }: GetEventRoomTypeProps) => Promise<ConnectedXMResponse<EventRoomType>>;
7905
7838
  /**
7906
7839
  * @category Hooks
7907
7840
  * @group Events
7908
7841
  */
7909
- declare const useGetReservationSection: (eventId?: string, reservationSectionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetReservationSection>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventReservationSection>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7842
+ declare const useGetEventRoomType: (eventId?: string, roomTypeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventRoomType>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
7910
7843
 
7911
7844
  /**
7912
7845
  * @category Keys
7913
7846
  * @group Events
7914
7847
  */
7915
- declare const EVENT_RESERVATION_SECTION_PASS_TYPES_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
7848
+ declare const EVENT_ROOM_TYPE_PASSES_QUERY_KEY: (eventId: string, roomTypeId: string) => string[];
7916
7849
  /**
7917
7850
  * @category Setters
7918
7851
  * @group Events
7919
7852
  */
7920
- declare const SET_EVENT_RESERVATION_SECTION_PASS_TYPES_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionPassTypes>>) => void;
7921
- interface GetReservationSectionPassTypesProps extends InfiniteQueryParams {
7853
+ declare const SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA: (client: any, keyParams: [eventId: string, roomTypeId: string], response: Awaited<ReturnType<typeof GetEventRoomTypePasses>>) => void;
7854
+ interface GetEventRoomTypePassesProps extends InfiniteQueryParams {
7922
7855
  eventId: string;
7923
- reservationSectionId: string;
7856
+ roomTypeId: string;
7924
7857
  }
7925
7858
  /**
7926
7859
  * @category Queries
7927
7860
  * @group Events
7928
7861
  */
7929
- declare const GetReservationSectionPassTypes: ({ eventId, reservationSectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionPassTypesProps) => Promise<ConnectedXMResponse<EventPassType[]>>;
7862
+ declare const GetEventRoomTypePasses: ({ eventId, roomTypeId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRoomTypePassesProps) => Promise<ConnectedXMResponse<EventPass[]>>;
7930
7863
  /**
7931
7864
  * @category Hooks
7932
7865
  * @group Events
7933
7866
  */
7934
- declare const useGetReservationSectionPassTypes: (eventId?: string, reservationSectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionPassTypes>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventPassType[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7867
+ declare const useGetEventRoomTypePasses: (eventId?: string, roomTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRoomTypePasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7935
7868
 
7936
7869
  /**
7937
7870
  * @category Keys
7938
7871
  * @group Events
7939
7872
  */
7940
- declare const EVENT_RESERVATION_SECTION_PASSES_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
7873
+ declare const EVENT_ROOM_TYPE_TIERS_QUERY_KEY: (allowed: boolean, eventId: string, roomTypeId: string) => string[];
7941
7874
  /**
7942
7875
  * @category Setters
7943
7876
  * @group Events
7944
7877
  */
7945
- declare const SET_EVENT_RESERVATION_SECTION_PASSES_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionPasses>>) => void;
7946
- interface GetReservationSectionPassesProps extends InfiniteQueryParams {
7947
- eventId: string;
7948
- reservationSectionId: string;
7949
- }
7950
- /**
7951
- * @category Queries
7952
- * @group Events
7953
- */
7954
- declare const GetReservationSectionPasses: ({ eventId, reservationSectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionPassesProps) => Promise<ConnectedXMResponse<EventPass[]>>;
7955
- /**
7956
- * @category Hooks
7957
- * @group Events
7958
- */
7959
- declare const useGetReservationSectionPasses: (eventId?: string, reservationSectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionPasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7960
-
7961
- /**
7962
- * @category Keys
7963
- * @group Events
7964
- */
7965
- declare const EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY: (allowed: boolean, eventId: string, reservationSectionId: string) => string[];
7966
- /**
7967
- * @category Setters
7968
- * @group Events
7969
- */
7970
- declare const SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA: (client: any, keyParams: [allowed: boolean, eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionTiers>>) => void;
7971
- interface GetReservationSectionTiersProps extends InfiniteQueryParams {
7878
+ declare const SET_EVENT_ROOM_TYPE_TIERS_QUERY_DATA: (client: any, keyParams: [allowed: boolean, eventId: string, roomTypeId: string], response: Awaited<ReturnType<typeof GetEventRoomTypeTiers>>) => void;
7879
+ interface GetEventRoomTypeTiersProps extends InfiniteQueryParams {
7972
7880
  allowed: boolean;
7973
7881
  eventId: string;
7974
- reservationSectionId: string;
7882
+ roomTypeId: string;
7975
7883
  }
7976
7884
  /**
7977
7885
  * @category Queries
7978
7886
  * @group Events
7979
7887
  */
7980
- declare const GetReservationSectionTiers: ({ allowed, eventId, reservationSectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
7888
+ declare const GetEventRoomTypeTiers: ({ allowed, eventId, roomTypeId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRoomTypeTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
7981
7889
  /**
7982
7890
  * @category Hooks
7983
7891
  * @group Events
7984
7892
  */
7985
- declare const useGetReservationSectionTiers: (allowed: boolean, eventId?: string, reservationSectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7893
+ declare const useGetEventRoomTypeTiers: (allowed: boolean, eventId?: string, roomTypeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRoomTypeTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7986
7894
 
7987
7895
  /**
7988
7896
  * @category Keys
7989
7897
  * @group Events
7990
7898
  */
7991
- declare const EVENT_RESERVATION_SECTIONS_QUERY_KEY: (eventId: string) => string[];
7899
+ declare const EVENT_ROOM_TYPES_QUERY_KEY: (eventId: string) => string[];
7992
7900
  /**
7993
7901
  * @category Setters
7994
7902
  * @group Events
7995
7903
  */
7996
- declare const SET_EVENT_RESERVATION_SECTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_RESERVATION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetReservationSections>>) => void;
7997
- interface GetReservationSectionsProps extends InfiniteQueryParams {
7904
+ declare const SET_EVENT_ROOM_TYPES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ROOM_TYPES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventRoomTypes>>) => void;
7905
+ interface GetEventRoomTypesProps extends InfiniteQueryParams {
7998
7906
  eventId: string;
7999
7907
  }
8000
7908
  /**
8001
7909
  * @category Queries
8002
7910
  * @group Events
8003
7911
  */
8004
- declare const GetReservationSections: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionsProps) => Promise<ConnectedXMResponse<EventReservationSection[]>>;
7912
+ declare const GetEventRoomTypes: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRoomTypesProps) => Promise<ConnectedXMResponse<EventRoomType[]>>;
8005
7913
  /**
8006
7914
  * @category Hooks
8007
7915
  * @group Events
8008
7916
  */
8009
- declare const useGetReservationSections: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventReservationSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7917
+ declare const useGetEventRoomTypes: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRoomTypes>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventRoomType[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
8010
7918
 
8011
7919
  /**
8012
7920
  * @category Keys
@@ -14694,51 +14602,6 @@ declare const RemoveEventPassAddOn: ({ addOnId, eventId, passId, adminApiParams,
14694
14602
  */
14695
14603
  declare const useRemoveEventPassAddOn: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveEventPassAddOn>>, Omit<RemoveEventPassAddOnParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPass>, axios.AxiosError<ConnectedXMResponse<EventPass>, any>, Omit<RemoveEventPassAddOnParams, "queryClient" | "adminApiParams">, unknown>;
14696
14604
 
14697
- /**
14698
- * @category Params
14699
- * @group Event-Attendee-Passes
14700
- */
14701
- interface RemoveEventPassReservationParams extends MutationParams {
14702
- eventId: string;
14703
- accountId: string;
14704
- passId: string;
14705
- }
14706
- /**
14707
- * @category Methods
14708
- * @group Event-Attendee-Passes
14709
- */
14710
- declare const RemoveEventPassReservation: ({ eventId, accountId, passId, adminApiParams, queryClient, }: RemoveEventPassReservationParams) => Promise<ConnectedXMResponse<EventAttendee>>;
14711
- /**
14712
- * @category Mutations
14713
- * @group Event-Attendee-Passes
14714
- */
14715
- declare const useRemoveEventPassReservation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveEventPassReservation>>, Omit<RemoveEventPassReservationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventAttendee>, axios.AxiosError<ConnectedXMResponse<EventAttendee>, any>, Omit<RemoveEventPassReservationParams, "queryClient" | "adminApiParams">, unknown>;
14716
-
14717
- /**
14718
- * @category Params
14719
- * @group Event-Attendee-Passes
14720
- */
14721
- interface SelectEventPassReservationParams extends MutationParams {
14722
- eventId: string;
14723
- accountId: string;
14724
- passId: string;
14725
- locationId: string;
14726
- reservation: {
14727
- reservationStart?: string;
14728
- reservationEnd?: string;
14729
- };
14730
- }
14731
- /**
14732
- * @category Methods
14733
- * @group Event-Attendee-Passes
14734
- */
14735
- declare const SelectEventPassReservation: ({ eventId, accountId, passId, locationId, reservation, adminApiParams, queryClient, }: SelectEventPassReservationParams) => Promise<ConnectedXMResponse<EventAttendee>>;
14736
- /**
14737
- * @category Mutations
14738
- * @group Event-Attendee-Passes
14739
- */
14740
- declare const useSelectEventPassReservation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof SelectEventPassReservation>>, Omit<SelectEventPassReservationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventAttendee>, axios.AxiosError<ConnectedXMResponse<EventAttendee>, any>, Omit<SelectEventPassReservationParams, "queryClient" | "adminApiParams">, unknown>;
14741
-
14742
14605
  /**
14743
14606
  * @category Params
14744
14607
  * @group Event-Attendee-Passes
@@ -15254,139 +15117,13 @@ declare const UpdateEventQuestionSearchValue: ({ eventId, questionId, searchValu
15254
15117
  */
15255
15118
  declare const useUpdateEventQuestionSearchValue: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventQuestionSearchValue>>, Omit<UpdateEventQuestionSearchValueParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionSearchValue>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestionSearchValue>, any>, Omit<UpdateEventQuestionSearchValueParams, "queryClient" | "adminApiParams">, unknown>;
15256
15119
 
15257
- /**
15258
- * @category Params
15259
- * @group Event-Reservations-Locations-Translations
15260
- */
15261
- interface CreateEventReservationSectionLocationTranslationParams extends MutationParams {
15262
- eventId: string;
15263
- reservationSectionId: string;
15264
- locationId: string;
15265
- locale: string;
15266
- autoTranslate?: boolean;
15267
- }
15268
- /**
15269
- * @category Methods
15270
- * @group Event-Reservations-Locations-Translations
15271
- */
15272
- declare const CreateEventReservationSectionLocationTranslation: ({ eventId, reservationSectionId, locationId, locale, autoTranslate, adminApiParams, queryClient, }: CreateEventReservationSectionLocationTranslationParams) => Promise<ConnectedXMResponse<EventReservationSectionLocationTranslation>>;
15273
- /**
15274
- * @category Mutations
15275
- * @group Event-Reservations-Locations-Translations
15276
- */
15277
- declare const useCreateEventReservationSectionLocationTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventReservationSectionLocationTranslation>>, Omit<CreateEventReservationSectionLocationTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSectionLocationTranslation>, axios.AxiosError<ConnectedXMResponse<EventReservationSectionLocationTranslation>, any>, Omit<CreateEventReservationSectionLocationTranslationParams, "queryClient" | "adminApiParams">, unknown>;
15278
-
15279
- /**
15280
- * @category Params
15281
- * @group Event-Reservations-Locations-Translations
15282
- */
15283
- interface DeleteEventReservationSectionLocationTranslationParams extends MutationParams {
15284
- eventId: string;
15285
- reservationSectionId: string;
15286
- locationId: string;
15287
- locale: string;
15288
- }
15289
- /**
15290
- * @category Methods
15291
- * @group Event-Reservations-Locations-Translations
15292
- */
15293
- declare const DeleteEventReservationSectionLocationTranslation: ({ eventId, reservationSectionId, locationId, locale, adminApiParams, queryClient, }: DeleteEventReservationSectionLocationTranslationParams) => Promise<any>;
15294
- /**
15295
- * @category Mutations
15296
- * @group Event-Reservations-Locations-Translations
15297
- */
15298
- declare const useDeleteEventReservationSectionLocationTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventReservationSectionLocationTranslation>>, Omit<DeleteEventReservationSectionLocationTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<DeleteEventReservationSectionLocationTranslationParams, "queryClient" | "adminApiParams">, unknown>;
15299
-
15300
- /**
15301
- * @category Params
15302
- * @group Event-Reservations-Locations-Translations
15303
- */
15304
- interface UpdateEventReservationSectionLocationTranslationParams extends MutationParams {
15305
- eventId: string;
15306
- reservationSectionId: string;
15307
- locale: ISupportedLocale;
15308
- locationId: string;
15309
- locationTranslation: EventReservationSectionLocationTranslationUpdateInputs;
15310
- }
15311
- /**
15312
- * @category Methods
15313
- * @group Event-Reservations-Locations-Translations
15314
- */
15315
- declare const UpdateEventReservationSectionLocationTranslation: ({ eventId, reservationSectionId, locationId, locale, locationTranslation, adminApiParams, queryClient, }: UpdateEventReservationSectionLocationTranslationParams) => Promise<any>;
15316
- /**
15317
- * @category Mutations
15318
- * @group Event-Reservations-Locations-Translations
15319
- */
15320
- declare const useUpdateEventReservationSectionLocationTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventReservationSectionLocationTranslation>>, Omit<UpdateEventReservationSectionLocationTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<UpdateEventReservationSectionLocationTranslationParams, "queryClient" | "adminApiParams">, unknown>;
15321
-
15322
- /**
15323
- * @category Params
15324
- * @group Event-Reservations-Locations
15325
- */
15326
- interface CreateEventReservationSectionLocationParams extends MutationParams {
15327
- eventId: string;
15328
- reservationSectionId: string;
15329
- location: EventReservationSectionLocationCreateInputs;
15330
- }
15331
- /**
15332
- * @category Methods
15333
- * @group Event-Reservations-Locations
15334
- */
15335
- declare const CreateEventReservationSectionLocation: ({ eventId, reservationSectionId, location, adminApiParams, queryClient, }: CreateEventReservationSectionLocationParams) => Promise<ConnectedXMResponse<EventReservationSectionLocation>>;
15336
- /**
15337
- * @category Mutations
15338
- * @group Event-Reservations-Locations
15339
- */
15340
- declare const useCreateEventReservationSectionLocation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventReservationSectionLocation>>, Omit<CreateEventReservationSectionLocationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSectionLocation>, axios.AxiosError<ConnectedXMResponse<EventReservationSectionLocation>, any>, Omit<CreateEventReservationSectionLocationParams, "queryClient" | "adminApiParams">, unknown>;
15341
-
15342
- /**
15343
- * @category Params
15344
- * @group Event-Reservations-Locations-Translations
15345
- */
15346
- interface DeleteEventReservationSectionLocationParams extends MutationParams {
15347
- eventId: string;
15348
- reservationSectionId: string;
15349
- locationId: string;
15350
- }
15351
- /**
15352
- * @category Methods
15353
- * @group Event-Reservations-Locations-Translations
15354
- */
15355
- declare const DeleteEventReservationSectionLocation: ({ eventId, reservationSectionId, locationId, adminApiParams, queryClient, }: DeleteEventReservationSectionLocationParams) => Promise<ConnectedXMResponse<null>>;
15356
- /**
15357
- * @category Mutations
15358
- * @group Event-Reservations-Locations-Translations
15359
- */
15360
- declare const useDeleteEventReservationSectionLocation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventReservationSectionLocation>>, Omit<DeleteEventReservationSectionLocationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteEventReservationSectionLocationParams, "queryClient" | "adminApiParams">, unknown>;
15361
-
15362
- /**
15363
- * @category Params
15364
- * @group Event-Reservations-Locations-Translations
15365
- */
15366
- interface UpdateEventReservationSectionLocationParams extends MutationParams {
15367
- eventId: string;
15368
- reservationSectionId: string;
15369
- locationId: string;
15370
- location: EventReservationSectionLocationUpdateInputs;
15371
- }
15372
- /**
15373
- * @category Methods
15374
- * @group Event-Reservations-Locations-Translations
15375
- */
15376
- declare const UpdateEventReservationSectionLocation: ({ eventId, reservationSectionId, locationId, location, adminApiParams, queryClient, }: UpdateEventReservationSectionLocationParams) => Promise<ConnectedXMResponse<EventReservationSectionLocation>>;
15377
- /**
15378
- * @category Mutations
15379
- * @group Event-Reservations-Locations-Translations
15380
- */
15381
- declare const useUpdateEventReservationSectionLocation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventReservationSectionLocation>>, Omit<UpdateEventReservationSectionLocationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSectionLocation>, axios.AxiosError<ConnectedXMResponse<EventReservationSectionLocation>, any>, Omit<UpdateEventReservationSectionLocationParams, "queryClient" | "adminApiParams">, unknown>;
15382
-
15383
15120
  /**
15384
15121
  * @category Params
15385
15122
  * @group Event-Reservations-Translations
15386
15123
  */
15387
- interface CreateEventReservationSectionTranslationParams extends MutationParams {
15124
+ interface CreateEventRoomTypeTranslationParams extends MutationParams {
15388
15125
  eventId: string;
15389
- reservationSectionId: string;
15126
+ roomTypeId: string;
15390
15127
  locale: string;
15391
15128
  autoTranslate?: boolean;
15392
15129
  }
@@ -15394,193 +15131,195 @@ interface CreateEventReservationSectionTranslationParams extends MutationParams
15394
15131
  * @category Methods
15395
15132
  * @group Event-Reservations-Translations
15396
15133
  */
15397
- declare const CreateEventReservationSectionTranslation: ({ eventId, reservationSectionId, locale, autoTranslate, adminApiParams, queryClient, }: CreateEventReservationSectionTranslationParams) => Promise<ConnectedXMResponse<EventReservationSectionTranslation>>;
15134
+ declare const CreateEventRoomTypeTranslation: ({ eventId, roomTypeId, locale, autoTranslate, adminApiParams, queryClient, }: CreateEventRoomTypeTranslationParams) => Promise<ConnectedXMResponse<EventRoomTypeTranslation>>;
15398
15135
  /**
15399
15136
  * @category Mutations
15400
15137
  * @group Event-Reservations-Translations
15401
15138
  */
15402
- declare const useCreateEventReservationSectionTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventReservationSectionTranslation>>, Omit<CreateEventReservationSectionTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSectionTranslation>, axios.AxiosError<ConnectedXMResponse<EventReservationSectionTranslation>, any>, Omit<CreateEventReservationSectionTranslationParams, "queryClient" | "adminApiParams">, unknown>;
15139
+ declare const useCreateEventRoomTypeTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventRoomTypeTranslation>>, Omit<CreateEventRoomTypeTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomTypeTranslation>, axios.AxiosError<ConnectedXMResponse<EventRoomTypeTranslation>, any>, Omit<CreateEventRoomTypeTranslationParams, "queryClient" | "adminApiParams">, unknown>;
15403
15140
 
15404
15141
  /**
15405
15142
  * @category Params
15406
15143
  * @group Event-Reservations-Translations
15407
15144
  */
15408
- interface DeleteEventReservationSectionTranslationParams extends MutationParams {
15145
+ interface DeleteEventRoomTypeTranslationParams extends MutationParams {
15409
15146
  eventId: string;
15410
- reservationSectionId: string;
15147
+ roomTypeId: string;
15411
15148
  locale: string;
15412
15149
  }
15413
15150
  /**
15414
15151
  * @category Methods
15415
15152
  * @group Event-Reservations-Translations
15416
15153
  */
15417
- declare const DeleteEventReservationSectionTranslation: ({ eventId, reservationSectionId, locale, adminApiParams, queryClient, }: DeleteEventReservationSectionTranslationParams) => Promise<any>;
15154
+ declare const DeleteEventRoomTypeTranslation: ({ eventId, roomTypeId, locale, adminApiParams, queryClient, }: DeleteEventRoomTypeTranslationParams) => Promise<any>;
15418
15155
  /**
15419
15156
  * @category Mutations
15420
15157
  * @group Event-Reservations-Translations
15421
15158
  */
15422
- declare const useDeleteEventReservationSectionTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventReservationSectionTranslation>>, Omit<DeleteEventReservationSectionTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<DeleteEventReservationSectionTranslationParams, "queryClient" | "adminApiParams">, unknown>;
15159
+ declare const useDeleteEventRoomTypeTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventRoomTypeTranslation>>, Omit<DeleteEventRoomTypeTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<DeleteEventRoomTypeTranslationParams, "queryClient" | "adminApiParams">, unknown>;
15423
15160
 
15424
15161
  /**
15425
15162
  * @category Params
15426
15163
  * @group Event-Reservations-Translations
15427
15164
  */
15428
- interface UpdateEventReservationSectionTranslationParams extends MutationParams {
15165
+ interface UpdateEventRoomTypeTranslationParams extends MutationParams {
15429
15166
  eventId: string;
15430
- reservationSectionId: string;
15167
+ roomTypeId: string;
15431
15168
  locale: ISupportedLocale;
15432
- reservationSectionTranslation: EventReservationSectionTranslationUpdateInputs;
15169
+ roomTypeTranslation: EventRoomTypeTranslationUpdateInputs;
15433
15170
  }
15434
15171
  /**
15435
15172
  * @category Methods
15436
15173
  * @group Event-Reservations-Translations
15437
15174
  */
15438
- declare const UpdateEventReservationSectionTranslation: ({ eventId, reservationSectionId, reservationSectionTranslation, locale, adminApiParams, queryClient, }: UpdateEventReservationSectionTranslationParams) => Promise<any>;
15175
+ declare const UpdateEventRoomTypeTranslation: ({ eventId, roomTypeId, roomTypeTranslation, locale, adminApiParams, queryClient, }: UpdateEventRoomTypeTranslationParams) => Promise<any>;
15439
15176
  /**
15440
15177
  * @category Mutations
15441
15178
  * @group Event-Reservations-Translations
15442
15179
  */
15443
- declare const useUpdateEventReservationSectionTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventReservationSectionTranslation>>, Omit<UpdateEventReservationSectionTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<UpdateEventReservationSectionTranslationParams, "queryClient" | "adminApiParams">, unknown>;
15180
+ declare const useUpdateEventRoomTypeTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventRoomTypeTranslation>>, Omit<UpdateEventRoomTypeTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<UpdateEventRoomTypeTranslationParams, "queryClient" | "adminApiParams">, unknown>;
15444
15181
 
15445
15182
  /**
15446
15183
  * @category Params
15447
15184
  * @group Event-Reservations
15448
15185
  */
15449
- interface AddEventReservationSectionPassTypeParams extends MutationParams {
15186
+ interface AddEventRoomTypeTierParams extends MutationParams {
15187
+ allowed: boolean;
15450
15188
  eventId: string;
15451
- reservationSectionId: string;
15452
- passTypeId: string;
15189
+ roomTypeId: string;
15190
+ tierId: string;
15453
15191
  }
15454
15192
  /**
15455
15193
  * @category Methods
15456
15194
  * @group Event-Reservations
15457
15195
  */
15458
- declare const AddEventReservationSectionPassType: ({ eventId, reservationSectionId, passTypeId, adminApiParams, queryClient, }: AddEventReservationSectionPassTypeParams) => Promise<ConnectedXMResponse<EventReservationSection>>;
15196
+ declare const AddEventRoomTypeTier: ({ allowed, eventId, roomTypeId, tierId, adminApiParams, queryClient, }: AddEventRoomTypeTierParams) => Promise<ConnectedXMResponse<EventRoomType>>;
15459
15197
  /**
15460
15198
  * @category Mutations
15461
15199
  * @group Event-Reservations
15462
15200
  */
15463
- declare const useAddEventReservationSectionPassType: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof AddEventReservationSectionPassType>>, Omit<AddEventReservationSectionPassTypeParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSection>, axios.AxiosError<ConnectedXMResponse<EventReservationSection>, any>, Omit<AddEventReservationSectionPassTypeParams, "queryClient" | "adminApiParams">, unknown>;
15201
+ declare const useAddEventRoomTypeTier: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof AddEventRoomTypeTier>>, Omit<AddEventRoomTypeTierParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<AddEventRoomTypeTierParams, "queryClient" | "adminApiParams">, unknown>;
15464
15202
 
15465
15203
  /**
15466
15204
  * @category Params
15467
15205
  * @group Event-Reservations
15468
15206
  */
15469
- interface AddEventReservationSectionTierParams extends MutationParams {
15470
- allowed: boolean;
15207
+ interface CreateEventRoomTypeParams extends MutationParams {
15471
15208
  eventId: string;
15472
- reservationSectionId: string;
15473
- tierId: string;
15209
+ roomType: EventRoomTypeCreateInputs;
15474
15210
  }
15475
15211
  /**
15476
15212
  * @category Methods
15477
15213
  * @group Event-Reservations
15478
15214
  */
15479
- declare const AddEventReservationSectionTier: ({ allowed, eventId, reservationSectionId, tierId, adminApiParams, queryClient, }: AddEventReservationSectionTierParams) => Promise<ConnectedXMResponse<EventReservationSection>>;
15215
+ declare const CreateEventRoomType: ({ eventId, roomType, adminApiParams, queryClient, }: CreateEventRoomTypeParams) => Promise<ConnectedXMResponse<EventRoomType>>;
15480
15216
  /**
15481
15217
  * @category Mutations
15482
15218
  * @group Event-Reservations
15483
15219
  */
15484
- declare const useAddEventReservationSectionTier: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof AddEventReservationSectionTier>>, Omit<AddEventReservationSectionTierParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSection>, axios.AxiosError<ConnectedXMResponse<EventReservationSection>, any>, Omit<AddEventReservationSectionTierParams, "queryClient" | "adminApiParams">, unknown>;
15220
+ declare const useCreateEventRoomType: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventRoomType>>, Omit<CreateEventRoomTypeParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<CreateEventRoomTypeParams, "queryClient" | "adminApiParams">, unknown>;
15485
15221
 
15486
15222
  /**
15487
15223
  * @category Params
15488
15224
  * @group Event-Reservations
15489
15225
  */
15490
- interface CreateEventReservationSectionParams extends MutationParams {
15226
+ interface DeleteEventRoomTypeParams extends MutationParams {
15491
15227
  eventId: string;
15492
- reservationSection: EventReservationSectionCreateInputs;
15228
+ roomTypeId: string;
15493
15229
  }
15494
15230
  /**
15495
15231
  * @category Methods
15496
15232
  * @group Event-Reservations
15497
15233
  */
15498
- declare const CreateEventReservationSection: ({ eventId, reservationSection, adminApiParams, queryClient, }: CreateEventReservationSectionParams) => Promise<ConnectedXMResponse<EventReservationSection>>;
15234
+ declare const DeleteEventRoomType: ({ eventId, roomTypeId, adminApiParams, queryClient, }: DeleteEventRoomTypeParams) => Promise<ConnectedXMResponse<null>>;
15499
15235
  /**
15500
15236
  * @category Mutations
15501
15237
  * @group Event-Reservations
15502
15238
  */
15503
- declare const useCreateEventReservationSection: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventReservationSection>>, Omit<CreateEventReservationSectionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSection>, axios.AxiosError<ConnectedXMResponse<EventReservationSection>, any>, Omit<CreateEventReservationSectionParams, "queryClient" | "adminApiParams">, unknown>;
15239
+ declare const useDeleteEventRoomType: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventRoomType>>, Omit<DeleteEventRoomTypeParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteEventRoomTypeParams, "queryClient" | "adminApiParams">, unknown>;
15504
15240
 
15505
15241
  /**
15506
15242
  * @category Params
15507
15243
  * @group Event-Reservations
15508
15244
  */
15509
- interface DeleteEventReservationSectionParams extends MutationParams {
15245
+ interface RemoveEventRoomTypeTierParams extends MutationParams {
15246
+ allowed: boolean;
15510
15247
  eventId: string;
15511
- reservationSectionId: string;
15248
+ roomTypeId: string;
15249
+ tierId: string;
15512
15250
  }
15513
15251
  /**
15514
15252
  * @category Methods
15515
15253
  * @group Event-Reservations
15516
15254
  */
15517
- declare const DeleteEventReservationSection: ({ eventId, reservationSectionId, adminApiParams, queryClient, }: DeleteEventReservationSectionParams) => Promise<ConnectedXMResponse<null>>;
15255
+ declare const RemoveEventRoomTypeTier: ({ allowed, eventId, roomTypeId, tierId, adminApiParams, queryClient, }: RemoveEventRoomTypeTierParams) => Promise<ConnectedXMResponse<EventRoomType>>;
15518
15256
  /**
15519
15257
  * @category Mutations
15520
15258
  * @group Event-Reservations
15521
15259
  */
15522
- declare const useDeleteEventReservationSection: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventReservationSection>>, Omit<DeleteEventReservationSectionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteEventReservationSectionParams, "queryClient" | "adminApiParams">, unknown>;
15260
+ declare const useRemoveEventRoomTypeTier: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveEventRoomTypeTier>>, Omit<RemoveEventRoomTypeTierParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<RemoveEventRoomTypeTierParams, "queryClient" | "adminApiParams">, unknown>;
15523
15261
 
15524
15262
  /**
15525
15263
  * @category Params
15526
15264
  * @group Event-Reservations
15527
15265
  */
15528
- interface RemoveEventReservationSectionPassTypeParams extends MutationParams {
15266
+ interface UpdateEventRoomTypeParams extends MutationParams {
15529
15267
  eventId: string;
15530
- reservationSectionId: string;
15531
- passTypeId: string;
15268
+ roomTypeId: string;
15269
+ roomType: EventRoomTypeUpdateInputs;
15532
15270
  }
15533
15271
  /**
15534
15272
  * @category Methods
15535
15273
  * @group Event-Reservations
15536
15274
  */
15537
- declare const RemoveEventReservationSectionPassType: ({ eventId, reservationSectionId, passTypeId, adminApiParams, queryClient, }: RemoveEventReservationSectionPassTypeParams) => Promise<ConnectedXMResponse<EventReservationSection>>;
15275
+ declare const UpdateEventRoomType: ({ eventId, roomTypeId, roomType, adminApiParams, queryClient, }: UpdateEventRoomTypeParams) => Promise<ConnectedXMResponse<EventRoomType>>;
15538
15276
  /**
15539
15277
  * @category Mutations
15540
15278
  * @group Event-Reservations
15541
15279
  */
15542
- declare const useRemoveEventReservationSectionPassType: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveEventReservationSectionPassType>>, Omit<RemoveEventReservationSectionPassTypeParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSection>, axios.AxiosError<ConnectedXMResponse<EventReservationSection>, any>, Omit<RemoveEventReservationSectionPassTypeParams, "queryClient" | "adminApiParams">, unknown>;
15280
+ declare const useUpdateEventRoomType: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventRoomType>>, Omit<UpdateEventRoomTypeParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<UpdateEventRoomTypeParams, "queryClient" | "adminApiParams">, unknown>;
15543
15281
 
15544
15282
  /**
15545
15283
  * @category Params
15546
15284
  * @group Event-Reservations
15547
15285
  */
15548
- interface RemoveEventReservationSectionTierParams extends MutationParams {
15549
- allowed: boolean;
15286
+ interface UpdateEventRoomTypeAddOnDetailsParams extends MutationParams {
15550
15287
  eventId: string;
15551
- reservationSectionId: string;
15552
- tierId: string;
15288
+ roomTypeId: string;
15289
+ addOnId: string;
15290
+ details: EventRoomTypeAddOnDetailsUpdateInputs;
15553
15291
  }
15554
15292
  /**
15555
15293
  * @category Methods
15556
15294
  * @group Event-Reservations
15557
15295
  */
15558
- declare const RemoveEventReservationSectionTier: ({ allowed, eventId, reservationSectionId, tierId, adminApiParams, queryClient, }: RemoveEventReservationSectionTierParams) => Promise<ConnectedXMResponse<EventReservationSection>>;
15296
+ declare const UpdateEventRoomTypeAddOnDetails: ({ eventId, roomTypeId, addOnId, details, adminApiParams, queryClient, }: UpdateEventRoomTypeAddOnDetailsParams) => Promise<ConnectedXMResponse<EventRoomType>>;
15559
15297
  /**
15560
15298
  * @category Mutations
15561
15299
  * @group Event-Reservations
15562
15300
  */
15563
- declare const useRemoveEventReservationSectionTier: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof RemoveEventReservationSectionTier>>, Omit<RemoveEventReservationSectionTierParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSection>, axios.AxiosError<ConnectedXMResponse<EventReservationSection>, any>, Omit<RemoveEventReservationSectionTierParams, "queryClient" | "adminApiParams">, unknown>;
15301
+ declare const useUpdateEventRoomTypeAddOnDetails: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventRoomTypeAddOnDetails>>, Omit<UpdateEventRoomTypeAddOnDetailsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<UpdateEventRoomTypeAddOnDetailsParams, "queryClient" | "adminApiParams">, unknown>;
15564
15302
 
15565
15303
  /**
15566
15304
  * @category Params
15567
15305
  * @group Event-Reservations
15568
15306
  */
15569
- interface UpdateEventReservationSectionParams extends MutationParams {
15307
+ interface UpdateEventRoomTypePassTypeDetailsParams extends MutationParams {
15570
15308
  eventId: string;
15571
- reservationSectionId: string;
15572
- reservationSection: EventReservationSectionUpdateInputs;
15309
+ roomTypeId: string;
15310
+ passTypeId: string;
15311
+ details: EventRoomTypePassTypeDetailsUpdateInputs;
15573
15312
  }
15574
15313
  /**
15575
15314
  * @category Methods
15576
15315
  * @group Event-Reservations
15577
15316
  */
15578
- declare const UpdateEventReservationSection: ({ eventId, reservationSectionId, reservationSection, adminApiParams, queryClient, }: UpdateEventReservationSectionParams) => Promise<ConnectedXMResponse<EventReservationSection>>;
15317
+ declare const UpdateEventRoomTypePassTypeDetails: ({ eventId, roomTypeId, passTypeId, details, adminApiParams, queryClient, }: UpdateEventRoomTypePassTypeDetailsParams) => Promise<ConnectedXMResponse<EventRoomType>>;
15579
15318
  /**
15580
15319
  * @category Mutations
15581
15320
  * @group Event-Reservations
15582
15321
  */
15583
- declare const useUpdateEventReservationSection: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventReservationSection>>, Omit<UpdateEventReservationSectionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventReservationSection>, axios.AxiosError<ConnectedXMResponse<EventReservationSection>, any>, Omit<UpdateEventReservationSectionParams, "queryClient" | "adminApiParams">, unknown>;
15322
+ declare const useUpdateEventRoomTypePassTypeDetails: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventRoomTypePassTypeDetails>>, Omit<UpdateEventRoomTypePassTypeDetailsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventRoomType>, axios.AxiosError<ConnectedXMResponse<EventRoomType>, any>, Omit<UpdateEventRoomTypePassTypeDetailsParams, "queryClient" | "adminApiParams">, unknown>;
15584
15323
 
15585
15324
  /**
15586
15325
  * @category Params
@@ -19517,4 +19256,4 @@ declare const UpdateVideo: ({ videoId, video, adminApiParams, queryClient, }: Up
19517
19256
  */
19518
19257
  declare const useUpdateVideo: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateVideo>>, Omit<UpdateVideoParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Video>, axios.AxiosError<ConnectedXMResponse<Video>, any>, Omit<UpdateVideoParams, "queryClient" | "adminApiParams">, unknown>;
19519
19258
 
19520
- export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_QUERY_KEY, ACCOUNT_AUTH_SESSIONS_QUERY_KEY, ACCOUNT_COGNITO_USERS_QUERY_KEY, ACCOUNT_COGNITO_USER_QUERY_KEY, ACCOUNT_COMMENTS_QUERY_KEY, ACCOUNT_DELEGATES_QUERY_KEY, ACCOUNT_DELEGATE_OF_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_LEVELS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_PAYMENTS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_RESHARES_QUERY_KEY, ACCOUNT_SUBSCRIPTIONS_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_INTERESTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ACTIVITY_RESHARES_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_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, type AccountAddress, type AccountAddressCreateInputs, type AccountAddressUpdateInputs, type AccountCreateInputs, AccountType, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityUpdateInputs, AddAccountDelegate, type AddAccountDelegateParams, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddActivityInterest, type AddActivityInterestParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddEventAccessUser, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventPageImage, type AddEventPageImageParams, AddEventPassAddOn, type AddEventPassAddOnParams, AddEventPassTypeAddOn, type AddEventPassTypeAddOnParams, AddEventPassTypeTier, type AddEventPassTypeTierParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventReservationSectionPassType, type AddEventReservationSectionPassTypeParams, AddEventReservationSectionTier, type AddEventReservationSectionTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionPassType, type AddEventSectionPassTypeParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionLocationSession, type AddEventSessionLocationSessionParams, 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, AddOrganizationModuleEditableTier, type AddOrganizationModuleEditableTierParams, AddOrganizationModuleEnabledTier, type AddOrganizationModuleEnabledTierParams, AddOrganizationUser, type AddOrganizationUserParams, AddReportUser, type AddReportUserParams, AddSeriesEvent, type AddSeriesEventParams, AddSubscriptionProductTier, type AddSubscriptionProductTierParams, AddThreadMember, type AddThreadMemberParams, AddThreadModerator, type AddThreadModeratorParams, AddTierAccount, type AddTierAccountParams, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementTranslation, type AnnouncementTranslationUpdateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ApproveEvent, type ApproveEventParams, AuthLayout, type AuthSession, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAccount, type BaseAccountAddress, type BaseActivationCompletion, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCognitoUser, type BaseCoupon, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventAttendee, type BaseEventEmail, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPage, type BaseEventPass, type BaseEventPassType, type BaseEventPassTypePriceSchedule, type BaseEventPassTypeRefundSchedule, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseEventSession, type BaseEventSessionLocation, type BaseEventSessionPass, type BaseEventSessionQuestion, type BaseEventSessionQuestionResponse, type BaseEventSpeaker, 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 BaseLevel, type BaseLike, type BaseLinkPreview, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BasePage, type BasePayment, type BaseRegistrationBypass, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseSchedule, type BaseSeries, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionPayment, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseThreadMessageReaction, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, 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, CacheIndividualQueries, 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, CheckinAllAttendeePasses, type CheckinAllAttendeePassesParams, type CognitoUser, ConfirmAccountCognitoUser, type ConfirmAccountCognitoUserParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, CreateAccountAddress, type CreateAccountAddressParams, type CreateAccountParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateAnnouncementTranslation, type CreateAnnouncementTranslationParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventActivationTranslation, type CreateEventActivationTranslationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAddOnTranslation, type CreateEventAddOnTranslationParams, CreateEventAttendee, type CreateEventAttendeeParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventEmailTranslation, type CreateEventEmailTranslationParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, 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, CreateEventQuestionSearchValues, type CreateEventQuestionSearchValuesParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, CreateEventReservationSection, CreateEventReservationSectionLocation, type CreateEventReservationSectionLocationParams, CreateEventReservationSectionLocationTranslation, type CreateEventReservationSectionLocationTranslationParams, type CreateEventReservationSectionParams, CreateEventReservationSectionTranslation, type CreateEventReservationSectionTranslationParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, CreateEventSessionLocation, type CreateEventSessionLocationParams, CreateEventSessionLocationTranslation, type CreateEventSessionLocationTranslationParams, type CreateEventSessionParams, CreateEventSessionQuestion, type CreateEventSessionQuestionParams, CreateEventSessionQuestionTranslation, type CreateEventSessionQuestionTranslationParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, 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, CreateOrganizationPageTranslation, type CreateOrganizationPageTranslationParams, CreateOrganizationPaymentIntegration, type CreateOrganizationPaymentIntegrationParams, CreateOrganizationTeamMember, type CreateOrganizationTeamMemberParams, CreateReport, type CreateReportParams, CreateSelfApiKey, type CreateSelfApiKeyParams, CreateSeries, type CreateSeriesParams, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSubscription, type CreateSubscriptionParams, CreateSubscriptionProduct, type CreateSubscriptionProductParams, CreateSubscriptionProductPrice, type CreateSubscriptionProductPriceParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateTaxIntegration, type CreateTaxIntegrationParams, CreateThread, type CreateThreadParams, CreateTier, type CreateTierParams, Currency, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteEvent, DeleteEventActivation, DeleteEventActivationCompletion, type DeleteEventActivationCompletionParams, type DeleteEventActivationParams, DeleteEventActivationTranslation, type DeleteEventActivationTranslationParams, DeleteEventAddOn, type DeleteEventAddOnParams, DeleteEventAddOnTranslation, type DeleteEventAddOnTranslationParams, DeleteEventAttendee, type DeleteEventAttendeeParams, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventEmailTranslation, type DeleteEventEmailTranslationParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, 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, DeleteEventQuestionSearchValue, type DeleteEventQuestionSearchValueParams, DeleteEventQuestionSearchValues, type DeleteEventQuestionSearchValuesParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, DeleteEventReservationSection, DeleteEventReservationSectionLocation, type DeleteEventReservationSectionLocationParams, DeleteEventReservationSectionLocationTranslation, type DeleteEventReservationSectionLocationTranslationParams, type DeleteEventReservationSectionParams, DeleteEventReservationSectionTranslation, type DeleteEventReservationSectionTranslationParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, DeleteEventSessionLocation, type DeleteEventSessionLocationParams, DeleteEventSessionLocationTranslation, type DeleteEventSessionLocationTranslationParams, type DeleteEventSessionParams, DeleteEventSessionQuestion, type DeleteEventSessionQuestionParams, DeleteEventSessionQuestionTranslation, type DeleteEventSessionQuestionTranslationParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, 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, DeleteManyImages, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteOrganizationDomain, type DeleteOrganizationDomainParams, DeleteOrganizationPageTranslation, type DeleteOrganizationPageTranslationParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteReport, type DeleteReportParams, DeleteSelfApiKey, type DeleteSelfApiKeyParams, DeleteSeries, type DeleteSeriesParams, DeleteStreamInput, DeleteStreamInputOutput, type DeleteStreamInputOutputParams, type DeleteStreamInputParams, DeleteSubscriptionProduct, type DeleteSubscriptionProductParams, DeleteSubscriptionProductPrice, type DeleteSubscriptionProductPriceParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteTaxIntegration, type DeleteTaxIntegrationParams, DeleteThread, type DeleteThreadParams, DeleteTier, type DeleteTierParams, DeleteUserImage, type DeleteUserImageParams, DeleteVideo, type DeleteVideoParams, type DomainDetails, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCESS_USERS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_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_PASSES_QUERY_KEY, EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, EVENT_ATTENDEE_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_PASSES_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_CO_HOSTS_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_ON_SITE_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_ADD_ONS_QUERY_KEY, EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY, EVENT_PASS_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_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_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_SEARCH_VALUES_QUERY_KEY, EVENT_QUESTION_SEARCH_VALUE_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_RESERVATION_SECTIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_KEY, EVENT_RESERVATION_SECTION_PASSES_QUERY_KEY, EVENT_RESERVATION_SECTION_PASS_TYPES_QUERY_KEY, EVENT_RESERVATION_SECTION_QUERY_KEY, EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATION_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_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_QUERY_KEY, EVENT_SESSION_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_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_SPONSORS_QUERY_KEY, EVENT_SPONSOR_ACCOUNTS_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, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, type EventAnnouncementFilters, type EventAttendee, 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, EventGetPassTypeCoupons, type EventListing, type EventOnSite, type EventOnSiteBadgeField, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPass, type EventPassCreateInputs, EventPassStatus, type EventPassType, type EventPassTypePriceSchedule, type EventPassTypeRefundSchedule, type EventPassTypeTranslation, type EventPassUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionSearchInputs, type EventQuestionSearchValueUpdateInputs, type EventQuestionSearchValuesCreateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, type EventReservationSection, type EventReservationSectionCreateInputs, type EventReservationSectionLocation, type EventReservationSectionLocationCreateInputs, type EventReservationSectionLocationTranslation, type EventReservationSectionLocationTranslationUpdateInputs, type EventReservationSectionLocationUpdateInputs, type EventReservationSectionTranslation, type EventReservationSectionTranslationUpdateInputs, type EventReservationSectionUpdateInputs, type EventReservationSelectInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionCreateInputs, type EventSessionLocation, type EventSessionLocationCreateInputs, type EventSessionLocationTranslation, type EventSessionLocationTranslationUpdateInputs, type EventSessionLocationUpdateInputs, type EventSessionPass, type EventSessionQuestion, type EventSessionQuestionCreateInputs, type EventSessionQuestionResponse, type EventSessionQuestionTranslation, type EventSessionQuestionTranslationUpdateInputs, type EventSessionQuestionUpdateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, ExportAccount, type ExportAccountParams, ExportStatus, FEATURED_CHANNELS_QUERY_KEY, FEATURED_EVENTS_QUERY_KEY, FILES_QUERY_KEY, FILE_QUERY_KEY, type Faq, type FaqSection, type FaqSectionTranslation, type FaqTranslation, type File, FileSource, type FileUpdateInputs, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INTERESTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_INVITATION_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_MODERATORS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountAddress, GetAccountAddresses, GetAccountAuthSessions, GetAccountCognitoUser, GetAccountCognitoUsers, GetAccountComments, GetAccountDelegateOf, GetAccountDelegates, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountLevels, GetAccountLikes, GetAccountPayments, GetAccountReshares, GetAccountSubscriptions, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityInterests, GetActivityLikes, GetActivityReshares, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAnnouncement, GetAnnouncementAudience, GetAnnouncementEmailReceipts, GetAnnouncementTranslation, GetAnnouncementTranslations, GetAnnouncements, GetAuthSession, GetAuthSessions, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeTransfersLogs, GetEventAttendees, GetEventCoHosts, GetEventCoupon, GetEventCouponPasses, GetEventCoupons, GetEventEmail, GetEventEmailTranslation, GetEventEmailTranslations, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventOnSite, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPass, GetEventPassAddOns, GetEventPassAttendeePasses, GetEventPassQuestionSections, GetEventPassResponse, GetEventPassResponseChanges, GetEventPassResponses, GetEventPassTransferLogs, GetEventPassType, GetEventPassTypeAddOns, GetEventPassTypePasses, GetEventPassTypePriceSchedule, GetEventPassTypePriceSchedules, GetEventPassTypeRefundSchedule, GetEventPassTypeRefundSchedules, GetEventPassTypeTiers, GetEventPassTypeTranslation, GetEventPassTypeTranslations, GetEventPassTypes, GetEventPasses, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSearchValue, GetEventQuestionSearchValues, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventSection, GetEventSectionAddOns, GetEventSectionPassTypes, GetEventSectionQuestions, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccounts, GetEventSessionLocation, GetEventSessionLocationSessions, GetEventSessionLocationTranslation, GetEventSessionLocationTranslations, GetEventSessionLocations, GetEventSessionQuestion, GetEventSessionQuestionTranslation, GetEventSessionQuestionTranslations, GetEventSessionQuestions, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedChannels, GetFeaturedEvents, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImport, GetImportItems, GetImports, GetIntegration, GetIntegrations, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestChannels, GetInterestContents, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoicePayment, GetInvoicePayments, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetOrganization, GetOrganizationDomain, GetOrganizationMembership, GetOrganizationModule, GetOrganizationModuleEditableTiers, GetOrganizationModuleEnabledTiers, GetOrganizationModules, GetOrganizationPage, GetOrganizationPageTranslation, GetOrganizationPageTranslations, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationPaymentLink, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationTrigger, GetOrganizationUsers, GetPayment, GetPayments, GetReport, GetReportParent, GetReportParents, GetReportUsers, GetReports, GetReservationSection, GetReservationSectionLocation, GetReservationSectionLocationTranslation, GetReservationSectionLocationTranslations, GetReservationSectionLocations, GetReservationSectionPassTypes, GetReservationSectionPasses, GetReservationSectionTiers, GetReservationSectionTranslation, GetReservationSectionTranslations, GetReservationSections, GetSelf, GetSelfApiKey, GetSelfApiKeys, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetSubscription, GetSubscriptionPayments, GetSubscriptionProduct, GetSubscriptionProductPrice, GetSubscriptionProductPrices, GetSubscriptionProductSubscriptions, GetSubscriptionProductTiers, GetSubscriptionProducts, GetSubscriptions, GetSupportTicket, GetSupportTickets, GetTaxIntegration, GetTaxIntegrations, GetThread, GetThreadMember, GetThreadMembers, GetThreadMessage, type GetThreadMessageProps, GetThreadMessageReplies, type GetThreadMessageRepliesProps, GetThreadMessages, type GetThreadMessagesProps, GetThreadModerators, GetThreads, GetTier, GetTierAccounts, GetTierImport, GetTierImportItems, GetTierImports, GetTierSubscribers, GetTiers, GetUnapprovedEvents, GetVideo, GetVideos, type Group, GroupAccess, type GroupCreateInputs, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupMembershipUpdateInputs, type GroupRequest, GroupRequestStatus, type GroupTranslation, type GroupTranslationUpdateInputs, type GroupUpdateInputs, IMAGES_QUERY_KEY, IMAGE_QUERY_KEY, IMAGE_USAGE_QUERY_KEY, IMPORTS_QUERY_KEY, IMPORT_ITEMS_QUERY_KEY, IMPORT_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_CHANNELS_QUERY_KEY, INTEREST_CONTENTS_QUERY_KEY, INTEREST_EVENTS_QUERY_KEY, INTEREST_GROUPS_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_LINE_ITEMS_QUERY_KEY, INVOICE_LINE_ITEM_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_PAYMENT_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, ImportType, type InfiniteQueryOptions, type InfiniteQueryParams, type Integration, type IntegrationCreateInputs, IntegrationType, type IntegrationUpdateInputs, type Interest, type InterestCreateInputs, 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, type LeadCreateInputs, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkPreview, MergeInfinitePages, type ModulePermissions, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, NotificationType, 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_PAGE_QUERY_KEY, ORGANIZATION_PAGE_TRANSLATIONS_QUERY_KEY, ORGANIZATION_PAGE_TRANSLATION_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_LINK_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_TEAM_MEMBERS_QUERY_KEY, ORGANIZATION_TEAM_MEMBER_QUERY_KEY, ORGANIZATION_TRIGGER_QUERY_KEY, ORGANIZATION_USERS_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, type Page, type PageTranslation, PageType, PassTypeAccessLevel, type PassTypeCreateInputs, type PassTypePriceScheduleCreateInputs, type PassTypePriceScheduleUpdateInputs, type PassTypeRefundScheduleCreateInputs, type PassTypeRefundScheduleUpdateInputs, type PassTypeTranslationUpdateInputs, type PassTypeUpdateInputs, PassTypeVisibility, type Payment, type PaymentIntegration, type PaymentIntentPurchaseMetadataInputs, PaymentType, type PaypalActivationFormParams, type PermissionDomain, type PermissionType, type PushDevice, PushDeviceAppType, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_PARENTS_QUERY_KEY, REPORT_PARENT_QUERY_KEY, REPORT_QUERY_KEY, REPORT_USERS_QUERY_KEY, RefundOrganizationPayment, type RefundOrganizationPaymentParams, type RegistrationBypass, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionChoiceSubQuestion, type RegistrationQuestionChoiceTranslation, type RegistrationQuestionResponse, type RegistrationQuestionResponseChange, type RegistrationQuestionSearchValue, type RegistrationQuestionTranslation, RegistrationQuestionType, type RegistrationQuestionWithResponse, type RegistrationSection, type RegistrationSectionQuestion, type RegistrationSectionTranslation, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveAccountDelegate, type RemoveAccountDelegateParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveActivityInterest, type RemoveActivityInterestParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveEventAccessUser, RemoveEventAddOnPassType, type RemoveEventAddOnPassTypeParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventPassAddOn, type RemoveEventPassAddOnParams, RemoveEventPassReservation, type RemoveEventPassReservationParams, RemoveEventPassTypeAddOn, type RemoveEventPassTypeAddOnParams, RemoveEventPassTypeTier, type RemoveEventPassTypeTierParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventReservationSectionPassType, type RemoveEventReservationSectionPassTypeParams, RemoveEventReservationSectionTier, type RemoveEventReservationSectionTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionPassType, type RemoveEventSectionPassTypeParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionLocationSession, type RemoveEventSessionLocationSessionParams, 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, RemoveOrganizationModuleEditableTier, type RemoveOrganizationModuleEditableTierParams, RemoveOrganizationModuleEnabledTier, type RemoveOrganizationModuleEnabledTierParams, RemoveReportUser, type RemoveReportUserParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSubscriptionProductTier, type RemoveSubscriptionProductTierParams, RemoveThreadMember, type RemoveThreadMemberParams, RemoveThreadModerator, type RemoveThreadModeratorParams, RemoveTierAccount, type RemoveTierAccountParams, RemoveTierAccounts, type RemoveTierAccountsParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventQuestionChoiceSubQuestions, type ReorderEventQuestionChoiceSubQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, ReorderEventSessionQuestions, type ReorderEventSessionQuestionsParams, type Report, type ReportCreateInputs, type ReportParent, ReportType, type ReportUpdateInputs, ResendRegistrationConfirmationEmail, type ResendRegistrationConfirmationEmailParams, 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_AUTH_SESSIONS_QUERY_DATA, SET_ACCOUNT_COMMENTS_QUERY_DATA, SET_ACCOUNT_DELEGATES_QUERY_DATA, SET_ACCOUNT_DELEGATE_OF_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_LEVELS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_PAYMENTS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_RESHARES_QUERY_DATA, SET_ACCOUNT_SUBSCRIPTIONS_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_INTEREST_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ACTIVITY_RESHARES_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_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_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_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_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_PASSES_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_COUPONS_QUERY_DATA, SET_EVENT_COUPON_PASSES_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_CO_HOSTS_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_ON_SITE_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_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_PASS_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_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_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_SEARCH_VALUES_QUERY_DATA, SET_EVENT_QUESTION_SEARCH_VALUE_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_RESERVATION_SECTIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_PASSES_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_PASS_TYPES_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATION_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_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_QUERY_DATA, SET_EVENT_SESSION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_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_SPONSORS_QUERY_DATA, SET_EVENT_SPONSOR_ACCOUNTS_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_FEATURED_EVENTS_QUERY_DATA, SET_FILES_QUERY_DATA, SET_FILE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INTERESTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_INVITATION_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_MODERATORS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_GROUP_TRANSLATIONS_QUERY_DATA, SET_GROUP_TRANSLATION_QUERY_DATA, SET_IMAGES_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_IMAGE_USAGE_QUERY_DATA, SET_IMPORT_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_QUERY_DATA, SET_INTEREST_CHANNELS_QUERY_DATA, SET_INTEREST_CONTENTS_QUERY_DATA, SET_INTEREST_EVENTS_QUERY_DATA, SET_INTEREST_GROUPS_QUERY_DATA, SET_INTEREST_QUERY_DATA, SET_INVOICES_QUERY_DATA, SET_INVOICE_LINE_ITEMS_QUERY_DATA, SET_INVOICE_LINE_ITEM_QUERY_DATA, SET_INVOICE_PAYMENTS_QUERY_DATA, SET_INVOICE_PAYMENT_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_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_PAGE_QUERY_DATA, SET_ORGANIZATION_PAGE_TRANSLATIONS_QUERY_DATA, SET_ORGANIZATION_PAGE_TRANSLATION_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATION_QUERY_DATA, SET_ORGANIZATION_QUERY_DATA, SET_ORGANIZATION_STRIPE_LINK_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBERS_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBER_QUERY_DATA, SET_ORGANIZATION_TRIGGER_QUERY_DATA, SET_ORGANIZATION_USERS_QUERY_DATA, SET_PASS_TYPE_COUPONS_QUERY_DATA, SET_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_PARENTS_QUERY_DATA, SET_REPORT_PARENT_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_REPORT_USERS_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_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PAYMENTS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCTS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_PRICES_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_PRICE_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_TIERS_QUERY_DATA, SET_SUBSCRIPTION_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_TAX_INTEGRATIONS_QUERY_DATA, SET_TAX_INTEGRATION_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REPLIES_QUERY_DATA, SET_THREAD_MODERATORS_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_UNAPPROVED_EVENTS_QUERY_DATA, SET_VIDEOS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_INPUTS_QUERY_KEY, STREAM_INPUT_OUTPUTS_QUERY_KEY, STREAM_INPUT_OUTPUT_QUERY_KEY, STREAM_QUERY_KEY, SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PAYMENTS_QUERY_KEY, SUBSCRIPTION_PRODUCTS_QUERY_KEY, SUBSCRIPTION_PRODUCT_PRICES_QUERY_KEY, SUBSCRIPTION_PRODUCT_PRICE_QUERY_KEY, SUBSCRIPTION_PRODUCT_QUERY_KEY, SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY, SUBSCRIPTION_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, type Schedule, type SearchField, SearchOrganization, SelectEventPassReservation, type SelectEventPassReservationParams, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, type Series, type SeriesCreateInputs, type SeriesUpdateInputs, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StreamInput, type StreamInputConfig, type StreamInputCreateInputs, type StreamInputDetails, type StreamInputOutput, type StreamInputOutputCreateInputs, type StreamInputOutputUpdateInputs, type StreamInputUpdateInputs, type StreamOutputCreateInputs, type Subscription, type SubscriptionCreateInputs, type SubscriptionPayment, type SubscriptionProduct, type SubscriptionProductCreateInputs, type SubscriptionProductPrice, type SubscriptionProductPriceCreateInputs, SubscriptionProductPriceInterval, SubscriptionProductPriceType, type SubscriptionProductPriceUpdateInputs, type SubscriptionProductUpdateInputs, SubscriptionStatus, type SubscriptionUpdateInputs, type SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, type SupportTicketNoteCreateInputs, type SupportTicketNoteUpdateInputs, SupportTicketState, SupportTicketType, type SupportTicketUpdateInputs, SwitchImage, type SwitchImageParams, TAX_INTEGRATIONS_QUERY_KEY, TAX_INTEGRATION_QUERY_KEY, THREADS_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MEMBER_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REPLIES_QUERY_KEY, THREAD_MODERATORS_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 TaxIntegration, type TaxIntegrationCreateInputs, TaxIntegrationType, type TaxIntegrationUpdateInputs, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, type Thread, ThreadAccessLevel, type ThreadCreateInputs, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, ThreadMemberRole, type ThreadMessage, type ThreadMessageReaction, ThreadMessageType, 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, UNAPPROVED_EVENTS_QUERY_KEY, UpdateAccount, UpdateAccountAddress, type UpdateAccountAddressParams, UpdateAccountCognitoUserPassword, type UpdateAccountCognitoUserPasswordParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateAnnouncementTranslation, type UpdateAnnouncementTranslationParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateEvent, UpdateEventActivation, UpdateEventActivationCompletion, type UpdateEventActivationCompletionParams, type UpdateEventActivationParams, UpdateEventActivationTranslation, type UpdateEventActivationTranslationParams, UpdateEventAddOn, type UpdateEventAddOnParams, UpdateEventAddOnTranslation, type UpdateEventAddOnTranslationParams, UpdateEventAttendee, 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, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, type UpdateEventPassParams, UpdateEventPassResponse, type UpdateEventPassResponseParams, UpdateEventPassResponses, type UpdateEventPassResponsesParams, UpdateEventPassType, type UpdateEventPassTypeParams, UpdateEventPassTypePriceSchedule, UpdateEventPassTypeRefundSchedule, UpdateEventPassTypeTranslation, type UpdateEventPassTypeTranslationParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionSearchValue, type UpdateEventQuestionSearchValueParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, UpdateEventReservationSection, UpdateEventReservationSectionLocation, type UpdateEventReservationSectionLocationParams, UpdateEventReservationSectionLocationTranslation, type UpdateEventReservationSectionLocationTranslationParams, type UpdateEventReservationSectionParams, UpdateEventReservationSectionTranslation, type UpdateEventReservationSectionTranslationParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, UpdateEventSessionLocation, type UpdateEventSessionLocationParams, UpdateEventSessionLocationTranslation, type UpdateEventSessionLocationTranslationParams, type UpdateEventSessionParams, UpdateEventSessionQuestion, type UpdateEventSessionQuestionParams, UpdateEventSessionQuestionTranslation, type UpdateEventSessionQuestionTranslationParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, 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, UpdateOrganization, UpdateOrganizationDomain, type UpdateOrganizationDomainParams, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationModule, type UpdateOrganizationModuleParams, UpdateOrganizationPage, type UpdateOrganizationPageParams, UpdateOrganizationPageTranslation, type UpdateOrganizationPageTranslationParams, type UpdateOrganizationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationTrigger, type UpdateOrganizationTriggerParams, UpdateReport, type UpdateReportParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateStream, UpdateStreamConfig, type UpdateStreamConfigParams, UpdateStreamInputOutput, type UpdateStreamInputOutputParams, type UpdateStreamParams, UpdateSubscription, type UpdateSubscriptionParams, UpdateSubscriptionProduct, type UpdateSubscriptionProductParams, UpdateSubscriptionProductPrice, type UpdateSubscriptionProductPriceParams, UpdateSupportTicket, type UpdateSupportTicketParams, UpdateThread, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, type User, type UserApiKey, type UserApiKeyCreateInputs, type UserCreateInputs, type UserImageUpdateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_QUERY_KEY, type Video, VideoSource, VideoStatus, type VideoUpdateInputs, isUUID, setFirstPageData, useAcceptGroupRequest, useAddAccountDelegate, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddActivityInterest, useAddChannelSubscriber, useAddEventAccessUser, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventReservationSectionPassType, useAddEventReservationSectionTier, useAddEventSectionAddOn, useAddEventSectionPassType, useAddEventSectionQuestion, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionLocationSession, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddOrganizationModuleEditableTier, useAddOrganizationModuleEnabledTier, useAddOrganizationUser, useAddReportUser, useAddSeriesEvent, useAddSubscriptionProductTier, useAddThreadMember, useAddThreadModerator, useAddTierAccount, useApproveEvent, useCancelAnnouncementSchedule, useCancelChannelContentPublishSchedule, useCancelEventPass, useCancelGroupInvitation, useCancelSubscription, useCheckinAllAttendeePasses, useConfirmAccountCognitoUser, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventAttendee, useCreateEventCoupon, useCreateEventEmailTranslation, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventPassTypeTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionSearchValues, useCreateEventQuestionTranslation, useCreateEventRegistrationBypass, useCreateEventReservationSection, useCreateEventReservationSectionLocation, useCreateEventReservationSectionLocationTranslation, useCreateEventReservationSectionTranslation, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionLocation, useCreateEventSessionLocationTranslation, useCreateEventSessionQuestion, useCreateEventSessionQuestionTranslation, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateIntegration, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateOrganizationPageTranslation, useCreateOrganizationPaymentIntegration, useCreateOrganizationTeamMember, useCreateReport, useCreateSelfApiKey, useCreateSeries, useCreateStreamInput, useCreateStreamInputOutput, useCreateSubscription, useCreateSubscriptionProduct, useCreateSubscriptionProductPrice, useCreateSupportTicket, useCreateSupportTicketNote, useCreateTaxIntegration, useCreateThread, useCreateTier, useDeleteAccount, useDeleteAccountAddress, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventCoupon, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventPass, useDeleteEventPassType, useDeleteEventPassTypePriceSchedule, useDeleteEventPassTypeRefundSchedule, useDeleteEventPassTypeTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionSearchValue, useDeleteEventQuestionSearchValues, useDeleteEventQuestionTranslation, useDeleteEventRegistrationBypass, useDeleteEventReservationSection, useDeleteEventReservationSectionLocation, useDeleteEventReservationSectionLocationTranslation, useDeleteEventReservationSectionTranslation, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionLocation, useDeleteEventSessionLocationTranslation, useDeleteEventSessionQuestion, useDeleteEventSessionQuestionTranslation, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupInvitation, useDeleteGroupRequest, useDeleteGroupTranslation, useDeleteImage, useDeleteIntegration, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteManyImages, useDeleteManyVideos, useDeleteOrganizationDomain, useDeleteOrganizationPageTranslation, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteReport, useDeleteSelfApiKey, useDeleteSeries, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSubscriptionProduct, useDeleteSubscriptionProductPrice, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteTaxIntegration, useDeleteThread, useDeleteTier, useDeleteUserImage, useDeleteVideo, useEventGetPassTypeCoupons, useExportAccount, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountAddress, useGetAccountAddresses, useGetAccountAuthSessions, useGetAccountCognitoUser, useGetAccountCognitoUsers, useGetAccountComments, useGetAccountDelegateOf, useGetAccountDelegates, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountLevels, useGetAccountLikes, useGetAccountPayments, useGetAccountReshares, useGetAccountSubscriptions, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityInterests, useGetActivityLikes, useGetActivityReshares, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAnnouncement, useGetAnnouncementAudience, useGetAnnouncementEmailReceipts, useGetAnnouncementTranslation, useGetAnnouncementTranslations, useGetAnnouncements, useGetAuthSession, useGetAuthSessions, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeTransfersLogs, useGetEventAttendees, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponPasses, useGetEventCoupons, useGetEventEmail, useGetEventEmailTranslation, useGetEventEmailTranslations, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventOnSite, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPass, useGetEventPassAddOns, useGetEventPassAttendeePasses, useGetEventPassQuestionSections, useGetEventPassResponse, useGetEventPassResponseChanges, useGetEventPassResponses, useGetEventPassTransferLogs, useGetEventPassType, useGetEventPassTypeAddOns, useGetEventPassTypePasses, useGetEventPassTypePriceSchedule, useGetEventPassTypePriceSchedules, useGetEventPassTypeRefundSchedule, useGetEventPassTypeRefundSchedules, useGetEventPassTypeTiers, useGetEventPassTypeTranslation, useGetEventPassTypeTranslations, useGetEventPassTypes, useGetEventPasses, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSearchValue, useGetEventQuestionSearchValues, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionPassTypes, useGetEventSectionQuestions, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccounts, useGetEventSessionLocation, useGetEventSessionLocationSessions, useGetEventSessionLocationTranslation, useGetEventSessionLocationTranslations, useGetEventSessionLocations, useGetEventSessionQuestion, useGetEventSessionQuestionTranslation, useGetEventSessionQuestionTranslations, useGetEventSessionQuestions, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedChannels, useGetFeaturedEvents, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImport, useGetImportItems, useGetImports, useGetIntegration, useGetIntegrations, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestChannels, useGetInterestContents, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoicePayment, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetOrganization, useGetOrganizationDomain, useGetOrganizationMembership, useGetOrganizationModule, useGetOrganizationModuleEditableTiers, useGetOrganizationModuleEnabledTiers, useGetOrganizationModules, useGetOrganizationPage, useGetOrganizationPageTranslation, useGetOrganizationPageTranslations, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationPaymentLink, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationTrigger, useGetOrganizationUsers, useGetPayment, useGetPayments, useGetReport, useGetReportParent, useGetReportParents, useGetReportUsers, useGetReports, useGetReservationSection, useGetReservationSectionLocation, useGetReservationSectionLocationTranslation, useGetReservationSectionLocationTranslations, useGetReservationSectionLocations, useGetReservationSectionPassTypes, useGetReservationSectionPasses, useGetReservationSectionTiers, useGetReservationSectionTranslation, useGetReservationSectionTranslations, useGetReservationSections, useGetSelf, useGetSelfApiKey, useGetSelfApiKeys, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetSubscription, useGetSubscriptionPayments, useGetSubscriptionProduct, useGetSubscriptionProductPrice, useGetSubscriptionProductPrices, useGetSubscriptionProductSubscriptions, useGetSubscriptionProductTiers, useGetSubscriptionProducts, useGetSubscriptions, useGetSupportTicket, useGetSupportTickets, useGetTaxIntegration, useGetTaxIntegrations, useGetThread, useGetThreadMember, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageReplies, useGetThreadMessages, useGetThreadModerators, useGetThreads, useGetTier, useGetTierAccounts, useGetTierImport, useGetTierImportItems, useGetTierImports, useGetTierSubscribers, useGetTiers, useGetUnapprovedEvents, useGetVideo, useGetVideos, useImpersonateAccount, useRefundOrganizationPayment, useReinviteGroupInvitation, useRejectGroupRequest, useRemoveAccountDelegate, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveActivityInterest, useRemoveChannelSubscriber, useRemoveEventAccessUser, useRemoveEventAddOnPassType, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventPageImage, useRemoveEventPassAddOn, useRemoveEventPassReservation, useRemoveEventPassTypeAddOn, useRemoveEventPassTypeTier, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventReservationSectionPassType, useRemoveEventReservationSectionTier, useRemoveEventSectionAddOn, useRemoveEventSectionPassType, useRemoveEventSectionQuestion, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionLocationSession, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveOrganizationModuleEditableTier, useRemoveOrganizationModuleEnabledTier, useRemoveReportUser, useRemoveSeriesEvent, useRemoveSubscriptionProductTier, useRemoveThreadMember, useRemoveThreadModerator, useRemoveTierAccount, useRemoveTierAccounts, useReorderEventFaqSectionQuestions, useReorderEventQuestionChoiceSubQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useReorderEventSessionQuestions, useResendRegistrationConfirmationEmail, useSearchOrganization, useSelectEventPassReservation, useSelfLeaveOrganization, useSwitchImage, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountCognitoUserPassword, useUpdateActivity, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassType, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionSearchValue, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, useUpdateEventReservationSection, useUpdateEventReservationSectionLocation, useUpdateEventReservationSectionLocationTranslation, useUpdateEventReservationSectionTranslation, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionLocation, useUpdateEventSessionLocationTranslation, useUpdateEventSessionQuestion, useUpdateEventSessionQuestionTranslation, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateIntegration, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateThread, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile };
19259
+ export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_QUERY_KEY, ACCOUNT_AUTH_SESSIONS_QUERY_KEY, ACCOUNT_COGNITO_USERS_QUERY_KEY, ACCOUNT_COGNITO_USER_QUERY_KEY, ACCOUNT_COMMENTS_QUERY_KEY, ACCOUNT_DELEGATES_QUERY_KEY, ACCOUNT_DELEGATE_OF_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_LEVELS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_PAYMENTS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_RESHARES_QUERY_KEY, ACCOUNT_SUBSCRIPTIONS_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_INTERESTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ACTIVITY_RESHARES_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, type AccountAddress, type AccountAddressCreateInputs, type AccountAddressUpdateInputs, type AccountCreateInputs, AccountType, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityUpdateInputs, AddAccountDelegate, type AddAccountDelegateParams, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddActivityInterest, type AddActivityInterestParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddEventAccessUser, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventPageImage, type AddEventPageImageParams, AddEventPassAddOn, type AddEventPassAddOnParams, AddEventPassTypeAddOn, type AddEventPassTypeAddOnParams, AddEventPassTypeTier, type AddEventPassTypeTierParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventRoomTypeTier, type AddEventRoomTypeTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionPassType, type AddEventSectionPassTypeParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionLocationSession, type AddEventSessionLocationSessionParams, 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, AddOrganizationModuleEditableTier, type AddOrganizationModuleEditableTierParams, AddOrganizationModuleEnabledTier, type AddOrganizationModuleEnabledTierParams, AddOrganizationUser, type AddOrganizationUserParams, AddReportUser, type AddReportUserParams, AddSeriesEvent, type AddSeriesEventParams, AddSubscriptionProductTier, type AddSubscriptionProductTierParams, AddThreadMember, type AddThreadMemberParams, AddThreadModerator, type AddThreadModeratorParams, AddTierAccount, type AddTierAccountParams, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, type AnnouncementTranslation, type AnnouncementTranslationUpdateInputs, type AnnouncementUpdateInputs, AppendInfiniteQuery, ApproveEvent, type ApproveEventParams, AuthLayout, type AuthSession, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAccount, type BaseAccountAddress, type BaseActivationCompletion, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCognitoUser, type BaseCoupon, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventAttendee, type BaseEventEmail, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPage, type BaseEventPass, type BaseEventPassType, type BaseEventPassTypePriceSchedule, type BaseEventPassTypeRefundSchedule, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSession, type BaseEventSessionLocation, type BaseEventSessionPass, type BaseEventSessionQuestion, type BaseEventSessionQuestionResponse, type BaseEventSpeaker, 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 BaseLevel, type BaseLike, type BaseLinkPreview, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BasePage, type BasePayment, type BaseRegistrationBypass, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseSchedule, type BaseSeries, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionPayment, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseThreadMessageReaction, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, 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, CacheIndividualQueries, 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, CheckinAllAttendeePasses, type CheckinAllAttendeePassesParams, type CognitoUser, ConfirmAccountCognitoUser, type ConfirmAccountCognitoUserParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, CreateAccountAddress, type CreateAccountAddressParams, type CreateAccountParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateAnnouncementTranslation, type CreateAnnouncementTranslationParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventActivationTranslation, type CreateEventActivationTranslationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAddOnTranslation, type CreateEventAddOnTranslationParams, CreateEventAttendee, type CreateEventAttendeeParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventEmailTranslation, type CreateEventEmailTranslationParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, 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, CreateEventQuestionSearchValues, type CreateEventQuestionSearchValuesParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, CreateEventRoomType, type CreateEventRoomTypeParams, CreateEventRoomTypeTranslation, type CreateEventRoomTypeTranslationParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, CreateEventSessionLocation, type CreateEventSessionLocationParams, CreateEventSessionLocationTranslation, type CreateEventSessionLocationTranslationParams, type CreateEventSessionParams, CreateEventSessionQuestion, type CreateEventSessionQuestionParams, CreateEventSessionQuestionTranslation, type CreateEventSessionQuestionTranslationParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, 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, CreateOrganizationPageTranslation, type CreateOrganizationPageTranslationParams, CreateOrganizationPaymentIntegration, type CreateOrganizationPaymentIntegrationParams, CreateOrganizationTeamMember, type CreateOrganizationTeamMemberParams, CreateReport, type CreateReportParams, CreateSelfApiKey, type CreateSelfApiKeyParams, CreateSeries, type CreateSeriesParams, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSubscription, type CreateSubscriptionParams, CreateSubscriptionProduct, type CreateSubscriptionProductParams, CreateSubscriptionProductPrice, type CreateSubscriptionProductPriceParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateTaxIntegration, type CreateTaxIntegrationParams, CreateThread, type CreateThreadParams, CreateTier, type CreateTierParams, Currency, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteEvent, DeleteEventActivation, DeleteEventActivationCompletion, type DeleteEventActivationCompletionParams, type DeleteEventActivationParams, DeleteEventActivationTranslation, type DeleteEventActivationTranslationParams, DeleteEventAddOn, type DeleteEventAddOnParams, DeleteEventAddOnTranslation, type DeleteEventAddOnTranslationParams, DeleteEventAttendee, type DeleteEventAttendeeParams, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventEmailTranslation, type DeleteEventEmailTranslationParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, 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, DeleteEventQuestionSearchValue, type DeleteEventQuestionSearchValueParams, DeleteEventQuestionSearchValues, type DeleteEventQuestionSearchValuesParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, DeleteEventRoomType, type DeleteEventRoomTypeParams, DeleteEventRoomTypeTranslation, type DeleteEventRoomTypeTranslationParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, DeleteEventSessionLocation, type DeleteEventSessionLocationParams, DeleteEventSessionLocationTranslation, type DeleteEventSessionLocationTranslationParams, type DeleteEventSessionParams, DeleteEventSessionQuestion, type DeleteEventSessionQuestionParams, DeleteEventSessionQuestionTranslation, type DeleteEventSessionQuestionTranslationParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, 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, DeleteManyImages, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteOrganizationDomain, type DeleteOrganizationDomainParams, DeleteOrganizationPageTranslation, type DeleteOrganizationPageTranslationParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteReport, type DeleteReportParams, DeleteSelfApiKey, type DeleteSelfApiKeyParams, DeleteSeries, type DeleteSeriesParams, DeleteStreamInput, DeleteStreamInputOutput, type DeleteStreamInputOutputParams, type DeleteStreamInputParams, DeleteSubscriptionProduct, type DeleteSubscriptionProductParams, DeleteSubscriptionProductPrice, type DeleteSubscriptionProductPriceParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteTaxIntegration, type DeleteTaxIntegrationParams, DeleteThread, type DeleteThreadParams, DeleteTier, type DeleteTierParams, DeleteUserImage, type DeleteUserImageParams, DeleteVideo, type DeleteVideoParams, type DomainDetails, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCESS_USERS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_COMPLETIONS_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_PASSES_QUERY_KEY, EVENT_ATTENDEE_PAYMENTS_QUERY_KEY, EVENT_ATTENDEE_QUERY_KEY, EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_PASSES_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_CO_HOSTS_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_ON_SITE_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_ADD_ONS_QUERY_KEY, EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY, EVENT_PASS_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_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_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_SEARCH_VALUES_QUERY_KEY, EVENT_QUESTION_SEARCH_VALUE_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_ROOM_TYPES_QUERY_KEY, EVENT_ROOM_TYPE_PASSES_QUERY_KEY, EVENT_ROOM_TYPE_QUERY_KEY, EVENT_ROOM_TYPE_TIERS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATIONS_QUERY_KEY, EVENT_ROOM_TYPE_TRANSLATION_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_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_QUERY_KEY, EVENT_SESSION_QUESTIONS_QUERY_KEY, EVENT_SESSION_QUESTION_QUERY_KEY, EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_KEY, EVENT_SESSION_QUESTION_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_SPONSORS_QUERY_KEY, EVENT_SPONSOR_ACCOUNTS_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, type Event, type EventActivation, type EventActivationCompletionCreateInputs, type EventActivationCompletionUpdateInputs, type EventActivationCreateInputs, type EventActivationTranslation, type EventActivationTranslationUpdateInputs, type EventActivationUpdateInputs, type EventAddOn, type EventAddOnCreateInputs, type EventAddOnTranslation, type EventAddOnTranslationUpdateInputs, type EventAddOnUpdateInputs, type EventAnnouncementFilters, type EventAttendee, 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, EventGetPassTypeCoupons, type EventListing, type EventOnSite, type EventOnSiteBadgeField, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPass, type EventPassCreateInputs, EventPassStatus, type EventPassType, type EventPassTypePriceSchedule, type EventPassTypeRefundSchedule, type EventPassTypeTranslation, type EventPassUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionSearchInputs, type EventQuestionSearchValueUpdateInputs, type EventQuestionSearchValuesCreateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypeAddOnDetailsUpdateInputs, type EventRoomTypeCreateInputs, type EventRoomTypePassTypeDetails, type EventRoomTypePassTypeDetailsUpdateInputs, type EventRoomTypeReservation, type EventRoomTypeTranslation, type EventRoomTypeTranslationUpdateInputs, type EventRoomTypeUpdateInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionCreateInputs, type EventSessionLocation, type EventSessionLocationCreateInputs, type EventSessionLocationTranslation, type EventSessionLocationTranslationUpdateInputs, type EventSessionLocationUpdateInputs, type EventSessionPass, type EventSessionQuestion, type EventSessionQuestionCreateInputs, type EventSessionQuestionResponse, type EventSessionQuestionTranslation, type EventSessionQuestionTranslationUpdateInputs, type EventSessionQuestionUpdateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, ExportAccount, type ExportAccountParams, ExportStatus, FEATURED_CHANNELS_QUERY_KEY, FEATURED_EVENTS_QUERY_KEY, FILES_QUERY_KEY, FILE_QUERY_KEY, type Faq, type FaqSection, type FaqSectionTranslation, type FaqTranslation, type File, FileSource, type FileUpdateInputs, GROUPS_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INTERESTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_INVITATION_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_MODERATORS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GROUP_TRANSLATIONS_QUERY_KEY, GROUP_TRANSLATION_QUERY_KEY, GetAPILog, GetAPILogs, GetAcccountEmailReceipts, GetAccount, GetAccountActivities, GetAccountAddress, GetAccountAddresses, GetAccountAuthSessions, GetAccountCognitoUser, GetAccountCognitoUsers, GetAccountComments, GetAccountDelegateOf, GetAccountDelegates, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountLevels, GetAccountLikes, GetAccountPayments, GetAccountReshares, GetAccountSubscriptions, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityInterests, GetActivityLikes, GetActivityReshares, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAllEventAddOns, GetAllEventPassTypes, GetAnnouncement, GetAnnouncementAudience, GetAnnouncementEmailReceipts, GetAnnouncementTranslation, GetAnnouncementTranslations, GetAnnouncements, GetAuthSession, GetAuthSessions, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeTransfersLogs, GetEventAttendees, GetEventCoHosts, GetEventCoupon, GetEventCouponPasses, GetEventCoupons, GetEventEmail, GetEventEmailTranslation, GetEventEmailTranslations, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventOnSite, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPass, GetEventPassAddOns, GetEventPassAttendeePasses, GetEventPassQuestionSections, GetEventPassResponse, GetEventPassResponseChanges, GetEventPassResponses, GetEventPassTransferLogs, GetEventPassType, GetEventPassTypeAddOns, GetEventPassTypePasses, GetEventPassTypePriceSchedule, GetEventPassTypePriceSchedules, GetEventPassTypeRefundSchedule, GetEventPassTypeRefundSchedules, GetEventPassTypeTiers, GetEventPassTypeTranslation, GetEventPassTypeTranslations, GetEventPassTypes, GetEventPasses, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSearchValue, GetEventQuestionSearchValues, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventRoomType, GetEventRoomTypePasses, GetEventRoomTypeTiers, GetEventRoomTypeTranslation, GetEventRoomTypeTranslations, GetEventRoomTypes, GetEventSection, GetEventSectionAddOns, GetEventSectionPassTypes, GetEventSectionQuestions, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccounts, GetEventSessionLocation, GetEventSessionLocationSessions, GetEventSessionLocationTranslation, GetEventSessionLocationTranslations, GetEventSessionLocations, GetEventSessionQuestion, GetEventSessionQuestionTranslation, GetEventSessionQuestionTranslations, GetEventSessionQuestions, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedChannels, GetFeaturedEvents, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImport, GetImportItems, GetImports, GetIntegration, GetIntegrations, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestChannels, GetInterestContents, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoicePayment, GetInvoicePayments, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetOrganization, GetOrganizationDomain, GetOrganizationMembership, GetOrganizationModule, GetOrganizationModuleEditableTiers, GetOrganizationModuleEnabledTiers, GetOrganizationModules, GetOrganizationPage, GetOrganizationPageTranslation, GetOrganizationPageTranslations, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationPaymentLink, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationTrigger, GetOrganizationUsers, GetPayment, GetPayments, GetReport, GetReportParent, GetReportParents, GetReportUsers, GetReports, GetSelf, GetSelfApiKey, GetSelfApiKeys, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetSubscription, GetSubscriptionPayments, GetSubscriptionProduct, GetSubscriptionProductPrice, GetSubscriptionProductPrices, GetSubscriptionProductSubscriptions, GetSubscriptionProductTiers, GetSubscriptionProducts, GetSubscriptions, GetSupportTicket, GetSupportTickets, GetTaxIntegration, GetTaxIntegrations, GetThread, GetThreadMember, GetThreadMembers, GetThreadMessage, type GetThreadMessageProps, GetThreadMessageReplies, type GetThreadMessageRepliesProps, GetThreadMessages, type GetThreadMessagesProps, GetThreadModerators, GetThreads, GetTier, GetTierAccounts, GetTierImport, GetTierImportItems, GetTierImports, GetTierSubscribers, GetTiers, GetUnapprovedEvents, GetVideo, GetVideos, type Group, GroupAccess, type GroupCreateInputs, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupMembershipUpdateInputs, type GroupRequest, GroupRequestStatus, type GroupTranslation, type GroupTranslationUpdateInputs, type GroupUpdateInputs, IMAGES_QUERY_KEY, IMAGE_QUERY_KEY, IMAGE_USAGE_QUERY_KEY, IMPORTS_QUERY_KEY, IMPORT_ITEMS_QUERY_KEY, IMPORT_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_CHANNELS_QUERY_KEY, INTEREST_CONTENTS_QUERY_KEY, INTEREST_EVENTS_QUERY_KEY, INTEREST_GROUPS_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_LINE_ITEMS_QUERY_KEY, INVOICE_LINE_ITEM_QUERY_KEY, INVOICE_PAYMENTS_QUERY_KEY, INVOICE_PAYMENT_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, ImportType, type InfiniteQueryOptions, type InfiniteQueryParams, type Integration, type IntegrationCreateInputs, IntegrationType, type IntegrationUpdateInputs, type Interest, type InterestCreateInputs, 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, type LeadCreateInputs, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkPreview, MergeInfinitePages, type ModulePermissions, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, NotificationType, 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_PAGE_QUERY_KEY, ORGANIZATION_PAGE_TRANSLATIONS_QUERY_KEY, ORGANIZATION_PAGE_TRANSLATION_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_LINK_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_TEAM_MEMBERS_QUERY_KEY, ORGANIZATION_TEAM_MEMBER_QUERY_KEY, ORGANIZATION_TRIGGER_QUERY_KEY, ORGANIZATION_USERS_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, type Page, type PageTranslation, PageType, PassTypeAccessLevel, type PassTypeCreateInputs, type PassTypePriceScheduleCreateInputs, type PassTypePriceScheduleUpdateInputs, type PassTypeRefundScheduleCreateInputs, type PassTypeRefundScheduleUpdateInputs, type PassTypeTranslationUpdateInputs, type PassTypeUpdateInputs, PassTypeVisibility, type Payment, type PaymentIntegration, type PaymentIntentPurchaseMetadataInputs, PaymentType, type PaypalActivationFormParams, type PermissionDomain, type PermissionType, type PushDevice, PushDeviceAppType, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_PARENTS_QUERY_KEY, REPORT_PARENT_QUERY_KEY, REPORT_QUERY_KEY, REPORT_USERS_QUERY_KEY, RefundOrganizationPayment, type RefundOrganizationPaymentParams, type RegistrationBypass, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionChoiceSubQuestion, type RegistrationQuestionChoiceTranslation, type RegistrationQuestionResponse, type RegistrationQuestionResponseChange, type RegistrationQuestionSearchValue, type RegistrationQuestionTranslation, RegistrationQuestionType, type RegistrationQuestionWithResponse, type RegistrationSection, type RegistrationSectionQuestion, type RegistrationSectionTranslation, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveAccountDelegate, type RemoveAccountDelegateParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveActivityInterest, type RemoveActivityInterestParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveEventAccessUser, RemoveEventAddOnPassType, type RemoveEventAddOnPassTypeParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventPassAddOn, type RemoveEventPassAddOnParams, RemoveEventPassTypeAddOn, type RemoveEventPassTypeAddOnParams, RemoveEventPassTypeTier, type RemoveEventPassTypeTierParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventRoomTypeTier, type RemoveEventRoomTypeTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionPassType, type RemoveEventSectionPassTypeParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionLocationSession, type RemoveEventSessionLocationSessionParams, 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, RemoveOrganizationModuleEditableTier, type RemoveOrganizationModuleEditableTierParams, RemoveOrganizationModuleEnabledTier, type RemoveOrganizationModuleEnabledTierParams, RemoveReportUser, type RemoveReportUserParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSubscriptionProductTier, type RemoveSubscriptionProductTierParams, RemoveThreadMember, type RemoveThreadMemberParams, RemoveThreadModerator, type RemoveThreadModeratorParams, RemoveTierAccount, type RemoveTierAccountParams, RemoveTierAccounts, type RemoveTierAccountsParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventQuestionChoiceSubQuestions, type ReorderEventQuestionChoiceSubQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, ReorderEventSessionQuestions, type ReorderEventSessionQuestionsParams, type Report, type ReportCreateInputs, type ReportParent, ReportType, type ReportUpdateInputs, ResendRegistrationConfirmationEmail, type ResendRegistrationConfirmationEmailParams, 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_AUTH_SESSIONS_QUERY_DATA, SET_ACCOUNT_COMMENTS_QUERY_DATA, SET_ACCOUNT_DELEGATES_QUERY_DATA, SET_ACCOUNT_DELEGATE_OF_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_LEVELS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_PAYMENTS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_RESHARES_QUERY_DATA, SET_ACCOUNT_SUBSCRIPTIONS_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_INTEREST_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ACTIVITY_RESHARES_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_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_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_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_PASSES_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_COUPONS_QUERY_DATA, SET_EVENT_COUPON_PASSES_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_CO_HOSTS_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_ON_SITE_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_ADD_ONS_QUERY_DATA, SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_PASS_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_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_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_SEARCH_VALUES_QUERY_DATA, SET_EVENT_QUESTION_SEARCH_VALUE_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_ROOM_TYPES_QUERY_DATA, SET_EVENT_ROOM_TYPE_PASSES_QUERY_DATA, SET_EVENT_ROOM_TYPE_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_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_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_QUERY_DATA, SET_EVENT_SESSION_QUESTIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_QUERY_DATA, SET_EVENT_SESSION_QUESTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_SESSION_QUESTION_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_SPONSORS_QUERY_DATA, SET_EVENT_SPONSOR_ACCOUNTS_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_FEATURED_EVENTS_QUERY_DATA, SET_FILES_QUERY_DATA, SET_FILE_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INTERESTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_INVITATION_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_MODERATORS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_GROUP_TRANSLATIONS_QUERY_DATA, SET_GROUP_TRANSLATION_QUERY_DATA, SET_IMAGES_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_IMAGE_USAGE_QUERY_DATA, SET_IMPORT_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_QUERY_DATA, SET_INTEREST_CHANNELS_QUERY_DATA, SET_INTEREST_CONTENTS_QUERY_DATA, SET_INTEREST_EVENTS_QUERY_DATA, SET_INTEREST_GROUPS_QUERY_DATA, SET_INTEREST_QUERY_DATA, SET_INVOICES_QUERY_DATA, SET_INVOICE_LINE_ITEMS_QUERY_DATA, SET_INVOICE_LINE_ITEM_QUERY_DATA, SET_INVOICE_PAYMENTS_QUERY_DATA, SET_INVOICE_PAYMENT_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_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_PAGE_QUERY_DATA, SET_ORGANIZATION_PAGE_TRANSLATIONS_QUERY_DATA, SET_ORGANIZATION_PAGE_TRANSLATION_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATIONS_QUERY_DATA, SET_ORGANIZATION_PAYMENT_INTEGRATION_QUERY_DATA, SET_ORGANIZATION_QUERY_DATA, SET_ORGANIZATION_STRIPE_LINK_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBERS_QUERY_DATA, SET_ORGANIZATION_TEAM_MEMBER_QUERY_DATA, SET_ORGANIZATION_TRIGGER_QUERY_DATA, SET_ORGANIZATION_USERS_QUERY_DATA, SET_PASS_TYPE_COUPONS_QUERY_DATA, SET_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_PARENTS_QUERY_DATA, SET_REPORT_PARENT_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_REPORT_USERS_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_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PAYMENTS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCTS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_PRICES_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_PRICE_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_DATA, SET_SUBSCRIPTION_PRODUCT_TIERS_QUERY_DATA, SET_SUBSCRIPTION_QUERY_DATA, SET_SUPPORT_TICKETS_QUERY_DATA, SET_SUPPORT_TICKET_QUERY_DATA, SET_TAX_INTEGRATIONS_QUERY_DATA, SET_TAX_INTEGRATION_QUERY_DATA, SET_THREADS_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_MESSAGE_REPLIES_QUERY_DATA, SET_THREAD_MODERATORS_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_UNAPPROVED_EVENTS_QUERY_DATA, SET_VIDEOS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_INPUTS_QUERY_KEY, STREAM_INPUT_OUTPUTS_QUERY_KEY, STREAM_INPUT_OUTPUT_QUERY_KEY, STREAM_QUERY_KEY, SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PAYMENTS_QUERY_KEY, SUBSCRIPTION_PRODUCTS_QUERY_KEY, SUBSCRIPTION_PRODUCT_PRICES_QUERY_KEY, SUBSCRIPTION_PRODUCT_PRICE_QUERY_KEY, SUBSCRIPTION_PRODUCT_QUERY_KEY, SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY, SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY, SUBSCRIPTION_QUERY_KEY, SUPPORT_TICKETS_QUERY_KEY, SUPPORT_TICKET_QUERY_KEY, type Schedule, type SearchField, SearchOrganization, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, type Series, type SeriesCreateInputs, type SeriesUpdateInputs, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StreamInput, type StreamInputConfig, type StreamInputCreateInputs, type StreamInputDetails, type StreamInputOutput, type StreamInputOutputCreateInputs, type StreamInputOutputUpdateInputs, type StreamInputUpdateInputs, type StreamOutputCreateInputs, type Subscription, type SubscriptionCreateInputs, type SubscriptionPayment, type SubscriptionProduct, type SubscriptionProductCreateInputs, type SubscriptionProductPrice, type SubscriptionProductPriceCreateInputs, SubscriptionProductPriceInterval, SubscriptionProductPriceType, type SubscriptionProductPriceUpdateInputs, type SubscriptionProductUpdateInputs, SubscriptionStatus, type SubscriptionUpdateInputs, type SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, type SupportTicketNoteCreateInputs, type SupportTicketNoteUpdateInputs, SupportTicketState, SupportTicketType, type SupportTicketUpdateInputs, SwitchImage, type SwitchImageParams, TAX_INTEGRATIONS_QUERY_KEY, TAX_INTEGRATION_QUERY_KEY, THREADS_QUERY_KEY, THREAD_MEMBERS_QUERY_KEY, THREAD_MEMBER_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_MESSAGE_REPLIES_QUERY_KEY, THREAD_MODERATORS_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 TaxIntegration, type TaxIntegrationCreateInputs, TaxIntegrationType, type TaxIntegrationUpdateInputs, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, type Thread, ThreadAccessLevel, type ThreadCreateInputs, type ThreadInvitation, ThreadInvitationStatus, type ThreadMember, ThreadMemberRole, type ThreadMessage, type ThreadMessageReaction, ThreadMessageType, 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, UNAPPROVED_EVENTS_QUERY_KEY, UpdateAccount, UpdateAccountAddress, type UpdateAccountAddressParams, UpdateAccountCognitoUserPassword, type UpdateAccountCognitoUserPasswordParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateAnnouncementTranslation, type UpdateAnnouncementTranslationParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateEvent, UpdateEventActivation, UpdateEventActivationCompletion, type UpdateEventActivationCompletionParams, type UpdateEventActivationParams, UpdateEventActivationTranslation, type UpdateEventActivationTranslationParams, UpdateEventAddOn, type UpdateEventAddOnParams, UpdateEventAddOnTranslation, type UpdateEventAddOnTranslationParams, UpdateEventAttendee, 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, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, type UpdateEventPassParams, UpdateEventPassResponse, type UpdateEventPassResponseParams, UpdateEventPassResponses, type UpdateEventPassResponsesParams, UpdateEventPassType, type UpdateEventPassTypeParams, UpdateEventPassTypePriceSchedule, UpdateEventPassTypeRefundSchedule, UpdateEventPassTypeTranslation, type UpdateEventPassTypeTranslationParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionSearchValue, type UpdateEventQuestionSearchValueParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, UpdateEventRoomType, UpdateEventRoomTypeAddOnDetails, type UpdateEventRoomTypeAddOnDetailsParams, type UpdateEventRoomTypeParams, UpdateEventRoomTypePassTypeDetails, type UpdateEventRoomTypePassTypeDetailsParams, UpdateEventRoomTypeTranslation, type UpdateEventRoomTypeTranslationParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, UpdateEventSessionLocation, type UpdateEventSessionLocationParams, UpdateEventSessionLocationTranslation, type UpdateEventSessionLocationTranslationParams, type UpdateEventSessionParams, UpdateEventSessionQuestion, type UpdateEventSessionQuestionParams, UpdateEventSessionQuestionTranslation, type UpdateEventSessionQuestionTranslationParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, 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, UpdateOrganization, UpdateOrganizationDomain, type UpdateOrganizationDomainParams, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationModule, type UpdateOrganizationModuleParams, UpdateOrganizationPage, type UpdateOrganizationPageParams, UpdateOrganizationPageTranslation, type UpdateOrganizationPageTranslationParams, type UpdateOrganizationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationTrigger, type UpdateOrganizationTriggerParams, UpdateReport, type UpdateReportParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateStream, UpdateStreamConfig, type UpdateStreamConfigParams, UpdateStreamInputOutput, type UpdateStreamInputOutputParams, type UpdateStreamParams, UpdateSubscription, type UpdateSubscriptionParams, UpdateSubscriptionProduct, type UpdateSubscriptionProductParams, UpdateSubscriptionProductPrice, type UpdateSubscriptionProductPriceParams, UpdateSupportTicket, type UpdateSupportTicketParams, UpdateThread, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, type User, type UserApiKey, type UserApiKeyCreateInputs, type UserCreateInputs, type UserImageUpdateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_QUERY_KEY, type Video, VideoSource, VideoStatus, type VideoUpdateInputs, isUUID, setFirstPageData, useAcceptGroupRequest, useAddAccountDelegate, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddActivityInterest, useAddChannelSubscriber, useAddEventAccessUser, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventRoomTypeTier, useAddEventSectionAddOn, useAddEventSectionPassType, useAddEventSectionQuestion, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionLocationSession, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddOrganizationModuleEditableTier, useAddOrganizationModuleEnabledTier, useAddOrganizationUser, useAddReportUser, useAddSeriesEvent, useAddSubscriptionProductTier, useAddThreadMember, useAddThreadModerator, useAddTierAccount, useApproveEvent, useCancelAnnouncementSchedule, useCancelChannelContentPublishSchedule, useCancelEventPass, useCancelGroupInvitation, useCancelSubscription, useCheckinAllAttendeePasses, useConfirmAccountCognitoUser, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventAttendee, useCreateEventCoupon, useCreateEventEmailTranslation, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventPassTypeTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionSearchValues, useCreateEventQuestionTranslation, useCreateEventRegistrationBypass, useCreateEventRoomType, useCreateEventRoomTypeTranslation, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionLocation, useCreateEventSessionLocationTranslation, useCreateEventSessionQuestion, useCreateEventSessionQuestionTranslation, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateIntegration, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateOrganizationPageTranslation, useCreateOrganizationPaymentIntegration, useCreateOrganizationTeamMember, useCreateReport, useCreateSelfApiKey, useCreateSeries, useCreateStreamInput, useCreateStreamInputOutput, useCreateSubscription, useCreateSubscriptionProduct, useCreateSubscriptionProductPrice, useCreateSupportTicket, useCreateSupportTicketNote, useCreateTaxIntegration, useCreateThread, useCreateTier, useDeleteAccount, useDeleteAccountAddress, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventCoupon, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventPass, useDeleteEventPassType, useDeleteEventPassTypePriceSchedule, useDeleteEventPassTypeRefundSchedule, useDeleteEventPassTypeTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionSearchValue, useDeleteEventQuestionSearchValues, useDeleteEventQuestionTranslation, useDeleteEventRegistrationBypass, useDeleteEventRoomType, useDeleteEventRoomTypeTranslation, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionLocation, useDeleteEventSessionLocationTranslation, useDeleteEventSessionQuestion, useDeleteEventSessionQuestionTranslation, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupInvitation, useDeleteGroupRequest, useDeleteGroupTranslation, useDeleteImage, useDeleteIntegration, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteManyImages, useDeleteManyVideos, useDeleteOrganizationDomain, useDeleteOrganizationPageTranslation, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteReport, useDeleteSelfApiKey, useDeleteSeries, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSubscriptionProduct, useDeleteSubscriptionProductPrice, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteTaxIntegration, useDeleteThread, useDeleteTier, useDeleteUserImage, useDeleteVideo, useEventGetPassTypeCoupons, useExportAccount, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountAddress, useGetAccountAddresses, useGetAccountAuthSessions, useGetAccountCognitoUser, useGetAccountCognitoUsers, useGetAccountComments, useGetAccountDelegateOf, useGetAccountDelegates, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountLevels, useGetAccountLikes, useGetAccountPayments, useGetAccountReshares, useGetAccountSubscriptions, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityInterests, useGetActivityLikes, useGetActivityReshares, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAllEventAddOns, useGetAllEventPassTypes, useGetAnnouncement, useGetAnnouncementAudience, useGetAnnouncementEmailReceipts, useGetAnnouncementTranslation, useGetAnnouncementTranslations, useGetAnnouncements, useGetAuthSession, useGetAuthSessions, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeTransfersLogs, useGetEventAttendees, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponPasses, useGetEventCoupons, useGetEventEmail, useGetEventEmailTranslation, useGetEventEmailTranslations, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventOnSite, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPass, useGetEventPassAddOns, useGetEventPassAttendeePasses, useGetEventPassQuestionSections, useGetEventPassResponse, useGetEventPassResponseChanges, useGetEventPassResponses, useGetEventPassTransferLogs, useGetEventPassType, useGetEventPassTypeAddOns, useGetEventPassTypePasses, useGetEventPassTypePriceSchedule, useGetEventPassTypePriceSchedules, useGetEventPassTypeRefundSchedule, useGetEventPassTypeRefundSchedules, useGetEventPassTypeTiers, useGetEventPassTypeTranslation, useGetEventPassTypeTranslations, useGetEventPassTypes, useGetEventPasses, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSearchValue, useGetEventQuestionSearchValues, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventRoomType, useGetEventRoomTypePasses, useGetEventRoomTypeTiers, useGetEventRoomTypeTranslation, useGetEventRoomTypeTranslations, useGetEventRoomTypes, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionPassTypes, useGetEventSectionQuestions, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccounts, useGetEventSessionLocation, useGetEventSessionLocationSessions, useGetEventSessionLocationTranslation, useGetEventSessionLocationTranslations, useGetEventSessionLocations, useGetEventSessionQuestion, useGetEventSessionQuestionTranslation, useGetEventSessionQuestionTranslations, useGetEventSessionQuestions, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedChannels, useGetFeaturedEvents, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImport, useGetImportItems, useGetImports, useGetIntegration, useGetIntegrations, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestChannels, useGetInterestContents, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoicePayment, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetOrganization, useGetOrganizationDomain, useGetOrganizationMembership, useGetOrganizationModule, useGetOrganizationModuleEditableTiers, useGetOrganizationModuleEnabledTiers, useGetOrganizationModules, useGetOrganizationPage, useGetOrganizationPageTranslation, useGetOrganizationPageTranslations, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationPaymentLink, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationTrigger, useGetOrganizationUsers, useGetPayment, useGetPayments, useGetReport, useGetReportParent, useGetReportParents, useGetReportUsers, useGetReports, useGetSelf, useGetSelfApiKey, useGetSelfApiKeys, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetSubscription, useGetSubscriptionPayments, useGetSubscriptionProduct, useGetSubscriptionProductPrice, useGetSubscriptionProductPrices, useGetSubscriptionProductSubscriptions, useGetSubscriptionProductTiers, useGetSubscriptionProducts, useGetSubscriptions, useGetSupportTicket, useGetSupportTickets, useGetTaxIntegration, useGetTaxIntegrations, useGetThread, useGetThreadMember, useGetThreadMembers, useGetThreadMessage, useGetThreadMessageReplies, useGetThreadMessages, useGetThreadModerators, useGetThreads, useGetTier, useGetTierAccounts, useGetTierImport, useGetTierImportItems, useGetTierImports, useGetTierSubscribers, useGetTiers, useGetUnapprovedEvents, useGetVideo, useGetVideos, useImpersonateAccount, useRefundOrganizationPayment, useReinviteGroupInvitation, useRejectGroupRequest, useRemoveAccountDelegate, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveActivityInterest, useRemoveChannelSubscriber, useRemoveEventAccessUser, useRemoveEventAddOnPassType, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventPageImage, useRemoveEventPassAddOn, useRemoveEventPassTypeAddOn, useRemoveEventPassTypeTier, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventRoomTypeTier, useRemoveEventSectionAddOn, useRemoveEventSectionPassType, useRemoveEventSectionQuestion, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionLocationSession, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveOrganizationModuleEditableTier, useRemoveOrganizationModuleEnabledTier, useRemoveReportUser, useRemoveSeriesEvent, useRemoveSubscriptionProductTier, useRemoveThreadMember, useRemoveThreadModerator, useRemoveTierAccount, useRemoveTierAccounts, useReorderEventFaqSectionQuestions, useReorderEventQuestionChoiceSubQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useReorderEventSessionQuestions, useResendRegistrationConfirmationEmail, useSearchOrganization, useSelfLeaveOrganization, useSwitchImage, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountCognitoUserPassword, useUpdateActivity, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassType, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionSearchValue, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, useUpdateEventRoomType, useUpdateEventRoomTypeAddOnDetails, useUpdateEventRoomTypePassTypeDetails, useUpdateEventRoomTypeTranslation, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionLocation, useUpdateEventSessionLocationTranslation, useUpdateEventSessionQuestion, useUpdateEventSessionQuestionTranslation, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateIntegration, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateThread, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile };