@connectedxm/admin 1.6.1 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursorrules +0 -0
- package/dist/index.d.mts +644 -235
- package/dist/index.d.ts +644 -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,11 +1423,12 @@ 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;
|
|
1430
1430
|
coupon: BaseCoupon | null;
|
|
1431
|
+
packageId: string | null;
|
|
1431
1432
|
createdAt: string;
|
|
1432
1433
|
updatedAt: string;
|
|
1433
1434
|
}
|
|
@@ -1435,6 +1436,7 @@ interface EventPass extends BaseEventPass {
|
|
|
1435
1436
|
passAddOns: PassAddOn[];
|
|
1436
1437
|
attendeeId: string;
|
|
1437
1438
|
attendee: BaseEventAttendee;
|
|
1439
|
+
package: BaseEventPackage | null;
|
|
1438
1440
|
payerId: string | null;
|
|
1439
1441
|
payer: BaseAccount | null;
|
|
1440
1442
|
amtPaid: number;
|
|
@@ -1713,6 +1715,7 @@ interface BaseEventAttendee {
|
|
|
1713
1715
|
interface EventAttendee extends BaseEventAttendee {
|
|
1714
1716
|
payments: BasePayment[];
|
|
1715
1717
|
passes: BaseEventPass[];
|
|
1718
|
+
packages: BaseEventPackage[];
|
|
1716
1719
|
coupons: BaseCoupon[];
|
|
1717
1720
|
createdAt: string;
|
|
1718
1721
|
updatedAt: string;
|
|
@@ -2698,7 +2701,7 @@ interface BaseBooking {
|
|
|
2698
2701
|
day: string;
|
|
2699
2702
|
time: string;
|
|
2700
2703
|
duration: number;
|
|
2701
|
-
status:
|
|
2704
|
+
status: PurchaseStatus;
|
|
2702
2705
|
account: BaseAccount;
|
|
2703
2706
|
space: BaseBookingSpace;
|
|
2704
2707
|
}
|
|
@@ -2753,6 +2756,48 @@ interface BaseDashboard {
|
|
|
2753
2756
|
interface Dashboard extends BaseDashboard {
|
|
2754
2757
|
widgets: BaseDashboardWidget[];
|
|
2755
2758
|
}
|
|
2759
|
+
interface BaseEventPackage {
|
|
2760
|
+
id: string;
|
|
2761
|
+
name: string;
|
|
2762
|
+
description: string | null;
|
|
2763
|
+
price: number;
|
|
2764
|
+
isActive: boolean;
|
|
2765
|
+
}
|
|
2766
|
+
interface EventPackage extends BaseEventPackage {
|
|
2767
|
+
passes: BaseEventPackagePass[];
|
|
2768
|
+
createdAt: string;
|
|
2769
|
+
updatedAt: string;
|
|
2770
|
+
}
|
|
2771
|
+
interface EventPackageTranslation {
|
|
2772
|
+
id: string;
|
|
2773
|
+
locale: string;
|
|
2774
|
+
name: string | null;
|
|
2775
|
+
description: string | null;
|
|
2776
|
+
}
|
|
2777
|
+
interface BaseEventPackagePass {
|
|
2778
|
+
id: string;
|
|
2779
|
+
passTypeId: string;
|
|
2780
|
+
passType: BaseEventPassType;
|
|
2781
|
+
quantity: number;
|
|
2782
|
+
}
|
|
2783
|
+
interface EventPackagePass extends BaseEventPackagePass {
|
|
2784
|
+
createdAt: string;
|
|
2785
|
+
updatedAt: string;
|
|
2786
|
+
}
|
|
2787
|
+
interface BaseAttendeePackage {
|
|
2788
|
+
id: string;
|
|
2789
|
+
attendeeId: string;
|
|
2790
|
+
packageId: string;
|
|
2791
|
+
package: BaseEventPackage;
|
|
2792
|
+
status: PurchaseStatus;
|
|
2793
|
+
amtPaid: number;
|
|
2794
|
+
amtRefunded: number;
|
|
2795
|
+
}
|
|
2796
|
+
interface AttendeePackage extends BaseAttendeePackage {
|
|
2797
|
+
passes: BaseEventPackagePass[];
|
|
2798
|
+
createdAt: string;
|
|
2799
|
+
updatedAt: string;
|
|
2800
|
+
}
|
|
2756
2801
|
|
|
2757
2802
|
interface ConnectedXMClientContextState {
|
|
2758
2803
|
queryClient: QueryClient;
|
|
@@ -3336,13 +3381,13 @@ interface EventPageUpdateInputs {
|
|
|
3336
3381
|
sortOrder?: number | string | null;
|
|
3337
3382
|
}
|
|
3338
3383
|
interface EventPassCreateInputs {
|
|
3339
|
-
status?:
|
|
3384
|
+
status?: PurchaseStatus | null;
|
|
3340
3385
|
location?: string | null;
|
|
3341
3386
|
usedAt?: string | null;
|
|
3342
3387
|
ticketId?: string | null;
|
|
3343
3388
|
}
|
|
3344
3389
|
interface EventPassUpdateInputs {
|
|
3345
|
-
status?:
|
|
3390
|
+
status?: PurchaseStatus | null;
|
|
3346
3391
|
location?: string | null;
|
|
3347
3392
|
usedAt?: string | null;
|
|
3348
3393
|
ticketId?: string | null;
|
|
@@ -4377,35 +4422,67 @@ interface BookingCreateInputs {
|
|
|
4377
4422
|
accountId: string;
|
|
4378
4423
|
day: string;
|
|
4379
4424
|
time: string;
|
|
4380
|
-
status?:
|
|
4425
|
+
status?: PurchaseStatus;
|
|
4381
4426
|
}
|
|
4382
4427
|
interface BookingUpdateInputs {
|
|
4383
|
-
status?:
|
|
4428
|
+
status?: PurchaseStatus;
|
|
4384
4429
|
day?: string;
|
|
4385
4430
|
time?: string;
|
|
4386
4431
|
}
|
|
4387
4432
|
interface UpdateEventPassResponseInputs {
|
|
4388
4433
|
value: string;
|
|
4389
4434
|
}
|
|
4390
|
-
interface
|
|
4435
|
+
interface DashboardCreateInputs {
|
|
4391
4436
|
name: string;
|
|
4392
4437
|
eventId?: string;
|
|
4393
4438
|
}
|
|
4394
|
-
interface
|
|
4439
|
+
interface DashboardUpdateInputs {
|
|
4395
4440
|
name?: string;
|
|
4396
4441
|
}
|
|
4397
|
-
interface
|
|
4442
|
+
interface DashboardWidgetCreateInputs {
|
|
4398
4443
|
x: number;
|
|
4399
4444
|
y: number;
|
|
4400
4445
|
w: number;
|
|
4401
4446
|
h: number;
|
|
4402
4447
|
}
|
|
4403
|
-
interface
|
|
4448
|
+
interface DashboardWidgetUpdateInputs {
|
|
4404
4449
|
x?: number;
|
|
4405
4450
|
y?: number;
|
|
4406
4451
|
w?: number;
|
|
4407
4452
|
h?: number;
|
|
4408
4453
|
}
|
|
4454
|
+
interface EventPackageCreateInputs {
|
|
4455
|
+
name: string;
|
|
4456
|
+
description?: string | null;
|
|
4457
|
+
price: number;
|
|
4458
|
+
isActive?: boolean;
|
|
4459
|
+
}
|
|
4460
|
+
interface EventPackageUpdateInputs {
|
|
4461
|
+
name?: string;
|
|
4462
|
+
description?: string | null;
|
|
4463
|
+
price?: number;
|
|
4464
|
+
isActive?: boolean;
|
|
4465
|
+
}
|
|
4466
|
+
interface EventPackagePassCreateInputs {
|
|
4467
|
+
passTypeId: string;
|
|
4468
|
+
quantity: number;
|
|
4469
|
+
}
|
|
4470
|
+
interface EventPackagePassUpdateInputs {
|
|
4471
|
+
passTypeId?: string;
|
|
4472
|
+
quantity?: number;
|
|
4473
|
+
}
|
|
4474
|
+
interface AttendeeEventPackageCreateInputs {
|
|
4475
|
+
packageId: string;
|
|
4476
|
+
attendeeId: string;
|
|
4477
|
+
}
|
|
4478
|
+
interface AttendeeEventPackageUpdateInputs {
|
|
4479
|
+
packageId?: string;
|
|
4480
|
+
attendeeId?: string;
|
|
4481
|
+
}
|
|
4482
|
+
interface EventPackageTranslationUpdateInputs {
|
|
4483
|
+
name?: string | null;
|
|
4484
|
+
description?: string | null;
|
|
4485
|
+
}
|
|
4409
4486
|
|
|
4410
4487
|
declare const AppendInfiniteQuery: <TData>(queryClient: QueryClient, key: QueryKey, newData: any) => void;
|
|
4411
4488
|
|
|
@@ -5819,16 +5896,16 @@ declare const useGetBookingPlace: (placeId?: string, options?: SingleQueryOption
|
|
|
5819
5896
|
* @category Keys
|
|
5820
5897
|
* @group Bookings
|
|
5821
5898
|
*/
|
|
5822
|
-
declare const BOOKING_PLACE_BOOKINGS_QUERY_KEY: (placeId: string, past?: boolean, status?:
|
|
5899
|
+
declare const BOOKING_PLACE_BOOKINGS_QUERY_KEY: (placeId: string, past?: boolean, status?: PurchaseStatus) => string[];
|
|
5823
5900
|
/**
|
|
5824
5901
|
* @category Setters
|
|
5825
5902
|
* @group Bookings
|
|
5826
5903
|
*/
|
|
5827
|
-
declare const SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, past?: boolean | undefined, status?:
|
|
5904
|
+
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
5905
|
interface GetBookingPlaceBookingsProps extends InfiniteQueryParams {
|
|
5829
5906
|
placeId: string;
|
|
5830
5907
|
past?: boolean;
|
|
5831
|
-
status?:
|
|
5908
|
+
status?: PurchaseStatus;
|
|
5832
5909
|
}
|
|
5833
5910
|
/**
|
|
5834
5911
|
* @category Queries
|
|
@@ -5839,7 +5916,7 @@ declare const GetBookingPlaceBookings: ({ placeId, past, status, pageParam, page
|
|
|
5839
5916
|
* @category Hooks
|
|
5840
5917
|
* @group Bookings
|
|
5841
5918
|
*/
|
|
5842
|
-
declare const useGetBookingPlaceBookings: (placeId?: string, past?: boolean, status?:
|
|
5919
|
+
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
5920
|
|
|
5844
5921
|
/**
|
|
5845
5922
|
* @category Keys
|
|
@@ -6045,17 +6122,17 @@ declare const useGetBookingSpaceBlackouts: (placeId?: string, spaceId?: string,
|
|
|
6045
6122
|
* @category Keys
|
|
6046
6123
|
* @group Bookings
|
|
6047
6124
|
*/
|
|
6048
|
-
declare const BOOKING_SPACE_BOOKINGS_QUERY_KEY: (placeId: string, spaceId: string, past?: boolean, status?:
|
|
6125
|
+
declare const BOOKING_SPACE_BOOKINGS_QUERY_KEY: (placeId: string, spaceId: string, past?: boolean, status?: PurchaseStatus) => string[];
|
|
6049
6126
|
/**
|
|
6050
6127
|
* @category Setters
|
|
6051
6128
|
* @group Bookings
|
|
6052
6129
|
*/
|
|
6053
|
-
declare const SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, past?: boolean | undefined, status?:
|
|
6130
|
+
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
6131
|
interface GetBookingSpaceBookingsProps extends InfiniteQueryParams {
|
|
6055
6132
|
placeId: string;
|
|
6056
6133
|
spaceId: string;
|
|
6057
6134
|
past?: boolean;
|
|
6058
|
-
status?:
|
|
6135
|
+
status?: PurchaseStatus;
|
|
6059
6136
|
}
|
|
6060
6137
|
/**
|
|
6061
6138
|
* @category Queries
|
|
@@ -6066,7 +6143,7 @@ declare const GetBookingSpaceBookings: ({ placeId, spaceId, status, past, pagePa
|
|
|
6066
6143
|
* @category Hooks
|
|
6067
6144
|
* @group Bookings
|
|
6068
6145
|
*/
|
|
6069
|
-
declare const useGetBookingSpaceBookings: (placeId?: string, spaceId?: string, past?: boolean, status?:
|
|
6146
|
+
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
6147
|
|
|
6071
6148
|
/**
|
|
6072
6149
|
* @category Keys
|
|
@@ -6649,6 +6726,79 @@ declare const GetFeaturedChannels: ({ pageParam, pageSize, orderBy, search, admi
|
|
|
6649
6726
|
*/
|
|
6650
6727
|
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
6728
|
|
|
6729
|
+
/**
|
|
6730
|
+
* @category Keys
|
|
6731
|
+
* @group Dashboards
|
|
6732
|
+
*/
|
|
6733
|
+
declare const DASHBOARD_QUERY_KEY: (dashboardId: string) => string[];
|
|
6734
|
+
/**
|
|
6735
|
+
* @category Setters
|
|
6736
|
+
* @group Dashboards
|
|
6737
|
+
*/
|
|
6738
|
+
declare const SET_DASHBOARD_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof DASHBOARD_QUERY_KEY>, response: Awaited<ReturnType<typeof GetDashboard>>) => void;
|
|
6739
|
+
interface GetDashboardProps extends SingleQueryParams {
|
|
6740
|
+
dashboardId: string;
|
|
6741
|
+
}
|
|
6742
|
+
/**
|
|
6743
|
+
* @category Queries
|
|
6744
|
+
* @group Dashboards
|
|
6745
|
+
*/
|
|
6746
|
+
declare const GetDashboard: ({ adminApiParams, dashboardId, }: GetDashboardProps) => Promise<ConnectedXMResponse<Dashboard>>;
|
|
6747
|
+
/**
|
|
6748
|
+
* @category Hooks
|
|
6749
|
+
* @group Dashboards
|
|
6750
|
+
*/
|
|
6751
|
+
declare const useGetDashboard: (dashboardId?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboard>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Dashboard>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6752
|
+
|
|
6753
|
+
/**
|
|
6754
|
+
* @category Keys
|
|
6755
|
+
* @group Dashboards
|
|
6756
|
+
*/
|
|
6757
|
+
declare const DASHBOARD_WIDGETS_QUERY_KEY: (dashboardId: string, type?: string) => string[];
|
|
6758
|
+
/**
|
|
6759
|
+
* @category Setters
|
|
6760
|
+
* @group Dashboards
|
|
6761
|
+
*/
|
|
6762
|
+
declare const SET_DASHBOARD_WIDGETS_QUERY_DATA: (client: QueryClient, keyParams: [dashboardId: string, type?: string | undefined], response: Awaited<ReturnType<typeof GetDashboardWidgets>>) => void;
|
|
6763
|
+
interface GetDashboardWidgetsProps extends SingleQueryParams {
|
|
6764
|
+
dashboardId: string;
|
|
6765
|
+
type?: string;
|
|
6766
|
+
}
|
|
6767
|
+
/**
|
|
6768
|
+
* @category Queries
|
|
6769
|
+
* @group Dashboards
|
|
6770
|
+
*/
|
|
6771
|
+
declare const GetDashboardWidgets: ({ adminApiParams, dashboardId, type, }: GetDashboardWidgetsProps) => Promise<ConnectedXMResponse<DashboardWidget[]>>;
|
|
6772
|
+
/**
|
|
6773
|
+
* @category Hooks
|
|
6774
|
+
* @group Dashboards
|
|
6775
|
+
*/
|
|
6776
|
+
declare const useGetDashboardWidgets: (dashboardId: string, type?: string, options?: SingleQueryOptions<ReturnType<typeof GetDashboardWidgets>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<DashboardWidget[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
6777
|
+
|
|
6778
|
+
/**
|
|
6779
|
+
* @category Keys
|
|
6780
|
+
* @group Dashboards
|
|
6781
|
+
*/
|
|
6782
|
+
declare const DASHBOARDS_QUERY_KEY: (eventId?: string) => string[];
|
|
6783
|
+
/**
|
|
6784
|
+
* @category Setters
|
|
6785
|
+
* @group Dashboards
|
|
6786
|
+
*/
|
|
6787
|
+
declare const SET_DASHBOARDS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof DASHBOARDS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetDashboards>>) => void;
|
|
6788
|
+
interface GetDashboardsProps extends InfiniteQueryParams {
|
|
6789
|
+
eventId?: string;
|
|
6790
|
+
}
|
|
6791
|
+
/**
|
|
6792
|
+
* @category Queries
|
|
6793
|
+
* @group Dashboards
|
|
6794
|
+
*/
|
|
6795
|
+
declare const GetDashboards: ({ pageParam, pageSize, orderBy, search, eventId, adminApiParams, }: GetDashboardsProps) => Promise<ConnectedXMResponse<BaseDashboard[]>>;
|
|
6796
|
+
/**
|
|
6797
|
+
* @category Hooks
|
|
6798
|
+
* @group Dashboards
|
|
6799
|
+
*/
|
|
6800
|
+
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>>;
|
|
6801
|
+
|
|
6652
6802
|
/**
|
|
6653
6803
|
* @category Key
|
|
6654
6804
|
* @group Emails
|
|
@@ -6690,12 +6840,12 @@ interface GetEmailReceiptsParams extends InfiniteQueryParams {
|
|
|
6690
6840
|
* @category Query
|
|
6691
6841
|
* @group Emails
|
|
6692
6842
|
*/
|
|
6693
|
-
declare const GetEmailReceipts: ({ pageParam, pageSize, orderBy, search, status, adminApiParams, }: GetEmailReceiptsParams) => Promise<ConnectedXMResponse<
|
|
6843
|
+
declare const GetEmailReceipts: ({ pageParam, pageSize, orderBy, search, status, adminApiParams, }: GetEmailReceiptsParams) => Promise<ConnectedXMResponse<BaseEmailReceipt[]>>;
|
|
6694
6844
|
/**
|
|
6695
6845
|
* @category Hooks
|
|
6696
6846
|
* @group Emails
|
|
6697
6847
|
*/
|
|
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<
|
|
6848
|
+
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
6849
|
|
|
6700
6850
|
/**
|
|
6701
6851
|
* @category Keys
|
|
@@ -7195,7 +7345,7 @@ declare const useGetEventAttendeeCoupons: (eventId?: string, accountId?: string,
|
|
|
7195
7345
|
* @category Keys
|
|
7196
7346
|
* @group Events
|
|
7197
7347
|
*/
|
|
7198
|
-
declare const EVENT_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, accountId: string, status?: keyof typeof
|
|
7348
|
+
declare const EVENT_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, accountId: string, status?: keyof typeof PurchaseStatus) => string[];
|
|
7199
7349
|
/**
|
|
7200
7350
|
* @category Setters
|
|
7201
7351
|
* @group Events
|
|
@@ -7204,7 +7354,7 @@ declare const SET_EVENT_ATTENDEE_PASSES_QUERY_DATA: (client: QueryClient, keyPar
|
|
|
7204
7354
|
interface GetEventAttendeePassesProps extends InfiniteQueryParams {
|
|
7205
7355
|
eventId: string;
|
|
7206
7356
|
accountId: string;
|
|
7207
|
-
status?: keyof typeof
|
|
7357
|
+
status?: keyof typeof PurchaseStatus;
|
|
7208
7358
|
}
|
|
7209
7359
|
/**
|
|
7210
7360
|
* @category Queries
|
|
@@ -7215,7 +7365,7 @@ declare const GetEventAttendeePasses: ({ eventId, accountId, status, pageParam,
|
|
|
7215
7365
|
* @category Hooks
|
|
7216
7366
|
* @group Events
|
|
7217
7367
|
*/
|
|
7218
|
-
declare const useGetEventAttendeePasses: (eventId?: string, accountId?: string, status?: keyof typeof
|
|
7368
|
+
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
7369
|
|
|
7220
7370
|
/**
|
|
7221
7371
|
* @category Keys
|
|
@@ -7271,15 +7421,15 @@ declare const useGetEventAttendeeTransfersLogs: (eventId: string, accountId: str
|
|
|
7271
7421
|
* @category Keys
|
|
7272
7422
|
* @group Events
|
|
7273
7423
|
*/
|
|
7274
|
-
declare const EVENT_ATTENDEES_QUERY_KEY: (eventId: string, status?:
|
|
7424
|
+
declare const EVENT_ATTENDEES_QUERY_KEY: (eventId: string, status?: PurchaseStatus) => string[];
|
|
7275
7425
|
/**
|
|
7276
7426
|
* @category Setters
|
|
7277
7427
|
* @group Events
|
|
7278
7428
|
*/
|
|
7279
|
-
declare const SET_EVENT_ATTENDEES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, status?:
|
|
7429
|
+
declare const SET_EVENT_ATTENDEES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, status?: PurchaseStatus | undefined], response: Awaited<ReturnType<typeof GetEventAttendees>>) => void;
|
|
7280
7430
|
interface GetEventAttendeesProps extends InfiniteQueryParams {
|
|
7281
7431
|
eventId: string;
|
|
7282
|
-
status?:
|
|
7432
|
+
status?: PurchaseStatus;
|
|
7283
7433
|
}
|
|
7284
7434
|
/**
|
|
7285
7435
|
* @category Queries
|
|
@@ -7290,13 +7440,13 @@ declare const GetEventAttendees: ({ eventId, pageParam, pageSize, orderBy, searc
|
|
|
7290
7440
|
* @category Hooks
|
|
7291
7441
|
* @group Events
|
|
7292
7442
|
*/
|
|
7293
|
-
declare const useGetEventAttendees: (eventId: string, status?:
|
|
7443
|
+
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
7444
|
|
|
7295
7445
|
/**
|
|
7296
7446
|
* @category Keys
|
|
7297
7447
|
* @group Events
|
|
7298
7448
|
*/
|
|
7299
|
-
declare const EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, passId: string, status?: keyof typeof
|
|
7449
|
+
declare const EVENT_PASS_ATTENDEE_PASSES_QUERY_KEY: (eventId: string, passId: string, status?: keyof typeof PurchaseStatus) => string[];
|
|
7300
7450
|
/**
|
|
7301
7451
|
* @category Setters
|
|
7302
7452
|
* @group Events
|
|
@@ -7305,7 +7455,7 @@ declare const SET_EVENT_PASS_ATTENDEE_PASSES_QUERY_DATA: (client: QueryClient, k
|
|
|
7305
7455
|
interface GetEventPassAttendeePassesProps extends InfiniteQueryParams {
|
|
7306
7456
|
eventId: string;
|
|
7307
7457
|
passId: string;
|
|
7308
|
-
status?: keyof typeof
|
|
7458
|
+
status?: keyof typeof PurchaseStatus;
|
|
7309
7459
|
}
|
|
7310
7460
|
/**
|
|
7311
7461
|
* @category Queries
|
|
@@ -7316,7 +7466,7 @@ declare const GetEventPassAttendeePasses: ({ eventId, passId, status, pageParam,
|
|
|
7316
7466
|
* @category Hooks
|
|
7317
7467
|
* @group Events
|
|
7318
7468
|
*/
|
|
7319
|
-
declare const useGetEventPassAttendeePasses: (eventId?: string, passId?: string, status?: keyof typeof
|
|
7469
|
+
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
7470
|
|
|
7321
7471
|
/**
|
|
7322
7472
|
* @category Keys
|
|
@@ -7813,6 +7963,157 @@ declare const GetEventZplTemplateBadgeField: ({ fieldId, eventId, adminApiParams
|
|
|
7813
7963
|
*/
|
|
7814
7964
|
declare const useGetEventZplTemplateBadgeField: (eventId?: string, fieldId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventZplTemplateBadgeField>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventOnSiteBadgeField>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
7815
7965
|
|
|
7966
|
+
/**
|
|
7967
|
+
* @category Keys
|
|
7968
|
+
* @group Events
|
|
7969
|
+
*/
|
|
7970
|
+
declare const EVENT_PACKAGE_PASS_QUERY_KEY: (eventId: string, packageId: string, passId: string) => string[];
|
|
7971
|
+
/**
|
|
7972
|
+
* @category Setters
|
|
7973
|
+
* @group Events
|
|
7974
|
+
*/
|
|
7975
|
+
declare const SET_EVENT_PACKAGE_PASS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, packageId: string, passId: string], response: Awaited<ReturnType<typeof GetEventPackagePass>>) => void;
|
|
7976
|
+
interface GetEventPackagePassProps extends SingleQueryParams {
|
|
7977
|
+
eventId: string;
|
|
7978
|
+
packageId: string;
|
|
7979
|
+
passId: string;
|
|
7980
|
+
}
|
|
7981
|
+
/**
|
|
7982
|
+
* @category Queries
|
|
7983
|
+
* @group Events
|
|
7984
|
+
*/
|
|
7985
|
+
declare const GetEventPackagePass: ({ eventId, packageId, passId, adminApiParams, }: GetEventPackagePassProps) => Promise<ConnectedXMResponse<EventPackagePass>>;
|
|
7986
|
+
/**
|
|
7987
|
+
* @category Hooks
|
|
7988
|
+
* @group Events
|
|
7989
|
+
*/
|
|
7990
|
+
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>>;
|
|
7991
|
+
|
|
7992
|
+
/**
|
|
7993
|
+
* @category Keys
|
|
7994
|
+
* @group Events
|
|
7995
|
+
*/
|
|
7996
|
+
declare const EVENT_PACKAGE_PASSES_QUERY_KEY: (eventId: string, packageId: string) => string[];
|
|
7997
|
+
/**
|
|
7998
|
+
* @category Setters
|
|
7999
|
+
* @group Events
|
|
8000
|
+
*/
|
|
8001
|
+
declare const SET_EVENT_PACKAGE_PASSES_QUERY_DATA: (client: any, keyParams: [eventId: string, packageId: string], response: Awaited<ReturnType<typeof GetEventPackagePasses>>) => void;
|
|
8002
|
+
interface GetEventPackagePassesProps extends InfiniteQueryParams {
|
|
8003
|
+
eventId: string;
|
|
8004
|
+
packageId: string;
|
|
8005
|
+
}
|
|
8006
|
+
/**
|
|
8007
|
+
* @category Queries
|
|
8008
|
+
* @group Events
|
|
8009
|
+
*/
|
|
8010
|
+
declare const GetEventPackagePasses: ({ eventId, packageId, pageParam, pageSize, search, adminApiParams, }: GetEventPackagePassesProps) => Promise<ConnectedXMResponse<EventPackagePass[]>>;
|
|
8011
|
+
/**
|
|
8012
|
+
* @category Hooks
|
|
8013
|
+
* @group Events
|
|
8014
|
+
*/
|
|
8015
|
+
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>>;
|
|
8016
|
+
|
|
8017
|
+
/**
|
|
8018
|
+
* @category Keys
|
|
8019
|
+
* @group Events
|
|
8020
|
+
*/
|
|
8021
|
+
declare const EVENT_PACKAGE_TRANSLATION_QUERY_KEY: (eventId: string, packageId: string, locale: string) => string[];
|
|
8022
|
+
/**
|
|
8023
|
+
* @category Setters
|
|
8024
|
+
* @group Events
|
|
8025
|
+
*/
|
|
8026
|
+
declare const SET_EVENT_PACKAGE_TRANSLATION_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, packageId: string, locale: string], response: Awaited<ReturnType<typeof GetEventPackageTranslation>>) => void;
|
|
8027
|
+
interface GetEventPackageTranslationProps extends SingleQueryParams {
|
|
8028
|
+
eventId: string;
|
|
8029
|
+
packageId: string;
|
|
8030
|
+
locale: string;
|
|
8031
|
+
}
|
|
8032
|
+
/**
|
|
8033
|
+
* @category Queries
|
|
8034
|
+
* @group Events
|
|
8035
|
+
*/
|
|
8036
|
+
declare const GetEventPackageTranslation: ({ eventId, packageId, locale, adminApiParams, }: GetEventPackageTranslationProps) => Promise<ConnectedXMResponse<EventPackageTranslation>>;
|
|
8037
|
+
/**
|
|
8038
|
+
* @category Hooks
|
|
8039
|
+
* @group Events
|
|
8040
|
+
*/
|
|
8041
|
+
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>>;
|
|
8042
|
+
|
|
8043
|
+
/**
|
|
8044
|
+
* @category Keys
|
|
8045
|
+
* @group Events
|
|
8046
|
+
*/
|
|
8047
|
+
declare const EVENT_PACKAGE_TRANSLATIONS_QUERY_KEY: (eventId: string, packageId: string) => string[];
|
|
8048
|
+
/**
|
|
8049
|
+
* @category Setters
|
|
8050
|
+
* @group Events
|
|
8051
|
+
*/
|
|
8052
|
+
declare const SET_EVENT_PACKAGE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, packageId: string], response: Awaited<ReturnType<typeof GetEventPackageTranslations>>) => void;
|
|
8053
|
+
interface GetEventPackageTranslationsProps extends InfiniteQueryParams {
|
|
8054
|
+
eventId: string;
|
|
8055
|
+
packageId: string;
|
|
8056
|
+
}
|
|
8057
|
+
/**
|
|
8058
|
+
* @category Queries
|
|
8059
|
+
* @group Events
|
|
8060
|
+
*/
|
|
8061
|
+
declare const GetEventPackageTranslations: ({ eventId, packageId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventPackageTranslationsProps) => Promise<ConnectedXMResponse<EventPackageTranslation[]>>;
|
|
8062
|
+
/**
|
|
8063
|
+
* @category Hooks
|
|
8064
|
+
* @group Events
|
|
8065
|
+
*/
|
|
8066
|
+
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>>;
|
|
8067
|
+
|
|
8068
|
+
/**
|
|
8069
|
+
* @category Keys
|
|
8070
|
+
* @group Events
|
|
8071
|
+
*/
|
|
8072
|
+
declare const EVENT_PACKAGE_QUERY_KEY: (eventId: string, packageId: string) => string[];
|
|
8073
|
+
/**
|
|
8074
|
+
* @category Setters
|
|
8075
|
+
* @group Events
|
|
8076
|
+
*/
|
|
8077
|
+
declare const SET_EVENT_PACKAGE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, packageId: string], response: Awaited<ReturnType<typeof GetEventPackage>>) => void;
|
|
8078
|
+
interface GetEventPackageProps extends SingleQueryParams {
|
|
8079
|
+
eventId: string;
|
|
8080
|
+
packageId: string;
|
|
8081
|
+
}
|
|
8082
|
+
/**
|
|
8083
|
+
* @category Queries
|
|
8084
|
+
* @group Events
|
|
8085
|
+
*/
|
|
8086
|
+
declare const GetEventPackage: ({ eventId, packageId, adminApiParams, }: GetEventPackageProps) => Promise<ConnectedXMResponse<EventPackage>>;
|
|
8087
|
+
/**
|
|
8088
|
+
* @category Hooks
|
|
8089
|
+
* @group Events
|
|
8090
|
+
*/
|
|
8091
|
+
declare const useGetEventPackage: (eventId?: string, packageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventPackage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<EventPackage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
8092
|
+
|
|
8093
|
+
/**
|
|
8094
|
+
* @category Keys
|
|
8095
|
+
* @group Events
|
|
8096
|
+
*/
|
|
8097
|
+
declare const EVENT_PACKAGES_QUERY_KEY: (eventId: string) => string[];
|
|
8098
|
+
/**
|
|
8099
|
+
* @category Setters
|
|
8100
|
+
* @group Events
|
|
8101
|
+
*/
|
|
8102
|
+
declare const SET_EVENT_PACKAGES_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_PACKAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventPackages>>) => void;
|
|
8103
|
+
interface GetEventPackagesProps extends InfiniteQueryParams {
|
|
8104
|
+
eventId: string;
|
|
8105
|
+
}
|
|
8106
|
+
/**
|
|
8107
|
+
* @category Queries
|
|
8108
|
+
* @group Events
|
|
8109
|
+
*/
|
|
8110
|
+
declare const GetEventPackages: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventPackagesProps) => Promise<ConnectedXMResponse<EventPackage[]>>;
|
|
8111
|
+
/**
|
|
8112
|
+
* @category Hooks
|
|
8113
|
+
* @group Events
|
|
8114
|
+
*/
|
|
8115
|
+
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>>;
|
|
8116
|
+
|
|
7816
8117
|
/**
|
|
7817
8118
|
* @category Keys
|
|
7818
8119
|
* @group Events
|
|
@@ -12682,98 +12983,25 @@ declare const GetVideos: ({ pageParam, pageSize, orderBy, search, source, adminA
|
|
|
12682
12983
|
*/
|
|
12683
12984
|
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
12985
|
|
|
12986
|
+
interface MutationParams {
|
|
12987
|
+
adminApiParams: AdminApiParams;
|
|
12988
|
+
queryClient?: QueryClient;
|
|
12989
|
+
}
|
|
12990
|
+
interface ConnectedXMMutationOptions<TResponseData, TMutationParams> extends UseMutationOptions<TResponseData, AxiosError<TResponseData>, TMutationParams> {
|
|
12991
|
+
}
|
|
12992
|
+
declare const useConnectedMutation: <TMutationParams extends MutationParams, TResponseData extends ConnectedXMResponse<any>>(mutation: MutationFunction<TResponseData, TMutationParams>, options?: Omit<ConnectedXMMutationOptions<TResponseData, Omit<TMutationParams, "queryClient" | "adminApiParams">>, "mutationFn">, permission?: {
|
|
12993
|
+
domain: PermissionDomain | PermissionDomain[];
|
|
12994
|
+
type: PermissionType | PermissionType[];
|
|
12995
|
+
}) => _tanstack_react_query.UseMutationResult<TResponseData, AxiosError<TResponseData, any>, Omit<TMutationParams, "queryClient" | "adminApiParams">, unknown>;
|
|
12996
|
+
|
|
12685
12997
|
/**
|
|
12686
|
-
* @category
|
|
12687
|
-
* @group
|
|
12998
|
+
* @category Params
|
|
12999
|
+
* @group Account
|
|
12688
13000
|
*/
|
|
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
|
-
}
|
|
13001
|
+
interface AddAccountDelegateParams extends MutationParams {
|
|
13002
|
+
accountId: string;
|
|
13003
|
+
delegateId: string;
|
|
13004
|
+
}
|
|
12777
13005
|
/**
|
|
12778
13006
|
* @category Methods
|
|
12779
13007
|
* @group Account
|
|
@@ -14613,6 +14841,119 @@ declare const UpdateChannelSubscriber: ({ accountId, channelId, channelSubscribe
|
|
|
14613
14841
|
*/
|
|
14614
14842
|
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
14843
|
|
|
14844
|
+
/**
|
|
14845
|
+
* @category Params
|
|
14846
|
+
* @group Dashboard
|
|
14847
|
+
*/
|
|
14848
|
+
interface CreateDashboardParams extends MutationParams {
|
|
14849
|
+
dashboard: DashboardCreateInputs;
|
|
14850
|
+
}
|
|
14851
|
+
/**
|
|
14852
|
+
* @category Methods
|
|
14853
|
+
* @group Dashboard
|
|
14854
|
+
*/
|
|
14855
|
+
declare const CreateDashboard: ({ dashboard, adminApiParams, queryClient, }: CreateDashboardParams) => Promise<ConnectedXMResponse<Dashboard>>;
|
|
14856
|
+
/**
|
|
14857
|
+
* @category Mutations
|
|
14858
|
+
* @group Dashboard
|
|
14859
|
+
*/
|
|
14860
|
+
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>;
|
|
14861
|
+
|
|
14862
|
+
/**
|
|
14863
|
+
* @category Params
|
|
14864
|
+
* @group Dashboard
|
|
14865
|
+
*/
|
|
14866
|
+
interface CreateDashboardWidgetParams extends MutationParams {
|
|
14867
|
+
dashboardId: string;
|
|
14868
|
+
widgetData: DashboardWidgetCreateInputs;
|
|
14869
|
+
}
|
|
14870
|
+
/**
|
|
14871
|
+
* @category Methods
|
|
14872
|
+
* @group Dashboard
|
|
14873
|
+
*/
|
|
14874
|
+
declare const CreateDashboardWidget: ({ dashboardId, widgetData, adminApiParams, queryClient, }: CreateDashboardWidgetParams) => Promise<ConnectedXMResponse<DashboardWidget>>;
|
|
14875
|
+
/**
|
|
14876
|
+
* @category Mutations
|
|
14877
|
+
* @group Dashboard
|
|
14878
|
+
*/
|
|
14879
|
+
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>;
|
|
14880
|
+
|
|
14881
|
+
/**
|
|
14882
|
+
* @category Params
|
|
14883
|
+
* @group Dashboard
|
|
14884
|
+
*/
|
|
14885
|
+
interface DeleteDashboardParams extends MutationParams {
|
|
14886
|
+
dashboardId: string;
|
|
14887
|
+
}
|
|
14888
|
+
/**
|
|
14889
|
+
* @category Methods
|
|
14890
|
+
* @group Dashboard
|
|
14891
|
+
*/
|
|
14892
|
+
declare const DeleteDashboard: ({ dashboardId, adminApiParams, queryClient, }: DeleteDashboardParams) => Promise<ConnectedXMResponse<any>>;
|
|
14893
|
+
/**
|
|
14894
|
+
* @category Mutations
|
|
14895
|
+
* @group Dashboard
|
|
14896
|
+
*/
|
|
14897
|
+
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>;
|
|
14898
|
+
|
|
14899
|
+
/**
|
|
14900
|
+
* @category Params
|
|
14901
|
+
* @group Dashboard
|
|
14902
|
+
*/
|
|
14903
|
+
interface DeleteDashboardWidgetParams extends MutationParams {
|
|
14904
|
+
dashboardId: string;
|
|
14905
|
+
widgetId: string;
|
|
14906
|
+
}
|
|
14907
|
+
/**
|
|
14908
|
+
* @category Methods
|
|
14909
|
+
* @group Dashboard
|
|
14910
|
+
*/
|
|
14911
|
+
declare const DeleteDashboardWidget: ({ dashboardId, widgetId, adminApiParams, queryClient, }: DeleteDashboardWidgetParams) => Promise<ConnectedXMResponse<any>>;
|
|
14912
|
+
/**
|
|
14913
|
+
* @category Mutations
|
|
14914
|
+
* @group Dashboard
|
|
14915
|
+
*/
|
|
14916
|
+
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>;
|
|
14917
|
+
|
|
14918
|
+
/**
|
|
14919
|
+
* @category Params
|
|
14920
|
+
* @group Dashboard
|
|
14921
|
+
*/
|
|
14922
|
+
interface UpdateDashboardParams extends MutationParams {
|
|
14923
|
+
dashboardId: string;
|
|
14924
|
+
dashboard: DashboardUpdateInputs;
|
|
14925
|
+
}
|
|
14926
|
+
/**
|
|
14927
|
+
* @category Methods
|
|
14928
|
+
* @group Dashboard
|
|
14929
|
+
*/
|
|
14930
|
+
declare const UpdateDashboard: ({ dashboardId, dashboard, adminApiParams, queryClient, }: UpdateDashboardParams) => Promise<ConnectedXMResponse<Dashboard>>;
|
|
14931
|
+
/**
|
|
14932
|
+
* @category Mutations
|
|
14933
|
+
* @group Dashboard
|
|
14934
|
+
*/
|
|
14935
|
+
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>;
|
|
14936
|
+
|
|
14937
|
+
/**
|
|
14938
|
+
* @category Params
|
|
14939
|
+
* @group Dashboard
|
|
14940
|
+
*/
|
|
14941
|
+
interface UpdateDashboardWidgetParams extends MutationParams {
|
|
14942
|
+
dashboardId: string;
|
|
14943
|
+
widgetId: string;
|
|
14944
|
+
widgetData: DashboardWidgetUpdateInputs;
|
|
14945
|
+
}
|
|
14946
|
+
/**
|
|
14947
|
+
* @category Methods
|
|
14948
|
+
* @group Dashboard
|
|
14949
|
+
*/
|
|
14950
|
+
declare const UpdateDashboardWidget: ({ dashboardId, widgetId, widgetData, adminApiParams, queryClient, }: UpdateDashboardWidgetParams) => Promise<ConnectedXMResponse<DashboardWidget>>;
|
|
14951
|
+
/**
|
|
14952
|
+
* @category Mutations
|
|
14953
|
+
* @group Dashboard
|
|
14954
|
+
*/
|
|
14955
|
+
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>;
|
|
14956
|
+
|
|
14616
14957
|
/**
|
|
14617
14958
|
* @category Mutations
|
|
14618
14959
|
* @group Events
|
|
@@ -15822,6 +16163,187 @@ declare const UpdateEventZplTemplateBadgeField: ({ eventId, fieldId, field, admi
|
|
|
15822
16163
|
*/
|
|
15823
16164
|
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
16165
|
|
|
16166
|
+
/**
|
|
16167
|
+
* @category Params
|
|
16168
|
+
* @group Event-Packages
|
|
16169
|
+
*/
|
|
16170
|
+
interface CreateEventPackagePassParams extends MutationParams {
|
|
16171
|
+
eventId: string;
|
|
16172
|
+
packageId: string;
|
|
16173
|
+
pass: EventPackagePassCreateInputs;
|
|
16174
|
+
}
|
|
16175
|
+
/**
|
|
16176
|
+
* @category Methods
|
|
16177
|
+
* @group Event-Packages
|
|
16178
|
+
*/
|
|
16179
|
+
declare const CreateEventPackagePass: ({ eventId, packageId, pass, adminApiParams, queryClient, }: CreateEventPackagePassParams) => Promise<ConnectedXMResponse<EventPackagePass>>;
|
|
16180
|
+
/**
|
|
16181
|
+
* @category Mutations
|
|
16182
|
+
* @group Event-Packages
|
|
16183
|
+
*/
|
|
16184
|
+
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>;
|
|
16185
|
+
|
|
16186
|
+
/**
|
|
16187
|
+
* @category Params
|
|
16188
|
+
* @group Event-Packages
|
|
16189
|
+
*/
|
|
16190
|
+
interface DeleteEventPackagePassParams extends MutationParams {
|
|
16191
|
+
eventId: string;
|
|
16192
|
+
packageId: string;
|
|
16193
|
+
passId: string;
|
|
16194
|
+
}
|
|
16195
|
+
/**
|
|
16196
|
+
* @category Methods
|
|
16197
|
+
* @group Event-Packages
|
|
16198
|
+
*/
|
|
16199
|
+
declare const DeleteEventPackagePass: ({ eventId, packageId, passId, adminApiParams, queryClient, }: DeleteEventPackagePassParams) => Promise<ConnectedXMResponse<null>>;
|
|
16200
|
+
/**
|
|
16201
|
+
* @category Mutations
|
|
16202
|
+
* @group Event-Packages
|
|
16203
|
+
*/
|
|
16204
|
+
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>;
|
|
16205
|
+
|
|
16206
|
+
/**
|
|
16207
|
+
* @category Params
|
|
16208
|
+
* @group Event-Packages
|
|
16209
|
+
*/
|
|
16210
|
+
interface UpdateEventPackagePassParams extends MutationParams {
|
|
16211
|
+
eventId: string;
|
|
16212
|
+
packageId: string;
|
|
16213
|
+
passId: string;
|
|
16214
|
+
pass: EventPackagePassUpdateInputs;
|
|
16215
|
+
}
|
|
16216
|
+
/**
|
|
16217
|
+
* @category Methods
|
|
16218
|
+
* @group Event-Packages
|
|
16219
|
+
*/
|
|
16220
|
+
declare const UpdateEventPackagePass: ({ eventId, packageId, passId, pass, adminApiParams, queryClient, }: UpdateEventPackagePassParams) => Promise<ConnectedXMResponse<EventPackagePass>>;
|
|
16221
|
+
/**
|
|
16222
|
+
* @category Mutations
|
|
16223
|
+
* @group Event-Packages
|
|
16224
|
+
*/
|
|
16225
|
+
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>;
|
|
16226
|
+
|
|
16227
|
+
/**
|
|
16228
|
+
* @category Params
|
|
16229
|
+
* @group Event-Packages
|
|
16230
|
+
*/
|
|
16231
|
+
interface CreateEventPackageTranslationParams extends MutationParams {
|
|
16232
|
+
eventId: string;
|
|
16233
|
+
packageId: string;
|
|
16234
|
+
locale: string;
|
|
16235
|
+
autoTranslate?: boolean;
|
|
16236
|
+
}
|
|
16237
|
+
/**
|
|
16238
|
+
* @category Methods
|
|
16239
|
+
* @group Event-Packages
|
|
16240
|
+
*/
|
|
16241
|
+
declare const CreateEventPackageTranslation: ({ eventId, packageId, locale, autoTranslate, adminApiParams, queryClient, }: CreateEventPackageTranslationParams) => Promise<ConnectedXMResponse<EventPackageTranslation>>;
|
|
16242
|
+
/**
|
|
16243
|
+
* @category Mutations
|
|
16244
|
+
* @group Event-Packages
|
|
16245
|
+
*/
|
|
16246
|
+
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>;
|
|
16247
|
+
|
|
16248
|
+
/**
|
|
16249
|
+
* @category Params
|
|
16250
|
+
* @group Event-Packages
|
|
16251
|
+
*/
|
|
16252
|
+
interface DeleteEventPackageTranslationParams extends MutationParams {
|
|
16253
|
+
eventId: string;
|
|
16254
|
+
packageId: string;
|
|
16255
|
+
locale: string;
|
|
16256
|
+
}
|
|
16257
|
+
/**
|
|
16258
|
+
* @category Methods
|
|
16259
|
+
* @group Event-Packages
|
|
16260
|
+
*/
|
|
16261
|
+
declare const DeleteEventPackageTranslation: ({ eventId, packageId, locale, adminApiParams, queryClient, }: DeleteEventPackageTranslationParams) => Promise<ConnectedXMResponse<null>>;
|
|
16262
|
+
/**
|
|
16263
|
+
* @category Mutations
|
|
16264
|
+
* @group Event-Packages
|
|
16265
|
+
*/
|
|
16266
|
+
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>;
|
|
16267
|
+
|
|
16268
|
+
/**
|
|
16269
|
+
* @category Params
|
|
16270
|
+
* @group Event-Packages
|
|
16271
|
+
*/
|
|
16272
|
+
interface UpdateEventPackageTranslationParams extends MutationParams {
|
|
16273
|
+
eventId: string;
|
|
16274
|
+
packageId: string;
|
|
16275
|
+
locale: string;
|
|
16276
|
+
translation: EventPackageTranslationUpdateInputs;
|
|
16277
|
+
}
|
|
16278
|
+
/**
|
|
16279
|
+
* @category Methods
|
|
16280
|
+
* @group Event-Packages
|
|
16281
|
+
*/
|
|
16282
|
+
declare const UpdateEventPackageTranslation: ({ eventId, packageId, locale, translation, adminApiParams, queryClient, }: UpdateEventPackageTranslationParams) => Promise<ConnectedXMResponse<EventPackageTranslation>>;
|
|
16283
|
+
/**
|
|
16284
|
+
* @category Mutations
|
|
16285
|
+
* @group Event-Packages
|
|
16286
|
+
*/
|
|
16287
|
+
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>;
|
|
16288
|
+
|
|
16289
|
+
/**
|
|
16290
|
+
* @category Params
|
|
16291
|
+
* @group Event-Packages
|
|
16292
|
+
*/
|
|
16293
|
+
interface CreateEventPackageParams extends MutationParams {
|
|
16294
|
+
eventId: string;
|
|
16295
|
+
package: EventPackageCreateInputs;
|
|
16296
|
+
}
|
|
16297
|
+
/**
|
|
16298
|
+
* @category Methods
|
|
16299
|
+
* @group Event-Packages
|
|
16300
|
+
*/
|
|
16301
|
+
declare const CreateEventPackage: ({ eventId, package: packageData, adminApiParams, queryClient, }: CreateEventPackageParams) => Promise<ConnectedXMResponse<EventPackage>>;
|
|
16302
|
+
/**
|
|
16303
|
+
* @category Mutations
|
|
16304
|
+
* @group Event-Packages
|
|
16305
|
+
*/
|
|
16306
|
+
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>;
|
|
16307
|
+
|
|
16308
|
+
/**
|
|
16309
|
+
* @category Params
|
|
16310
|
+
* @group Event-Packages
|
|
16311
|
+
*/
|
|
16312
|
+
interface DeleteEventPackageParams extends MutationParams {
|
|
16313
|
+
eventId: string;
|
|
16314
|
+
packageId: string;
|
|
16315
|
+
}
|
|
16316
|
+
/**
|
|
16317
|
+
* @category Methods
|
|
16318
|
+
* @group Event-Packages
|
|
16319
|
+
*/
|
|
16320
|
+
declare const DeleteEventPackage: ({ eventId, packageId, adminApiParams, queryClient, }: DeleteEventPackageParams) => Promise<ConnectedXMResponse<null>>;
|
|
16321
|
+
/**
|
|
16322
|
+
* @category Mutations
|
|
16323
|
+
* @group Event-Packages
|
|
16324
|
+
*/
|
|
16325
|
+
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>;
|
|
16326
|
+
|
|
16327
|
+
/**
|
|
16328
|
+
* @category Params
|
|
16329
|
+
* @group Event-Packages
|
|
16330
|
+
*/
|
|
16331
|
+
interface UpdateEventPackageParams extends MutationParams {
|
|
16332
|
+
eventId: string;
|
|
16333
|
+
packageId: string;
|
|
16334
|
+
package: EventPackageUpdateInputs;
|
|
16335
|
+
}
|
|
16336
|
+
/**
|
|
16337
|
+
* @category Methods
|
|
16338
|
+
* @group Event-Packages
|
|
16339
|
+
*/
|
|
16340
|
+
declare const UpdateEventPackage: ({ eventId, packageId, package: packageData, adminApiParams, queryClient, }: UpdateEventPackageParams) => Promise<ConnectedXMResponse<EventPackage>>;
|
|
16341
|
+
/**
|
|
16342
|
+
* @category Mutations
|
|
16343
|
+
* @group Event-Packages
|
|
16344
|
+
*/
|
|
16345
|
+
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>;
|
|
16346
|
+
|
|
15825
16347
|
/**
|
|
15826
16348
|
* @category Params
|
|
15827
16349
|
* @group Event-Page-Translation
|
|
@@ -21092,117 +21614,4 @@ declare const UpdateVideo: ({ videoId, video, adminApiParams, queryClient, }: Up
|
|
|
21092
21614
|
*/
|
|
21093
21615
|
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
21616
|
|
|
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 };
|
|
21617
|
+
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 };
|