@connectedxm/admin 1.6.1 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursorrules +0 -0
- package/dist/index.d.mts +641 -235
- package/dist/index.d.ts +641 -235
- package/dist/index.js +1061 -461
- package/dist/index.mjs +1018 -460
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1404,7 +1404,7 @@ interface PageTranslation {
|
|
|
1404
1404
|
createdAt: string;
|
|
1405
1405
|
updatedAt: string;
|
|
1406
1406
|
}
|
|
1407
|
-
declare enum
|
|
1407
|
+
declare enum PurchaseStatus {
|
|
1408
1408
|
draft = "draft",
|
|
1409
1409
|
canceled = "canceled",
|
|
1410
1410
|
needsInfo = "needsInfo",
|
|
@@ -1423,7 +1423,7 @@ interface BaseEventPass {
|
|
|
1423
1423
|
createdAt: string;
|
|
1424
1424
|
};
|
|
1425
1425
|
responses: BaseRegistrationQuestionResponse[];
|
|
1426
|
-
status:
|
|
1426
|
+
status: PurchaseStatus;
|
|
1427
1427
|
reservationId: string | null;
|
|
1428
1428
|
reservation: BaseEventRoomTypeReservation | null;
|
|
1429
1429
|
couponId: string | null;
|
|
@@ -2698,7 +2698,7 @@ interface BaseBooking {
|
|
|
2698
2698
|
day: string;
|
|
2699
2699
|
time: string;
|
|
2700
2700
|
duration: number;
|
|
2701
|
-
status:
|
|
2701
|
+
status: PurchaseStatus;
|
|
2702
2702
|
account: BaseAccount;
|
|
2703
2703
|
space: BaseBookingSpace;
|
|
2704
2704
|
}
|
|
@@ -2753,6 +2753,48 @@ interface BaseDashboard {
|
|
|
2753
2753
|
interface Dashboard extends BaseDashboard {
|
|
2754
2754
|
widgets: BaseDashboardWidget[];
|
|
2755
2755
|
}
|
|
2756
|
+
interface BaseEventPackage {
|
|
2757
|
+
id: string;
|
|
2758
|
+
name: string;
|
|
2759
|
+
description: string | null;
|
|
2760
|
+
price: number;
|
|
2761
|
+
isActive: boolean;
|
|
2762
|
+
}
|
|
2763
|
+
interface EventPackage extends BaseEventPackage {
|
|
2764
|
+
passes: BaseEventPackagePass[];
|
|
2765
|
+
createdAt: string;
|
|
2766
|
+
updatedAt: string;
|
|
2767
|
+
}
|
|
2768
|
+
interface EventPackageTranslation {
|
|
2769
|
+
id: string;
|
|
2770
|
+
locale: string;
|
|
2771
|
+
name: string | null;
|
|
2772
|
+
description: string | null;
|
|
2773
|
+
}
|
|
2774
|
+
interface BaseEventPackagePass {
|
|
2775
|
+
id: string;
|
|
2776
|
+
passTypeId: string;
|
|
2777
|
+
passType: BaseEventPassType;
|
|
2778
|
+
quantity: number;
|
|
2779
|
+
}
|
|
2780
|
+
interface EventPackagePass extends BaseEventPackagePass {
|
|
2781
|
+
createdAt: string;
|
|
2782
|
+
updatedAt: string;
|
|
2783
|
+
}
|
|
2784
|
+
interface BaseAttendeePackage {
|
|
2785
|
+
id: string;
|
|
2786
|
+
attendeeId: string;
|
|
2787
|
+
packageId: string;
|
|
2788
|
+
package: BaseEventPackage;
|
|
2789
|
+
status: PurchaseStatus;
|
|
2790
|
+
amtPaid: number;
|
|
2791
|
+
amtRefunded: number;
|
|
2792
|
+
}
|
|
2793
|
+
interface AttendeePackage extends BaseAttendeePackage {
|
|
2794
|
+
passes: BaseEventPackagePass[];
|
|
2795
|
+
createdAt: string;
|
|
2796
|
+
updatedAt: string;
|
|
2797
|
+
}
|
|
2756
2798
|
|
|
2757
2799
|
interface ConnectedXMClientContextState {
|
|
2758
2800
|
queryClient: QueryClient;
|
|
@@ -3336,13 +3378,13 @@ interface EventPageUpdateInputs {
|
|
|
3336
3378
|
sortOrder?: number | string | null;
|
|
3337
3379
|
}
|
|
3338
3380
|
interface EventPassCreateInputs {
|
|
3339
|
-
status?:
|
|
3381
|
+
status?: PurchaseStatus | null;
|
|
3340
3382
|
location?: string | null;
|
|
3341
3383
|
usedAt?: string | null;
|
|
3342
3384
|
ticketId?: string | null;
|
|
3343
3385
|
}
|
|
3344
3386
|
interface EventPassUpdateInputs {
|
|
3345
|
-
status?:
|
|
3387
|
+
status?: PurchaseStatus | null;
|
|
3346
3388
|
location?: string | null;
|
|
3347
3389
|
usedAt?: string | null;
|
|
3348
3390
|
ticketId?: string | null;
|
|
@@ -4377,35 +4419,67 @@ interface BookingCreateInputs {
|
|
|
4377
4419
|
accountId: string;
|
|
4378
4420
|
day: string;
|
|
4379
4421
|
time: string;
|
|
4380
|
-
status?:
|
|
4422
|
+
status?: PurchaseStatus;
|
|
4381
4423
|
}
|
|
4382
4424
|
interface BookingUpdateInputs {
|
|
4383
|
-
status?:
|
|
4425
|
+
status?: PurchaseStatus;
|
|
4384
4426
|
day?: string;
|
|
4385
4427
|
time?: string;
|
|
4386
4428
|
}
|
|
4387
4429
|
interface UpdateEventPassResponseInputs {
|
|
4388
4430
|
value: string;
|
|
4389
4431
|
}
|
|
4390
|
-
interface
|
|
4432
|
+
interface DashboardCreateInputs {
|
|
4391
4433
|
name: string;
|
|
4392
4434
|
eventId?: string;
|
|
4393
4435
|
}
|
|
4394
|
-
interface
|
|
4436
|
+
interface DashboardUpdateInputs {
|
|
4395
4437
|
name?: string;
|
|
4396
4438
|
}
|
|
4397
|
-
interface
|
|
4439
|
+
interface DashboardWidgetCreateInputs {
|
|
4398
4440
|
x: number;
|
|
4399
4441
|
y: number;
|
|
4400
4442
|
w: number;
|
|
4401
4443
|
h: number;
|
|
4402
4444
|
}
|
|
4403
|
-
interface
|
|
4445
|
+
interface DashboardWidgetUpdateInputs {
|
|
4404
4446
|
x?: number;
|
|
4405
4447
|
y?: number;
|
|
4406
4448
|
w?: number;
|
|
4407
4449
|
h?: number;
|
|
4408
4450
|
}
|
|
4451
|
+
interface EventPackageCreateInputs {
|
|
4452
|
+
name: string;
|
|
4453
|
+
description?: string | null;
|
|
4454
|
+
price: number;
|
|
4455
|
+
isActive?: boolean;
|
|
4456
|
+
}
|
|
4457
|
+
interface EventPackageUpdateInputs {
|
|
4458
|
+
name?: string;
|
|
4459
|
+
description?: string | null;
|
|
4460
|
+
price?: number;
|
|
4461
|
+
isActive?: boolean;
|
|
4462
|
+
}
|
|
4463
|
+
interface EventPackagePassCreateInputs {
|
|
4464
|
+
passTypeId: string;
|
|
4465
|
+
quantity: number;
|
|
4466
|
+
}
|
|
4467
|
+
interface EventPackagePassUpdateInputs {
|
|
4468
|
+
passTypeId?: string;
|
|
4469
|
+
quantity?: number;
|
|
4470
|
+
}
|
|
4471
|
+
interface AttendeeEventPackageCreateInputs {
|
|
4472
|
+
packageId: string;
|
|
4473
|
+
attendeeId: string;
|
|
4474
|
+
}
|
|
4475
|
+
interface AttendeeEventPackageUpdateInputs {
|
|
4476
|
+
packageId?: string;
|
|
4477
|
+
attendeeId?: string;
|
|
4478
|
+
}
|
|
4479
|
+
interface EventPackageTranslationUpdateInputs {
|
|
4480
|
+
name?: string | null;
|
|
4481
|
+
description?: string | null;
|
|
4482
|
+
}
|
|
4409
4483
|
|
|
4410
4484
|
declare const AppendInfiniteQuery: <TData>(queryClient: QueryClient, key: QueryKey, newData: any) => void;
|
|
4411
4485
|
|
|
@@ -5819,16 +5893,16 @@ declare const useGetBookingPlace: (placeId?: string, options?: SingleQueryOption
|
|
|
5819
5893
|
* @category Keys
|
|
5820
5894
|
* @group Bookings
|
|
5821
5895
|
*/
|
|
5822
|
-
declare const BOOKING_PLACE_BOOKINGS_QUERY_KEY: (placeId: string, past?: boolean, status?:
|
|
5896
|
+
declare const BOOKING_PLACE_BOOKINGS_QUERY_KEY: (placeId: string, past?: boolean, status?: PurchaseStatus) => string[];
|
|
5823
5897
|
/**
|
|
5824
5898
|
* @category Setters
|
|
5825
5899
|
* @group Bookings
|
|
5826
5900
|
*/
|
|
5827
|
-
declare const SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, past?: boolean | undefined, status?:
|
|
5901
|
+
declare const SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, past?: boolean | undefined, status?: PurchaseStatus | undefined], response: Awaited<ReturnType<typeof GetBookingPlaceBookings>>) => void;
|
|
5828
5902
|
interface GetBookingPlaceBookingsProps extends InfiniteQueryParams {
|
|
5829
5903
|
placeId: string;
|
|
5830
5904
|
past?: boolean;
|
|
5831
|
-
status?:
|
|
5905
|
+
status?: PurchaseStatus;
|
|
5832
5906
|
}
|
|
5833
5907
|
/**
|
|
5834
5908
|
* @category Queries
|
|
@@ -5839,7 +5913,7 @@ declare const GetBookingPlaceBookings: ({ placeId, past, status, pageParam, page
|
|
|
5839
5913
|
* @category Hooks
|
|
5840
5914
|
* @group Bookings
|
|
5841
5915
|
*/
|
|
5842
|
-
declare const useGetBookingPlaceBookings: (placeId?: string, past?: boolean, status?:
|
|
5916
|
+
declare const useGetBookingPlaceBookings: (placeId?: string, past?: boolean, status?: PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookingPlaceBookings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Booking[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5843
5917
|
|
|
5844
5918
|
/**
|
|
5845
5919
|
* @category Keys
|
|
@@ -6045,17 +6119,17 @@ declare const useGetBookingSpaceBlackouts: (placeId?: string, spaceId?: string,
|
|
|
6045
6119
|
* @category Keys
|
|
6046
6120
|
* @group Bookings
|
|
6047
6121
|
*/
|
|
6048
|
-
declare const BOOKING_SPACE_BOOKINGS_QUERY_KEY: (placeId: string, spaceId: string, past?: boolean, status?:
|
|
6122
|
+
declare const BOOKING_SPACE_BOOKINGS_QUERY_KEY: (placeId: string, spaceId: string, past?: boolean, status?: PurchaseStatus) => string[];
|
|
6049
6123
|
/**
|
|
6050
6124
|
* @category Setters
|
|
6051
6125
|
* @group Bookings
|
|
6052
6126
|
*/
|
|
6053
|
-
declare const SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, past?: boolean | undefined, status?:
|
|
6127
|
+
declare const SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, past?: boolean | undefined, status?: PurchaseStatus | undefined], response: Awaited<ReturnType<typeof GetBookingSpaceBookings>>) => void;
|
|
6054
6128
|
interface GetBookingSpaceBookingsProps extends InfiniteQueryParams {
|
|
6055
6129
|
placeId: string;
|
|
6056
6130
|
spaceId: string;
|
|
6057
6131
|
past?: boolean;
|
|
6058
|
-
status?:
|
|
6132
|
+
status?: PurchaseStatus;
|
|
6059
6133
|
}
|
|
6060
6134
|
/**
|
|
6061
6135
|
* @category Queries
|
|
@@ -6066,7 +6140,7 @@ declare const GetBookingSpaceBookings: ({ placeId, spaceId, status, past, pagePa
|
|
|
6066
6140
|
* @category Hooks
|
|
6067
6141
|
* @group Bookings
|
|
6068
6142
|
*/
|
|
6069
|
-
declare const useGetBookingSpaceBookings: (placeId?: string, spaceId?: string, past?: boolean, status?:
|
|
6143
|
+
declare const useGetBookingSpaceBookings: (placeId?: string, spaceId?: string, past?: boolean, status?: PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookingSpaceBookings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Booking[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6070
6144
|
|
|
6071
6145
|
/**
|
|
6072
6146
|
* @category Keys
|
|
@@ -6649,6 +6723,79 @@ declare const GetFeaturedChannels: ({ pageParam, pageSize, orderBy, search, admi
|
|
|
6649
6723
|
*/
|
|
6650
6724
|
declare const useGetFeaturedChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetFeaturedChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6651
6725
|
|
|
6726
|
+
/**
|
|
6727
|
+
* @category Keys
|
|
6728
|
+
* @group Dashboards
|
|
6729
|
+
*/
|
|
6730
|
+
declare const DASHBOARD_QUERY_KEY: (dashboardId: string) => string[];
|
|
6731
|
+
/**
|
|
6732
|
+
* @category Setters
|
|
6733
|
+
* @group Dashboards
|
|
6734
|
+
*/
|
|
6735
|
+
declare const SET_DASHBOARD_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof DASHBOARD_QUERY_KEY>, response: Awaited<ReturnType<typeof GetDashboard>>) => void;
|
|
6736
|
+
interface GetDashboardProps extends SingleQueryParams {
|
|
6737
|
+
dashboardId: string;
|
|
6738
|
+
}
|
|
6739
|
+
/**
|
|
6740
|
+
* @category Queries
|
|
6741
|
+
* @group Dashboards
|
|
6742
|
+
*/
|
|
6743
|
+
declare const GetDashboard: ({ adminApiParams, dashboardId, }: GetDashboardProps) => Promise<ConnectedXMResponse<Dashboard>>;
|
|
6744
|
+
/**
|
|
6745
|
+
* @category Hooks
|
|
6746
|
+
* @group Dashboards
|
|
6747
|
+
*/
|
|
6748
|
+
declare const useGetDashboard: (dashboardId?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboard>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Dashboard>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6749
|
+
|
|
6750
|
+
/**
|
|
6751
|
+
* @category Keys
|
|
6752
|
+
* @group Dashboards
|
|
6753
|
+
*/
|
|
6754
|
+
declare const DASHBOARD_WIDGETS_QUERY_KEY: (dashboardId: string, type?: string) => string[];
|
|
6755
|
+
/**
|
|
6756
|
+
* @category Setters
|
|
6757
|
+
* @group Dashboards
|
|
6758
|
+
*/
|
|
6759
|
+
declare const SET_DASHBOARD_WIDGETS_QUERY_DATA: (client: QueryClient, keyParams: [dashboardId: string, type?: string | undefined], response: Awaited<ReturnType<typeof GetDashboardWidgets>>) => void;
|
|
6760
|
+
interface GetDashboardWidgetsProps extends SingleQueryParams {
|
|
6761
|
+
dashboardId: string;
|
|
6762
|
+
type?: string;
|
|
6763
|
+
}
|
|
6764
|
+
/**
|
|
6765
|
+
* @category Queries
|
|
6766
|
+
* @group Dashboards
|
|
6767
|
+
*/
|
|
6768
|
+
declare const GetDashboardWidgets: ({ adminApiParams, dashboardId, type, }: GetDashboardWidgetsProps) => Promise<ConnectedXMResponse<DashboardWidget[]>>;
|
|
6769
|
+
/**
|
|
6770
|
+
* @category Hooks
|
|
6771
|
+
* @group Dashboards
|
|
6772
|
+
*/
|
|
6773
|
+
declare const useGetDashboardWidgets: (dashboardId: string, type?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardWidgets>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<DashboardWidget[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6774
|
+
|
|
6775
|
+
/**
|
|
6776
|
+
* @category Keys
|
|
6777
|
+
* @group Dashboards
|
|
6778
|
+
*/
|
|
6779
|
+
declare const DASHBOARDS_QUERY_KEY: (eventId?: string) => string[];
|
|
6780
|
+
/**
|
|
6781
|
+
* @category Setters
|
|
6782
|
+
* @group Dashboards
|
|
6783
|
+
*/
|
|
6784
|
+
declare const SET_DASHBOARDS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof DASHBOARDS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetDashboards>>) => void;
|
|
6785
|
+
interface GetDashboardsProps extends InfiniteQueryParams {
|
|
6786
|
+
eventId?: string;
|
|
6787
|
+
}
|
|
6788
|
+
/**
|
|
6789
|
+
* @category Queries
|
|
6790
|
+
* @group Dashboards
|
|
6791
|
+
*/
|
|
6792
|
+
declare const GetDashboards: ({ pageParam, pageSize, orderBy, search, eventId, adminApiParams, }: GetDashboardsProps) => Promise<ConnectedXMResponse<BaseDashboard[]>>;
|
|
6793
|
+
/**
|
|
6794
|
+
* @category Hooks
|
|
6795
|
+
* @group Dashboards
|
|
6796
|
+
*/
|
|
6797
|
+
declare const useGetDashboards: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetDashboards>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseDashboard[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6798
|
+
|
|
6652
6799
|
/**
|
|
6653
6800
|
* @category Key
|
|
6654
6801
|
* @group Emails
|
|
@@ -6690,12 +6837,12 @@ interface GetEmailReceiptsParams extends InfiniteQueryParams {
|
|
|
6690
6837
|
* @category Query
|
|
6691
6838
|
* @group Emails
|
|
6692
6839
|
*/
|
|
6693
|
-
declare const GetEmailReceipts: ({ pageParam, pageSize, orderBy, search, status, adminApiParams, }: GetEmailReceiptsParams) => Promise<ConnectedXMResponse<
|
|
6840
|
+
declare const GetEmailReceipts: ({ pageParam, pageSize, orderBy, search, status, adminApiParams, }: GetEmailReceiptsParams) => Promise<ConnectedXMResponse<BaseEmailReceipt[]>>;
|
|
6694
6841
|
/**
|
|
6695
6842
|
* @category Hooks
|
|
6696
6843
|
* @group Emails
|
|
6697
6844
|
*/
|
|
6698
|
-
declare const useGetEmailReceipts: (status?: EmailReceiptStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEmailReceipts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<
|
|
6845
|
+
declare const useGetEmailReceipts: (status?: EmailReceiptStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEmailReceipts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseEmailReceipt[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
6699
6846
|
|
|
6700
6847
|
/**
|
|
6701
6848
|
* @category Keys
|
|
@@ -7195,7 +7342,7 @@ declare const useGetEventAttendeeCoupons: (eventId?: string, accountId?: string,
|
|
|
7195
7342
|
* @category Keys
|
|
7196
7343
|
* @group Events
|
|
7197
7344
|
*/
|
|
7198
|
-
declare const EVENT_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, accountId: string, status?: keyof typeof
|
|
7345
|
+
declare const EVENT_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, accountId: string, status?: keyof typeof PurchaseStatus) => string[];
|
|
7199
7346
|
/**
|
|
7200
7347
|
* @category Setters
|
|
7201
7348
|
* @group Events
|
|
@@ -7204,7 +7351,7 @@ declare const SET_EVENT_ATTENDEE_PASSES_QUERY_DATA: (client: QueryClient, keyPar
|
|
|
7204
7351
|
interface GetEventAttendeePassesProps extends InfiniteQueryParams {
|
|
7205
7352
|
eventId: string;
|
|
7206
7353
|
accountId: string;
|
|
7207
|
-
status?: keyof typeof
|
|
7354
|
+
status?: keyof typeof PurchaseStatus;
|
|
7208
7355
|
}
|
|
7209
7356
|
/**
|
|
7210
7357
|
* @category Queries
|
|
@@ -7215,7 +7362,7 @@ declare const GetEventAttendeePasses: ({ eventId, accountId, status, pageParam,
|
|
|
7215
7362
|
* @category Hooks
|
|
7216
7363
|
* @group Events
|
|
7217
7364
|
*/
|
|
7218
|
-
declare const useGetEventAttendeePasses: (eventId?: string, accountId?: string, status?: keyof typeof
|
|
7365
|
+
declare const useGetEventAttendeePasses: (eventId?: string, accountId?: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAttendeePasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
7219
7366
|
|
|
7220
7367
|
/**
|
|
7221
7368
|
* @category Keys
|
|
@@ -7271,15 +7418,15 @@ declare const useGetEventAttendeeTransfersLogs: (eventId: string, accountId: str
|
|
|
7271
7418
|
* @category Keys
|
|
7272
7419
|
* @group Events
|
|
7273
7420
|
*/
|
|
7274
|
-
declare const EVENT_ATTENDEES_QUERY_KEY: (eventId: string, status?:
|
|
7421
|
+
declare const EVENT_ATTENDEES_QUERY_KEY: (eventId: string, status?: PurchaseStatus) => string[];
|
|
7275
7422
|
/**
|
|
7276
7423
|
* @category Setters
|
|
7277
7424
|
* @group Events
|
|
7278
7425
|
*/
|
|
7279
|
-
declare const SET_EVENT_ATTENDEES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, status?:
|
|
7426
|
+
declare const SET_EVENT_ATTENDEES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, status?: PurchaseStatus | undefined], response: Awaited<ReturnType<typeof GetEventAttendees>>) => void;
|
|
7280
7427
|
interface GetEventAttendeesProps extends InfiniteQueryParams {
|
|
7281
7428
|
eventId: string;
|
|
7282
|
-
status?:
|
|
7429
|
+
status?: PurchaseStatus;
|
|
7283
7430
|
}
|
|
7284
7431
|
/**
|
|
7285
7432
|
* @category Queries
|
|
@@ -7290,13 +7437,13 @@ declare const GetEventAttendees: ({ eventId, pageParam, pageSize, orderBy, searc
|
|
|
7290
7437
|
* @category Hooks
|
|
7291
7438
|
* @group Events
|
|
7292
7439
|
*/
|
|
7293
|
-
declare const useGetEventAttendees: (eventId: string, status?:
|
|
7440
|
+
declare const useGetEventAttendees: (eventId: string, status?: PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAttendees>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventAttendee[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
7294
7441
|
|
|
7295
7442
|
/**
|
|
7296
7443
|
* @category Keys
|
|
7297
7444
|
* @group Events
|
|
7298
7445
|
*/
|
|
7299
|
-
declare const EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, passId: string, status?: keyof typeof
|
|
7446
|
+
declare const EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, passId: string, status?: keyof typeof PurchaseStatus) => string[];
|
|
7300
7447
|
/**
|
|
7301
7448
|
* @category Setters
|
|
7302
7449
|
* @group Events
|
|
@@ -7305,7 +7452,7 @@ declare const SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA: (client: QueryClient, k
|
|
|
7305
7452
|
interface GetEventPassAttendeePassesProps extends InfiniteQueryParams {
|
|
7306
7453
|
eventId: string;
|
|
7307
7454
|
passId: string;
|
|
7308
|
-
status?: keyof typeof
|
|
7455
|
+
status?: keyof typeof PurchaseStatus;
|
|
7309
7456
|
}
|
|
7310
7457
|
/**
|
|
7311
7458
|
* @category Queries
|
|
@@ -7316,7 +7463,7 @@ declare const GetEventPassAttendeePasses: ({ eventId, passId, status, pageParam,
|
|
|
7316
7463
|
* @category Hooks
|
|
7317
7464
|
* @group Events
|
|
7318
7465
|
*/
|
|
7319
|
-
declare const useGetEventPassAttendeePasses: (eventId?: string, passId?: string, status?: keyof typeof
|
|
7466
|
+
declare const useGetEventPassAttendeePasses: (eventId?: string, passId?: string, status?: keyof typeof PurchaseStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPassAttendeePasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventPass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
7320
7467
|
|
|
7321
7468
|
/**
|
|
7322
7469
|
* @category Keys
|
|
@@ -7813,6 +7960,157 @@ declare const GetEventZplTemplateBadgeField: ({ fieldId, eventId, adminApiParams
|
|
|
7813
7960
|
*/
|
|
7814
7961
|
declare const useGetEventZplTemplateBadgeField: (eventId?: string, fieldId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventZplTemplateBadgeField>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventOnSiteBadgeField>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
7815
7962
|
|
|
7963
|
+
/**
|
|
7964
|
+
* @category Keys
|
|
7965
|
+
* @group Events
|
|
7966
|
+
*/
|
|
7967
|
+
declare const EVENT_PACKAGE_PASS_QUERY_KEY: (eventId: string, packageId: string, passId: string) => string[];
|
|
7968
|
+
/**
|
|
7969
|
+
* @category Setters
|
|
7970
|
+
* @group Events
|
|
7971
|
+
*/
|
|
7972
|
+
declare const SET_EVENT_PACKAGE_PASS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, packageId: string, passId: string], response: Awaited<ReturnType<typeof GetEventPackagePass>>) => void;
|
|
7973
|
+
interface GetEventPackagePassProps extends SingleQueryParams {
|
|
7974
|
+
eventId: string;
|
|
7975
|
+
packageId: string;
|
|
7976
|
+
passId: string;
|
|
7977
|
+
}
|
|
7978
|
+
/**
|
|
7979
|
+
* @category Queries
|
|
7980
|
+
* @group Events
|
|
7981
|
+
*/
|
|
7982
|
+
declare const GetEventPackagePass: ({ eventId, packageId, passId, adminApiParams, }: GetEventPackagePassProps) => Promise<ConnectedXMResponse<EventPackagePass>>;
|
|
7983
|
+
/**
|
|
7984
|
+
* @category Hooks
|
|
7985
|
+
* @group Events
|
|
7986
|
+
*/
|
|
7987
|
+
declare const useGetEventPackagePass: (eventId?: string, packageId?: string, passId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackagePass>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackagePass>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
7988
|
+
|
|
7989
|
+
/**
|
|
7990
|
+
* @category Keys
|
|
7991
|
+
* @group Events
|
|
7992
|
+
*/
|
|
7993
|
+
declare const EVENT_PACKAGE_PASSES_QUERY_KEY: (eventId: string, packageId: string) => string[];
|
|
7994
|
+
/**
|
|
7995
|
+
* @category Setters
|
|
7996
|
+
* @group Events
|
|
7997
|
+
*/
|
|
7998
|
+
declare const SET_EVENT_PACKAGE_PASSES_QUERY_DATA: (client: any, keyParams: [eventId: string, packageId: string], response: Awaited<ReturnType<typeof GetEventPackagePasses>>) => void;
|
|
7999
|
+
interface GetEventPackagePassesProps extends InfiniteQueryParams {
|
|
8000
|
+
eventId: string;
|
|
8001
|
+
packageId: string;
|
|
8002
|
+
}
|
|
8003
|
+
/**
|
|
8004
|
+
* @category Queries
|
|
8005
|
+
* @group Events
|
|
8006
|
+
*/
|
|
8007
|
+
declare const GetEventPackagePasses: ({ eventId, packageId, pageParam, pageSize, search, adminApiParams, }: GetEventPackagePassesProps) => Promise<ConnectedXMResponse<EventPackagePass[]>>;
|
|
8008
|
+
/**
|
|
8009
|
+
* @category Hooks
|
|
8010
|
+
* @group Events
|
|
8011
|
+
*/
|
|
8012
|
+
declare const useGetEventPackagePasses: (eventId?: string, packageId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPackagePasses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventPackagePass[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
8013
|
+
|
|
8014
|
+
/**
|
|
8015
|
+
* @category Keys
|
|
8016
|
+
* @group Events
|
|
8017
|
+
*/
|
|
8018
|
+
declare const EVENT_PACKAGE_TRANSLATION_QUERY_KEY: (eventId: string, packageId: string, locale: string) => string[];
|
|
8019
|
+
/**
|
|
8020
|
+
* @category Setters
|
|
8021
|
+
* @group Events
|
|
8022
|
+
*/
|
|
8023
|
+
declare const SET_EVENT_PACKAGE_TRANSLATION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, packageId: string, locale: string], response: Awaited<ReturnType<typeof GetEventPackageTranslation>>) => void;
|
|
8024
|
+
interface GetEventPackageTranslationProps extends SingleQueryParams {
|
|
8025
|
+
eventId: string;
|
|
8026
|
+
packageId: string;
|
|
8027
|
+
locale: string;
|
|
8028
|
+
}
|
|
8029
|
+
/**
|
|
8030
|
+
* @category Queries
|
|
8031
|
+
* @group Events
|
|
8032
|
+
*/
|
|
8033
|
+
declare const GetEventPackageTranslation: ({ eventId, packageId, locale, adminApiParams, }: GetEventPackageTranslationProps) => Promise<ConnectedXMResponse<EventPackageTranslation>>;
|
|
8034
|
+
/**
|
|
8035
|
+
* @category Hooks
|
|
8036
|
+
* @group Events
|
|
8037
|
+
*/
|
|
8038
|
+
declare const useGetEventPackageTranslation: (eventId?: string, packageId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackageTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackageTranslation>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8039
|
+
|
|
8040
|
+
/**
|
|
8041
|
+
* @category Keys
|
|
8042
|
+
* @group Events
|
|
8043
|
+
*/
|
|
8044
|
+
declare const EVENT_PACKAGE_TRANSLATIONS_QUERY_KEY: (eventId: string, packageId: string) => string[];
|
|
8045
|
+
/**
|
|
8046
|
+
* @category Setters
|
|
8047
|
+
* @group Events
|
|
8048
|
+
*/
|
|
8049
|
+
declare const SET_EVENT_PACKAGE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, packageId: string], response: Awaited<ReturnType<typeof GetEventPackageTranslations>>) => void;
|
|
8050
|
+
interface GetEventPackageTranslationsProps extends InfiniteQueryParams {
|
|
8051
|
+
eventId: string;
|
|
8052
|
+
packageId: string;
|
|
8053
|
+
}
|
|
8054
|
+
/**
|
|
8055
|
+
* @category Queries
|
|
8056
|
+
* @group Events
|
|
8057
|
+
*/
|
|
8058
|
+
declare const GetEventPackageTranslations: ({ eventId, packageId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventPackageTranslationsProps) => Promise<ConnectedXMResponse<EventPackageTranslation[]>>;
|
|
8059
|
+
/**
|
|
8060
|
+
* @category Hooks
|
|
8061
|
+
* @group Events
|
|
8062
|
+
*/
|
|
8063
|
+
declare const useGetEventPackageTranslations: (eventId?: string, packageId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPackageTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventPackageTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
8064
|
+
|
|
8065
|
+
/**
|
|
8066
|
+
* @category Keys
|
|
8067
|
+
* @group Events
|
|
8068
|
+
*/
|
|
8069
|
+
declare const EVENT_PACKAGE_QUERY_KEY: (eventId: string, packageId: string) => string[];
|
|
8070
|
+
/**
|
|
8071
|
+
* @category Setters
|
|
8072
|
+
* @group Events
|
|
8073
|
+
*/
|
|
8074
|
+
declare const SET_EVENT_PACKAGE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, packageId: string], response: Awaited<ReturnType<typeof GetEventPackage>>) => void;
|
|
8075
|
+
interface GetEventPackageProps extends SingleQueryParams {
|
|
8076
|
+
eventId: string;
|
|
8077
|
+
packageId: string;
|
|
8078
|
+
}
|
|
8079
|
+
/**
|
|
8080
|
+
* @category Queries
|
|
8081
|
+
* @group Events
|
|
8082
|
+
*/
|
|
8083
|
+
declare const GetEventPackage: ({ eventId, packageId, adminApiParams, }: GetEventPackageProps) => Promise<ConnectedXMResponse<EventPackage>>;
|
|
8084
|
+
/**
|
|
8085
|
+
* @category Hooks
|
|
8086
|
+
* @group Events
|
|
8087
|
+
*/
|
|
8088
|
+
declare const useGetEventPackage: (eventId?: string, packageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8089
|
+
|
|
8090
|
+
/**
|
|
8091
|
+
* @category Keys
|
|
8092
|
+
* @group Events
|
|
8093
|
+
*/
|
|
8094
|
+
declare const EVENT_PACKAGES_QUERY_KEY: (eventId: string) => string[];
|
|
8095
|
+
/**
|
|
8096
|
+
* @category Setters
|
|
8097
|
+
* @group Events
|
|
8098
|
+
*/
|
|
8099
|
+
declare const SET_EVENT_PACKAGES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PACKAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPackages>>) => void;
|
|
8100
|
+
interface GetEventPackagesProps extends InfiniteQueryParams {
|
|
8101
|
+
eventId: string;
|
|
8102
|
+
}
|
|
8103
|
+
/**
|
|
8104
|
+
* @category Queries
|
|
8105
|
+
* @group Events
|
|
8106
|
+
*/
|
|
8107
|
+
declare const GetEventPackages: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventPackagesProps) => Promise<ConnectedXMResponse<EventPackage[]>>;
|
|
8108
|
+
/**
|
|
8109
|
+
* @category Hooks
|
|
8110
|
+
* @group Events
|
|
8111
|
+
*/
|
|
8112
|
+
declare const useGetEventPackages: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventPackages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventPackage[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
8113
|
+
|
|
7816
8114
|
/**
|
|
7817
8115
|
* @category Keys
|
|
7818
8116
|
* @group Events
|
|
@@ -12682,98 +12980,25 @@ declare const GetVideos: ({ pageParam, pageSize, orderBy, search, source, adminA
|
|
|
12682
12980
|
*/
|
|
12683
12981
|
declare const useGetVideos: (source?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetVideos>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Video[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
12684
12982
|
|
|
12983
|
+
interface MutationParams {
|
|
12984
|
+
adminApiParams: AdminApiParams;
|
|
12985
|
+
queryClient?: QueryClient;
|
|
12986
|
+
}
|
|
12987
|
+
interface ConnectedXMMutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<TResponseData>, TMutationParams> {
|
|
12988
|
+
}
|
|
12989
|
+
declare const useConnectedMutation: <TMutationParams extends MutationParams, TResponseData extends ConnectedXMResponse<any>>(mutation: MutationFunction<TResponseData, TMutationParams>, options?: Omit<ConnectedXMMutationOptions<TResponseData, Omit<TMutationParams, "queryClient" | "adminApiParams">>, "mutationFn">, permission?: {
|
|
12990
|
+
domain: PermissionDomain | PermissionDomain[];
|
|
12991
|
+
type: PermissionType | PermissionType[];
|
|
12992
|
+
}) => _tanstack_react_query.UseMutationResult<TResponseData, AxiosError<TResponseData, any>, Omit<TMutationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
12993
|
+
|
|
12685
12994
|
/**
|
|
12686
|
-
* @category
|
|
12687
|
-
* @group
|
|
12995
|
+
* @category Params
|
|
12996
|
+
* @group Account
|
|
12688
12997
|
*/
|
|
12689
|
-
|
|
12690
|
-
|
|
12691
|
-
|
|
12692
|
-
|
|
12693
|
-
*/
|
|
12694
|
-
declare const SET_DASHBOARDS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof DASHBOARDS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetDashboards>>) => void;
|
|
12695
|
-
interface GetDashboardsProps extends InfiniteQueryParams {
|
|
12696
|
-
eventId?: string;
|
|
12697
|
-
}
|
|
12698
|
-
/**
|
|
12699
|
-
* @category Queries
|
|
12700
|
-
* @group Dashboards
|
|
12701
|
-
*/
|
|
12702
|
-
declare const GetDashboards: ({ pageParam, pageSize, orderBy, search, eventId, adminApiParams, }: GetDashboardsProps) => Promise<ConnectedXMResponse<BaseDashboard[]>>;
|
|
12703
|
-
/**
|
|
12704
|
-
* @category Hooks
|
|
12705
|
-
* @group Dashboards
|
|
12706
|
-
*/
|
|
12707
|
-
declare const useGetDashboards: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetDashboards>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseDashboard[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
12708
|
-
|
|
12709
|
-
/**
|
|
12710
|
-
* @category Keys
|
|
12711
|
-
* @group Dashboards
|
|
12712
|
-
*/
|
|
12713
|
-
declare const DASHBOARD_QUERY_KEY: (dashboardId: string) => string[];
|
|
12714
|
-
/**
|
|
12715
|
-
* @category Setters
|
|
12716
|
-
* @group Dashboards
|
|
12717
|
-
*/
|
|
12718
|
-
declare const SET_DASHBOARD_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof DASHBOARD_QUERY_KEY>, response: Awaited<ReturnType<typeof GetDashboard>>) => void;
|
|
12719
|
-
interface GetDashboardProps extends SingleQueryParams {
|
|
12720
|
-
dashboardId: string;
|
|
12721
|
-
}
|
|
12722
|
-
/**
|
|
12723
|
-
* @category Queries
|
|
12724
|
-
* @group Dashboards
|
|
12725
|
-
*/
|
|
12726
|
-
declare const GetDashboard: ({ adminApiParams, dashboardId, }: GetDashboardProps) => Promise<ConnectedXMResponse<Dashboard>>;
|
|
12727
|
-
/**
|
|
12728
|
-
* @category Hooks
|
|
12729
|
-
* @group Dashboards
|
|
12730
|
-
*/
|
|
12731
|
-
declare const useGetDashboard: (dashboardId?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboard>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Dashboard>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12732
|
-
|
|
12733
|
-
/**
|
|
12734
|
-
* @category Keys
|
|
12735
|
-
* @group Dashboards
|
|
12736
|
-
*/
|
|
12737
|
-
declare const DASHBOARD_WIDGETS_QUERY_KEY: (dashboardId: string, type?: string) => string[];
|
|
12738
|
-
/**
|
|
12739
|
-
* @category Setters
|
|
12740
|
-
* @group Dashboards
|
|
12741
|
-
*/
|
|
12742
|
-
declare const SET_DASHBOARD_WIDGETS_QUERY_DATA: (client: QueryClient, keyParams: [dashboardId: string, type?: string | undefined], response: Awaited<ReturnType<typeof GetDashboardWidgets>>) => void;
|
|
12743
|
-
interface GetDashboardWidgetsProps extends SingleQueryParams {
|
|
12744
|
-
dashboardId: string;
|
|
12745
|
-
type?: string;
|
|
12746
|
-
}
|
|
12747
|
-
/**
|
|
12748
|
-
* @category Queries
|
|
12749
|
-
* @group Dashboards
|
|
12750
|
-
*/
|
|
12751
|
-
declare const GetDashboardWidgets: ({ adminApiParams, dashboardId, type, }: GetDashboardWidgetsProps) => Promise<ConnectedXMResponse<DashboardWidget[]>>;
|
|
12752
|
-
/**
|
|
12753
|
-
* @category Hooks
|
|
12754
|
-
* @group Dashboards
|
|
12755
|
-
*/
|
|
12756
|
-
declare const useGetDashboardWidgets: (dashboardId: string, type?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardWidgets>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<DashboardWidget[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
12757
|
-
|
|
12758
|
-
interface MutationParams {
|
|
12759
|
-
adminApiParams: AdminApiParams;
|
|
12760
|
-
queryClient?: QueryClient;
|
|
12761
|
-
}
|
|
12762
|
-
interface ConnectedXMMutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<TResponseData>, TMutationParams> {
|
|
12763
|
-
}
|
|
12764
|
-
declare const useConnectedMutation: <TMutationParams extends MutationParams, TResponseData extends ConnectedXMResponse<any>>(mutation: MutationFunction<TResponseData, TMutationParams>, options?: Omit<ConnectedXMMutationOptions<TResponseData, Omit<TMutationParams, "queryClient" | "adminApiParams">>, "mutationFn">, permission?: {
|
|
12765
|
-
domain: PermissionDomain | PermissionDomain[];
|
|
12766
|
-
type: PermissionType | PermissionType[];
|
|
12767
|
-
}) => _tanstack_react_query.UseMutationResult<TResponseData, AxiosError<TResponseData, any>, Omit<TMutationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
12768
|
-
|
|
12769
|
-
/**
|
|
12770
|
-
* @category Params
|
|
12771
|
-
* @group Account
|
|
12772
|
-
*/
|
|
12773
|
-
interface AddAccountDelegateParams extends MutationParams {
|
|
12774
|
-
accountId: string;
|
|
12775
|
-
delegateId: string;
|
|
12776
|
-
}
|
|
12998
|
+
interface AddAccountDelegateParams extends MutationParams {
|
|
12999
|
+
accountId: string;
|
|
13000
|
+
delegateId: string;
|
|
13001
|
+
}
|
|
12777
13002
|
/**
|
|
12778
13003
|
* @category Methods
|
|
12779
13004
|
* @group Account
|
|
@@ -14613,6 +14838,119 @@ declare const UpdateChannelSubscriber: ({ accountId, channelId, channelSubscribe
|
|
|
14613
14838
|
*/
|
|
14614
14839
|
declare const useUpdateChannelSubscriber: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateChannelSubscriber>>, Omit<UpdateChannelSubscriberParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BaseChannelSubscriber>, axios.AxiosError<ConnectedXMResponse<BaseChannelSubscriber>, any>, Omit<UpdateChannelSubscriberParams, "queryClient" | "adminApiParams">, unknown>;
|
|
14615
14840
|
|
|
14841
|
+
/**
|
|
14842
|
+
* @category Params
|
|
14843
|
+
* @group Dashboard
|
|
14844
|
+
*/
|
|
14845
|
+
interface CreateDashboardParams extends MutationParams {
|
|
14846
|
+
dashboard: DashboardCreateInputs;
|
|
14847
|
+
}
|
|
14848
|
+
/**
|
|
14849
|
+
* @category Methods
|
|
14850
|
+
* @group Dashboard
|
|
14851
|
+
*/
|
|
14852
|
+
declare const CreateDashboard: ({ dashboard, adminApiParams, queryClient, }: CreateDashboardParams) => Promise<ConnectedXMResponse<Dashboard>>;
|
|
14853
|
+
/**
|
|
14854
|
+
* @category Mutations
|
|
14855
|
+
* @group Dashboard
|
|
14856
|
+
*/
|
|
14857
|
+
declare const useCreateDashboard: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateDashboard>>, Omit<CreateDashboardParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Dashboard>, axios.AxiosError<ConnectedXMResponse<Dashboard>, any>, Omit<CreateDashboardParams, "queryClient" | "adminApiParams">, unknown>;
|
|
14858
|
+
|
|
14859
|
+
/**
|
|
14860
|
+
* @category Params
|
|
14861
|
+
* @group Dashboard
|
|
14862
|
+
*/
|
|
14863
|
+
interface CreateDashboardWidgetParams extends MutationParams {
|
|
14864
|
+
dashboardId: string;
|
|
14865
|
+
widgetData: DashboardWidgetCreateInputs;
|
|
14866
|
+
}
|
|
14867
|
+
/**
|
|
14868
|
+
* @category Methods
|
|
14869
|
+
* @group Dashboard
|
|
14870
|
+
*/
|
|
14871
|
+
declare const CreateDashboardWidget: ({ dashboardId, widgetData, adminApiParams, queryClient, }: CreateDashboardWidgetParams) => Promise<ConnectedXMResponse<DashboardWidget>>;
|
|
14872
|
+
/**
|
|
14873
|
+
* @category Mutations
|
|
14874
|
+
* @group Dashboard
|
|
14875
|
+
*/
|
|
14876
|
+
declare const useCreateDashboardWidget: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateDashboardWidget>>, Omit<CreateDashboardWidgetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<DashboardWidget>, axios.AxiosError<ConnectedXMResponse<DashboardWidget>, any>, Omit<CreateDashboardWidgetParams, "queryClient" | "adminApiParams">, unknown>;
|
|
14877
|
+
|
|
14878
|
+
/**
|
|
14879
|
+
* @category Params
|
|
14880
|
+
* @group Dashboard
|
|
14881
|
+
*/
|
|
14882
|
+
interface DeleteDashboardParams extends MutationParams {
|
|
14883
|
+
dashboardId: string;
|
|
14884
|
+
}
|
|
14885
|
+
/**
|
|
14886
|
+
* @category Methods
|
|
14887
|
+
* @group Dashboard
|
|
14888
|
+
*/
|
|
14889
|
+
declare const DeleteDashboard: ({ dashboardId, adminApiParams, queryClient, }: DeleteDashboardParams) => Promise<ConnectedXMResponse<any>>;
|
|
14890
|
+
/**
|
|
14891
|
+
* @category Mutations
|
|
14892
|
+
* @group Dashboard
|
|
14893
|
+
*/
|
|
14894
|
+
declare const useDeleteDashboard: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteDashboard>>, Omit<DeleteDashboardParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>, Omit<DeleteDashboardParams, "queryClient" | "adminApiParams">, unknown>;
|
|
14895
|
+
|
|
14896
|
+
/**
|
|
14897
|
+
* @category Params
|
|
14898
|
+
* @group Dashboard
|
|
14899
|
+
*/
|
|
14900
|
+
interface DeleteDashboardWidgetParams extends MutationParams {
|
|
14901
|
+
dashboardId: string;
|
|
14902
|
+
widgetId: string;
|
|
14903
|
+
}
|
|
14904
|
+
/**
|
|
14905
|
+
* @category Methods
|
|
14906
|
+
* @group Dashboard
|
|
14907
|
+
*/
|
|
14908
|
+
declare const DeleteDashboardWidget: ({ dashboardId, widgetId, adminApiParams, queryClient, }: DeleteDashboardWidgetParams) => Promise<ConnectedXMResponse<any>>;
|
|
14909
|
+
/**
|
|
14910
|
+
* @category Mutations
|
|
14911
|
+
* @group Dashboard
|
|
14912
|
+
*/
|
|
14913
|
+
declare const useDeleteDashboardWidget: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteDashboardWidget>>, Omit<DeleteDashboardWidgetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>, Omit<DeleteDashboardWidgetParams, "queryClient" | "adminApiParams">, unknown>;
|
|
14914
|
+
|
|
14915
|
+
/**
|
|
14916
|
+
* @category Params
|
|
14917
|
+
* @group Dashboard
|
|
14918
|
+
*/
|
|
14919
|
+
interface UpdateDashboardParams extends MutationParams {
|
|
14920
|
+
dashboardId: string;
|
|
14921
|
+
dashboard: DashboardUpdateInputs;
|
|
14922
|
+
}
|
|
14923
|
+
/**
|
|
14924
|
+
* @category Methods
|
|
14925
|
+
* @group Dashboard
|
|
14926
|
+
*/
|
|
14927
|
+
declare const UpdateDashboard: ({ dashboardId, dashboard, adminApiParams, queryClient, }: UpdateDashboardParams) => Promise<ConnectedXMResponse<Dashboard>>;
|
|
14928
|
+
/**
|
|
14929
|
+
* @category Mutations
|
|
14930
|
+
* @group Dashboard
|
|
14931
|
+
*/
|
|
14932
|
+
declare const useUpdateDashboard: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateDashboard>>, Omit<UpdateDashboardParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Dashboard>, axios.AxiosError<ConnectedXMResponse<Dashboard>, any>, Omit<UpdateDashboardParams, "queryClient" | "adminApiParams">, unknown>;
|
|
14933
|
+
|
|
14934
|
+
/**
|
|
14935
|
+
* @category Params
|
|
14936
|
+
* @group Dashboard
|
|
14937
|
+
*/
|
|
14938
|
+
interface UpdateDashboardWidgetParams extends MutationParams {
|
|
14939
|
+
dashboardId: string;
|
|
14940
|
+
widgetId: string;
|
|
14941
|
+
widgetData: DashboardWidgetUpdateInputs;
|
|
14942
|
+
}
|
|
14943
|
+
/**
|
|
14944
|
+
* @category Methods
|
|
14945
|
+
* @group Dashboard
|
|
14946
|
+
*/
|
|
14947
|
+
declare const UpdateDashboardWidget: ({ dashboardId, widgetId, widgetData, adminApiParams, queryClient, }: UpdateDashboardWidgetParams) => Promise<ConnectedXMResponse<DashboardWidget>>;
|
|
14948
|
+
/**
|
|
14949
|
+
* @category Mutations
|
|
14950
|
+
* @group Dashboard
|
|
14951
|
+
*/
|
|
14952
|
+
declare const useUpdateDashboardWidget: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateDashboardWidget>>, Omit<UpdateDashboardWidgetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<DashboardWidget>, axios.AxiosError<ConnectedXMResponse<DashboardWidget>, any>, Omit<UpdateDashboardWidgetParams, "queryClient" | "adminApiParams">, unknown>;
|
|
14953
|
+
|
|
14616
14954
|
/**
|
|
14617
14955
|
* @category Mutations
|
|
14618
14956
|
* @group Events
|
|
@@ -15822,6 +16160,187 @@ declare const UpdateEventZplTemplateBadgeField: ({ eventId, fieldId, field, admi
|
|
|
15822
16160
|
*/
|
|
15823
16161
|
declare const useUpdateEventZplTemplateBadgeField: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventZplTemplateBadgeField>>, Omit<UpdateEventZplTemplateBadgeFieldParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventOnSiteBadgeField>, axios.AxiosError<ConnectedXMResponse<EventOnSiteBadgeField>, any>, Omit<UpdateEventZplTemplateBadgeFieldParams, "queryClient" | "adminApiParams">, unknown>;
|
|
15824
16162
|
|
|
16163
|
+
/**
|
|
16164
|
+
* @category Params
|
|
16165
|
+
* @group Event-Packages
|
|
16166
|
+
*/
|
|
16167
|
+
interface CreateEventPackagePassParams extends MutationParams {
|
|
16168
|
+
eventId: string;
|
|
16169
|
+
packageId: string;
|
|
16170
|
+
pass: EventPackagePassCreateInputs;
|
|
16171
|
+
}
|
|
16172
|
+
/**
|
|
16173
|
+
* @category Methods
|
|
16174
|
+
* @group Event-Packages
|
|
16175
|
+
*/
|
|
16176
|
+
declare const CreateEventPackagePass: ({ eventId, packageId, pass, adminApiParams, queryClient, }: CreateEventPackagePassParams) => Promise<ConnectedXMResponse<EventPackagePass>>;
|
|
16177
|
+
/**
|
|
16178
|
+
* @category Mutations
|
|
16179
|
+
* @group Event-Packages
|
|
16180
|
+
*/
|
|
16181
|
+
declare const useCreateEventPackagePass: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventPackagePass>>, Omit<CreateEventPackagePassParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPackagePass>, axios.AxiosError<ConnectedXMResponse<EventPackagePass>, any>, Omit<CreateEventPackagePassParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16182
|
+
|
|
16183
|
+
/**
|
|
16184
|
+
* @category Params
|
|
16185
|
+
* @group Event-Packages
|
|
16186
|
+
*/
|
|
16187
|
+
interface DeleteEventPackagePassParams extends MutationParams {
|
|
16188
|
+
eventId: string;
|
|
16189
|
+
packageId: string;
|
|
16190
|
+
passId: string;
|
|
16191
|
+
}
|
|
16192
|
+
/**
|
|
16193
|
+
* @category Methods
|
|
16194
|
+
* @group Event-Packages
|
|
16195
|
+
*/
|
|
16196
|
+
declare const DeleteEventPackagePass: ({ eventId, packageId, passId, adminApiParams, queryClient, }: DeleteEventPackagePassParams) => Promise<ConnectedXMResponse<null>>;
|
|
16197
|
+
/**
|
|
16198
|
+
* @category Mutations
|
|
16199
|
+
* @group Event-Packages
|
|
16200
|
+
*/
|
|
16201
|
+
declare const useDeleteEventPackagePass: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventPackagePass>>, Omit<DeleteEventPackagePassParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteEventPackagePassParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16202
|
+
|
|
16203
|
+
/**
|
|
16204
|
+
* @category Params
|
|
16205
|
+
* @group Event-Packages
|
|
16206
|
+
*/
|
|
16207
|
+
interface UpdateEventPackagePassParams extends MutationParams {
|
|
16208
|
+
eventId: string;
|
|
16209
|
+
packageId: string;
|
|
16210
|
+
passId: string;
|
|
16211
|
+
pass: EventPackagePassUpdateInputs;
|
|
16212
|
+
}
|
|
16213
|
+
/**
|
|
16214
|
+
* @category Methods
|
|
16215
|
+
* @group Event-Packages
|
|
16216
|
+
*/
|
|
16217
|
+
declare const UpdateEventPackagePass: ({ eventId, packageId, passId, pass, adminApiParams, queryClient, }: UpdateEventPackagePassParams) => Promise<ConnectedXMResponse<EventPackagePass>>;
|
|
16218
|
+
/**
|
|
16219
|
+
* @category Mutations
|
|
16220
|
+
* @group Event-Packages
|
|
16221
|
+
*/
|
|
16222
|
+
declare const useUpdateEventPackagePass: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventPackagePass>>, Omit<UpdateEventPackagePassParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPackagePass>, axios.AxiosError<ConnectedXMResponse<EventPackagePass>, any>, Omit<UpdateEventPackagePassParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16223
|
+
|
|
16224
|
+
/**
|
|
16225
|
+
* @category Params
|
|
16226
|
+
* @group Event-Packages
|
|
16227
|
+
*/
|
|
16228
|
+
interface CreateEventPackageTranslationParams extends MutationParams {
|
|
16229
|
+
eventId: string;
|
|
16230
|
+
packageId: string;
|
|
16231
|
+
locale: string;
|
|
16232
|
+
autoTranslate?: boolean;
|
|
16233
|
+
}
|
|
16234
|
+
/**
|
|
16235
|
+
* @category Methods
|
|
16236
|
+
* @group Event-Packages
|
|
16237
|
+
*/
|
|
16238
|
+
declare const CreateEventPackageTranslation: ({ eventId, packageId, locale, autoTranslate, adminApiParams, queryClient, }: CreateEventPackageTranslationParams) => Promise<ConnectedXMResponse<EventPackageTranslation>>;
|
|
16239
|
+
/**
|
|
16240
|
+
* @category Mutations
|
|
16241
|
+
* @group Event-Packages
|
|
16242
|
+
*/
|
|
16243
|
+
declare const useCreateEventPackageTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventPackageTranslation>>, Omit<CreateEventPackageTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPackageTranslation>, axios.AxiosError<ConnectedXMResponse<EventPackageTranslation>, any>, Omit<CreateEventPackageTranslationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16244
|
+
|
|
16245
|
+
/**
|
|
16246
|
+
* @category Params
|
|
16247
|
+
* @group Event-Packages
|
|
16248
|
+
*/
|
|
16249
|
+
interface DeleteEventPackageTranslationParams extends MutationParams {
|
|
16250
|
+
eventId: string;
|
|
16251
|
+
packageId: string;
|
|
16252
|
+
locale: string;
|
|
16253
|
+
}
|
|
16254
|
+
/**
|
|
16255
|
+
* @category Methods
|
|
16256
|
+
* @group Event-Packages
|
|
16257
|
+
*/
|
|
16258
|
+
declare const DeleteEventPackageTranslation: ({ eventId, packageId, locale, adminApiParams, queryClient, }: DeleteEventPackageTranslationParams) => Promise<ConnectedXMResponse<null>>;
|
|
16259
|
+
/**
|
|
16260
|
+
* @category Mutations
|
|
16261
|
+
* @group Event-Packages
|
|
16262
|
+
*/
|
|
16263
|
+
declare const useDeleteEventPackageTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventPackageTranslation>>, Omit<DeleteEventPackageTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteEventPackageTranslationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16264
|
+
|
|
16265
|
+
/**
|
|
16266
|
+
* @category Params
|
|
16267
|
+
* @group Event-Packages
|
|
16268
|
+
*/
|
|
16269
|
+
interface UpdateEventPackageTranslationParams extends MutationParams {
|
|
16270
|
+
eventId: string;
|
|
16271
|
+
packageId: string;
|
|
16272
|
+
locale: string;
|
|
16273
|
+
translation: EventPackageTranslationUpdateInputs;
|
|
16274
|
+
}
|
|
16275
|
+
/**
|
|
16276
|
+
* @category Methods
|
|
16277
|
+
* @group Event-Packages
|
|
16278
|
+
*/
|
|
16279
|
+
declare const UpdateEventPackageTranslation: ({ eventId, packageId, locale, translation, adminApiParams, queryClient, }: UpdateEventPackageTranslationParams) => Promise<ConnectedXMResponse<EventPackageTranslation>>;
|
|
16280
|
+
/**
|
|
16281
|
+
* @category Mutations
|
|
16282
|
+
* @group Event-Packages
|
|
16283
|
+
*/
|
|
16284
|
+
declare const useUpdateEventPackageTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventPackageTranslation>>, Omit<UpdateEventPackageTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPackageTranslation>, axios.AxiosError<ConnectedXMResponse<EventPackageTranslation>, any>, Omit<UpdateEventPackageTranslationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16285
|
+
|
|
16286
|
+
/**
|
|
16287
|
+
* @category Params
|
|
16288
|
+
* @group Event-Packages
|
|
16289
|
+
*/
|
|
16290
|
+
interface CreateEventPackageParams extends MutationParams {
|
|
16291
|
+
eventId: string;
|
|
16292
|
+
package: EventPackageCreateInputs;
|
|
16293
|
+
}
|
|
16294
|
+
/**
|
|
16295
|
+
* @category Methods
|
|
16296
|
+
* @group Event-Packages
|
|
16297
|
+
*/
|
|
16298
|
+
declare const CreateEventPackage: ({ eventId, package: packageData, adminApiParams, queryClient, }: CreateEventPackageParams) => Promise<ConnectedXMResponse<EventPackage>>;
|
|
16299
|
+
/**
|
|
16300
|
+
* @category Mutations
|
|
16301
|
+
* @group Event-Packages
|
|
16302
|
+
*/
|
|
16303
|
+
declare const useCreateEventPackage: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateEventPackage>>, Omit<CreateEventPackageParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPackage>, axios.AxiosError<ConnectedXMResponse<EventPackage>, any>, Omit<CreateEventPackageParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16304
|
+
|
|
16305
|
+
/**
|
|
16306
|
+
* @category Params
|
|
16307
|
+
* @group Event-Packages
|
|
16308
|
+
*/
|
|
16309
|
+
interface DeleteEventPackageParams extends MutationParams {
|
|
16310
|
+
eventId: string;
|
|
16311
|
+
packageId: string;
|
|
16312
|
+
}
|
|
16313
|
+
/**
|
|
16314
|
+
* @category Methods
|
|
16315
|
+
* @group Event-Packages
|
|
16316
|
+
*/
|
|
16317
|
+
declare const DeleteEventPackage: ({ eventId, packageId, adminApiParams, queryClient, }: DeleteEventPackageParams) => Promise<ConnectedXMResponse<null>>;
|
|
16318
|
+
/**
|
|
16319
|
+
* @category Mutations
|
|
16320
|
+
* @group Event-Packages
|
|
16321
|
+
*/
|
|
16322
|
+
declare const useDeleteEventPackage: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteEventPackage>>, Omit<DeleteEventPackageParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteEventPackageParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16323
|
+
|
|
16324
|
+
/**
|
|
16325
|
+
* @category Params
|
|
16326
|
+
* @group Event-Packages
|
|
16327
|
+
*/
|
|
16328
|
+
interface UpdateEventPackageParams extends MutationParams {
|
|
16329
|
+
eventId: string;
|
|
16330
|
+
packageId: string;
|
|
16331
|
+
package: EventPackageUpdateInputs;
|
|
16332
|
+
}
|
|
16333
|
+
/**
|
|
16334
|
+
* @category Methods
|
|
16335
|
+
* @group Event-Packages
|
|
16336
|
+
*/
|
|
16337
|
+
declare const UpdateEventPackage: ({ eventId, packageId, package: packageData, adminApiParams, queryClient, }: UpdateEventPackageParams) => Promise<ConnectedXMResponse<EventPackage>>;
|
|
16338
|
+
/**
|
|
16339
|
+
* @category Mutations
|
|
16340
|
+
* @group Event-Packages
|
|
16341
|
+
*/
|
|
16342
|
+
declare const useUpdateEventPackage: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventPackage>>, Omit<UpdateEventPackageParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<EventPackage>, axios.AxiosError<ConnectedXMResponse<EventPackage>, any>, Omit<UpdateEventPackageParams, "queryClient" | "adminApiParams">, unknown>;
|
|
16343
|
+
|
|
15825
16344
|
/**
|
|
15826
16345
|
* @category Params
|
|
15827
16346
|
* @group Event-Page-Translation
|
|
@@ -21092,117 +21611,4 @@ declare const UpdateVideo: ({ videoId, video, adminApiParams, queryClient, }: Up
|
|
|
21092
21611
|
*/
|
|
21093
21612
|
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>;
|
|
21094
21613
|
|
|
21095
|
-
/**
|
|
21096
|
-
* @category Params
|
|
21097
|
-
* @group Dashboard
|
|
21098
|
-
*/
|
|
21099
|
-
interface CreateDashboardParams extends MutationParams {
|
|
21100
|
-
dashboard: DashboardCreateInput;
|
|
21101
|
-
}
|
|
21102
|
-
/**
|
|
21103
|
-
* @category Methods
|
|
21104
|
-
* @group Dashboard
|
|
21105
|
-
*/
|
|
21106
|
-
declare const CreateDashboard: ({ dashboard, adminApiParams, queryClient, }: CreateDashboardParams) => Promise<ConnectedXMResponse<Dashboard>>;
|
|
21107
|
-
/**
|
|
21108
|
-
* @category Mutations
|
|
21109
|
-
* @group Dashboard
|
|
21110
|
-
*/
|
|
21111
|
-
declare const useCreateDashboard: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateDashboard>>, Omit<CreateDashboardParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Dashboard>, axios.AxiosError<ConnectedXMResponse<Dashboard>, any>, Omit<CreateDashboardParams, "queryClient" | "adminApiParams">, unknown>;
|
|
21112
|
-
|
|
21113
|
-
/**
|
|
21114
|
-
* @category Params
|
|
21115
|
-
* @group Dashboard
|
|
21116
|
-
*/
|
|
21117
|
-
interface UpdateDashboardParams extends MutationParams {
|
|
21118
|
-
dashboardId: string;
|
|
21119
|
-
dashboard: DashboardUpdateInput;
|
|
21120
|
-
}
|
|
21121
|
-
/**
|
|
21122
|
-
* @category Methods
|
|
21123
|
-
* @group Dashboard
|
|
21124
|
-
*/
|
|
21125
|
-
declare const UpdateDashboard: ({ dashboardId, dashboard, adminApiParams, queryClient, }: UpdateDashboardParams) => Promise<ConnectedXMResponse<Dashboard>>;
|
|
21126
|
-
/**
|
|
21127
|
-
* @category Mutations
|
|
21128
|
-
* @group Dashboard
|
|
21129
|
-
*/
|
|
21130
|
-
declare const useUpdateDashboard: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateDashboard>>, Omit<UpdateDashboardParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Dashboard>, axios.AxiosError<ConnectedXMResponse<Dashboard>, any>, Omit<UpdateDashboardParams, "queryClient" | "adminApiParams">, unknown>;
|
|
21131
|
-
|
|
21132
|
-
/**
|
|
21133
|
-
* @category Params
|
|
21134
|
-
* @group Dashboard
|
|
21135
|
-
*/
|
|
21136
|
-
interface DeleteDashboardParams extends MutationParams {
|
|
21137
|
-
dashboardId: string;
|
|
21138
|
-
}
|
|
21139
|
-
/**
|
|
21140
|
-
* @category Methods
|
|
21141
|
-
* @group Dashboard
|
|
21142
|
-
*/
|
|
21143
|
-
declare const DeleteDashboard: ({ dashboardId, adminApiParams, queryClient, }: DeleteDashboardParams) => Promise<ConnectedXMResponse<any>>;
|
|
21144
|
-
/**
|
|
21145
|
-
* @category Mutations
|
|
21146
|
-
* @group Dashboard
|
|
21147
|
-
*/
|
|
21148
|
-
declare const useDeleteDashboard: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteDashboard>>, Omit<DeleteDashboardParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>, Omit<DeleteDashboardParams, "queryClient" | "adminApiParams">, unknown>;
|
|
21149
|
-
|
|
21150
|
-
/**
|
|
21151
|
-
* @category Params
|
|
21152
|
-
* @group Dashboard
|
|
21153
|
-
*/
|
|
21154
|
-
interface CreateDashboardWidgetParams extends MutationParams {
|
|
21155
|
-
dashboardId: string;
|
|
21156
|
-
widgetData: DashboardWidgetCreateInput;
|
|
21157
|
-
}
|
|
21158
|
-
/**
|
|
21159
|
-
* @category Methods
|
|
21160
|
-
* @group Dashboard
|
|
21161
|
-
*/
|
|
21162
|
-
declare const CreateDashboardWidget: ({ dashboardId, widgetData, adminApiParams, queryClient, }: CreateDashboardWidgetParams) => Promise<ConnectedXMResponse<DashboardWidget>>;
|
|
21163
|
-
/**
|
|
21164
|
-
* @category Mutations
|
|
21165
|
-
* @group Dashboard
|
|
21166
|
-
*/
|
|
21167
|
-
declare const useCreateDashboardWidget: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateDashboardWidget>>, Omit<CreateDashboardWidgetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<DashboardWidget>, axios.AxiosError<ConnectedXMResponse<DashboardWidget>, any>, Omit<CreateDashboardWidgetParams, "queryClient" | "adminApiParams">, unknown>;
|
|
21168
|
-
|
|
21169
|
-
/**
|
|
21170
|
-
* @category Params
|
|
21171
|
-
* @group Dashboard
|
|
21172
|
-
*/
|
|
21173
|
-
interface UpdateDashboardWidgetParams extends MutationParams {
|
|
21174
|
-
dashboardId: string;
|
|
21175
|
-
widgetId: string;
|
|
21176
|
-
widgetData: DashboardWidgetUpdateInput;
|
|
21177
|
-
}
|
|
21178
|
-
/**
|
|
21179
|
-
* @category Methods
|
|
21180
|
-
* @group Dashboard
|
|
21181
|
-
*/
|
|
21182
|
-
declare const UpdateDashboardWidget: ({ dashboardId, widgetId, widgetData, adminApiParams, queryClient, }: UpdateDashboardWidgetParams) => Promise<ConnectedXMResponse<DashboardWidget>>;
|
|
21183
|
-
/**
|
|
21184
|
-
* @category Mutations
|
|
21185
|
-
* @group Dashboard
|
|
21186
|
-
*/
|
|
21187
|
-
declare const useUpdateDashboardWidget: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateDashboardWidget>>, Omit<UpdateDashboardWidgetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<DashboardWidget>, axios.AxiosError<ConnectedXMResponse<DashboardWidget>, any>, Omit<UpdateDashboardWidgetParams, "queryClient" | "adminApiParams">, unknown>;
|
|
21188
|
-
|
|
21189
|
-
/**
|
|
21190
|
-
* @category Params
|
|
21191
|
-
* @group Dashboard
|
|
21192
|
-
*/
|
|
21193
|
-
interface DeleteDashboardWidgetParams extends MutationParams {
|
|
21194
|
-
dashboardId: string;
|
|
21195
|
-
widgetId: string;
|
|
21196
|
-
}
|
|
21197
|
-
/**
|
|
21198
|
-
* @category Methods
|
|
21199
|
-
* @group Dashboard
|
|
21200
|
-
*/
|
|
21201
|
-
declare const DeleteDashboardWidget: ({ dashboardId, widgetId, adminApiParams, queryClient, }: DeleteDashboardWidgetParams) => Promise<ConnectedXMResponse<any>>;
|
|
21202
|
-
/**
|
|
21203
|
-
* @category Mutations
|
|
21204
|
-
* @group Dashboard
|
|
21205
|
-
*/
|
|
21206
|
-
declare const useDeleteDashboardWidget: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteDashboardWidget>>, Omit<DeleteDashboardWidgetParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<any>, axios.AxiosError<ConnectedXMResponse<any>, any>, Omit<DeleteDashboardWidgetParams, "queryClient" | "adminApiParams">, unknown>;
|
|
21207
|
-
|
|
21208
|
-
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_QUERY_KEY, ACCOUNT_AUTH_SESSIONS_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_INVITATIONS_QUERY_KEY, ACCOUNT_LEADS_QUERY_KEY, ACCOUNT_LEAD_QUERY_KEY, ACCOUNT_LEVELS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_LOGINS_QUERY_KEY, ACCOUNT_LOGIN_QUERY_KEY, ACCOUNT_PAYMENTS_QUERY_KEY, ACCOUNT_PUSH_DEVICES_QUERY_KEY, ACCOUNT_PUSH_DEVICE_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, type AccountInvitation, 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, AddEventReservationPass, type AddEventReservationPassParams, 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, BOOKING_PAYMENTS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_BOOKINGS_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_TRANSLATIONS_QUERY_KEY, BOOKING_PLACE_TRANSLATION_QUERY_KEY, BOOKING_QUERY_KEY, BOOKING_SPACES_QUERY_KEY, BOOKING_SPACE_AVAILABILITIES_QUERY_KEY, BOOKING_SPACE_AVAILABILITY_QUERY_KEY, BOOKING_SPACE_BLACKOUTS_QUERY_KEY, BOOKING_SPACE_BLACKOUT_QUERY_KEY, BOOKING_SPACE_BOOKINGS_QUERY_KEY, BOOKING_SPACE_QUERY_KEY, BOOKING_SPACE_SLOTS_QUERY_KEY, BOOKING_SPACE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAPILog, type BaseAccount, type BaseAccountAddress, type BaseAccountInvitation, type BaseActivationCompletion, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCoupon, type BaseDashboard, type BaseDashboardWidget, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventAttendee, type BaseEventEmail, type 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 BaseLead, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseLogin, 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, type Booking, type BookingCreateInputs, type BookingPlace, type BookingPlaceCreateInputs, type BookingPlaceTranslation, type BookingPlaceTranslationUpdateInputs, type BookingPlaceUpdateInputs, type BookingSlot, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceAvailabilityCreateInputs, type BookingSpaceAvailabilityUpdateInputs, type BookingSpaceBlackout, type BookingSpaceBlackoutCreateInputs, type BookingSpaceBlackoutUpdateInputs, type BookingSpaceCreateInputs, type BookingSpaceTranslation, type BookingSpaceTranslationUpdateInputs, type BookingSpaceUpdateInputs, type BookingUpdateInputs, type BraintreeActivationFormParams, 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, CloneEvent, type CloneEventParams, type CloneOptions, ConfirmAccountLogin, type ConfirmAccountLoginParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, CreateAccountAddress, type CreateAccountAddressParams, CreateAccountInvitations, type CreateAccountInvitationsParams, type CreateAccountParams, CreateActivity, type CreateActivityParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateAnnouncementTranslation, type CreateAnnouncementTranslationParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateBooking, type CreateBookingParams, CreateBookingPlace, type CreateBookingPlaceParams, CreateBookingPlaceTranslation, type CreateBookingPlaceTranslationParams, CreateBookingSpace, CreateBookingSpaceAvailability, type CreateBookingSpaceAvailabilityParams, CreateBookingSpaceBlackout, type CreateBookingSpaceBlackoutParams, type CreateBookingSpaceParams, CreateBookingSpaceTranslation, type CreateBookingSpaceTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateDashboard, type CreateDashboardParams, CreateDashboardWidget, type CreateDashboardWidgetParams, 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, CreateEventReservation, type CreateEventReservationParams, 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, DASHBOARDS_QUERY_KEY, DASHBOARD_QUERY_KEY, DASHBOARD_WIDGETS_QUERY_KEY, type Dashboard, type DashboardCreateInput, type DashboardUpdateInput, type DashboardWidget, type DashboardWidgetCreateInput, type DashboardWidgetEndpoint, type DashboardWidgetUpdateInput, DayOfWeek, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, DeleteAccountInvitation, type DeleteAccountInvitationParams, DeleteAccountLead, type DeleteAccountLeadParams, type DeleteAccountParams, DeleteAccountPushDevice, type DeleteAccountPushDeviceParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteBooking, type DeleteBookingParams, DeleteBookingPlace, type DeleteBookingPlaceParams, DeleteBookingPlaceTranslation, type DeleteBookingPlaceTranslationParams, DeleteBookingSpace, DeleteBookingSpaceAvailability, type DeleteBookingSpaceAvailabilityParams, DeleteBookingSpaceBlackout, type DeleteBookingSpaceBlackoutParams, type DeleteBookingSpaceParams, DeleteBookingSpaceTranslation, type DeleteBookingSpaceTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteDashboard, type DeleteDashboardParams, DeleteDashboardWidget, type DeleteDashboardWidgetParams, 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, DeleteEventReservation, type DeleteEventReservationParams, 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_RESERVATIONS_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_RESERVATIONS_QUERY_KEY, EVENT_RESERVATION_PASSES_QUERY_KEY, EVENT_RESERVATION_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 EventRoomTypeReservationCreateInputs, type EventRoomTypeReservationUpdateInputs, 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, GetAccountComments, GetAccountDelegateOf, GetAccountDelegates, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountInvitations, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountLogin, GetAccountLogins, GetAccountPayments, GetAccountPushDevice, GetAccountPushDevices, 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, GetBooking, GetBookingPayments, GetBookingPlace, GetBookingPlaceBookings, GetBookingPlaceTranslation, GetBookingPlaceTranslations, GetBookingPlaces, GetBookingSpace, GetBookingSpaceAvailabilities, GetBookingSpaceAvailability, GetBookingSpaceBlackout, GetBookingSpaceBlackouts, GetBookingSpaceBookings, GetBookingSpaceSlots, GetBookingSpaceTranslation, GetBookingSpaceTranslations, GetBookingSpaces, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetDashboard, GetDashboardWidgets, GetDashboards, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeReservations, 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, GetEventReservation, GetEventReservationPasses, GetEventReservations, 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 Lead, type LeadCreateInputs, LeadStatus, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkPreview, type Login, 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, type PassAddOn, PassTypeAccessLevel, type PassTypeCreateInputs, type PassTypePriceScheduleCreateInputs, type PassTypePriceScheduleUpdateInputs, type PassTypeRefundScheduleCreateInputs, type PassTypeRefundScheduleUpdateInputs, type PassTypeTranslationUpdateInputs, type PassTypeUpdateInputs, PassTypeVisibility, type Payment, type PaymentIntegration, PaymentIntegrationType, type PaymentIntentPurchaseMetadataInputs, 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, RemoveEventReservationPass, type RemoveEventReservationPassParams, 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_INVITATIONS_QUERY_DATA, SET_ACCOUNT_LEADS_QUERY_DATA, SET_ACCOUNT_LEAD_QUERY_DATA, SET_ACCOUNT_LEVELS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_PAYMENTS_QUERY_DATA, SET_ACCOUNT_PUSH_DEVICES_QUERY_DATA, SET_ACCOUNT_PUSH_DEVICE_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_BOOKING_PAYMENTS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATION_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_BOOKING_SPACES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITIES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITY_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUTS_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUT_QUERY_DATA, SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA, SET_BOOKING_SPACE_QUERY_DATA, SET_BOOKING_SPACE_SLOTS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATION_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENT_GUESTS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA, SET_CHANNEL_CONTENT_LIKES_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_CHANNEL_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_TRANSLATION_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_DASHBOARDS_QUERY_DATA, SET_DASHBOARD_QUERY_DATA, SET_DASHBOARD_WIDGETS_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_RESERVATIONS_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_RESERVATIONS_QUERY_DATA, SET_EVENT_RESERVATION_PASSES_QUERY_DATA, SET_EVENT_RESERVATION_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, SendAnnouncementPreview, type SendAnnouncementPreviewParams, 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, UpdateAccountLead, type UpdateAccountLeadParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateAnnouncementTranslation, type UpdateAnnouncementTranslationParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateBooking, type UpdateBookingParams, UpdateBookingPlace, type UpdateBookingPlaceParams, UpdateBookingPlaceTranslation, type UpdateBookingPlaceTranslationParams, UpdateBookingSpace, UpdateBookingSpaceAvailability, type UpdateBookingSpaceAvailabilityParams, UpdateBookingSpaceBlackout, type UpdateBookingSpaceBlackoutParams, type UpdateBookingSpaceParams, UpdateBookingSpaceTranslation, type UpdateBookingSpaceTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateDashboard, type UpdateDashboardParams, UpdateDashboardWidget, type UpdateDashboardWidgetParams, 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 UpdateEventPassResponseInputs, 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, UpdateEventReservation, type UpdateEventReservationParams, 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, UpdateLoginEmail, type UpdateLoginEmailParams, UpdateLoginPassword, type UpdateLoginPasswordParams, 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, WidgetCategory, WidgetType, isUUID, setFirstPageData, useAcceptGroupRequest, useAddAccountDelegate, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddActivityInterest, useAddChannelSubscriber, useAddEventAccessUser, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventReservationPass, 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, useCloneEvent, useConfirmAccountLogin, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAccountInvitations, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateBooking, useCreateBookingPlace, useCreateBookingPlaceTranslation, useCreateBookingSpace, useCreateBookingSpaceAvailability, useCreateBookingSpaceBlackout, useCreateBookingSpaceTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateDashboard, useCreateDashboardWidget, 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, useCreateEventReservation, 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, useDeleteAccountInvitation, useDeleteAccountLead, useDeleteAccountPushDevice, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteBooking, useDeleteBookingPlace, useDeleteBookingPlaceTranslation, useDeleteBookingSpace, useDeleteBookingSpaceAvailability, useDeleteBookingSpaceBlackout, useDeleteBookingSpaceTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteDashboard, useDeleteDashboardWidget, 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, useDeleteEventReservation, 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, useGetAccountComments, useGetAccountDelegateOf, useGetAccountDelegates, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountInvitations, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountLogin, useGetAccountLogins, useGetAccountPayments, useGetAccountPushDevice, useGetAccountPushDevices, 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, useGetBooking, useGetBookingPayments, useGetBookingPlace, useGetBookingPlaceBookings, useGetBookingPlaceTranslation, useGetBookingPlaceTranslations, useGetBookingPlaces, useGetBookingSpace, useGetBookingSpaceAvailabilities, useGetBookingSpaceAvailability, useGetBookingSpaceBlackout, useGetBookingSpaceBlackouts, useGetBookingSpaceBookings, useGetBookingSpaceSlots, useGetBookingSpaceTranslation, useGetBookingSpaceTranslations, useGetBookingSpaces, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetDashboard, useGetDashboardWidgets, useGetDashboards, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeReservations, 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, useGetEventReservation, useGetEventReservationPasses, useGetEventReservations, 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, useRemoveEventReservationPass, 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, useSendAnnouncementPreview, useSwitchImage, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountLead, useUpdateActivity, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateBooking, useUpdateBookingPlace, useUpdateBookingPlaceTranslation, useUpdateBookingSpace, useUpdateBookingSpaceAvailability, useUpdateBookingSpaceBlackout, useUpdateBookingSpaceTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateDashboard, useUpdateDashboardWidget, 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, useUpdateEventReservation, 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, useUpdateLoginEmail, useUpdateLoginPassword, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateThread, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile };
|
|
21614
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_QUERY_KEY, ACCOUNT_AUTH_SESSIONS_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_INVITATIONS_QUERY_KEY, ACCOUNT_LEADS_QUERY_KEY, ACCOUNT_LEAD_QUERY_KEY, ACCOUNT_LEVELS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_LOGINS_QUERY_KEY, ACCOUNT_LOGIN_QUERY_KEY, ACCOUNT_PAYMENTS_QUERY_KEY, ACCOUNT_PUSH_DEVICES_QUERY_KEY, ACCOUNT_PUSH_DEVICE_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, type AccountInvitation, 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, AddEventReservationPass, type AddEventReservationPassParams, 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, type AttendeeEventPackageCreateInputs, type AttendeeEventPackageUpdateInputs, type AttendeePackage, AuthLayout, type AuthSession, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BOOKING_PAYMENTS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_BOOKINGS_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_TRANSLATIONS_QUERY_KEY, BOOKING_PLACE_TRANSLATION_QUERY_KEY, BOOKING_QUERY_KEY, BOOKING_SPACES_QUERY_KEY, BOOKING_SPACE_AVAILABILITIES_QUERY_KEY, BOOKING_SPACE_AVAILABILITY_QUERY_KEY, BOOKING_SPACE_BLACKOUTS_QUERY_KEY, BOOKING_SPACE_BLACKOUT_QUERY_KEY, BOOKING_SPACE_BOOKINGS_QUERY_KEY, BOOKING_SPACE_QUERY_KEY, BOOKING_SPACE_SLOTS_QUERY_KEY, BOOKING_SPACE_TRANSLATIONS_QUERY_KEY, BOOKING_SPACE_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAPILog, type BaseAccount, type BaseAccountAddress, type BaseAccountInvitation, type BaseActivationCompletion, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCoupon, type BaseDashboard, type BaseDashboardWidget, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventAttendee, type BaseEventEmail, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventPass, type BaseEventPassType, type BaseEventPassTypePriceSchedule, type BaseEventPassTypeRefundSchedule, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSession, type 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 BaseLead, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseLogin, 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, type Booking, type BookingCreateInputs, type BookingPlace, type BookingPlaceCreateInputs, type BookingPlaceTranslation, type BookingPlaceTranslationUpdateInputs, type BookingPlaceUpdateInputs, type BookingSlot, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceAvailabilityCreateInputs, type BookingSpaceAvailabilityUpdateInputs, type BookingSpaceBlackout, type BookingSpaceBlackoutCreateInputs, type BookingSpaceBlackoutUpdateInputs, type BookingSpaceCreateInputs, type BookingSpaceTranslation, type BookingSpaceTranslationUpdateInputs, type BookingSpaceUpdateInputs, type BookingUpdateInputs, type BraintreeActivationFormParams, 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, CloneEvent, type CloneEventParams, type CloneOptions, ConfirmAccountLogin, type ConfirmAccountLoginParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, CreateAccountAddress, type CreateAccountAddressParams, CreateAccountInvitations, type CreateAccountInvitationsParams, type CreateAccountParams, CreateActivity, type CreateActivityParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateAnnouncementTranslation, type CreateAnnouncementTranslationParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateBooking, type CreateBookingParams, CreateBookingPlace, type CreateBookingPlaceParams, CreateBookingPlaceTranslation, type CreateBookingPlaceTranslationParams, CreateBookingSpace, CreateBookingSpaceAvailability, type CreateBookingSpaceAvailabilityParams, CreateBookingSpaceBlackout, type CreateBookingSpaceBlackoutParams, type CreateBookingSpaceParams, CreateBookingSpaceTranslation, type CreateBookingSpaceTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateDashboard, type CreateDashboardParams, CreateDashboardWidget, type CreateDashboardWidgetParams, 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, CreateEventPackage, type CreateEventPackageParams, CreateEventPackagePass, type CreateEventPackagePassParams, CreateEventPackageTranslation, type CreateEventPackageTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventPass, type CreateEventPassParams, CreateEventPassType, type CreateEventPassTypeParams, CreateEventPassTypePriceSchedule, CreateEventPassTypeRefundSchedule, CreateEventPassTypeTranslation, type CreateEventPassTypeTranslationParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionSearchValues, type CreateEventQuestionSearchValuesParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, CreateEventReservation, type CreateEventReservationParams, 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, DASHBOARDS_QUERY_KEY, DASHBOARD_QUERY_KEY, DASHBOARD_WIDGETS_QUERY_KEY, type Dashboard, type DashboardCreateInputs, type DashboardUpdateInputs, type DashboardWidget, type DashboardWidgetCreateInputs, type DashboardWidgetEndpoint, type DashboardWidgetUpdateInputs, DayOfWeek, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, DeleteAccountInvitation, type DeleteAccountInvitationParams, DeleteAccountLead, type DeleteAccountLeadParams, type DeleteAccountParams, DeleteAccountPushDevice, type DeleteAccountPushDeviceParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteBooking, type DeleteBookingParams, DeleteBookingPlace, type DeleteBookingPlaceParams, DeleteBookingPlaceTranslation, type DeleteBookingPlaceTranslationParams, DeleteBookingSpace, DeleteBookingSpaceAvailability, type DeleteBookingSpaceAvailabilityParams, DeleteBookingSpaceBlackout, type DeleteBookingSpaceBlackoutParams, type DeleteBookingSpaceParams, DeleteBookingSpaceTranslation, type DeleteBookingSpaceTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteDashboard, type DeleteDashboardParams, DeleteDashboardWidget, type DeleteDashboardWidgetParams, 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, DeleteEventPackage, type DeleteEventPackageParams, DeleteEventPackagePass, type DeleteEventPackagePassParams, DeleteEventPackageTranslation, type DeleteEventPackageTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventPass, type DeleteEventPassParams, DeleteEventPassType, type DeleteEventPassTypeParams, DeleteEventPassTypePriceSchedule, DeleteEventPassTypeRefundSchedule, DeleteEventPassTypeTranslation, type DeleteEventPassTypeTranslationParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionSearchValue, type DeleteEventQuestionSearchValueParams, DeleteEventQuestionSearchValues, type DeleteEventQuestionSearchValuesParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, DeleteEventReservation, type DeleteEventReservationParams, 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_RESERVATIONS_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_PACKAGES_QUERY_KEY, EVENT_PACKAGE_PASSES_QUERY_KEY, EVENT_PACKAGE_PASS_QUERY_KEY, EVENT_PACKAGE_QUERY_KEY, EVENT_PACKAGE_TRANSLATIONS_QUERY_KEY, EVENT_PACKAGE_TRANSLATION_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_IMAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_PAGE_TRANSLATIONS_QUERY_KEY, EVENT_PAGE_TRANSLATION_QUERY_KEY, EVENT_PASSES_QUERY_KEY, EVENT_PASS_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_RESERVATIONS_QUERY_KEY, EVENT_RESERVATION_PASSES_QUERY_KEY, EVENT_RESERVATION_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 EventPackage, type EventPackageCreateInputs, type EventPackagePass, type EventPackagePassCreateInputs, type EventPackagePassUpdateInputs, type EventPackageTranslation, type EventPackageTranslationUpdateInputs, type EventPackageUpdateInputs, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPass, type EventPassCreateInputs, type EventPassType, type EventPassTypePriceSchedule, type EventPassTypeRefundSchedule, type EventPassTypeTranslation, type EventPassUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type 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 EventRoomTypeReservationCreateInputs, type EventRoomTypeReservationUpdateInputs, 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, GetAccountComments, GetAccountDelegateOf, GetAccountDelegates, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountInvitations, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountLogin, GetAccountLogins, GetAccountPayments, GetAccountPushDevice, GetAccountPushDevices, 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, GetBooking, GetBookingPayments, GetBookingPlace, GetBookingPlaceBookings, GetBookingPlaceTranslation, GetBookingPlaceTranslations, GetBookingPlaces, GetBookingSpace, GetBookingSpaceAvailabilities, GetBookingSpaceAvailability, GetBookingSpaceBlackout, GetBookingSpaceBlackouts, GetBookingSpaceBookings, GetBookingSpaceSlots, GetBookingSpaceTranslation, GetBookingSpaceTranslations, GetBookingSpaces, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetDashboard, GetDashboardWidgets, GetDashboards, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePasses, GetEventAttendeePayments, GetEventAttendeeReservations, GetEventAttendeeTransfersLogs, GetEventAttendees, GetEventCoHosts, GetEventCoupon, GetEventCouponPasses, GetEventCoupons, GetEventEmail, GetEventEmailTranslation, GetEventEmailTranslations, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventOnSite, GetEventPackage, GetEventPackagePass, GetEventPackagePasses, GetEventPackageTranslation, GetEventPackageTranslations, GetEventPackages, 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, GetEventReservation, GetEventReservationPasses, GetEventReservations, 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 Lead, type LeadCreateInputs, LeadStatus, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkPreview, type Login, 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, type PassAddOn, PassTypeAccessLevel, type PassTypeCreateInputs, type PassTypePriceScheduleCreateInputs, type PassTypePriceScheduleUpdateInputs, type PassTypeRefundScheduleCreateInputs, type PassTypeRefundScheduleUpdateInputs, type PassTypeTranslationUpdateInputs, type PassTypeUpdateInputs, PassTypeVisibility, type Payment, type PaymentIntegration, PaymentIntegrationType, type PaymentIntentPurchaseMetadataInputs, PaymentType, type PaypalActivationFormParams, type PermissionDomain, type PermissionType, PurchaseStatus, 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, RemoveEventReservationPass, type RemoveEventReservationPassParams, 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_INVITATIONS_QUERY_DATA, SET_ACCOUNT_LEADS_QUERY_DATA, SET_ACCOUNT_LEAD_QUERY_DATA, SET_ACCOUNT_LEVELS_QUERY_DATA, SET_ACCOUNT_LIKES_QUERY_DATA, SET_ACCOUNT_PAYMENTS_QUERY_DATA, SET_ACCOUNT_PUSH_DEVICES_QUERY_DATA, SET_ACCOUNT_PUSH_DEVICE_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_BOOKING_PAYMENTS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_PLACE_TRANSLATION_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_BOOKING_SPACES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITIES_QUERY_DATA, SET_BOOKING_SPACE_AVAILABILITY_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUTS_QUERY_DATA, SET_BOOKING_SPACE_BLACKOUT_QUERY_DATA, SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA, SET_BOOKING_SPACE_QUERY_DATA, SET_BOOKING_SPACE_SLOTS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATIONS_QUERY_DATA, SET_BOOKING_SPACE_TRANSLATION_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENT_GUESTS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA, SET_CHANNEL_CONTENT_LIKES_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_CHANNEL_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_TRANSLATION_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_DASHBOARDS_QUERY_DATA, SET_DASHBOARD_QUERY_DATA, SET_DASHBOARD_WIDGETS_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_RESERVATIONS_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_PACKAGES_QUERY_DATA, SET_EVENT_PACKAGE_PASSES_QUERY_DATA, SET_EVENT_PACKAGE_PASS_QUERY_DATA, SET_EVENT_PACKAGE_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PACKAGE_TRANSLATION_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_IMAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_PAGE_TRANSLATIONS_QUERY_DATA, SET_EVENT_PAGE_TRANSLATION_QUERY_DATA, SET_EVENT_PASS_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_RESERVATIONS_QUERY_DATA, SET_EVENT_RESERVATION_PASSES_QUERY_DATA, SET_EVENT_RESERVATION_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, SendAnnouncementPreview, type SendAnnouncementPreviewParams, 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, UpdateAccountLead, type UpdateAccountLeadParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateAnnouncement, type UpdateAnnouncementParams, UpdateAnnouncementSchedule, type UpdateAnnouncementScheduleParams, UpdateAnnouncementTranslation, type UpdateAnnouncementTranslationParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateBooking, type UpdateBookingParams, UpdateBookingPlace, type UpdateBookingPlaceParams, UpdateBookingPlaceTranslation, type UpdateBookingPlaceTranslationParams, UpdateBookingSpace, UpdateBookingSpaceAvailability, type UpdateBookingSpaceAvailabilityParams, UpdateBookingSpaceBlackout, type UpdateBookingSpaceBlackoutParams, type UpdateBookingSpaceParams, UpdateBookingSpaceTranslation, type UpdateBookingSpaceTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateDashboard, type UpdateDashboardParams, UpdateDashboardWidget, type UpdateDashboardWidgetParams, 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, UpdateEventPackage, type UpdateEventPackageParams, UpdateEventPackagePass, type UpdateEventPackagePassParams, UpdateEventPackageTranslation, type UpdateEventPackageTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, type UpdateEventPassParams, UpdateEventPassResponse, type UpdateEventPassResponseInputs, 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, UpdateEventReservation, type UpdateEventReservationParams, 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, UpdateLoginEmail, type UpdateLoginEmailParams, UpdateLoginPassword, type UpdateLoginPasswordParams, 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, WidgetCategory, WidgetType, isUUID, setFirstPageData, useAcceptGroupRequest, useAddAccountDelegate, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddActivityInterest, useAddChannelSubscriber, useAddEventAccessUser, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, useAddEventReservationPass, 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, useCloneEvent, useConfirmAccountLogin, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateAccountInvitations, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateBooking, useCreateBookingPlace, useCreateBookingPlaceTranslation, useCreateBookingSpace, useCreateBookingSpaceAvailability, useCreateBookingSpaceBlackout, useCreateBookingSpaceTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateDashboard, useCreateDashboardWidget, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventAttendee, useCreateEventCoupon, useCreateEventEmailTranslation, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventPackage, useCreateEventPackagePass, useCreateEventPackageTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventPassTypeTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionSearchValues, useCreateEventQuestionTranslation, useCreateEventRegistrationBypass, useCreateEventReservation, 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, useDeleteAccountInvitation, useDeleteAccountLead, useDeleteAccountPushDevice, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteBooking, useDeleteBookingPlace, useDeleteBookingPlaceTranslation, useDeleteBookingSpace, useDeleteBookingSpaceAvailability, useDeleteBookingSpaceBlackout, useDeleteBookingSpaceTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteDashboard, useDeleteDashboardWidget, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventCoupon, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventPackage, useDeleteEventPackagePass, useDeleteEventPackageTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventPass, useDeleteEventPassType, useDeleteEventPassTypePriceSchedule, useDeleteEventPassTypeRefundSchedule, useDeleteEventPassTypeTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionSearchValue, useDeleteEventQuestionSearchValues, useDeleteEventQuestionTranslation, useDeleteEventRegistrationBypass, useDeleteEventReservation, 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, useGetAccountComments, useGetAccountDelegateOf, useGetAccountDelegates, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountInvitations, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountLogin, useGetAccountLogins, useGetAccountPayments, useGetAccountPushDevice, useGetAccountPushDevices, 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, useGetBooking, useGetBookingPayments, useGetBookingPlace, useGetBookingPlaceBookings, useGetBookingPlaceTranslation, useGetBookingPlaceTranslations, useGetBookingPlaces, useGetBookingSpace, useGetBookingSpaceAvailabilities, useGetBookingSpaceAvailability, useGetBookingSpaceBlackout, useGetBookingSpaceBlackouts, useGetBookingSpaceBookings, useGetBookingSpaceSlots, useGetBookingSpaceTranslation, useGetBookingSpaceTranslations, useGetBookingSpaces, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetDashboard, useGetDashboardWidgets, useGetDashboards, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePasses, useGetEventAttendeePayments, useGetEventAttendeeReservations, useGetEventAttendeeTransfersLogs, useGetEventAttendees, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponPasses, useGetEventCoupons, useGetEventEmail, useGetEventEmailTranslation, useGetEventEmailTranslations, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventOnSite, useGetEventPackage, useGetEventPackagePass, useGetEventPackagePasses, useGetEventPackageTranslation, useGetEventPackageTranslations, useGetEventPackages, 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, useGetEventReservation, useGetEventReservationPasses, useGetEventReservations, 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, useRemoveEventReservationPass, 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, useSendAnnouncementPreview, useSwitchImage, useToggleOrganizationPaymentIntegration, useToggleTaxIntegration, useTransferEventPass, useUpdateAccount, useUpdateAccountAddress, useUpdateAccountLead, useUpdateActivity, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateBooking, useUpdateBookingPlace, useUpdateBookingPlaceTranslation, useUpdateBookingSpace, useUpdateBookingSpaceAvailability, useUpdateBookingSpaceBlackout, useUpdateBookingSpaceTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateDashboard, useUpdateDashboardWidget, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventPackage, useUpdateEventPackagePass, useUpdateEventPackageTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassType, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionSearchValue, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, useUpdateEventReservation, 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, useUpdateLoginEmail, useUpdateLoginPassword, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateThread, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile };
|