@connectedxm/admin 1.4.18 → 1.4.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -182,7 +182,8 @@ declare enum RegistrationQuestionType {
182
182
  }
183
183
  declare enum ReportType {
184
184
  organization = "organization",
185
- event = "event"
185
+ event = "event",
186
+ booking = "booking"
186
187
  }
187
188
  declare enum OrganizationTriggerType {
188
189
  postAuth = "postAuth"
@@ -1297,6 +1298,7 @@ interface OrganizationMembership {
1297
1298
  subscriptions: ModulePermissions;
1298
1299
  invoices: ModulePermissions;
1299
1300
  announcements: ModulePermissions;
1301
+ bookings: ModulePermissions;
1300
1302
  }
1301
1303
  interface BaseOrganization {
1302
1304
  id: string;
@@ -2449,13 +2451,13 @@ interface BaseSchedule {
2449
2451
  }
2450
2452
  interface Schedule extends BaseSchedule {
2451
2453
  }
2452
- interface BaseCognitoUser {
2454
+ interface BaseLogin {
2453
2455
  cognitoUsername: string;
2454
2456
  provider: string;
2455
2457
  updatedAt: string;
2456
2458
  createdAt: string;
2457
2459
  }
2458
- interface CognitoUser extends BaseCognitoUser {
2460
+ interface Login extends BaseLogin {
2459
2461
  sub: string;
2460
2462
  userPoolId: string;
2461
2463
  enabled: boolean;
@@ -2596,6 +2598,106 @@ interface Lead extends BaseLead {
2596
2598
  note: string | null;
2597
2599
  updatedAt: string;
2598
2600
  }
2601
+ declare enum DayOfWeek {
2602
+ sunday = "sunday",
2603
+ monday = "monday",
2604
+ tuesday = "tuesday",
2605
+ wednesday = "wednesday",
2606
+ thursday = "thursday",
2607
+ friday = "friday",
2608
+ saturday = "saturday"
2609
+ }
2610
+ interface BaseBookingPlace {
2611
+ id: string;
2612
+ name: string;
2613
+ slug: string;
2614
+ timezone: string;
2615
+ description: string | null;
2616
+ image: BaseImage | null;
2617
+ sortOrder: number;
2618
+ visible: boolean;
2619
+ }
2620
+ interface BookingPlace extends BaseBookingPlace {
2621
+ address1: string | null;
2622
+ address2: string | null;
2623
+ city: string | null;
2624
+ state: string | null;
2625
+ zip: string | null;
2626
+ createdAt: string;
2627
+ updatedAt: string;
2628
+ }
2629
+ interface BaseBookingSpace {
2630
+ id: string;
2631
+ name: string;
2632
+ slug: string;
2633
+ supply: number;
2634
+ slotDuration: number;
2635
+ price: number;
2636
+ description: string | null;
2637
+ image: BaseImage | null;
2638
+ start: string | null;
2639
+ end: string | null;
2640
+ sortOrder: number;
2641
+ visible: boolean;
2642
+ }
2643
+ interface BookingSpace extends BaseBookingSpace {
2644
+ createdAt: string;
2645
+ updatedAt: string;
2646
+ }
2647
+ interface BookingPlaceTranslation {
2648
+ id: number;
2649
+ locale: string;
2650
+ name: string | null;
2651
+ description: string | null;
2652
+ createdAt: string;
2653
+ updatedAt: string;
2654
+ }
2655
+ interface BookingSpaceTranslation {
2656
+ id: number;
2657
+ locale: string;
2658
+ name: string | null;
2659
+ description: string | null;
2660
+ createdAt: string;
2661
+ updatedAt: string;
2662
+ }
2663
+ interface BaseBookingSpaceAvailability {
2664
+ id: string;
2665
+ dayOfWeek: DayOfWeek;
2666
+ startTime: string;
2667
+ endTime: string;
2668
+ }
2669
+ interface BookingSpaceAvailability extends BaseBookingSpaceAvailability {
2670
+ createdAt: string;
2671
+ updatedAt: string;
2672
+ }
2673
+ interface BaseBookingSpaceBlackout {
2674
+ id: string;
2675
+ start: string;
2676
+ end: string;
2677
+ }
2678
+ interface BookingSpaceBlackout extends BaseBookingSpaceBlackout {
2679
+ createdAt: string;
2680
+ updatedAt: string;
2681
+ }
2682
+ interface BaseBooking {
2683
+ id: string;
2684
+ placeId: string;
2685
+ day: string;
2686
+ time: string;
2687
+ duration: number;
2688
+ status: EventPassStatus;
2689
+ account: BaseAccount;
2690
+ space: BaseBookingSpace;
2691
+ }
2692
+ interface Booking extends BaseBooking {
2693
+ createdAt: string;
2694
+ updatedAt: string;
2695
+ }
2696
+ interface BookingSlot {
2697
+ time: string;
2698
+ blackout: boolean;
2699
+ supply: number | null;
2700
+ }
2599
2701
 
2600
2702
  interface ConnectedXMClientContextState {
2601
2703
  queryClient: QueryClient;
@@ -2657,6 +2759,7 @@ interface AccountUpdateInputs {
2657
2759
  imageId?: string | null;
2658
2760
  bannerId?: string | null;
2659
2761
  username?: string | null;
2762
+ email?: string | null;
2660
2763
  phone?: string | null;
2661
2764
  title?: string | null;
2662
2765
  company?: string | null;
@@ -3425,6 +3528,7 @@ interface OrganizationMembershipUpdateInputs {
3425
3528
  reports: Omit<ModulePermissions, "superEnabled" | "enabled">;
3426
3529
  activities: Omit<ModulePermissions, "superEnabled" | "enabled">;
3427
3530
  events: Omit<ModulePermissions, "superEnabled" | "enabled">;
3531
+ bookings: Omit<ModulePermissions, "superEnabled" | "enabled">;
3428
3532
  groups: Omit<ModulePermissions, "superEnabled" | "enabled">;
3429
3533
  accounts: Omit<ModulePermissions, "superEnabled" | "enabled">;
3430
3534
  channels: Omit<ModulePermissions, "superEnabled" | "enabled">;
@@ -3657,6 +3761,7 @@ interface ReportCreateInputs {
3657
3761
  name: string;
3658
3762
  parentId: string | number;
3659
3763
  eventId?: string | null;
3764
+ placeId?: string | null;
3660
3765
  description?: string | null;
3661
3766
  filters?: string | null;
3662
3767
  columns?: string | null;
@@ -4129,6 +4234,93 @@ interface CloneOptions {
4129
4234
  locations: boolean;
4130
4235
  sessions: boolean;
4131
4236
  }
4237
+ interface BookingPlaceCreateInputs {
4238
+ name: string;
4239
+ timezone: string;
4240
+ description?: string | null;
4241
+ imageId?: string | null;
4242
+ address1?: string | null;
4243
+ address2?: string | null;
4244
+ city?: string | null;
4245
+ state?: string | null;
4246
+ country?: string | null;
4247
+ zip?: string | null;
4248
+ sortOrder?: number | string | null;
4249
+ visible?: boolean;
4250
+ }
4251
+ interface BookingPlaceUpdateInputs {
4252
+ name?: string;
4253
+ timezone?: string;
4254
+ description?: string | null;
4255
+ imageId?: string | null;
4256
+ address1?: string | null;
4257
+ address2?: string | null;
4258
+ city?: string | null;
4259
+ state?: string | null;
4260
+ country?: string | null;
4261
+ zip?: string | null;
4262
+ sortOrder?: number | string | null;
4263
+ visible?: boolean;
4264
+ }
4265
+ interface BookingPlaceTranslationUpdateInputs {
4266
+ name?: string | null;
4267
+ description?: string | null;
4268
+ }
4269
+ interface BookingSpaceCreateInputs {
4270
+ name: string;
4271
+ supply: number | string;
4272
+ slotDuration: number | string;
4273
+ price?: number | string;
4274
+ description?: string | null;
4275
+ imageId?: string | null;
4276
+ start?: string | null;
4277
+ end?: string | null;
4278
+ sortOrder?: number | string | null;
4279
+ visible?: boolean;
4280
+ }
4281
+ interface BookingSpaceUpdateInputs {
4282
+ name?: string;
4283
+ supply?: number | string;
4284
+ slotDuration?: number | string;
4285
+ price?: number | string;
4286
+ description?: string | null;
4287
+ imageId?: string | null;
4288
+ start?: string | null;
4289
+ end?: string | null;
4290
+ sortOrder?: number | string | null;
4291
+ visible?: boolean;
4292
+ }
4293
+ interface BookingSpaceTranslationUpdateInputs {
4294
+ name?: string | null;
4295
+ description?: string | null;
4296
+ }
4297
+ interface BookingSpaceAvailabilityCreateInputs {
4298
+ dayOfWeek: string;
4299
+ startTime: string;
4300
+ endTime: string;
4301
+ }
4302
+ interface BookingSpaceAvailabilityUpdateInputs {
4303
+ dayOfWeek?: string;
4304
+ startTime?: string;
4305
+ endTime?: string;
4306
+ }
4307
+ interface BookingSpaceBlackoutCreateInputs {
4308
+ start: string;
4309
+ end: string;
4310
+ }
4311
+ interface BookingSpaceBlackoutUpdateInputs {
4312
+ start?: string;
4313
+ end?: string;
4314
+ }
4315
+ interface BookingCreateInputs {
4316
+ accountId: string;
4317
+ day: string;
4318
+ time: string;
4319
+ status?: EventPassStatus;
4320
+ }
4321
+ interface BookingUpdateInputs {
4322
+ status?: EventPassStatus;
4323
+ }
4132
4324
  interface UpdateEventPassResponseInputs {
4133
4325
  value: string;
4134
4326
  }
@@ -4311,8 +4503,8 @@ declare const useGetAccountAuthSessions: (accountId?: string, params?: Omit<Infi
4311
4503
  * @category Keys
4312
4504
  * @group Accounts
4313
4505
  */
4314
- declare const ACCOUNT_COGNITO_USER_QUERY_KEY: (accountId: string, username: string) => string[];
4315
- interface GetAccountCognitoUserProps extends SingleQueryParams {
4506
+ declare const ACCOUNT_LOGIN_QUERY_KEY: (accountId: string, username: string) => string[];
4507
+ interface GetAccountLoginProps extends SingleQueryParams {
4316
4508
  accountId: string;
4317
4509
  username: string;
4318
4510
  }
@@ -4320,31 +4512,31 @@ interface GetAccountCognitoUserProps extends SingleQueryParams {
4320
4512
  * @category Queries
4321
4513
  * @group Accounts
4322
4514
  */
4323
- declare const GetAccountCognitoUser: ({ accountId, username, adminApiParams, }: GetAccountCognitoUserProps) => Promise<ConnectedXMResponse<CognitoUser>>;
4515
+ declare const GetAccountLogin: ({ accountId, username, adminApiParams, }: GetAccountLoginProps) => Promise<ConnectedXMResponse<Login>>;
4324
4516
  /**
4325
4517
  * @category Hooks
4326
4518
  * @group Accounts
4327
4519
  */
4328
- declare const useGetAccountCognitoUser: (accountId?: string, username?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountCognitoUser>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CognitoUser>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4520
+ declare const useGetAccountLogin: (accountId?: string, username?: string, options?: SingleQueryOptions<ReturnType<typeof GetAccountLogin>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Login>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
4329
4521
 
4330
4522
  /**
4331
4523
  * @category Keys
4332
4524
  * @group Accounts
4333
4525
  */
4334
- declare const ACCOUNT_COGNITO_USERS_QUERY_KEY: (accountId: string) => string[];
4335
- interface GetAccountCognitoUsersProps extends InfiniteQueryParams {
4526
+ declare const ACCOUNT_LOGINS_QUERY_KEY: (accountId: string) => string[];
4527
+ interface GetAccountLoginsProps extends InfiniteQueryParams {
4336
4528
  accountId: string;
4337
4529
  }
4338
4530
  /**
4339
4531
  * @category Queries
4340
4532
  * @group Accounts
4341
4533
  */
4342
- declare const GetAccountCognitoUsers: ({ accountId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetAccountCognitoUsersProps) => Promise<ConnectedXMResponse<CognitoUser[]>>;
4534
+ declare const GetAccountLogins: ({ accountId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetAccountLoginsProps) => Promise<ConnectedXMResponse<Login[]>>;
4343
4535
  /**
4344
4536
  * @category Hooks
4345
4537
  * @group Accounts
4346
4538
  */
4347
- declare const useGetAccountCognitoUsers: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountCognitoUsers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<CognitoUser[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4539
+ declare const useGetAccountLogins: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountLogins>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Login[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4348
4540
 
4349
4541
  /**
4350
4542
  * @category Keys
@@ -5399,274 +5591,682 @@ declare const useGetBenefits: (eventId?: string, params?: Omit<InfiniteQueryPara
5399
5591
 
5400
5592
  /**
5401
5593
  * @category Keys
5402
- * @group Channels
5594
+ * @group Bookings
5403
5595
  */
5404
- declare const CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_KEY: (channelId: string, contentId: string, guestId: string, locale: string) => string[];
5596
+ declare const BOOKING_QUERY_KEY: (bookingId: string) => string[];
5405
5597
  /**
5406
5598
  * @category Setters
5407
- * @group Channels
5599
+ * @group Bookings
5408
5600
  */
5409
- declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, guestId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelContentGuestTranslation>>) => void;
5410
- interface GetChannelContentGuestTranslationProps extends SingleQueryParams {
5411
- channelId: string;
5412
- contentId: string;
5413
- guestId: string;
5414
- locale: string;
5601
+ declare const SET_BOOKING_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBooking>>) => void;
5602
+ interface GetBookingProps extends SingleQueryParams {
5603
+ bookingId: string;
5415
5604
  }
5416
5605
  /**
5417
5606
  * @category Queries
5418
- * @group Channels
5607
+ * @group Bookings
5419
5608
  */
5420
- declare const GetChannelContentGuestTranslation: ({ channelId, contentId, guestId, locale, adminApiParams, }: GetChannelContentGuestTranslationProps) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation | null>>;
5609
+ declare const GetBooking: ({ bookingId, adminApiParams, }: GetBookingProps) => Promise<ConnectedXMResponse<Booking>>;
5421
5610
  /**
5422
5611
  * @category Hooks
5423
- * @group Channels
5612
+ * @group Bookings
5424
5613
  */
5425
- declare const useGetChannelContentGuestTranslation: (channelId?: string, contentId?: string, guestId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuestTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuestTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5614
+ declare const useGetBooking: (bookingId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBooking>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5426
5615
 
5427
5616
  /**
5428
5617
  * @category Keys
5429
- * @group Channels
5618
+ * @group Bookings
5430
5619
  */
5431
- declare const CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_KEY: (channelId: string, contentId: string, guestId: string) => string[];
5620
+ declare const BOOKING_PLACE_QUERY_KEY: (placeId: string) => string[];
5432
5621
  /**
5433
5622
  * @category Setters
5434
- * @group Channels
5623
+ * @group Bookings
5435
5624
  */
5436
- declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuestTranslations>>) => void;
5437
- interface GetChannelContentGuestTranslationsProps extends InfiniteQueryParams {
5438
- channelId: string;
5439
- contentId: string;
5440
- guestId: string;
5625
+ declare const SET_BOOKING_PLACE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_PLACE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingPlace>>) => void;
5626
+ interface GetBookingPlaceProps extends SingleQueryParams {
5627
+ placeId: string;
5441
5628
  }
5442
5629
  /**
5443
5630
  * @category Queries
5444
- * @group Channels
5631
+ * @group Bookings
5445
5632
  */
5446
- declare const GetChannelContentGuestTranslations: ({ channelId, contentId, guestId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelContentGuestTranslationsProps) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation[]>>;
5633
+ declare const GetBookingPlace: ({ placeId, adminApiParams, }: GetBookingPlaceProps) => Promise<ConnectedXMResponse<BookingPlace>>;
5447
5634
  /**
5448
5635
  * @category Hooks
5449
- * @group Channels
5636
+ * @group Bookings
5450
5637
  */
5451
- declare const useGetChannelContentGuestTranslations: (channelId?: string, contentId?: string, guestId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentGuestTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ChannelContentGuestTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5638
+ declare const useGetBookingPlace: (placeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlace>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingPlace>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5452
5639
 
5453
5640
  /**
5454
5641
  * @category Keys
5455
- * @group Channels
5642
+ * @group Bookings
5456
5643
  */
5457
- declare const CHANNEL_CONTENT_TRANSLATION_QUERY_KEY: (channelId: string, contentId: string, locale: string) => string[];
5644
+ declare const BOOKING_PLACE_BOOKINGS_QUERY_KEY: (placeId: string, past?: boolean, status?: EventPassStatus) => string[];
5458
5645
  /**
5459
5646
  * @category Setters
5460
- * @group Channels
5647
+ * @group Bookings
5461
5648
  */
5462
- declare const SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelContentTranslation>>) => void;
5463
- interface GetChannelContentTranslationProps extends SingleQueryParams {
5464
- contentId: string;
5465
- locale: string;
5649
+ declare const SET_BOOKING_PLACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, past?: boolean | undefined, status?: EventPassStatus | undefined], response: Awaited<ReturnType<typeof GetBookingPlaceBookings>>) => void;
5650
+ interface GetBookingPlaceBookingsProps extends InfiniteQueryParams {
5651
+ placeId: string;
5652
+ past?: boolean;
5653
+ status?: EventPassStatus;
5466
5654
  }
5467
5655
  /**
5468
5656
  * @category Queries
5469
- * @group Channels
5657
+ * @group Bookings
5470
5658
  */
5471
- declare const GetChannelContentTranslation: ({ contentId, locale, adminApiParams, }: GetChannelContentTranslationProps) => Promise<ConnectedXMResponse<ChannelContentTranslation | null>>;
5659
+ declare const GetBookingPlaceBookings: ({ placeId, past, status, pageParam, pageSize, orderBy, search, adminApiParams, }: GetBookingPlaceBookingsProps) => Promise<ConnectedXMResponse<Booking[]>>;
5472
5660
  /**
5473
5661
  * @category Hooks
5474
- * @group Channels
5662
+ * @group Bookings
5475
5663
  */
5476
- declare const useGetChannelContentTranslation: (channelId?: string, contentId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5664
+ declare const useGetBookingPlaceBookings: (placeId?: string, past?: boolean, status?: EventPassStatus, 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>>;
5477
5665
 
5478
5666
  /**
5479
5667
  * @category Keys
5480
- * @group Channels
5668
+ * @group Bookings
5481
5669
  */
5482
- declare const CHANNEL_CONTENT_TRANSLATIONS_QUERY_KEY: (channelId: string, contentId: string) => string[];
5670
+ declare const BOOKING_PLACE_TRANSLATION_QUERY_KEY: (placeId: string, locale: string) => string[];
5483
5671
  /**
5484
5672
  * @category Setters
5485
- * @group Channels
5673
+ * @group Bookings
5486
5674
  */
5487
- declare const SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentTranslations>>) => void;
5488
- interface GetChannelContentTranslationsProps extends InfiniteQueryParams {
5489
- contentId: string;
5675
+ declare const SET_BOOKING_PLACE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [placeId: string, locale: string], response: Awaited<ReturnType<typeof GetBookingPlaceTranslation>>) => void;
5676
+ interface GetBookingPlaceTranslationProps extends SingleQueryParams {
5677
+ placeId: string;
5678
+ locale: string;
5490
5679
  }
5491
5680
  /**
5492
5681
  * @category Queries
5493
- * @group Channels
5682
+ * @group Bookings
5494
5683
  */
5495
- declare const GetChannelContentTranslations: ({ pageParam, pageSize, orderBy, search, contentId, adminApiParams, }: GetChannelContentTranslationsProps) => Promise<ConnectedXMResponse<ChannelContentTranslation[]>>;
5684
+ declare const GetBookingPlaceTranslation: ({ placeId, locale, adminApiParams, }: GetBookingPlaceTranslationProps) => Promise<ConnectedXMResponse<BookingPlaceTranslation | null>>;
5496
5685
  /**
5497
5686
  * @category Hooks
5498
- * @group Channels
5687
+ * @group Bookings
5499
5688
  */
5500
- declare const useGetChannelContentTranslations: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ChannelContentTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5689
+ declare const useGetBookingPlaceTranslation: (placeId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingPlaceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingPlaceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5501
5690
 
5502
5691
  /**
5503
5692
  * @category Keys
5504
- * @group Channels
5693
+ * @group Events
5505
5694
  */
5506
- declare const CHANNEL_TRANSLATION_QUERY_KEY: (channelId: string, locale: string) => string[];
5695
+ declare const BOOKING_PLACE_TRANSLATIONS_QUERY_KEY: (placeId: string) => string[];
5507
5696
  /**
5508
5697
  * @category Setters
5509
- * @group Channels
5698
+ * @group Events
5510
5699
  */
5511
- declare const SET_CHANNEL_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelTranslation>>) => void;
5512
- interface GetChannelTranslationProps extends SingleQueryParams {
5513
- channelId: string;
5514
- locale: string;
5700
+ declare const SET_BOOKING_PLACE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof BOOKING_PLACE_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingPlaceTranslations>>) => void;
5701
+ interface GetBookingPlaceTranslationsProps extends InfiniteQueryParams {
5702
+ placeId: string;
5515
5703
  }
5516
5704
  /**
5517
5705
  * @category Queries
5518
- * @group Channels
5706
+ * @group Events
5519
5707
  */
5520
- declare const GetChannelTranslation: ({ channelId, locale, adminApiParams, }: GetChannelTranslationProps) => Promise<ConnectedXMResponse<ChannelTranslation | null>>;
5708
+ declare const GetBookingPlaceTranslations: ({ pageParam, pageSize, orderBy, search, placeId, adminApiParams, }: GetBookingPlaceTranslationsProps) => Promise<ConnectedXMResponse<BookingPlaceTranslation[]>>;
5521
5709
  /**
5522
5710
  * @category Hooks
5523
- * @group Channels
5711
+ * @group Events
5524
5712
  */
5525
- declare const useGetChannelTranslation: (channelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5713
+ declare const useGetBookingPlaceTranslations: (placeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookingPlaceTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<BookingPlaceTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5526
5714
 
5527
5715
  /**
5528
5716
  * @category Keys
5529
- * @group Channels
5717
+ * @group Bookings
5530
5718
  */
5531
- declare const CHANNEL_TRANSLATIONS_QUERY_KEY: (channelId: string) => string[];
5719
+ declare const BOOKING_PLACES_QUERY_KEY: () => string[];
5532
5720
  /**
5533
5721
  * @category Setters
5534
- * @group Channels
5722
+ * @group Bookings
5535
5723
  */
5536
- declare const SET_CHANNEL_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof CHANNEL_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelTranslations>>) => void;
5537
- interface GetChannelTranslationsProps extends InfiniteQueryParams {
5538
- channelId: string;
5724
+ declare const SET_BOOKING_PLACES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_PLACES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingPlaces>>) => void;
5725
+ interface GetBookingPlacesProps extends InfiniteQueryParams {
5539
5726
  }
5540
5727
  /**
5541
5728
  * @category Queries
5542
- * @group Channels
5729
+ * @group Bookings
5543
5730
  */
5544
- declare const GetChannelTranslations: ({ pageParam, pageSize, orderBy, search, channelId, adminApiParams, }: GetChannelTranslationsProps) => Promise<ConnectedXMResponse<ChannelTranslation[]>>;
5731
+ declare const GetBookingPlaces: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetBookingPlacesProps) => Promise<ConnectedXMResponse<BookingPlace[]>>;
5545
5732
  /**
5546
5733
  * @category Hooks
5547
- * @group Channels
5734
+ * @group Bookings
5548
5735
  */
5549
- declare const useGetChannelTranslations: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ChannelTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5736
+ declare const useGetBookingPlaces: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookingPlaces>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BookingPlace[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5550
5737
 
5551
5738
  /**
5552
5739
  * @category Keys
5553
- * @group Channels
5740
+ * @group Bookings
5554
5741
  */
5555
- declare const CHANNEL_QUERY_KEY: (channelId: string) => string[];
5742
+ declare const BOOKING_SPACE_QUERY_KEY: (placeId: string, spaceId: string) => string[];
5556
5743
  /**
5557
5744
  * @category Setters
5558
- * @group Channels
5745
+ * @group Bookings
5559
5746
  */
5560
- declare const SET_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannel>>) => void;
5561
- interface GetChannelProps extends SingleQueryParams {
5562
- channelId: string;
5747
+ declare const SET_BOOKING_SPACE_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string], response: Awaited<ReturnType<typeof GetBookingSpace>>) => void;
5748
+ interface GetBookingSpaceProps extends SingleQueryParams {
5749
+ placeId: string;
5750
+ spaceId: string;
5563
5751
  }
5564
5752
  /**
5565
5753
  * @category Queries
5566
- * @group Channels
5754
+ * @group Bookings
5567
5755
  */
5568
- declare const GetChannel: ({ channelId, adminApiParams, }: GetChannelProps) => Promise<ConnectedXMResponse<Channel>>;
5756
+ declare const GetBookingSpace: ({ placeId, spaceId, adminApiParams, }: GetBookingSpaceProps) => Promise<ConnectedXMResponse<BookingSpace>>;
5569
5757
  /**
5570
5758
  * @category Hooks
5571
- * @group Channels
5759
+ * @group Bookings
5572
5760
  */
5573
- declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5761
+ declare const useGetBookingSpace: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpace>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpace>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5574
5762
 
5575
5763
  /**
5576
5764
  * @category Keys
5577
- * @group Channels
5765
+ * @group Bookings
5578
5766
  */
5579
- declare const CHANNEL_ACTIVITIES_QUERY_KEY: (channelId: string) => string[];
5767
+ declare const BOOKING_SPACE_AVAILABILITIES_QUERY_KEY: (placeId: string, spaceId: string) => string[];
5580
5768
  /**
5581
5769
  * @category Setters
5582
- * @group Channels
5770
+ * @group Bookings
5583
5771
  */
5584
- declare const SET_CHANNEL_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelActivities>>) => void;
5585
- interface GetChannelActivitiesProps extends InfiniteQueryParams {
5586
- channelId: string;
5772
+ declare const SET_BOOKING_SPACE_AVAILABILITIES_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string], response: Awaited<ReturnType<typeof GetBookingSpaceAvailabilities>>) => void;
5773
+ interface GetBookingSpaceAvailabilitiesProps extends SingleQueryParams {
5774
+ placeId: string;
5775
+ spaceId: string;
5587
5776
  }
5588
5777
  /**
5589
5778
  * @category Queries
5590
- * @group Channels
5779
+ * @group Bookings
5591
5780
  */
5592
- declare const GetChannelActivities: ({ channelId: channelId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
5781
+ declare const GetBookingSpaceAvailabilities: ({ placeId, spaceId, adminApiParams, }: GetBookingSpaceAvailabilitiesProps) => Promise<ConnectedXMResponse<BookingSpaceAvailability[]>>;
5593
5782
  /**
5594
5783
  * @category Hooks
5595
- * @group Channels
5784
+ * @group Bookings
5596
5785
  */
5597
- declare const useGetChannelActivities: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5786
+ declare const useGetBookingSpaceAvailabilities: (placeId?: string, spaceId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailabilities>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceAvailability[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5598
5787
 
5599
5788
  /**
5600
5789
  * @category Keys
5601
- * @group Channels
5790
+ * @group Bookings
5602
5791
  */
5603
- declare const CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string) => string[];
5792
+ declare const BOOKING_SPACE_AVAILABILITY_QUERY_KEY: (placeId: string, spaceId: string, availabilityId: string) => string[];
5604
5793
  /**
5605
5794
  * @category Setters
5606
- * @group Channels
5795
+ * @group Bookings
5607
5796
  */
5608
- declare const SET_CHANNEL_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContent>>) => void;
5609
- interface GetChannelContentProps extends SingleQueryParams {
5610
- channelId: string;
5611
- contentId: string;
5797
+ declare const SET_BOOKING_SPACE_AVAILABILITY_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, availabilityId: string], response: Awaited<ReturnType<typeof GetBookingSpaceAvailability>>) => void;
5798
+ interface GetBookingSpaceAvailabilityProps extends SingleQueryParams {
5799
+ placeId: string;
5800
+ spaceId: string;
5801
+ availabilityId: string;
5612
5802
  }
5613
5803
  /**
5614
5804
  * @category Queries
5615
- * @group Channels
5805
+ * @group Bookings
5616
5806
  */
5617
- declare const GetChannelContent: ({ channelId, contentId, adminApiParams, }: GetChannelContentProps) => Promise<ConnectedXMResponse<ChannelContent>>;
5807
+ declare const GetBookingSpaceAvailability: ({ placeId, spaceId, availabilityId, adminApiParams, }: GetBookingSpaceAvailabilityProps) => Promise<ConnectedXMResponse<BookingSpaceAvailability>>;
5618
5808
  /**
5619
5809
  * @category Hooks
5620
- * @group Channels
5810
+ * @group Bookings
5621
5811
  */
5622
- declare const useGetChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5812
+ declare const useGetBookingSpaceAvailability: (placeId?: string, spaceId?: string, availabilityId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceAvailability>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceAvailability>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5623
5813
 
5624
5814
  /**
5625
5815
  * @category Keys
5626
- * @group Channels
5816
+ * @group Bookings
5627
5817
  */
5628
- declare const CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY: (channelId: string, contentId: string) => string[];
5818
+ declare const BOOKING_SPACE_BLACKOUT_QUERY_KEY: (placeId: string, spaceId: string, blackoutId: string) => string[];
5629
5819
  /**
5630
5820
  * @category Setters
5631
- * @group Channels
5821
+ * @group Bookings
5632
5822
  */
5633
- declare const SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentActivities>>) => void;
5634
- interface GetContentActivitiesProps extends InfiniteQueryParams {
5635
- channelId: string;
5636
- contentId: string;
5823
+ declare const SET_BOOKING_SPACE_BLACKOUT_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, blackoutId: string], response: Awaited<ReturnType<typeof GetBookingSpaceBlackout>>) => void;
5824
+ interface GetBookingSpaceBlackoutProps extends SingleQueryParams {
5825
+ placeId: string;
5826
+ spaceId: string;
5827
+ blackoutId: string;
5637
5828
  }
5638
5829
  /**
5639
5830
  * @category Queries
5640
- * @group Channels
5831
+ * @group Bookings
5641
5832
  */
5642
- declare const GetChannelContentActivities: ({ channelId, contentId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetContentActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
5833
+ declare const GetBookingSpaceBlackout: ({ placeId, spaceId, blackoutId, adminApiParams, }: GetBookingSpaceBlackoutProps) => Promise<ConnectedXMResponse<BookingSpaceBlackout>>;
5643
5834
  /**
5644
5835
  * @category Hooks
5645
- * @group Channels
5836
+ * @group Bookings
5646
5837
  */
5647
- declare const useGetChannelContentActivities: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5838
+ declare const useGetBookingSpaceBlackout: (placeId?: string, spaceId?: string, blackoutId?: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceBlackout>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceBlackout>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5648
5839
 
5649
5840
  /**
5650
5841
  * @category Keys
5651
- * @group Channels
5842
+ * @group Bookings
5652
5843
  */
5653
- declare const CHANNEL_CONTENT_GUEST_QUERY_KEY: (channelId: string, contentId: string, guestId: string) => string[];
5844
+ declare const BOOKING_SPACE_BLACKOUTS_QUERY_KEY: (placeId: string, spaceId: string, past?: boolean) => string[];
5654
5845
  /**
5655
5846
  * @category Setters
5656
- * @group Channels
5847
+ * @group Bookings
5657
5848
  */
5658
- declare const SET_CHANNEL_CONTENT_GUEST_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuest>>) => void;
5659
- interface GetChannelContentGuestsProps$1 extends SingleQueryParams {
5660
- channelId: string;
5661
- contentId: string;
5662
- guestId: string;
5663
- status?: string;
5849
+ declare const SET_BOOKING_SPACE_BLACKOUTS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, past?: boolean | undefined], response: Awaited<ReturnType<typeof GetBookingSpaceBlackouts>>) => void;
5850
+ interface GetBookingSpaceBlackoutsProps extends InfiniteQueryParams {
5851
+ placeId: string;
5852
+ spaceId: string;
5853
+ past?: boolean;
5664
5854
  }
5665
5855
  /**
5666
5856
  * @category Queries
5667
- * @group Channels
5857
+ * @group Bookings
5668
5858
  */
5669
- declare const GetChannelContentGuest: ({ channelId, contentId, guestId, adminApiParams, }: GetChannelContentGuestsProps$1) => Promise<ConnectedXMResponse<ChannelContentGuest>>;
5859
+ declare const GetBookingSpaceBlackouts: ({ placeId, spaceId, past, pageParam, pageSize, orderBy, search, adminApiParams, }: GetBookingSpaceBlackoutsProps) => Promise<ConnectedXMResponse<BookingSpaceBlackout[]>>;
5860
+ /**
5861
+ * @category Hooks
5862
+ * @group Bookings
5863
+ */
5864
+ declare const useGetBookingSpaceBlackouts: (placeId?: string, spaceId?: string, past?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookingSpaceBlackouts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BookingSpaceBlackout[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5865
+
5866
+ /**
5867
+ * @category Keys
5868
+ * @group Bookings
5869
+ */
5870
+ declare const BOOKING_SPACE_BOOKINGS_QUERY_KEY: (placeId: string, spaceId: string, past?: boolean, status?: EventPassStatus) => string[];
5871
+ /**
5872
+ * @category Setters
5873
+ * @group Bookings
5874
+ */
5875
+ declare const SET_BOOKING_SPACE_BOOKINGS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, past?: boolean | undefined, status?: EventPassStatus | undefined], response: Awaited<ReturnType<typeof GetBookingSpaceBookings>>) => void;
5876
+ interface GetBookingSpaceBookingsProps extends InfiniteQueryParams {
5877
+ placeId: string;
5878
+ spaceId: string;
5879
+ past?: boolean;
5880
+ status?: EventPassStatus;
5881
+ }
5882
+ /**
5883
+ * @category Queries
5884
+ * @group Bookings
5885
+ */
5886
+ declare const GetBookingSpaceBookings: ({ placeId, spaceId, status, past, pageParam, pageSize, orderBy, search, adminApiParams, }: GetBookingSpaceBookingsProps) => Promise<ConnectedXMResponse<Booking[]>>;
5887
+ /**
5888
+ * @category Hooks
5889
+ * @group Bookings
5890
+ */
5891
+ declare const useGetBookingSpaceBookings: (placeId?: string, spaceId?: string, past?: boolean, status?: EventPassStatus, 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>>;
5892
+
5893
+ /**
5894
+ * @category Keys
5895
+ * @group Bookings
5896
+ */
5897
+ declare const BOOKING_SPACE_SLOTS_QUERY_KEY: (placeId: string, spaceId: string, firstDayOfMonth: string) => string[];
5898
+ /**
5899
+ * @category Setters
5900
+ * @group Bookings
5901
+ */
5902
+ declare const SET_BOOKING_SPACE_SLOTS_QUERY_DATA: (client: QueryClient, keyParams: [placeId: string, spaceId: string, firstDayOfMonth: string], response: Awaited<ReturnType<typeof GetBookingSpaceSlots>>) => void;
5903
+ interface GetBookingSpaceSlotsProps extends SingleQueryParams {
5904
+ placeId: string;
5905
+ spaceId: string;
5906
+ firstDayOfMonth: string;
5907
+ }
5908
+ /**
5909
+ * @category Queries
5910
+ * @group Bookings
5911
+ */
5912
+ declare const GetBookingSpaceSlots: ({ placeId, spaceId, firstDayOfMonth, adminApiParams, }: GetBookingSpaceSlotsProps) => Promise<ConnectedXMResponse<{
5913
+ day: string;
5914
+ slots: BookingSlot[];
5915
+ }[]>>;
5916
+ /**
5917
+ * @category Hooks
5918
+ * @group Bookings
5919
+ */
5920
+ declare const useGetBookingSpaceSlots: (placeId: string | undefined, spaceId: string | undefined, firstDayOfMonth: string, options?: SingleQueryOptions<ReturnType<typeof GetBookingSpaceSlots>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<{
5921
+ day: string;
5922
+ slots: BookingSlot[];
5923
+ }[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5924
+
5925
+ /**
5926
+ * @category Keys
5927
+ * @group Bookings
5928
+ */
5929
+ declare const BOOKING_SPACE_TRANSLATION_QUERY_KEY: (placeId: string, spaceId: string, locale: string) => string[];
5930
+ /**
5931
+ * @category Setters
5932
+ * @group Bookings
5933
+ */
5934
+ declare const SET_BOOKING_SPACE_TRANSLATION_QUERY_DATA: (client: any, keyParams: [placeId: string, spaceId: string, locale: string], response: Awaited<ReturnType<typeof GetEventSpaceTranslation>>) => void;
5935
+ interface GetEventSpaceTranslationProps extends SingleQueryParams {
5936
+ placeId: string;
5937
+ spaceId: string;
5938
+ locale: string;
5939
+ }
5940
+ /**
5941
+ * @category Queries
5942
+ * @group Bookings
5943
+ */
5944
+ declare const GetEventSpaceTranslation: ({ placeId, spaceId, locale, adminApiParams, }: GetEventSpaceTranslationProps) => Promise<ConnectedXMResponse<BookingSpaceTranslation | null>>;
5945
+ /**
5946
+ * @category Hooks
5947
+ * @group Bookings
5948
+ */
5949
+ declare const useGetEventSpaceTranslation: (placeId?: string, spaceId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetEventSpaceTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<BookingSpaceTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
5950
+
5951
+ /**
5952
+ * @category Keys
5953
+ * @group Events
5954
+ */
5955
+ declare const BOOKING_SPACE_TRANSLATIONS_QUERY_KEY: (placeId: string, spaceId: string) => string[];
5956
+ /**
5957
+ * @category Setters
5958
+ * @group Events
5959
+ */
5960
+ declare const SET_BOOKING_SPACE_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [placeId: string, spaceId: string], response: Awaited<ReturnType<typeof GetBookingSpaceTranslations>>) => void;
5961
+ interface GetBookingSpaceTranslationsProps extends InfiniteQueryParams {
5962
+ placeId: string;
5963
+ spaceId: string;
5964
+ }
5965
+ /**
5966
+ * @category Queries
5967
+ * @group Events
5968
+ */
5969
+ declare const GetBookingSpaceTranslations: ({ placeId, spaceId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetBookingSpaceTranslationsProps) => Promise<ConnectedXMResponse<BookingSpaceTranslation[]>>;
5970
+ /**
5971
+ * @category Hooks
5972
+ * @group Events
5973
+ */
5974
+ declare const useGetBookingSpaceTranslations: (placeId?: string, spaceId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookingSpaceTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<BookingSpaceTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5975
+
5976
+ /**
5977
+ * @category Keys
5978
+ * @group Bookings
5979
+ */
5980
+ declare const BOOKING_SPACES_QUERY_KEY: (placeId: string) => string[];
5981
+ /**
5982
+ * @category Setters
5983
+ * @group Bookings
5984
+ */
5985
+ declare const SET_BOOKING_SPACES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof BOOKING_SPACES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetBookingSpaces>>) => void;
5986
+ interface GetBookingSpacesProps extends InfiniteQueryParams {
5987
+ placeId: string;
5988
+ }
5989
+ /**
5990
+ * @category Queries
5991
+ * @group Bookings
5992
+ */
5993
+ declare const GetBookingSpaces: ({ placeId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetBookingSpacesProps) => Promise<ConnectedXMResponse<BookingSpace[]>>;
5994
+ /**
5995
+ * @category Hooks
5996
+ * @group Bookings
5997
+ */
5998
+ declare const useGetBookingSpaces: (placeId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetBookingSpaces>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BookingSpace[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5999
+
6000
+ /**
6001
+ * @category Keys
6002
+ * @group Channels
6003
+ */
6004
+ declare const CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_KEY: (channelId: string, contentId: string, guestId: string, locale: string) => string[];
6005
+ /**
6006
+ * @category Setters
6007
+ * @group Channels
6008
+ */
6009
+ declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, guestId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelContentGuestTranslation>>) => void;
6010
+ interface GetChannelContentGuestTranslationProps extends SingleQueryParams {
6011
+ channelId: string;
6012
+ contentId: string;
6013
+ guestId: string;
6014
+ locale: string;
6015
+ }
6016
+ /**
6017
+ * @category Queries
6018
+ * @group Channels
6019
+ */
6020
+ declare const GetChannelContentGuestTranslation: ({ channelId, contentId, guestId, locale, adminApiParams, }: GetChannelContentGuestTranslationProps) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation | null>>;
6021
+ /**
6022
+ * @category Hooks
6023
+ * @group Channels
6024
+ */
6025
+ declare const useGetChannelContentGuestTranslation: (channelId?: string, contentId?: string, guestId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentGuestTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentGuestTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6026
+
6027
+ /**
6028
+ * @category Keys
6029
+ * @group Channels
6030
+ */
6031
+ declare const CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_KEY: (channelId: string, contentId: string, guestId: string) => string[];
6032
+ /**
6033
+ * @category Setters
6034
+ * @group Channels
6035
+ */
6036
+ declare const SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuestTranslations>>) => void;
6037
+ interface GetChannelContentGuestTranslationsProps extends InfiniteQueryParams {
6038
+ channelId: string;
6039
+ contentId: string;
6040
+ guestId: string;
6041
+ }
6042
+ /**
6043
+ * @category Queries
6044
+ * @group Channels
6045
+ */
6046
+ declare const GetChannelContentGuestTranslations: ({ channelId, contentId, guestId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelContentGuestTranslationsProps) => Promise<ConnectedXMResponse<ChannelContentGuestTranslation[]>>;
6047
+ /**
6048
+ * @category Hooks
6049
+ * @group Channels
6050
+ */
6051
+ declare const useGetChannelContentGuestTranslations: (channelId?: string, contentId?: string, guestId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentGuestTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ChannelContentGuestTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6052
+
6053
+ /**
6054
+ * @category Keys
6055
+ * @group Channels
6056
+ */
6057
+ declare const CHANNEL_CONTENT_TRANSLATION_QUERY_KEY: (channelId: string, contentId: string, locale: string) => string[];
6058
+ /**
6059
+ * @category Setters
6060
+ * @group Channels
6061
+ */
6062
+ declare const SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelContentTranslation>>) => void;
6063
+ interface GetChannelContentTranslationProps extends SingleQueryParams {
6064
+ contentId: string;
6065
+ locale: string;
6066
+ }
6067
+ /**
6068
+ * @category Queries
6069
+ * @group Channels
6070
+ */
6071
+ declare const GetChannelContentTranslation: ({ contentId, locale, adminApiParams, }: GetChannelContentTranslationProps) => Promise<ConnectedXMResponse<ChannelContentTranslation | null>>;
6072
+ /**
6073
+ * @category Hooks
6074
+ * @group Channels
6075
+ */
6076
+ declare const useGetChannelContentTranslation: (channelId?: string, contentId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContentTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContentTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6077
+
6078
+ /**
6079
+ * @category Keys
6080
+ * @group Channels
6081
+ */
6082
+ declare const CHANNEL_CONTENT_TRANSLATIONS_QUERY_KEY: (channelId: string, contentId: string) => string[];
6083
+ /**
6084
+ * @category Setters
6085
+ * @group Channels
6086
+ */
6087
+ declare const SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentTranslations>>) => void;
6088
+ interface GetChannelContentTranslationsProps extends InfiniteQueryParams {
6089
+ contentId: string;
6090
+ }
6091
+ /**
6092
+ * @category Queries
6093
+ * @group Channels
6094
+ */
6095
+ declare const GetChannelContentTranslations: ({ pageParam, pageSize, orderBy, search, contentId, adminApiParams, }: GetChannelContentTranslationsProps) => Promise<ConnectedXMResponse<ChannelContentTranslation[]>>;
6096
+ /**
6097
+ * @category Hooks
6098
+ * @group Channels
6099
+ */
6100
+ declare const useGetChannelContentTranslations: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ChannelContentTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6101
+
6102
+ /**
6103
+ * @category Keys
6104
+ * @group Channels
6105
+ */
6106
+ declare const CHANNEL_TRANSLATION_QUERY_KEY: (channelId: string, locale: string) => string[];
6107
+ /**
6108
+ * @category Setters
6109
+ * @group Channels
6110
+ */
6111
+ declare const SET_CHANNEL_TRANSLATION_QUERY_DATA: (client: any, keyParams: [channelId: string, locale: string], response: Awaited<ReturnType<typeof GetChannelTranslation>>) => void;
6112
+ interface GetChannelTranslationProps extends SingleQueryParams {
6113
+ channelId: string;
6114
+ locale: string;
6115
+ }
6116
+ /**
6117
+ * @category Queries
6118
+ * @group Channels
6119
+ */
6120
+ declare const GetChannelTranslation: ({ channelId, locale, adminApiParams, }: GetChannelTranslationProps) => Promise<ConnectedXMResponse<ChannelTranslation | null>>;
6121
+ /**
6122
+ * @category Hooks
6123
+ * @group Channels
6124
+ */
6125
+ declare const useGetChannelTranslation: (channelId?: string, locale?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelTranslation>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelTranslation | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6126
+
6127
+ /**
6128
+ * @category Keys
6129
+ * @group Channels
6130
+ */
6131
+ declare const CHANNEL_TRANSLATIONS_QUERY_KEY: (channelId: string) => string[];
6132
+ /**
6133
+ * @category Setters
6134
+ * @group Channels
6135
+ */
6136
+ declare const SET_CHANNEL_TRANSLATIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof CHANNEL_TRANSLATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelTranslations>>) => void;
6137
+ interface GetChannelTranslationsProps extends InfiniteQueryParams {
6138
+ channelId: string;
6139
+ }
6140
+ /**
6141
+ * @category Queries
6142
+ * @group Channels
6143
+ */
6144
+ declare const GetChannelTranslations: ({ pageParam, pageSize, orderBy, search, channelId, adminApiParams, }: GetChannelTranslationsProps) => Promise<ConnectedXMResponse<ChannelTranslation[]>>;
6145
+ /**
6146
+ * @category Hooks
6147
+ * @group Channels
6148
+ */
6149
+ declare const useGetChannelTranslations: (channelId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelTranslations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<ChannelTranslation[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6150
+
6151
+ /**
6152
+ * @category Keys
6153
+ * @group Channels
6154
+ */
6155
+ declare const CHANNEL_QUERY_KEY: (channelId: string) => string[];
6156
+ /**
6157
+ * @category Setters
6158
+ * @group Channels
6159
+ */
6160
+ declare const SET_CHANNEL_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannel>>) => void;
6161
+ interface GetChannelProps extends SingleQueryParams {
6162
+ channelId: string;
6163
+ }
6164
+ /**
6165
+ * @category Queries
6166
+ * @group Channels
6167
+ */
6168
+ declare const GetChannel: ({ channelId, adminApiParams, }: GetChannelProps) => Promise<ConnectedXMResponse<Channel>>;
6169
+ /**
6170
+ * @category Hooks
6171
+ * @group Channels
6172
+ */
6173
+ declare const useGetChannel: (channelId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannel>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Channel>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6174
+
6175
+ /**
6176
+ * @category Keys
6177
+ * @group Channels
6178
+ */
6179
+ declare const CHANNEL_ACTIVITIES_QUERY_KEY: (channelId: string) => string[];
6180
+ /**
6181
+ * @category Setters
6182
+ * @group Channels
6183
+ */
6184
+ declare const SET_CHANNEL_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNEL_ACTIVITIES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannelActivities>>) => void;
6185
+ interface GetChannelActivitiesProps extends InfiniteQueryParams {
6186
+ channelId: string;
6187
+ }
6188
+ /**
6189
+ * @category Queries
6190
+ * @group Channels
6191
+ */
6192
+ declare const GetChannelActivities: ({ channelId: channelId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
6193
+ /**
6194
+ * @category Hooks
6195
+ * @group Channels
6196
+ */
6197
+ declare const useGetChannelActivities: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6198
+
6199
+ /**
6200
+ * @category Keys
6201
+ * @group Channels
6202
+ */
6203
+ declare const CHANNEL_CONTENT_QUERY_KEY: (channelId: string, contentId: string) => string[];
6204
+ /**
6205
+ * @category Setters
6206
+ * @group Channels
6207
+ */
6208
+ declare const SET_CHANNEL_CONTENT_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContent>>) => void;
6209
+ interface GetChannelContentProps extends SingleQueryParams {
6210
+ channelId: string;
6211
+ contentId: string;
6212
+ }
6213
+ /**
6214
+ * @category Queries
6215
+ * @group Channels
6216
+ */
6217
+ declare const GetChannelContent: ({ channelId, contentId, adminApiParams, }: GetChannelContentProps) => Promise<ConnectedXMResponse<ChannelContent>>;
6218
+ /**
6219
+ * @category Hooks
6220
+ * @group Channels
6221
+ */
6222
+ declare const useGetChannelContent: (channelId?: string, contentId?: string, options?: SingleQueryOptions<ReturnType<typeof GetChannelContent>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ChannelContent>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
6223
+
6224
+ /**
6225
+ * @category Keys
6226
+ * @group Channels
6227
+ */
6228
+ declare const CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY: (channelId: string, contentId: string) => string[];
6229
+ /**
6230
+ * @category Setters
6231
+ * @group Channels
6232
+ */
6233
+ declare const SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string], response: Awaited<ReturnType<typeof GetChannelContentActivities>>) => void;
6234
+ interface GetContentActivitiesProps extends InfiniteQueryParams {
6235
+ channelId: string;
6236
+ contentId: string;
6237
+ }
6238
+ /**
6239
+ * @category Queries
6240
+ * @group Channels
6241
+ */
6242
+ declare const GetChannelContentActivities: ({ channelId, contentId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetContentActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
6243
+ /**
6244
+ * @category Hooks
6245
+ * @group Channels
6246
+ */
6247
+ declare const useGetChannelContentActivities: (channelId?: string, contentId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContentActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6248
+
6249
+ /**
6250
+ * @category Keys
6251
+ * @group Channels
6252
+ */
6253
+ declare const CHANNEL_CONTENT_GUEST_QUERY_KEY: (channelId: string, contentId: string, guestId: string) => string[];
6254
+ /**
6255
+ * @category Setters
6256
+ * @group Channels
6257
+ */
6258
+ declare const SET_CHANNEL_CONTENT_GUEST_QUERY_DATA: (client: QueryClient, keyParams: [channelId: string, contentId: string, guestId: string], response: Awaited<ReturnType<typeof GetChannelContentGuest>>) => void;
6259
+ interface GetChannelContentGuestsProps$1 extends SingleQueryParams {
6260
+ channelId: string;
6261
+ contentId: string;
6262
+ guestId: string;
6263
+ status?: string;
6264
+ }
6265
+ /**
6266
+ * @category Queries
6267
+ * @group Channels
6268
+ */
6269
+ declare const GetChannelContentGuest: ({ channelId, contentId, guestId, adminApiParams, }: GetChannelContentGuestsProps$1) => Promise<ConnectedXMResponse<ChannelContentGuest>>;
5670
6270
  /**
5671
6271
  * @category Hooks
5672
6272
  * @group Channels
@@ -10888,21 +11488,22 @@ declare const REPORT_QUERY_KEY: (type: keyof typeof ReportType, reportId: string
10888
11488
  * @category Setters
10889
11489
  * @group Reports
10890
11490
  */
10891
- declare const SET_REPORT_QUERY_DATA: (client: QueryClient, keyParams: [type: "organization" | "event", reportId: string], response: Awaited<ReturnType<typeof GetReport>>) => void;
11491
+ declare const SET_REPORT_QUERY_DATA: (client: QueryClient, keyParams: [type: "organization" | "event" | "booking", reportId: string], response: Awaited<ReturnType<typeof GetReport>>) => void;
10892
11492
  interface GetReportProps extends SingleQueryParams {
10893
11493
  reportId: string;
10894
11494
  eventId?: string;
11495
+ placeId?: string;
10895
11496
  }
10896
11497
  /**
10897
11498
  * @category Queries
10898
11499
  * @group Reports
10899
11500
  */
10900
- declare const GetReport: ({ reportId, eventId, adminApiParams, }: GetReportProps) => Promise<ConnectedXMResponse<Report>>;
11501
+ declare const GetReport: ({ reportId, eventId, placeId, adminApiParams, }: GetReportProps) => Promise<ConnectedXMResponse<Report>>;
10901
11502
  /**
10902
11503
  * @category Hooks
10903
11504
  * @group Reports
10904
11505
  */
10905
- declare const useGetReport: (reportId?: string, eventId?: string, options?: SingleQueryOptions<ReturnType<typeof GetReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Report>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
11506
+ declare const useGetReport: (reportId?: string, eventId?: string, placeId?: string, options?: SingleQueryOptions<ReturnType<typeof GetReport>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Report>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10906
11507
 
10907
11508
  /**
10908
11509
  * @category Keys
@@ -10961,7 +11562,7 @@ declare const REPORT_USERS_QUERY_KEY: (type: keyof typeof ReportType, reportId:
10961
11562
  * @category Setters
10962
11563
  * @group Reports
10963
11564
  */
10964
- declare const SET_REPORT_USERS_QUERY_DATA: (client: QueryClient, keyParams: [type: "organization" | "event", reportId: string], response: Awaited<ReturnType<typeof GetReportUsers>>) => void;
11565
+ declare const SET_REPORT_USERS_QUERY_DATA: (client: QueryClient, keyParams: [type: "organization" | "event" | "booking", reportId: string], response: Awaited<ReturnType<typeof GetReportUsers>>) => void;
10965
11566
  interface GetReportUsersProps extends SingleQueryParams {
10966
11567
  reportId: string;
10967
11568
  }
@@ -10976,30 +11577,34 @@ declare const GetReportUsers: ({ reportId, adminApiParams, }: GetReportUsersProp
10976
11577
  */
10977
11578
  declare const useGetReportUsers: (reportId?: string, options?: SingleQueryOptions<ReturnType<typeof GetReportUsers>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<User[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
10978
11579
 
11580
+ interface ReportFilters {
11581
+ eventId?: string;
11582
+ placeId?: string;
11583
+ }
10979
11584
  /**
10980
11585
  * @category Keys
10981
11586
  * @group Reports
10982
11587
  */
10983
- declare const REPORTS_QUERY_KEY: (type: keyof typeof ReportType, eventId?: string) => string[];
11588
+ declare const REPORTS_QUERY_KEY: (type: keyof typeof ReportType, filters?: ReportFilters) => string[];
10984
11589
  /**
10985
11590
  * @category Setters
10986
11591
  * @group Reports
10987
11592
  */
10988
- declare const SET_REPORTS_QUERY_DATA: (client: QueryClient, keyParams: [type: "organization" | "event", eventId?: string | undefined], response: Awaited<ReturnType<typeof GetReports>>) => void;
11593
+ declare const SET_REPORTS_QUERY_DATA: (client: QueryClient, keyParams: [type: "organization" | "event" | "booking", filters?: ReportFilters | undefined], response: Awaited<ReturnType<typeof GetReports>>) => void;
10989
11594
  interface GetReportsProps extends InfiniteQueryParams {
10990
11595
  type: keyof typeof ReportType;
10991
- eventId?: string;
11596
+ filters?: ReportFilters;
10992
11597
  }
10993
11598
  /**
10994
11599
  * @category Queries
10995
11600
  * @group Reports
10996
11601
  */
10997
- declare const GetReports: ({ pageParam, pageSize, orderBy, search, type, eventId, adminApiParams, }: GetReportsProps) => Promise<ConnectedXMResponse<Report[]>>;
11602
+ declare const GetReports: ({ pageParam, pageSize, orderBy, search, type, filters, adminApiParams, }: GetReportsProps) => Promise<ConnectedXMResponse<Report[]>>;
10998
11603
  /**
10999
11604
  * @category Hooks
11000
11605
  * @group Reports
11001
11606
  */
11002
- declare const useGetReports: (type: keyof typeof ReportType, eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReports>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Report[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
11607
+ declare const useGetReports: (type: keyof typeof ReportType, filters?: ReportFilters, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReports>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Report[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
11003
11608
 
11004
11609
  /**
11005
11610
  * @category Keys
@@ -12029,7 +12634,7 @@ declare const useAddAccountTier: (options?: Omit<ConnectedXMMutationOptions<Awai
12029
12634
  * @category Params
12030
12635
  * @group Account
12031
12636
  */
12032
- interface ConfirmAccountCognitoUserParams extends MutationParams {
12637
+ interface ConfirmAccountLoginParams extends MutationParams {
12033
12638
  accountId: string;
12034
12639
  username: string;
12035
12640
  }
@@ -12037,12 +12642,12 @@ interface ConfirmAccountCognitoUserParams extends MutationParams {
12037
12642
  * @category Methods
12038
12643
  * @group Account
12039
12644
  */
12040
- declare const ConfirmAccountCognitoUser: ({ accountId, username, adminApiParams, queryClient, }: ConfirmAccountCognitoUserParams) => Promise<ConnectedXMResponse<Account>>;
12645
+ declare const ConfirmAccountLogin: ({ accountId, username, adminApiParams, queryClient, }: ConfirmAccountLoginParams) => Promise<ConnectedXMResponse<Account>>;
12041
12646
  /**
12042
12647
  * @category Mutations
12043
12648
  * @group Account
12044
12649
  */
12045
- declare const useConfirmAccountCognitoUser: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof ConfirmAccountCognitoUser>>, Omit<ConfirmAccountCognitoUserParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<ConfirmAccountCognitoUserParams, "queryClient" | "adminApiParams">, unknown>;
12650
+ declare const useConfirmAccountLogin: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof ConfirmAccountLogin>>, Omit<ConfirmAccountLoginParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<ConfirmAccountLoginParams, "queryClient" | "adminApiParams">, unknown>;
12046
12651
 
12047
12652
  /**
12048
12653
  * @category Params
@@ -12313,59 +12918,79 @@ declare const useUpdateAccount: (options?: Omit<ConnectedXMMutationOptions<Await
12313
12918
  */
12314
12919
  interface UpdateAccountAddressParams extends MutationParams {
12315
12920
  accountId: string;
12316
- addressId: string;
12317
- address: AccountAddressUpdateInputs;
12921
+ addressId: string;
12922
+ address: AccountAddressUpdateInputs;
12923
+ }
12924
+ /**
12925
+ * @category Methods
12926
+ * @group Account
12927
+ */
12928
+ declare const UpdateAccountAddress: ({ accountId, addressId, address, adminApiParams, queryClient, }: UpdateAccountAddressParams) => Promise<ConnectedXMResponse<AccountAddress>>;
12929
+ /**
12930
+ * @category Mutations
12931
+ * @group Account
12932
+ */
12933
+ declare const useUpdateAccountAddress: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateAccountAddress>>, Omit<UpdateAccountAddressParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<AccountAddress>, any>, Omit<UpdateAccountAddressParams, "queryClient" | "adminApiParams">, unknown>;
12934
+
12935
+ /**
12936
+ * @category Params
12937
+ * @group Account
12938
+ */
12939
+ interface UpdateAccountLeadParams extends MutationParams {
12940
+ accountId: string;
12941
+ leadId: string;
12942
+ lead: LeadUpdateInputs;
12318
12943
  }
12319
12944
  /**
12320
12945
  * @category Methods
12321
12946
  * @group Account
12322
12947
  */
12323
- declare const UpdateAccountAddress: ({ accountId, addressId, address, adminApiParams, queryClient, }: UpdateAccountAddressParams) => Promise<ConnectedXMResponse<AccountAddress>>;
12948
+ declare const UpdateAccountLead: ({ accountId, leadId, lead, adminApiParams, queryClient, }: UpdateAccountLeadParams) => Promise<ConnectedXMResponse<Lead>>;
12324
12949
  /**
12325
12950
  * @category Mutations
12326
12951
  * @group Account
12327
12952
  */
12328
- declare const useUpdateAccountAddress: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateAccountAddress>>, Omit<UpdateAccountAddressParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<AccountAddress>, axios.AxiosError<ConnectedXMResponse<AccountAddress>, any>, Omit<UpdateAccountAddressParams, "queryClient" | "adminApiParams">, unknown>;
12953
+ declare const useUpdateAccountLead: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateAccountLead>>, Omit<UpdateAccountLeadParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<UpdateAccountLeadParams, "queryClient" | "adminApiParams">, unknown>;
12329
12954
 
12330
12955
  /**
12331
12956
  * @category Params
12332
12957
  * @group Account
12333
12958
  */
12334
- interface UpdateAccountCognitoUserPasswordParams extends MutationParams {
12959
+ interface UpdateLoginEmailParams extends MutationParams {
12335
12960
  accountId: string;
12336
12961
  username: string;
12337
- password: string;
12962
+ email: string;
12338
12963
  }
12339
12964
  /**
12340
12965
  * @category Methods
12341
12966
  * @group Account
12342
12967
  */
12343
- declare const UpdateAccountCognitoUserPassword: ({ accountId, username, password, adminApiParams, queryClient, }: UpdateAccountCognitoUserPasswordParams) => Promise<ConnectedXMResponse<Account>>;
12968
+ declare const UpdateLoginEmail: ({ accountId, username, email, adminApiParams, }: UpdateLoginEmailParams) => Promise<ConnectedXMResponse<Account>>;
12344
12969
  /**
12345
12970
  * @category Mutations
12346
12971
  * @group Account
12347
12972
  */
12348
- declare const useUpdateAccountCognitoUserPassword: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateAccountCognitoUserPassword>>, Omit<UpdateAccountCognitoUserPasswordParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<UpdateAccountCognitoUserPasswordParams, "queryClient" | "adminApiParams">, unknown>;
12973
+ declare const useUpdateLoginEmail: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateLoginEmail>>, Omit<UpdateLoginEmailParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<UpdateLoginEmailParams, "queryClient" | "adminApiParams">, unknown>;
12349
12974
 
12350
12975
  /**
12351
12976
  * @category Params
12352
12977
  * @group Account
12353
12978
  */
12354
- interface UpdateAccountLeadParams extends MutationParams {
12979
+ interface UpdateLoginPasswordParams extends MutationParams {
12355
12980
  accountId: string;
12356
- leadId: string;
12357
- lead: LeadUpdateInputs;
12981
+ username: string;
12982
+ password: string;
12358
12983
  }
12359
12984
  /**
12360
12985
  * @category Methods
12361
12986
  * @group Account
12362
12987
  */
12363
- declare const UpdateAccountLead: ({ accountId, leadId, lead, adminApiParams, queryClient, }: UpdateAccountLeadParams) => Promise<ConnectedXMResponse<Lead>>;
12988
+ declare const UpdateLoginPassword: ({ accountId, username, password, adminApiParams, }: UpdateLoginPasswordParams) => Promise<ConnectedXMResponse<Account>>;
12364
12989
  /**
12365
12990
  * @category Mutations
12366
12991
  * @group Account
12367
12992
  */
12368
- declare const useUpdateAccountLead: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateAccountLead>>, Omit<UpdateAccountLeadParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<UpdateAccountLeadParams, "queryClient" | "adminApiParams">, unknown>;
12993
+ declare const useUpdateLoginPassword: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateLoginPassword>>, Omit<UpdateLoginPasswordParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<UpdateLoginPasswordParams, "queryClient" | "adminApiParams">, unknown>;
12369
12994
 
12370
12995
  /**
12371
12996
  * @category Params
@@ -12804,6 +13429,423 @@ declare const UpdateBenefit: ({ benefitId, benefit, adminApiParams, queryClient,
12804
13429
  */
12805
13430
  declare const useUpdateBenefit: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateBenefit>>, Omit<UpdateBenefitParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Benefit>, axios.AxiosError<ConnectedXMResponse<Benefit>, any>, Omit<UpdateBenefitParams, "queryClient" | "adminApiParams">, unknown>;
12806
13431
 
13432
+ /**
13433
+ * @category Params
13434
+ * @group Bookings
13435
+ */
13436
+ interface CreateBookingSpaceAvailabilityParams extends MutationParams {
13437
+ placeId: string;
13438
+ spaceId: string;
13439
+ availability: BookingSpaceAvailabilityCreateInputs;
13440
+ }
13441
+ /**
13442
+ * @category Methods
13443
+ * @group Bookings
13444
+ */
13445
+ declare const CreateBookingSpaceAvailability: ({ placeId, spaceId, availability, adminApiParams, queryClient, }: CreateBookingSpaceAvailabilityParams) => Promise<ConnectedXMResponse<BookingSpaceAvailability>>;
13446
+ /**
13447
+ * @category Mutations
13448
+ * @group Bookings
13449
+ */
13450
+ declare const useCreateBookingSpaceAvailability: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateBookingSpaceAvailability>>, Omit<CreateBookingSpaceAvailabilityParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingSpaceAvailability>, axios.AxiosError<ConnectedXMResponse<BookingSpaceAvailability>, any>, Omit<CreateBookingSpaceAvailabilityParams, "queryClient" | "adminApiParams">, unknown>;
13451
+
13452
+ /**
13453
+ * @category Params
13454
+ * @group Bookings
13455
+ */
13456
+ interface DeleteBookingSpaceAvailabilityParams extends MutationParams {
13457
+ placeId: string;
13458
+ spaceId: string;
13459
+ availabilityId: string;
13460
+ }
13461
+ /**
13462
+ * @category Methods
13463
+ * @group Bookings
13464
+ */
13465
+ declare const DeleteBookingSpaceAvailability: ({ placeId, spaceId, availabilityId, adminApiParams, queryClient, }: DeleteBookingSpaceAvailabilityParams) => Promise<ConnectedXMResponse<null>>;
13466
+ /**
13467
+ * @category Mutations
13468
+ * @group Bookings
13469
+ */
13470
+ declare const useDeleteBookingSpaceAvailability: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteBookingSpaceAvailability>>, Omit<DeleteBookingSpaceAvailabilityParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteBookingSpaceAvailabilityParams, "queryClient" | "adminApiParams">, unknown>;
13471
+
13472
+ /**
13473
+ * @category Params
13474
+ * @group Bookings
13475
+ */
13476
+ interface UpdateBookingSpaceAvailabilityParams extends MutationParams {
13477
+ placeId: string;
13478
+ spaceId: string;
13479
+ availabilityId: string;
13480
+ availability: BookingSpaceAvailabilityUpdateInputs;
13481
+ }
13482
+ /**
13483
+ * @category Methods
13484
+ * @group Bookings
13485
+ */
13486
+ declare const UpdateBookingSpaceAvailability: ({ placeId, spaceId, availabilityId, availability, adminApiParams, queryClient, }: UpdateBookingSpaceAvailabilityParams) => Promise<ConnectedXMResponse<BookingSpaceAvailability>>;
13487
+ /**
13488
+ * @category Mutations
13489
+ * @group Bookings
13490
+ */
13491
+ declare const useUpdateBookingSpaceAvailability: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateBookingSpaceAvailability>>, Omit<UpdateBookingSpaceAvailabilityParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingSpaceAvailability>, axios.AxiosError<ConnectedXMResponse<BookingSpaceAvailability>, any>, Omit<UpdateBookingSpaceAvailabilityParams, "queryClient" | "adminApiParams">, unknown>;
13492
+
13493
+ /**
13494
+ * @category Params
13495
+ * @group Bookings
13496
+ */
13497
+ interface CreateBookingSpaceBlackoutParams extends MutationParams {
13498
+ placeId: string;
13499
+ spaceId: string;
13500
+ blackout: BookingSpaceBlackoutCreateInputs;
13501
+ }
13502
+ /**
13503
+ * @category Methods
13504
+ * @group Bookings
13505
+ */
13506
+ declare const CreateBookingSpaceBlackout: ({ placeId, spaceId, blackout, adminApiParams, queryClient, }: CreateBookingSpaceBlackoutParams) => Promise<ConnectedXMResponse<BookingSpaceBlackout>>;
13507
+ /**
13508
+ * @category Mutations
13509
+ * @group Bookings
13510
+ */
13511
+ declare const useCreateBookingSpaceBlackout: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateBookingSpaceBlackout>>, Omit<CreateBookingSpaceBlackoutParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingSpaceBlackout>, axios.AxiosError<ConnectedXMResponse<BookingSpaceBlackout>, any>, Omit<CreateBookingSpaceBlackoutParams, "queryClient" | "adminApiParams">, unknown>;
13512
+
13513
+ /**
13514
+ * @category Params
13515
+ * @group Bookings
13516
+ */
13517
+ interface DeleteBookingSpaceBlackoutParams extends MutationParams {
13518
+ placeId: string;
13519
+ spaceId: string;
13520
+ blackoutId: string;
13521
+ }
13522
+ /**
13523
+ * @category Methods
13524
+ * @group Bookings
13525
+ */
13526
+ declare const DeleteBookingSpaceBlackout: ({ placeId, spaceId, blackoutId, adminApiParams, queryClient, }: DeleteBookingSpaceBlackoutParams) => Promise<ConnectedXMResponse<null>>;
13527
+ /**
13528
+ * @category Mutations
13529
+ * @group Bookings
13530
+ */
13531
+ declare const useDeleteBookingSpaceBlackout: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteBookingSpaceBlackout>>, Omit<DeleteBookingSpaceBlackoutParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteBookingSpaceBlackoutParams, "queryClient" | "adminApiParams">, unknown>;
13532
+
13533
+ /**
13534
+ * @category Params
13535
+ * @group Bookings
13536
+ */
13537
+ interface UpdateBookingSpaceBlackoutParams extends MutationParams {
13538
+ placeId: string;
13539
+ spaceId: string;
13540
+ blackoutId: string;
13541
+ blackout: BookingSpaceBlackoutUpdateInputs;
13542
+ }
13543
+ /**
13544
+ * @category Methods
13545
+ * @group Bookings
13546
+ */
13547
+ declare const UpdateBookingSpaceBlackout: ({ placeId, spaceId, blackoutId, blackout, adminApiParams, queryClient, }: UpdateBookingSpaceBlackoutParams) => Promise<ConnectedXMResponse<BookingSpaceBlackout>>;
13548
+ /**
13549
+ * @category Mutations
13550
+ * @group Bookings
13551
+ */
13552
+ declare const useUpdateBookingSpaceBlackout: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateBookingSpaceBlackout>>, Omit<UpdateBookingSpaceBlackoutParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingSpaceBlackout>, axios.AxiosError<ConnectedXMResponse<BookingSpaceBlackout>, any>, Omit<UpdateBookingSpaceBlackoutParams, "queryClient" | "adminApiParams">, unknown>;
13553
+
13554
+ /**
13555
+ * @category Params
13556
+ * @group Bookings
13557
+ */
13558
+ interface CreateBookingPlaceTranslationParams extends MutationParams {
13559
+ placeId: string;
13560
+ locale: string;
13561
+ autoTranslate?: boolean;
13562
+ }
13563
+ /**
13564
+ * @category Methods
13565
+ * @group Bookings
13566
+ */
13567
+ declare const CreateBookingPlaceTranslation: ({ placeId, locale, autoTranslate, adminApiParams, queryClient, }: CreateBookingPlaceTranslationParams) => Promise<ConnectedXMResponse<BookingPlaceTranslation>>;
13568
+ /**
13569
+ * @category Mutations
13570
+ *@group Bookings
13571
+ */
13572
+ declare const useCreateBookingPlaceTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateBookingPlaceTranslation>>, Omit<CreateBookingPlaceTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingPlaceTranslation>, axios.AxiosError<ConnectedXMResponse<BookingPlaceTranslation>, any>, Omit<CreateBookingPlaceTranslationParams, "queryClient" | "adminApiParams">, unknown>;
13573
+
13574
+ /**
13575
+ * @category Params
13576
+ * @group Bookings
13577
+ */
13578
+ interface DeleteBookingPlaceTranslationParams extends MutationParams {
13579
+ placeId: string;
13580
+ locale: string;
13581
+ }
13582
+ /**
13583
+ * @category Methods
13584
+ * @group Bookings
13585
+ */
13586
+ declare const DeleteBookingPlaceTranslation: ({ placeId, locale, adminApiParams, queryClient, }: DeleteBookingPlaceTranslationParams) => Promise<any>;
13587
+ /**
13588
+ * @category Mutations
13589
+ * @group Bookings
13590
+ */
13591
+ declare const useDeleteBookingPlaceTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteBookingPlaceTranslation>>, Omit<DeleteBookingPlaceTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<DeleteBookingPlaceTranslationParams, "queryClient" | "adminApiParams">, unknown>;
13592
+
13593
+ /**
13594
+ * @category Params
13595
+ * @group Bookings
13596
+ */
13597
+ interface UpdateBookingPlaceTranslationParams extends MutationParams {
13598
+ placeId: string;
13599
+ locale: ISupportedLocale;
13600
+ bookingPlaceTranslation: BookingPlaceTranslationUpdateInputs;
13601
+ }
13602
+ /**
13603
+ * @category Methods
13604
+ * @group Bookings
13605
+ */
13606
+ declare const UpdateBookingPlaceTranslation: ({ placeId, bookingPlaceTranslation, locale, adminApiParams, queryClient, }: UpdateBookingPlaceTranslationParams) => Promise<any>;
13607
+ /**
13608
+ * @category Mutations
13609
+ * @group Bookings
13610
+ */
13611
+ declare const useUpdateBookingPlaceTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateBookingPlaceTranslation>>, Omit<UpdateBookingPlaceTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<UpdateBookingPlaceTranslationParams, "queryClient" | "adminApiParams">, unknown>;
13612
+
13613
+ /**
13614
+ * @category Params
13615
+ * @group Bookings
13616
+ */
13617
+ interface CreateBookingPlaceParams extends MutationParams {
13618
+ bookingPlace: BookingPlaceCreateInputs;
13619
+ }
13620
+ /**
13621
+ * @category Methods
13622
+ * @group Bookings
13623
+ */
13624
+ declare const CreateBookingPlace: ({ bookingPlace, adminApiParams, queryClient, }: CreateBookingPlaceParams) => Promise<ConnectedXMResponse<BookingPlace>>;
13625
+ /**
13626
+ * @category Mutations
13627
+ * @group Bookings
13628
+ */
13629
+ declare const useCreateBookingPlace: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateBookingPlace>>, Omit<CreateBookingPlaceParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingPlace>, axios.AxiosError<ConnectedXMResponse<BookingPlace>, any>, Omit<CreateBookingPlaceParams, "queryClient" | "adminApiParams">, unknown>;
13630
+
13631
+ /**
13632
+ * @category Params
13633
+ * @group Bookings
13634
+ */
13635
+ interface DeleteBookingPlaceParams extends MutationParams {
13636
+ placeId: string;
13637
+ }
13638
+ /**
13639
+ * @category Methods
13640
+ * @group Bookings
13641
+ */
13642
+ declare const DeleteBookingPlace: ({ placeId, adminApiParams, queryClient, }: DeleteBookingPlaceParams) => Promise<ConnectedXMResponse<null>>;
13643
+ /**
13644
+ * @category Mutations
13645
+ * @group Bookings
13646
+ */
13647
+ declare const useDeleteBookingPlace: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteBookingPlace>>, Omit<DeleteBookingPlaceParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteBookingPlaceParams, "queryClient" | "adminApiParams">, unknown>;
13648
+
13649
+ /**
13650
+ * @category Params
13651
+ * @group Bookings
13652
+ */
13653
+ interface UpdateBookingPlaceParams extends MutationParams {
13654
+ placeId: string;
13655
+ bookingPlace: BookingPlaceUpdateInputs;
13656
+ }
13657
+ /**
13658
+ * @category Methods
13659
+ * @group Bookings
13660
+ */
13661
+ declare const UpdateBookingPlace: ({ placeId, bookingPlace, adminApiParams, queryClient, }: UpdateBookingPlaceParams) => Promise<ConnectedXMResponse<BookingPlace>>;
13662
+ /**
13663
+ * @category Mutations
13664
+ * @group Bookings
13665
+ */
13666
+ declare const useUpdateBookingPlace: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateBookingPlace>>, Omit<UpdateBookingPlaceParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingPlace>, axios.AxiosError<ConnectedXMResponse<BookingPlace>, any>, Omit<UpdateBookingPlaceParams, "queryClient" | "adminApiParams">, unknown>;
13667
+
13668
+ /**
13669
+ * @category Params
13670
+ * @group Bookings
13671
+ */
13672
+ interface CreateBookingSpaceTranslationParams extends MutationParams {
13673
+ placeId: string;
13674
+ spaceId: string;
13675
+ locale: string;
13676
+ autoTranslate?: boolean;
13677
+ }
13678
+ /**
13679
+ * @category Methods
13680
+ * @group Bookings
13681
+ */
13682
+ declare const CreateBookingSpaceTranslation: ({ placeId, spaceId, locale, autoTranslate, adminApiParams, queryClient, }: CreateBookingSpaceTranslationParams) => Promise<ConnectedXMResponse<BookingSpaceTranslation>>;
13683
+ /**
13684
+ * @category Mutations
13685
+ *@group Bookings
13686
+ */
13687
+ declare const useCreateBookingSpaceTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateBookingSpaceTranslation>>, Omit<CreateBookingSpaceTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingSpaceTranslation>, axios.AxiosError<ConnectedXMResponse<BookingSpaceTranslation>, any>, Omit<CreateBookingSpaceTranslationParams, "queryClient" | "adminApiParams">, unknown>;
13688
+
13689
+ /**
13690
+ * @category Params
13691
+ * @group Bookings
13692
+ */
13693
+ interface DeleteBookingSpaceTranslationParams extends MutationParams {
13694
+ placeId: string;
13695
+ spaceId: string;
13696
+ locale: string;
13697
+ }
13698
+ /**
13699
+ * @category Methods
13700
+ * @group Bookings
13701
+ */
13702
+ declare const DeleteBookingSpaceTranslation: ({ placeId, spaceId, locale, adminApiParams, queryClient, }: DeleteBookingSpaceTranslationParams) => Promise<any>;
13703
+ /**
13704
+ * @category Mutations
13705
+ * @group Bookings
13706
+ */
13707
+ declare const useDeleteBookingSpaceTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteBookingSpaceTranslation>>, Omit<DeleteBookingSpaceTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<DeleteBookingSpaceTranslationParams, "queryClient" | "adminApiParams">, unknown>;
13708
+
13709
+ /**
13710
+ * @category Params
13711
+ * @group Bookings
13712
+ */
13713
+ interface UpdateBookingSpaceTranslationParams extends MutationParams {
13714
+ placeId: string;
13715
+ spaceId: string;
13716
+ locale: ISupportedLocale;
13717
+ bookingSpaceTranslation: BookingSpaceTranslationUpdateInputs;
13718
+ }
13719
+ /**
13720
+ * @category Methods
13721
+ * @group Bookings
13722
+ */
13723
+ declare const UpdateBookingSpaceTranslation: ({ placeId, spaceId, bookingSpaceTranslation, locale, adminApiParams, queryClient, }: UpdateBookingSpaceTranslationParams) => Promise<any>;
13724
+ /**
13725
+ * @category Mutations
13726
+ * @group Bookings
13727
+ */
13728
+ declare const useUpdateBookingSpaceTranslation: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateBookingSpaceTranslation>>, Omit<UpdateBookingSpaceTranslationParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<any, axios.AxiosError<any, any>, Omit<UpdateBookingSpaceTranslationParams, "queryClient" | "adminApiParams">, unknown>;
13729
+
13730
+ /**
13731
+ * @category Params
13732
+ * @group Bookings
13733
+ */
13734
+ interface CreateBookingParams extends MutationParams {
13735
+ placeId: string;
13736
+ spaceId: string;
13737
+ booking: BookingCreateInputs;
13738
+ }
13739
+ /**
13740
+ * @category Methods
13741
+ * @group Bookings
13742
+ */
13743
+ declare const CreateBooking: ({ placeId, spaceId, booking, adminApiParams, queryClient, }: CreateBookingParams) => Promise<ConnectedXMResponse<Booking>>;
13744
+ /**
13745
+ * @category Mutations
13746
+ * @group Bookings
13747
+ */
13748
+ declare const useCreateBooking: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateBooking>>, Omit<CreateBookingParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<Booking>, any>, Omit<CreateBookingParams, "queryClient" | "adminApiParams">, unknown>;
13749
+
13750
+ /**
13751
+ * @category Params
13752
+ * @group Bookings
13753
+ */
13754
+ interface CreateBookingSpaceParams extends MutationParams {
13755
+ placeId: string;
13756
+ bookingSpace: BookingSpaceCreateInputs;
13757
+ }
13758
+ /**
13759
+ * @category Methods
13760
+ * @group Bookings
13761
+ */
13762
+ declare const CreateBookingSpace: ({ placeId, bookingSpace, adminApiParams, queryClient, }: CreateBookingSpaceParams) => Promise<ConnectedXMResponse<BookingSpace>>;
13763
+ /**
13764
+ * @category Mutations
13765
+ * @group Bookings
13766
+ */
13767
+ declare const useCreateBookingSpace: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof CreateBookingSpace>>, Omit<CreateBookingSpaceParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingSpace>, axios.AxiosError<ConnectedXMResponse<BookingSpace>, any>, Omit<CreateBookingSpaceParams, "queryClient" | "adminApiParams">, unknown>;
13768
+
13769
+ /**
13770
+ * @category Params
13771
+ * @group Bookings
13772
+ */
13773
+ interface DeleteBookingParams extends MutationParams {
13774
+ placeId: string;
13775
+ spaceId: string;
13776
+ bookingId: string;
13777
+ }
13778
+ /**
13779
+ * @category Methods
13780
+ * @group Bookings
13781
+ */
13782
+ declare const DeleteBooking: ({ placeId, spaceId, bookingId, adminApiParams, queryClient, }: DeleteBookingParams) => Promise<ConnectedXMResponse<null>>;
13783
+ /**
13784
+ * @category Mutations
13785
+ * @group Bookings
13786
+ */
13787
+ declare const useDeleteBooking: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteBooking>>, Omit<DeleteBookingParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteBookingParams, "queryClient" | "adminApiParams">, unknown>;
13788
+
13789
+ /**
13790
+ * @category Params
13791
+ * @group Bookings
13792
+ */
13793
+ interface DeleteBookingSpaceParams extends MutationParams {
13794
+ placeId: string;
13795
+ spaceId: string;
13796
+ }
13797
+ /**
13798
+ * @category Methods
13799
+ * @group Bookings
13800
+ */
13801
+ declare const DeleteBookingSpace: ({ placeId, spaceId, adminApiParams, queryClient, }: DeleteBookingSpaceParams) => Promise<ConnectedXMResponse<null>>;
13802
+ /**
13803
+ * @category Mutations
13804
+ * @group Bookings
13805
+ */
13806
+ declare const useDeleteBookingSpace: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof DeleteBookingSpace>>, Omit<DeleteBookingSpaceParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<DeleteBookingSpaceParams, "queryClient" | "adminApiParams">, unknown>;
13807
+
13808
+ /**
13809
+ * @category Params
13810
+ * @group Bookings
13811
+ */
13812
+ interface UpdateBookingParams extends MutationParams {
13813
+ placeId: string;
13814
+ spaceId: string;
13815
+ bookingId: string;
13816
+ booking: BookingUpdateInputs;
13817
+ }
13818
+ /**
13819
+ * @category Methods
13820
+ * @group Bookings
13821
+ */
13822
+ declare const UpdateBooking: ({ placeId, spaceId, bookingId, booking, adminApiParams, queryClient, }: UpdateBookingParams) => Promise<ConnectedXMResponse<Booking>>;
13823
+ /**
13824
+ * @category Mutations
13825
+ * @group Bookings
13826
+ */
13827
+ declare const useUpdateBooking: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateBooking>>, Omit<UpdateBookingParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Booking>, axios.AxiosError<ConnectedXMResponse<Booking>, any>, Omit<UpdateBookingParams, "queryClient" | "adminApiParams">, unknown>;
13828
+
13829
+ /**
13830
+ * @category Params
13831
+ * @group Bookings
13832
+ */
13833
+ interface UpdateBookingSpaceParams extends MutationParams {
13834
+ placeId: string;
13835
+ spaceId: string;
13836
+ bookingSpace: BookingSpaceUpdateInputs;
13837
+ }
13838
+ /**
13839
+ * @category Methods
13840
+ * @group Bookings
13841
+ */
13842
+ declare const UpdateBookingSpace: ({ placeId, spaceId, bookingSpace, adminApiParams, queryClient, }: UpdateBookingSpaceParams) => Promise<ConnectedXMResponse<BookingSpace>>;
13843
+ /**
13844
+ * @category Mutations
13845
+ * @group Bookings
13846
+ */
13847
+ declare const useUpdateBookingSpace: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateBookingSpace>>, Omit<UpdateBookingSpaceParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<BookingSpace>, axios.AxiosError<ConnectedXMResponse<BookingSpace>, any>, Omit<UpdateBookingSpaceParams, "queryClient" | "adminApiParams">, unknown>;
13848
+
12807
13849
  /**
12808
13850
  * @category Params
12809
13851
  * @group Channel-Translation
@@ -19745,4 +20787,4 @@ declare const UpdateVideo: ({ videoId, video, adminApiParams, queryClient, }: Up
19745
20787
  */
19746
20788
  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>;
19747
20789
 
19748
- export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_ADDRESSES_QUERY_KEY, ACCOUNT_ADDRESS_QUERY_KEY, ACCOUNT_AUTH_SESSIONS_QUERY_KEY, ACCOUNT_COGNITO_USERS_QUERY_KEY, ACCOUNT_COGNITO_USER_QUERY_KEY, ACCOUNT_COMMENTS_QUERY_KEY, ACCOUNT_DELEGATES_QUERY_KEY, ACCOUNT_DELEGATE_OF_QUERY_KEY, ACCOUNT_EMAILS_QUERY_KEY, ACCOUNT_EVENTS_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWING_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_INTERESTS_QUERY_KEY, ACCOUNT_LEADS_QUERY_KEY, ACCOUNT_LEAD_QUERY_KEY, ACCOUNT_LEVELS_QUERY_KEY, ACCOUNT_LIKES_QUERY_KEY, ACCOUNT_PAYMENTS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_RESHARES_QUERY_KEY, ACCOUNT_SUBSCRIPTIONS_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_INTERESTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ACTIVITY_RESHARES_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ALL_EVENT_ADD_ON_QUERY_KEY, ALL_EVENT_PASS_TYPES_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_AUDIENCE_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, ANNOUNCEMENT_TRANSLATIONS_QUERY_KEY, ANNOUNCEMENT_TRANSLATION_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, AUTH_SESSIONS_QUERY_KEY, AUTH_SESSION_QUERY_KEY, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAddressCreateInputs, type AccountAddressUpdateInputs, type AccountCreateInputs, AccountType, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityUpdateInputs, AddAccountDelegate, type AddAccountDelegateParams, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddActivityInterest, type AddActivityInterestParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddEventAccessUser, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventPageImage, type AddEventPageImageParams, AddEventPassAddOn, type AddEventPassAddOnParams, AddEventPassTypeAddOn, type AddEventPassTypeAddOnParams, AddEventPassTypeTier, type AddEventPassTypeTierParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, 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, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAPILog, type BaseAccount, type BaseAccountAddress, type BaseActivationCompletion, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelContentLike, type BaseChannelSubscriber, type BaseCognitoUser, type BaseCoupon, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventAttendee, type BaseEventEmail, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPage, type BaseEventPass, type BaseEventPassType, type BaseEventPassTypePriceSchedule, type BaseEventPassTypeRefundSchedule, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSession, type BaseEventSessionLocation, type BaseEventSessionPass, type BaseEventSessionQuestion, type BaseEventSessionQuestionResponse, type BaseEventSpeaker, type BaseEventTrack, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseImport, type BaseImportItem, type BaseIntegration, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseNotification, type BaseOrganization, type BaseOrganizationModule, type BasePage, type BasePayment, type BaseRegistrationBypass, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseSchedule, type BaseSeries, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionPayment, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseThread, type BaseThreadMember, type BaseThreadMessage, type BaseThreadMessageReaction, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, 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, type CognitoUser, ConfirmAccountCognitoUser, type ConfirmAccountCognitoUserParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, type CountChartSummaryData, type Coupon, CreateAccount, CreateAccountAddress, type CreateAccountAddressParams, type CreateAccountParams, CreateActivity, type CreateActivityParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateAnnouncementTranslation, type CreateAnnouncementTranslationParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateChannel, CreateChannelContent, CreateChannelContentGuest, type CreateChannelContentGuestParams, CreateChannelContentGuestTranslation, type CreateChannelContentGuestTranslationParams, type CreateChannelContentParams, CreateChannelContentTranslation, type CreateChannelContentTranslationParams, type CreateChannelParams, CreateChannelTranslation, type CreateChannelTranslationParams, CreateEvent, CreateEventActivation, CreateEventActivationCompletion, type CreateEventActivationCompletionParams, type CreateEventActivationParams, CreateEventActivationTranslation, type CreateEventActivationTranslationParams, CreateEventAddOn, type CreateEventAddOnParams, CreateEventAddOnTranslation, type CreateEventAddOnTranslationParams, CreateEventAttendee, type CreateEventAttendeeParams, CreateEventCoupon, type CreateEventCouponParams, CreateEventEmailTranslation, type CreateEventEmailTranslationParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventPass, type CreateEventPassParams, CreateEventPassType, type CreateEventPassTypeParams, CreateEventPassTypePriceSchedule, CreateEventPassTypeRefundSchedule, CreateEventPassTypeTranslation, type CreateEventPassTypeTranslationParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionSearchValues, type CreateEventQuestionSearchValuesParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, 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, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, DeleteAccountLead, type DeleteAccountLeadParams, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, DeleteEvent, DeleteEventActivation, DeleteEventActivationCompletion, type DeleteEventActivationCompletionParams, type DeleteEventActivationParams, DeleteEventActivationTranslation, type DeleteEventActivationTranslationParams, DeleteEventAddOn, type DeleteEventAddOnParams, DeleteEventAddOnTranslation, type DeleteEventAddOnTranslationParams, DeleteEventAttendee, type DeleteEventAttendeeParams, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventEmailTranslation, type DeleteEventEmailTranslationParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventPass, type DeleteEventPassParams, DeleteEventPassType, type DeleteEventPassTypeParams, DeleteEventPassTypePriceSchedule, DeleteEventPassTypeRefundSchedule, DeleteEventPassTypeTranslation, type DeleteEventPassTypeTranslationParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionSearchValue, type DeleteEventQuestionSearchValueParams, DeleteEventQuestionSearchValues, type DeleteEventQuestionSearchValuesParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, 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, GetAccountCognitoUser, GetAccountCognitoUsers, GetAccountComments, GetAccountDelegateOf, GetAccountDelegates, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountPayments, GetAccountReshares, GetAccountSubscriptions, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityInterests, GetActivityLikes, GetActivityReshares, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAllEventAddOns, GetAllEventPassTypes, GetAnnouncement, GetAnnouncementAudience, GetAnnouncementEmailReceipts, GetAnnouncementTranslation, GetAnnouncementTranslations, GetAnnouncements, GetAuthSession, GetAuthSessions, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePasses, GetEventAttendeePayments, 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, 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_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_QUERY_DATA, SET_ACCOUNT_RESHARES_QUERY_DATA, SET_ACCOUNT_SUBSCRIPTIONS_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_INTEREST_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ACTIVITY_RESHARES_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_QUERY_DATA, SET_ALL_EVENT_ADD_ON_QUERY_DATA, SET_ALL_EVENT_PASS_TYPES_QUERY_DATA, SET_ANNOUNCEMENTS_QUERY_DATA, SET_ANNOUNCEMENT_AUDIENCE_QUERY_DATA, SET_ANNOUNCEMENT_EMAILS_QUERY_DATA, SET_ANNOUNCEMENT_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATIONS_QUERY_DATA, SET_ANNOUNCEMENT_TRANSLATION_QUERY_DATA, SET_API_LOGS_QUERY_DATA, SET_API_LOG_QUERY_DATA, SET_AUTH_SESSIONS_QUERY_DATA, SET_AUTH_SESSION_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BENEFIT_CLICKS_QUERY_DATA, SET_BENEFIT_QUERY_DATA, SET_BENEFIT_TRANSLATIONS_QUERY_DATA, SET_BENEFIT_TRANSLATION_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_ACTIVITIES_QUERY_DATA, SET_CHANNEL_CONTENT_GUESTS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_GUEST_TRANSLATION_QUERY_DATA, SET_CHANNEL_CONTENT_LIKES_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_CONTENT_TRANSLATION_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CHANNEL_SUBSCRIBER_QUERY_DATA, SET_CHANNEL_TRANSLATIONS_QUERY_DATA, SET_CHANNEL_TRANSLATION_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_COMPLETIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_TRANSLATION_QUERY_DATA, SET_EVENT_ACTIVITIES_QUERY_DATA, SET_EVENT_ADD_ONS_QUERY_DATA, SET_EVENT_ADD_ON_PASSES_QUERY_DATA, SET_EVENT_ADD_ON_PASS_TYPES_QUERY_DATA, SET_EVENT_ADD_ON_QUERY_DATA, SET_EVENT_ADD_ON_TIERS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATIONS_QUERY_DATA, SET_EVENT_ADD_ON_TRANSLATION_QUERY_DATA, SET_EVENT_ATTENDEES_QUERY_DATA, SET_EVENT_ATTENDEE_PASSES_QUERY_DATA, SET_EVENT_ATTENDEE_PAYMENTS_QUERY_DATA, SET_EVENT_ATTENDEE_QUERY_DATA, SET_EVENT_ATTENDEE_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, UpdateAccountCognitoUserPassword, type UpdateAccountCognitoUserPasswordParams, 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, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, UpdateChannelContentGuestTranslation, type UpdateChannelContentGuestTranslationParams, type UpdateChannelContentParams, UpdateChannelContentPublishSchedule, type UpdateChannelContentPublishScheduleParams, UpdateChannelContentTranslation, type UpdateChannelContentTranslationParams, type UpdateChannelParams, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateChannelTranslation, type UpdateChannelTranslationParams, UpdateEvent, UpdateEventActivation, UpdateEventActivationCompletion, type UpdateEventActivationCompletionParams, type UpdateEventActivationParams, UpdateEventActivationTranslation, type UpdateEventActivationTranslationParams, UpdateEventAddOn, type UpdateEventAddOnParams, UpdateEventAddOnTranslation, type UpdateEventAddOnTranslationParams, UpdateEventAttendee, type UpdateEventAttendeeParams, UpdateEventCheckinCode, type UpdateEventCheckinCodeParams, UpdateEventCoupon, type UpdateEventCouponParams, UpdateEventEmail, type UpdateEventEmailParams, UpdateEventEmailTranslation, type UpdateEventEmailTranslationParams, UpdateEventFaqSection, type UpdateEventFaqSectionParams, UpdateEventFaqSectionQuestion, type UpdateEventFaqSectionQuestionParams, UpdateEventFaqSectionQuestionTranslation, type UpdateEventFaqSectionQuestionTranslationParams, UpdateEventFaqSectionTranslation, type UpdateEventFaqSectionTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventPass, type UpdateEventPassParams, UpdateEventPassResponse, type 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, UpdateOrganization, UpdateOrganizationDomain, type UpdateOrganizationDomainParams, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, UpdateOrganizationModule, type UpdateOrganizationModuleParams, UpdateOrganizationPage, type UpdateOrganizationPageParams, UpdateOrganizationPageTranslation, type UpdateOrganizationPageTranslationParams, type UpdateOrganizationParams, UpdateOrganizationTeamMember, type UpdateOrganizationTeamMemberParams, UpdateOrganizationTrigger, type UpdateOrganizationTriggerParams, UpdateReport, type UpdateReportParams, UpdateSelf, type UpdateSelfParams, UpdateSeries, type UpdateSeriesParams, UpdateStream, UpdateStreamConfig, type UpdateStreamConfigParams, UpdateStreamInputOutput, type UpdateStreamInputOutputParams, type UpdateStreamParams, UpdateSubscription, type UpdateSubscriptionParams, UpdateSubscriptionProduct, type UpdateSubscriptionProductParams, UpdateSubscriptionProductPrice, type UpdateSubscriptionProductPriceParams, UpdateSupportTicket, type UpdateSupportTicketParams, UpdateThread, type UpdateThreadParams, UpdateTier, type UpdateTierParams, UpdateUserImage, type UpdateUserImageParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, type User, type UserApiKey, type UserApiKeyCreateInputs, type UserCreateInputs, type UserImageUpdateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_QUERY_KEY, type Video, VideoSource, VideoStatus, type VideoUpdateInputs, isUUID, setFirstPageData, useAcceptGroupRequest, useAddAccountDelegate, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddActivityInterest, useAddChannelSubscriber, useAddEventAccessUser, useAddEventAddOnPassType, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventPageImage, useAddEventPassAddOn, useAddEventPassTypeAddOn, useAddEventPassTypeTier, useAddEventQuestionChoiceSubQuestion, 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, useConfirmAccountCognitoUser, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAccountAddress, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventAttendee, useCreateEventCoupon, useCreateEventEmailTranslation, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventPassTypeTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionSearchValues, useCreateEventQuestionTranslation, useCreateEventRegistrationBypass, 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, useDeleteAccountLead, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventCoupon, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventPass, useDeleteEventPassType, useDeleteEventPassTypePriceSchedule, useDeleteEventPassTypeRefundSchedule, useDeleteEventPassTypeTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionSearchValue, useDeleteEventQuestionSearchValues, useDeleteEventQuestionTranslation, useDeleteEventRegistrationBypass, 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, useGetAccountCognitoUser, useGetAccountCognitoUsers, useGetAccountComments, useGetAccountDelegateOf, useGetAccountDelegates, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountPayments, useGetAccountReshares, useGetAccountSubscriptions, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityInterests, useGetActivityLikes, useGetActivityReshares, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAllEventAddOns, useGetAllEventPassTypes, useGetAnnouncement, useGetAnnouncementAudience, useGetAnnouncementEmailReceipts, useGetAnnouncementTranslation, useGetAnnouncementTranslations, useGetAnnouncements, useGetAuthSession, useGetAuthSessions, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePasses, useGetEventAttendeePayments, 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, useUpdateAccountCognitoUserPassword, useUpdateAccountLead, useUpdateActivity, useUpdateAdvertisement, useUpdateAnnouncement, useUpdateAnnouncementSchedule, useUpdateAnnouncementTranslation, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentGuestTranslation, useUpdateChannelContentPublishSchedule, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventAttendee, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventEmailTranslation, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventPass, useUpdateEventPassResponse, useUpdateEventPassResponses, useUpdateEventPassType, useUpdateEventPassTypePriceSchedule, useUpdateEventPassTypeRefundSchedule, useUpdateEventPassTypeTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionSearchValue, useUpdateEventQuestionTranslation, useUpdateEventRegistrationBypass, 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, useUpdateOrganization, useUpdateOrganizationDomain, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationModule, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateThread, useUpdateTier, useUpdateUserImage, useUpdateVideo, useUploadFile };
20790
+ 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_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_QUERY_KEY, ACCOUNT_RESHARES_QUERY_KEY, ACCOUNT_SUBSCRIPTIONS_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_INTERESTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ACTIVITY_RESHARES_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ALL_EVENT_ADD_ON_QUERY_KEY, ALL_EVENT_PASS_TYPES_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_AUDIENCE_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, ANNOUNCEMENT_TRANSLATIONS_QUERY_KEY, ANNOUNCEMENT_TRANSLATION_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, AUTH_SESSIONS_QUERY_KEY, AUTH_SESSION_QUERY_KEY, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountAddressCreateInputs, type AccountAddressUpdateInputs, type AccountCreateInputs, AccountType, type AccountUpdateInputs, type ActivationCompletion, type ActivationTranslation, type Activity, type ActivityCreateInputs, type ActivityUpdateInputs, AddAccountDelegate, type AddAccountDelegateParams, AddAccountFollower, type AddAccountFollowerParams, AddAccountFollowing, type AddAccountFollowingParams, AddAccountGroup, type AddAccountGroupParams, AddAccountInterest, type AddAccountInterestParams, AddAccountTier, type AddAccountTierParams, AddActivityInterest, type AddActivityInterestParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddEventAccessUser, AddEventAddOnPassType, type AddEventAddOnPassTypeParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventPageImage, type AddEventPageImageParams, AddEventPassAddOn, type AddEventPassAddOnParams, AddEventPassTypeAddOn, type AddEventPassTypeAddOnParams, AddEventPassTypeTier, type AddEventPassTypeTierParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, 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_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 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 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, 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, 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, DayOfWeek, DefaultAuthAction, DelegateRole, DeleteAccount, DeleteAccountAddress, type DeleteAccountAddressParams, DeleteAccountLead, type DeleteAccountLeadParams, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteAnnouncement, type DeleteAnnouncementParams, DeleteAnnouncementTranslation, type DeleteAnnouncementTranslationParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteBooking, type DeleteBookingParams, DeleteBookingPlace, type DeleteBookingPlaceParams, DeleteBookingPlaceTranslation, type DeleteBookingPlaceTranslationParams, DeleteBookingSpace, DeleteBookingSpaceAvailability, type DeleteBookingSpaceAvailabilityParams, DeleteBookingSpaceBlackout, type DeleteBookingSpaceBlackoutParams, type DeleteBookingSpaceParams, DeleteBookingSpaceTranslation, type DeleteBookingSpaceTranslationParams, DeleteChannel, DeleteChannelContent, DeleteChannelContentGuest, type DeleteChannelContentGuestParams, DeleteChannelContentGuestTranslation, type DeleteChannelContentGuestTranslationParams, type DeleteChannelContentParams, DeleteChannelContentTranslation, type DeleteChannelContentTranslationParams, type DeleteChannelParams, DeleteChannelTranslation, type DeleteChannelTranslationParams, 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, GetAccountLead, GetAccountLeads, GetAccountLevels, GetAccountLikes, GetAccountLogin, GetAccountLogins, GetAccountPayments, GetAccountReshares, GetAccountSubscriptions, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityInterests, GetActivityLikes, GetActivityReshares, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAllEventAddOns, GetAllEventPassTypes, GetAnnouncement, GetAnnouncementAudience, GetAnnouncementEmailReceipts, GetAnnouncementTranslation, GetAnnouncementTranslations, GetAnnouncements, GetAuthSession, GetAuthSessions, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetBooking, GetBookingPlace, GetBookingPlaceBookings, GetBookingPlaceTranslation, GetBookingPlaceTranslations, GetBookingPlaces, GetBookingSpace, GetBookingSpaceAvailabilities, GetBookingSpaceAvailability, GetBookingSpaceBlackout, GetBookingSpaceBlackouts, GetBookingSpaceBookings, GetBookingSpaceSlots, GetBookingSpaceTranslations, GetBookingSpaces, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuestTranslation, GetChannelContentGuestTranslations, GetChannelContentGuests, GetChannelContentLikes, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetContents, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccessUsers, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPassTypes, GetEventAddOnPasses, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventAttendee, GetEventAttendeeCoupons, GetEventAttendeePasses, GetEventAttendeePayments, 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, GetEventSpaceTranslation, 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_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_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_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_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, 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, 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, useCreateActivity, useCreateAdvertisement, useCreateAnnouncement, useCreateAnnouncementTranslation, useCreateBenefit, useCreateBenefitTranslation, useCreateBooking, useCreateBookingPlace, useCreateBookingPlaceTranslation, useCreateBookingSpace, useCreateBookingSpaceAvailability, useCreateBookingSpaceBlackout, useCreateBookingSpaceTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentGuest, useCreateChannelContentGuestTranslation, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventAttendee, useCreateEventCoupon, useCreateEventEmailTranslation, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventPass, useCreateEventPassType, useCreateEventPassTypePriceSchedule, useCreateEventPassTypeRefundSchedule, useCreateEventPassTypeTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionSearchValues, useCreateEventQuestionTranslation, useCreateEventRegistrationBypass, 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, useDeleteAccountLead, useDeleteActivity, useDeleteAdvertisement, useDeleteAnnouncement, useDeleteAnnouncementTranslation, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteBooking, useDeleteBookingPlace, useDeleteBookingPlaceTranslation, useDeleteBookingSpace, useDeleteBookingSpaceAvailability, useDeleteBookingSpaceBlackout, useDeleteBookingSpaceTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentGuest, useDeleteChannelContentGuestTranslation, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventAttendee, useDeleteEventCoupon, useDeleteEventEmailTranslation, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventPass, useDeleteEventPassType, useDeleteEventPassTypePriceSchedule, useDeleteEventPassTypeRefundSchedule, useDeleteEventPassTypeTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionSearchValue, useDeleteEventQuestionSearchValues, useDeleteEventQuestionTranslation, useDeleteEventRegistrationBypass, 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, useGetAccountLead, useGetAccountLeads, useGetAccountLevels, useGetAccountLikes, useGetAccountLogin, useGetAccountLogins, useGetAccountPayments, useGetAccountReshares, useGetAccountSubscriptions, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityInterests, useGetActivityLikes, useGetActivityReshares, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAllEventAddOns, useGetAllEventPassTypes, useGetAnnouncement, useGetAnnouncementAudience, useGetAnnouncementEmailReceipts, useGetAnnouncementTranslation, useGetAnnouncementTranslations, useGetAnnouncements, useGetAuthSession, useGetAuthSessions, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetBooking, useGetBookingPlace, useGetBookingPlaceBookings, useGetBookingPlaceTranslation, useGetBookingPlaceTranslations, useGetBookingPlaces, useGetBookingSpace, useGetBookingSpaceAvailabilities, useGetBookingSpaceAvailability, useGetBookingSpaceBlackout, useGetBookingSpaceBlackouts, useGetBookingSpaceBookings, useGetBookingSpaceSlots, useGetBookingSpaceTranslations, useGetBookingSpaces, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuestTranslation, useGetChannelContentGuestTranslations, useGetChannelContentGuests, useGetChannelContentLikes, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetContents, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccessUsers, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPassTypes, useGetEventAddOnPasses, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventAttendee, useGetEventAttendeeCoupons, useGetEventAttendeePasses, useGetEventAttendeePayments, 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, useGetEventSpaceTranslation, 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, 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 };