@connectedxm/admin 0.0.13 → 0.0.15

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
@@ -173,6 +173,7 @@ interface BaseAccount {
173
173
  featured: boolean;
174
174
  timezone: string | null;
175
175
  internalRefId: string | null;
176
+ accountTiers: BaseTier[];
176
177
  createdAt: string;
177
178
  }
178
179
  interface Account extends BaseAccount {
@@ -196,7 +197,6 @@ interface Account extends BaseAccount {
196
197
  state: string | null;
197
198
  country: string | null;
198
199
  zip: string | null;
199
- accountTiers: BaseTier[];
200
200
  updatedAt: string;
201
201
  }
202
202
  interface APILog {
@@ -1071,7 +1071,7 @@ interface Notification extends BaseNotification {
1071
1071
  }
1072
1072
  type PermissionDomain = keyof Omit<OrganizationMembership, "organizationId" | "userId" | "user" | "createdAt" | "updatedAt">;
1073
1073
  type PermissionType = "read" | "create" | "update" | "del";
1074
- interface Permissions {
1074
+ interface ModulePermissions {
1075
1075
  read: boolean;
1076
1076
  create: boolean;
1077
1077
  update: boolean;
@@ -1079,32 +1079,32 @@ interface Permissions {
1079
1079
  }
1080
1080
  interface OrganizationMembership {
1081
1081
  organizationId: string;
1082
- org: BaseOrganization;
1082
+ org: ModulePermissions;
1083
1083
  userId: string;
1084
1084
  user: BaseUser;
1085
- users: Permissions;
1086
- accounts: Permissions;
1087
- activities: Permissions;
1088
- advertisements: Permissions;
1089
- announcements: Permissions;
1090
- channels: Permissions;
1091
- groups: Permissions;
1092
- contentTypes: Permissions;
1093
- contents: Permissions;
1094
- coupons: Permissions;
1095
- events: Permissions;
1096
- registrations: Permissions;
1097
- storage: Permissions;
1098
- interests: Permissions;
1099
- levels: Permissions;
1100
- purchases: Permissions;
1101
- sponsorships: Permissions;
1102
- supportTickets: Permissions;
1103
- benefits: Permissions;
1104
- streams: Permissions;
1105
- reports: Permissions;
1106
- subscriptions: Permissions;
1107
- invoices: Permissions;
1085
+ users: ModulePermissions;
1086
+ accounts: ModulePermissions;
1087
+ activities: ModulePermissions;
1088
+ advertisements: ModulePermissions;
1089
+ announcements: ModulePermissions;
1090
+ channels: ModulePermissions;
1091
+ groups: ModulePermissions;
1092
+ contentTypes: ModulePermissions;
1093
+ contents: ModulePermissions;
1094
+ coupons: ModulePermissions;
1095
+ events: ModulePermissions;
1096
+ registrations: ModulePermissions;
1097
+ storage: ModulePermissions;
1098
+ interests: ModulePermissions;
1099
+ levels: ModulePermissions;
1100
+ purchases: ModulePermissions;
1101
+ sponsorships: ModulePermissions;
1102
+ supportTickets: ModulePermissions;
1103
+ benefits: ModulePermissions;
1104
+ streams: ModulePermissions;
1105
+ reports: ModulePermissions;
1106
+ subscriptions: ModulePermissions;
1107
+ invoices: ModulePermissions;
1108
1108
  createdAt: string;
1109
1109
  updatedAt: string;
1110
1110
  }
@@ -1194,8 +1194,8 @@ interface BasePurchase {
1194
1194
  }
1195
1195
  interface Purchase extends BasePurchase {
1196
1196
  addOns: BaseEventAddOn[];
1197
- registrationId: string | null;
1198
- registration: BaseRegistration | null;
1197
+ registrationId: string;
1198
+ registration: BaseRegistration;
1199
1199
  }
1200
1200
  interface PushDevice {
1201
1201
  id: string;
@@ -2003,6 +2003,10 @@ interface BaseFile {
2003
2003
  }
2004
2004
  interface File extends BaseFile {
2005
2005
  }
2006
+ interface PaypalActivationFormParams {
2007
+ clientId: string;
2008
+ clientSecret: string;
2009
+ }
2006
2010
 
2007
2011
  interface ConnectedXMClientContextState {
2008
2012
  queryClient: QueryClient;
@@ -2439,6 +2443,7 @@ interface EventCreateInputs {
2439
2443
  eventType: keyof typeof EventType;
2440
2444
  name: string;
2441
2445
  shortDescription: string;
2446
+ timezone: string;
2442
2447
  eventStart: string;
2443
2448
  eventEnd: string;
2444
2449
  featured?: boolean | null;
@@ -2446,7 +2451,6 @@ interface EventCreateInputs {
2446
2451
  slug?: string | null;
2447
2452
  internalRefId?: string | null;
2448
2453
  longDescription?: string | null;
2449
- timezone?: string;
2450
2454
  externalUrl?: string | null;
2451
2455
  imageId?: string | null;
2452
2456
  venueMapId?: string | null;
@@ -2758,6 +2762,32 @@ interface GroupMembershipUpdateInputs {
2758
2762
  eventPushNotification?: boolean | null;
2759
2763
  chatPushNotification?: boolean | null;
2760
2764
  }
2765
+ interface OrganizationMembershipUpdateInputs {
2766
+ org: ModulePermissions;
2767
+ users: ModulePermissions;
2768
+ accounts: ModulePermissions;
2769
+ activities: ModulePermissions;
2770
+ advertisements: ModulePermissions;
2771
+ announcements: ModulePermissions;
2772
+ channels: ModulePermissions;
2773
+ groups: ModulePermissions;
2774
+ contentTypes: ModulePermissions;
2775
+ contents: ModulePermissions;
2776
+ coupons: ModulePermissions;
2777
+ events: ModulePermissions;
2778
+ registrations: ModulePermissions;
2779
+ storage: ModulePermissions;
2780
+ interests: ModulePermissions;
2781
+ levels: ModulePermissions;
2782
+ purchases: ModulePermissions;
2783
+ sponsorships: ModulePermissions;
2784
+ supportTickets: ModulePermissions;
2785
+ benefits: ModulePermissions;
2786
+ streams: ModulePermissions;
2787
+ reports: ModulePermissions;
2788
+ subscriptions: ModulePermissions;
2789
+ invoices: ModulePermissions;
2790
+ }
2761
2791
  interface GroupTranslationUpdateInputs {
2762
2792
  name?: string | null;
2763
2793
  description?: string | null;
@@ -3702,49 +3732,49 @@ declare const useGetAccountReshares: (accountId?: string, params?: Omit<Infinite
3702
3732
  * @category Keys
3703
3733
  * @group Accounts
3704
3734
  */
3705
- declare const ACCOUNT_TIERS_QUERY_KEY: (accountId: string) => string[];
3735
+ declare const ACCOUNTS_QUERY_KEY: (accountType?: "account" | "team") => string[];
3706
3736
  /**
3707
3737
  * @category Setters
3708
3738
  * @group Accounts
3709
3739
  */
3710
- declare const SET_ACCOUNT_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountTiers>>) => void;
3711
- interface GetAccountTiersProps extends InfiniteQueryParams {
3712
- accountId: string;
3740
+ declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccounts>>) => void;
3741
+ interface GetAccountsProps extends InfiniteQueryParams {
3742
+ accountType?: "account" | "team";
3713
3743
  }
3714
3744
  /**
3715
3745
  * @category Queries
3716
3746
  * @group Accounts
3717
3747
  */
3718
- declare const GetAccountTiers: ({ accountId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetAccountTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
3748
+ declare const GetAccounts: ({ pageParam, pageSize, orderBy, accountType, search, adminApiParams, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
3719
3749
  /**
3720
3750
  * @category Hooks
3721
3751
  * @group Accounts
3722
3752
  */
3723
- declare const useGetAccountTiers: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3753
+ declare const useGetAccounts: (accountType?: "account" | "team", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3724
3754
 
3725
3755
  /**
3726
3756
  * @category Keys
3727
3757
  * @group Accounts
3728
3758
  */
3729
- declare const ACCOUNTS_QUERY_KEY: (accountType?: "account" | "team") => string[];
3759
+ declare const ACCOUNT_TIERS_QUERY_KEY: (accountId: string) => string[];
3730
3760
  /**
3731
3761
  * @category Setters
3732
3762
  * @group Accounts
3733
3763
  */
3734
- declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccounts>>) => void;
3735
- interface GetAccountsProps extends InfiniteQueryParams {
3736
- accountType?: "account" | "team";
3764
+ declare const SET_ACCOUNT_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountTiers>>) => void;
3765
+ interface GetAccountTiersProps extends InfiniteQueryParams {
3766
+ accountId: string;
3737
3767
  }
3738
3768
  /**
3739
3769
  * @category Queries
3740
3770
  * @group Accounts
3741
3771
  */
3742
- declare const GetAccounts: ({ pageParam, pageSize, orderBy, accountType, search, adminApiParams, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
3772
+ declare const GetAccountTiers: ({ accountId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetAccountTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
3743
3773
  /**
3744
3774
  * @category Hooks
3745
3775
  * @group Accounts
3746
3776
  */
3747
- declare const useGetAccounts: (accountType?: "account" | "team", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3777
+ declare const useGetAccountTiers: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3748
3778
 
3749
3779
  /**
3750
3780
  * @category Keys
@@ -3941,48 +3971,48 @@ declare const useGetAdvertisementClicks: (advertisementId?: string, params?: Omi
3941
3971
  * @category Keys
3942
3972
  * @group Advertisements
3943
3973
  */
3944
- declare const ADVERTISEMENT_VIEWS_QUERY_KEY: (advertisementId: string) => string[];
3974
+ declare const ADVERTISEMENTS_QUERY_KEY: () => string[];
3945
3975
  /**
3946
3976
  * @category Setters
3947
3977
  * @group Advertisements
3948
3978
  */
3949
- declare const SET_ADVERTISEMENT_VIEWS_QUERY_DATA: (client: any, keyParams: Parameters<typeof ADVERTISEMENT_VIEWS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAdvertisementViews>>) => void;
3950
- interface GetAdvertisementViewsProps extends InfiniteQueryParams {
3951
- advertisementId: string;
3979
+ declare const SET_ADVERTISEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ADVERTISEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAdvertisements>>) => void;
3980
+ interface GetAdvertisementsProps extends InfiniteQueryParams {
3952
3981
  }
3953
3982
  /**
3954
3983
  * @category Queries
3955
3984
  * @group Advertisements
3956
3985
  */
3957
- declare const GetAdvertisementViews: ({ advertisementId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetAdvertisementViewsProps) => Promise<ConnectedXMResponse<AdvertisementView[]>>;
3986
+ declare const GetAdvertisements: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetAdvertisementsProps) => Promise<ConnectedXMResponse<Advertisement[]>>;
3958
3987
  /**
3959
3988
  * @category Hooks
3960
3989
  * @group Advertisements
3961
3990
  */
3962
- declare const useGetAdvertisementViews: (advertisementId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAdvertisementViews>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<AdvertisementView[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3991
+ declare const useGetAdvertisements: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAdvertisements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Advertisement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3963
3992
 
3964
3993
  /**
3965
3994
  * @category Keys
3966
3995
  * @group Advertisements
3967
3996
  */
3968
- declare const ADVERTISEMENTS_QUERY_KEY: () => string[];
3997
+ declare const ADVERTISEMENT_VIEWS_QUERY_KEY: (advertisementId: string) => string[];
3969
3998
  /**
3970
3999
  * @category Setters
3971
4000
  * @group Advertisements
3972
4001
  */
3973
- declare const SET_ADVERTISEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ADVERTISEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAdvertisements>>) => void;
3974
- interface GetAdvertisementsProps extends InfiniteQueryParams {
4002
+ declare const SET_ADVERTISEMENT_VIEWS_QUERY_DATA: (client: any, keyParams: Parameters<typeof ADVERTISEMENT_VIEWS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAdvertisementViews>>) => void;
4003
+ interface GetAdvertisementViewsProps extends InfiniteQueryParams {
4004
+ advertisementId: string;
3975
4005
  }
3976
4006
  /**
3977
4007
  * @category Queries
3978
4008
  * @group Advertisements
3979
4009
  */
3980
- declare const GetAdvertisements: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetAdvertisementsProps) => Promise<ConnectedXMResponse<Advertisement[]>>;
4010
+ declare const GetAdvertisementViews: ({ advertisementId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetAdvertisementViewsProps) => Promise<ConnectedXMResponse<AdvertisementView[]>>;
3981
4011
  /**
3982
4012
  * @category Hooks
3983
4013
  * @group Advertisements
3984
4014
  */
3985
- declare const useGetAdvertisements: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAdvertisements>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Advertisement[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4015
+ declare const useGetAdvertisementViews: (advertisementId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAdvertisementViews>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<AdvertisementView[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
3986
4016
 
3987
4017
  /**
3988
4018
  * @category Keys
@@ -4507,6 +4537,29 @@ declare const GetChannelContents: ({ pageParam, pageSize, orderBy, search, chann
4507
4537
  */
4508
4538
  declare const useGetChannelContents: (channelId?: string, status?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelContents>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ChannelContent[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4509
4539
 
4540
+ /**
4541
+ * @category Keys
4542
+ * @group Channels
4543
+ */
4544
+ declare const CHANNELS_QUERY_KEY: () => string[];
4545
+ /**
4546
+ * @category Setters
4547
+ * @group Channels
4548
+ */
4549
+ declare const SET_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannels>>) => void;
4550
+ interface GetChannelsProps extends InfiniteQueryParams {
4551
+ }
4552
+ /**
4553
+ * @category Queries
4554
+ * @group Channels
4555
+ */
4556
+ declare const GetChannels: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelsProps) => Promise<ConnectedXMResponse<Channel[]>>;
4557
+ /**
4558
+ * @category Hooks
4559
+ * @group Channels
4560
+ */
4561
+ declare const useGetChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4562
+
4510
4563
  /**
4511
4564
  * @category Keys
4512
4565
  * @group Channels
@@ -4557,29 +4610,6 @@ declare const GetChannelSubscribers: ({ pageParam, pageSize, orderBy, search, ch
4557
4610
  */
4558
4611
  declare const useGetChannelSubscribers: (channelId?: string, status?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannelSubscribers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<BaseChannelSubscriber[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4559
4612
 
4560
- /**
4561
- * @category Keys
4562
- * @group Channels
4563
- */
4564
- declare const CHANNELS_QUERY_KEY: () => string[];
4565
- /**
4566
- * @category Setters
4567
- * @group Channels
4568
- */
4569
- declare const SET_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannels>>) => void;
4570
- interface GetChannelsProps extends InfiniteQueryParams {
4571
- }
4572
- /**
4573
- * @category Queries
4574
- * @group Channels
4575
- */
4576
- declare const GetChannels: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelsProps) => Promise<ConnectedXMResponse<Channel[]>>;
4577
- /**
4578
- * @category Hooks
4579
- * @group Channels
4580
- */
4581
- declare const useGetChannels: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetChannels>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Channel[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4582
-
4583
4613
  /**
4584
4614
  * @category Key
4585
4615
  * @group Emails
@@ -4858,38 +4888,37 @@ declare const useGetEventAddOnPurchases: (eventId?: string, addOnId?: string, pa
4858
4888
  * @category Keys
4859
4889
  * @group Events
4860
4890
  */
4861
- declare const EVENT_ADD_ON_TICKETS_QUERY_KEY: (eventId: string, addOnId: string) => string[];
4891
+ declare const EVENT_ADD_ONS_QUERY_KEY: (eventId: string) => string[];
4862
4892
  /**
4863
4893
  * @category Setters
4864
4894
  * @group Events
4865
4895
  */
4866
- declare const SET_EVENT_ADD_ON_TICKETS_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnTickets>>) => void;
4867
- interface GetEventAddOnTicketsProps extends InfiniteQueryParams {
4896
+ declare const SET_EVENT_ADD_ONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAddOns>>) => void;
4897
+ interface GetEventAddOnsProps extends InfiniteQueryParams {
4868
4898
  eventId: string;
4869
- addOnId: string;
4870
4899
  }
4871
4900
  /**
4872
4901
  * @category Queries
4873
4902
  * @group Events
4874
4903
  */
4875
- declare const GetEventAddOnTickets: ({ eventId, addOnId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventAddOnTicketsProps) => Promise<ConnectedXMResponse<EventTicket[]>>;
4904
+ declare const GetEventAddOns: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
4876
4905
  /**
4877
4906
  * @category Hooks
4878
4907
  * @group Events
4879
4908
  */
4880
- declare const useGetEventAddOnTickets: (eventId?: string, addOnId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAddOnTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4909
+ declare const useGetEventAddOns: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAddOns>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventAddOn[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4881
4910
 
4882
4911
  /**
4883
4912
  * @category Keys
4884
4913
  * @group Events
4885
4914
  */
4886
- declare const EVENT_ADD_ON_TIERS_QUERY_KEY: (eventId: string, addOnId: string) => string[];
4915
+ declare const EVENT_ADD_ON_TICKETS_QUERY_KEY: (eventId: string, addOnId: string) => string[];
4887
4916
  /**
4888
4917
  * @category Setters
4889
4918
  * @group Events
4890
4919
  */
4891
- declare const SET_EVENT_ADD_ON_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnTiers>>) => void;
4892
- interface GetEventAddOnTiersProps extends InfiniteQueryParams {
4920
+ declare const SET_EVENT_ADD_ON_TICKETS_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnTickets>>) => void;
4921
+ interface GetEventAddOnTicketsProps extends InfiniteQueryParams {
4893
4922
  eventId: string;
4894
4923
  addOnId: string;
4895
4924
  }
@@ -4897,36 +4926,37 @@ interface GetEventAddOnTiersProps extends InfiniteQueryParams {
4897
4926
  * @category Queries
4898
4927
  * @group Events
4899
4928
  */
4900
- declare const GetEventAddOnTiers: ({ eventId, addOnId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventAddOnTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
4929
+ declare const GetEventAddOnTickets: ({ eventId, addOnId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventAddOnTicketsProps) => Promise<ConnectedXMResponse<EventTicket[]>>;
4901
4930
  /**
4902
4931
  * @category Hooks
4903
4932
  * @group Events
4904
4933
  */
4905
- declare const useGetEventAddOnTiers: (eventId?: string, addOnId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAddOnTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4934
+ declare const useGetEventAddOnTickets: (eventId?: string, addOnId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAddOnTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4906
4935
 
4907
4936
  /**
4908
4937
  * @category Keys
4909
4938
  * @group Events
4910
4939
  */
4911
- declare const EVENT_ADD_ONS_QUERY_KEY: (eventId: string) => string[];
4940
+ declare const EVENT_ADD_ON_TIERS_QUERY_KEY: (eventId: string, addOnId: string) => string[];
4912
4941
  /**
4913
4942
  * @category Setters
4914
4943
  * @group Events
4915
4944
  */
4916
- declare const SET_EVENT_ADD_ONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAddOns>>) => void;
4917
- interface GetEventAddOnsProps extends InfiniteQueryParams {
4945
+ declare const SET_EVENT_ADD_ON_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnTiers>>) => void;
4946
+ interface GetEventAddOnTiersProps extends InfiniteQueryParams {
4918
4947
  eventId: string;
4948
+ addOnId: string;
4919
4949
  }
4920
4950
  /**
4921
4951
  * @category Queries
4922
4952
  * @group Events
4923
4953
  */
4924
- declare const GetEventAddOns: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventAddOnsProps) => Promise<ConnectedXMResponse<EventAddOn[]>>;
4954
+ declare const GetEventAddOnTiers: ({ eventId, addOnId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventAddOnTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
4925
4955
  /**
4926
4956
  * @category Hooks
4927
4957
  * @group Events
4928
4958
  */
4929
- declare const useGetEventAddOns: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAddOns>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventAddOn[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4959
+ declare const useGetEventAddOnTiers: (eventId?: string, addOnId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventAddOnTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
4930
4960
 
4931
4961
  /**
4932
4962
  * @category Keys
@@ -5656,52 +5686,52 @@ declare const useGetEventQuestionChoice: (eventId: string, questionId: string, c
5656
5686
  * @category Keys
5657
5687
  * @group Events
5658
5688
  */
5659
- declare const EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_KEY: (eventId: string, questionId: string, choiceId: string) => string[];
5689
+ declare const EVENT_QUESTION_CHOICES_QUERY_KEY: (eventId: string, questionId: string) => string[];
5660
5690
  /**
5661
5691
  * @category Setters
5662
5692
  * @group Events
5663
5693
  */
5664
- declare const SET_EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, questionId: string, choiceId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoiceSubQuestions>>) => void;
5665
- interface GetEventQuestionChoiceSubQuestionsProps extends InfiniteQueryParams {
5694
+ declare const SET_EVENT_QUESTION_CHOICES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoices>>) => void;
5695
+ interface GetEventQuestionChoicesProps extends InfiniteQueryParams {
5666
5696
  eventId: string;
5667
5697
  questionId: string;
5668
- choiceId: string;
5669
5698
  }
5670
5699
  /**
5671
5700
  * @category Queries
5672
5701
  * @group Events
5673
5702
  */
5674
- declare const GetEventQuestionChoiceSubQuestions: ({ eventId, questionId, choiceId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventQuestionChoiceSubQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestionChoiceSubQuestion[]>>;
5703
+ declare const GetEventQuestionChoices: ({ eventId, questionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventQuestionChoicesProps) => Promise<ConnectedXMResponse<RegistrationQuestionChoice[]>>;
5675
5704
  /**
5676
5705
  * @category Hooks
5677
5706
  * @group Events
5678
5707
  */
5679
- declare const useGetEventQuestionChoiceSubQuestions: (eventId?: string, questionId?: string, choiceId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionChoiceSubQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestionChoiceSubQuestion[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5708
+ declare const useGetEventQuestionChoices: (eventId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionChoices>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<RegistrationQuestionChoice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5680
5709
 
5681
5710
  /**
5682
5711
  * @category Keys
5683
5712
  * @group Events
5684
5713
  */
5685
- declare const EVENT_QUESTION_CHOICES_QUERY_KEY: (eventId: string, questionId: string) => string[];
5714
+ declare const EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_KEY: (eventId: string, questionId: string, choiceId: string) => string[];
5686
5715
  /**
5687
5716
  * @category Setters
5688
5717
  * @group Events
5689
5718
  */
5690
- declare const SET_EVENT_QUESTION_CHOICES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoices>>) => void;
5691
- interface GetEventQuestionChoicesProps extends InfiniteQueryParams {
5719
+ declare const SET_EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, questionId: string, choiceId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoiceSubQuestions>>) => void;
5720
+ interface GetEventQuestionChoiceSubQuestionsProps extends InfiniteQueryParams {
5692
5721
  eventId: string;
5693
5722
  questionId: string;
5723
+ choiceId: string;
5694
5724
  }
5695
5725
  /**
5696
5726
  * @category Queries
5697
5727
  * @group Events
5698
5728
  */
5699
- declare const GetEventQuestionChoices: ({ eventId, questionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventQuestionChoicesProps) => Promise<ConnectedXMResponse<RegistrationQuestionChoice[]>>;
5729
+ declare const GetEventQuestionChoiceSubQuestions: ({ eventId, questionId, choiceId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventQuestionChoiceSubQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestionChoiceSubQuestion[]>>;
5700
5730
  /**
5701
5731
  * @category Hooks
5702
5732
  * @group Events
5703
5733
  */
5704
- declare const useGetEventQuestionChoices: (eventId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionChoices>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<RegistrationQuestionChoice[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5734
+ declare const useGetEventQuestionChoiceSubQuestions: (eventId?: string, questionId?: string, choiceId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionChoiceSubQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestionChoiceSubQuestion[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5705
5735
 
5706
5736
  /**
5707
5737
  * @category Keys
@@ -5728,6 +5758,30 @@ declare const GetEventQuestionResponses: ({ eventId, questionId, pageParam, page
5728
5758
  */
5729
5759
  declare const useGetEventQuestionResponses: (eventId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionResponses>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationQuestionResponse[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5730
5760
 
5761
+ /**
5762
+ * @category Keys
5763
+ * @group Events
5764
+ */
5765
+ declare const EVENT_QUESTIONS_QUERY_KEY: (eventId: string) => string[];
5766
+ /**
5767
+ * @category Setters
5768
+ * @group Events
5769
+ */
5770
+ declare const SET_EVENT_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestions>>) => void;
5771
+ interface GetEventQuestionsProps extends InfiniteQueryParams {
5772
+ eventId: string;
5773
+ }
5774
+ /**
5775
+ * @category Queries
5776
+ * @group Events
5777
+ */
5778
+ declare const GetEventQuestions: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestion[]>>;
5779
+ /**
5780
+ * @category Hooks
5781
+ * @group Events
5782
+ */
5783
+ declare const useGetEventQuestions: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<RegistrationQuestion[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5784
+
5731
5785
  /**
5732
5786
  * @category Keys
5733
5787
  * @group Events
@@ -5861,30 +5915,6 @@ declare const GetEventQuestionSummaries: ({ eventId, pageParam, pageSize, adminA
5861
5915
  */
5862
5916
  declare const useGetEventQuestionSummaries: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestionSummaries>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SummaryData[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5863
5917
 
5864
- /**
5865
- * @category Keys
5866
- * @group Events
5867
- */
5868
- declare const EVENT_QUESTIONS_QUERY_KEY: (eventId: string) => string[];
5869
- /**
5870
- * @category Setters
5871
- * @group Events
5872
- */
5873
- declare const SET_EVENT_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestions>>) => void;
5874
- interface GetEventQuestionsProps extends InfiniteQueryParams {
5875
- eventId: string;
5876
- }
5877
- /**
5878
- * @category Queries
5879
- * @group Events
5880
- */
5881
- declare const GetEventQuestions: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestion[]>>;
5882
- /**
5883
- * @category Hooks
5884
- * @group Events
5885
- */
5886
- declare const useGetEventQuestions: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<RegistrationQuestion[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5887
-
5888
5918
  /**
5889
5919
  * @category Keys
5890
5920
  * @group Events
@@ -6048,39 +6078,39 @@ declare const useGetEventRegistrationPurchaseResponses: (eventId?: string, regis
6048
6078
  * @category Keys
6049
6079
  * @group Events
6050
6080
  */
6051
- declare const EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => string[];
6081
+ declare const EVENT_REGISTRATION_PURCHASES_QUERY_KEY: (eventId: string, registrationId: string, paid?: boolean) => string[];
6052
6082
  /**
6053
6083
  * @category Setters
6054
6084
  * @group Events
6055
6085
  */
6056
- declare const SET_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetEventRegistrationPurchaseSections>>) => void;
6057
- interface GetEventRegistrationPurchaseSectionsProps extends InfiniteQueryParams {
6086
+ declare const SET_EVENT_REGISTRATION_PURCHASES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, paid?: boolean | undefined], response: Awaited<ReturnType<typeof GetEventRegistrationPurchases>>) => void;
6087
+ interface GetEventRegistrationPurchasesProps extends InfiniteQueryParams {
6058
6088
  eventId: string;
6059
6089
  registrationId: string;
6060
- purchaseId: string;
6090
+ paid?: boolean;
6061
6091
  }
6062
6092
  /**
6063
6093
  * @category Queries
6064
6094
  * @group Events
6065
6095
  */
6066
- declare const GetEventRegistrationPurchaseSections: ({ eventId, registrationId, purchaseId, adminApiParams, }: GetEventRegistrationPurchaseSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
6096
+ declare const GetEventRegistrationPurchases: ({ eventId, registrationId, paid, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRegistrationPurchasesProps) => Promise<ConnectedXMResponse<Purchase[]>>;
6067
6097
  /**
6068
6098
  * @category Hooks
6069
6099
  * @group Events
6070
6100
  */
6071
- declare const useGetEventRegistrationPurchaseSections: (eventId?: string, registrationId?: string, purchaseId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrationPurchaseSections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<RegistrationSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6101
+ declare const useGetEventRegistrationPurchases: (eventId?: string, registrationId?: string, paid?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrationPurchases>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Purchase[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6072
6102
 
6073
6103
  /**
6074
6104
  * @category Keys
6075
6105
  * @group Events
6076
6106
  */
6077
- declare const EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => string[];
6107
+ declare const EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => string[];
6078
6108
  /**
6079
6109
  * @category Setters
6080
6110
  * @group Events
6081
6111
  */
6082
- declare const SET_EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetEventRegistrationTransferLogs>>) => void;
6083
- interface GetEventRegistrationTransferLogsProps extends InfiniteQueryParams {
6112
+ declare const SET_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetEventRegistrationPurchaseSections>>) => void;
6113
+ interface GetEventRegistrationPurchaseSectionsProps extends InfiniteQueryParams {
6084
6114
  eventId: string;
6085
6115
  registrationId: string;
6086
6116
  purchaseId: string;
@@ -6089,65 +6119,65 @@ interface GetEventRegistrationTransferLogsProps extends InfiniteQueryParams {
6089
6119
  * @category Queries
6090
6120
  * @group Events
6091
6121
  */
6092
- declare const GetEventRegistrationTransferLogs: ({ eventId, registrationId, purchaseId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRegistrationTransferLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
6122
+ declare const GetEventRegistrationPurchaseSections: ({ eventId, registrationId, purchaseId, adminApiParams, }: GetEventRegistrationPurchaseSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
6093
6123
  /**
6094
6124
  * @category Hooks
6095
6125
  * @group Events
6096
6126
  */
6097
- declare const useGetEventRegistrationTransferLogs: (eventId?: string, registrationId?: string, purchaseId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrationTransferLogs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<TransferLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6127
+ declare const useGetEventRegistrationPurchaseSections: (eventId?: string, registrationId?: string, purchaseId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrationPurchaseSections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<RegistrationSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6098
6128
 
6099
6129
  /**
6100
6130
  * @category Keys
6101
6131
  * @group Events
6102
6132
  */
6103
- declare const EVENT_REGISTRATION_PURCHASES_QUERY_KEY: (eventId: string, registrationId: string, paid?: boolean) => string[];
6133
+ declare const EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string, questionId: string) => string[];
6104
6134
  /**
6105
6135
  * @category Setters
6106
6136
  * @group Events
6107
6137
  */
6108
- declare const SET_EVENT_REGISTRATION_PURCHASES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, paid?: boolean | undefined], response: Awaited<ReturnType<typeof GetEventRegistrationPurchases>>) => void;
6109
- interface GetEventRegistrationPurchasesProps extends InfiniteQueryParams {
6138
+ declare const SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventRegistrationPurchaseResponseChanges>>) => void;
6139
+ interface GetEventRegistrationPurchaseResponseChangesProps extends InfiniteQueryParams {
6110
6140
  eventId: string;
6111
6141
  registrationId: string;
6112
- paid?: boolean;
6142
+ purchaseId: string;
6143
+ questionId: string;
6113
6144
  }
6114
6145
  /**
6115
6146
  * @category Queries
6116
6147
  * @group Events
6117
6148
  */
6118
- declare const GetEventRegistrationPurchases: ({ eventId, registrationId, paid, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRegistrationPurchasesProps) => Promise<ConnectedXMResponse<Purchase[]>>;
6149
+ declare const GetEventRegistrationPurchaseResponseChanges: ({ eventId, registrationId, purchaseId, questionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRegistrationPurchaseResponseChangesProps) => Promise<ConnectedXMResponse<RegistrationQuestionResponseChange[]>>;
6119
6150
  /**
6120
6151
  * @category Hooks
6121
6152
  * @group Events
6122
6153
  */
6123
- declare const useGetEventRegistrationPurchases: (eventId?: string, registrationId?: string, paid?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrationPurchases>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Purchase[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6154
+ declare const useGetEventRegistrationPurchaseResponseChanges: (eventId?: string, registrationId?: string, purchaseId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrationPurchaseResponseChanges>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<RegistrationQuestionResponseChange[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6124
6155
 
6125
6156
  /**
6126
6157
  * @category Keys
6127
6158
  * @group Events
6128
6159
  */
6129
- declare const EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string, questionId: string) => string[];
6160
+ declare const EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => string[];
6130
6161
  /**
6131
6162
  * @category Setters
6132
6163
  * @group Events
6133
6164
  */
6134
- declare const SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventRegistrationPurchaseResponseChanges>>) => void;
6135
- interface GetEventRegistrationPurchaseResponseChangesProps extends InfiniteQueryParams {
6165
+ declare const SET_EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetEventRegistrationTransferLogs>>) => void;
6166
+ interface GetEventRegistrationTransferLogsProps extends InfiniteQueryParams {
6136
6167
  eventId: string;
6137
6168
  registrationId: string;
6138
6169
  purchaseId: string;
6139
- questionId: string;
6140
6170
  }
6141
6171
  /**
6142
6172
  * @category Queries
6143
6173
  * @group Events
6144
6174
  */
6145
- declare const GetEventRegistrationPurchaseResponseChanges: ({ eventId, registrationId, purchaseId, questionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRegistrationPurchaseResponseChangesProps) => Promise<ConnectedXMResponse<RegistrationQuestionResponseChange[]>>;
6175
+ declare const GetEventRegistrationTransferLogs: ({ eventId, registrationId, purchaseId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventRegistrationTransferLogsProps) => Promise<ConnectedXMResponse<TransferLog[]>>;
6146
6176
  /**
6147
6177
  * @category Hooks
6148
6178
  * @group Events
6149
6179
  */
6150
- declare const useGetEventRegistrationPurchaseResponseChanges: (eventId?: string, registrationId?: string, purchaseId?: string, questionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrationPurchaseResponseChanges>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<RegistrationQuestionResponseChange[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6180
+ declare const useGetEventRegistrationTransferLogs: (eventId?: string, registrationId?: string, purchaseId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventRegistrationTransferLogs>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<TransferLog[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6151
6181
 
6152
6182
  /**
6153
6183
  * @category Keys
@@ -6458,38 +6488,37 @@ declare const useGetReservationSection: (eventId?: string, reservationSectionId?
6458
6488
  * @category Keys
6459
6489
  * @group Events
6460
6490
  */
6461
- declare const EVENT_RESERVATION_SECTION_TICKETS_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
6491
+ declare const EVENT_RESERVATION_SECTIONS_QUERY_KEY: (eventId: string) => string[];
6462
6492
  /**
6463
6493
  * @category Setters
6464
6494
  * @group Events
6465
6495
  */
6466
- declare const SET_EVENT_RESERVATION_SECTION_TICKETS_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionTickets>>) => void;
6467
- interface GetReservationSectionTicketsProps extends InfiniteQueryParams {
6496
+ declare const SET_EVENT_RESERVATION_SECTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_RESERVATION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetReservationSections>>) => void;
6497
+ interface GetReservationSectionsProps extends InfiniteQueryParams {
6468
6498
  eventId: string;
6469
- reservationSectionId: string;
6470
6499
  }
6471
6500
  /**
6472
6501
  * @category Queries
6473
6502
  * @group Events
6474
6503
  */
6475
- declare const GetReservationSectionTickets: ({ eventId, reservationSectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionTicketsProps) => Promise<ConnectedXMResponse<EventTicket[]>>;
6504
+ declare const GetReservationSections: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionsProps) => Promise<ConnectedXMResponse<EventReservationSection[]>>;
6476
6505
  /**
6477
6506
  * @category Hooks
6478
6507
  * @group Events
6479
6508
  */
6480
- declare const useGetReservationSectionTickets: (eventId?: string, reservationSectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6509
+ declare const useGetReservationSections: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventReservationSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6481
6510
 
6482
6511
  /**
6483
6512
  * @category Keys
6484
6513
  * @group Events
6485
6514
  */
6486
- declare const EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
6515
+ declare const EVENT_RESERVATION_SECTION_TICKETS_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
6487
6516
  /**
6488
6517
  * @category Setters
6489
6518
  * @group Events
6490
6519
  */
6491
- declare const SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionTiers>>) => void;
6492
- interface GetReservationSectionTiersProps extends InfiniteQueryParams {
6520
+ declare const SET_EVENT_RESERVATION_SECTION_TICKETS_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionTickets>>) => void;
6521
+ interface GetReservationSectionTicketsProps extends InfiniteQueryParams {
6493
6522
  eventId: string;
6494
6523
  reservationSectionId: string;
6495
6524
  }
@@ -6497,36 +6526,37 @@ interface GetReservationSectionTiersProps extends InfiniteQueryParams {
6497
6526
  * @category Queries
6498
6527
  * @group Events
6499
6528
  */
6500
- declare const GetReservationSectionTiers: ({ eventId, reservationSectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
6529
+ declare const GetReservationSectionTickets: ({ eventId, reservationSectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionTicketsProps) => Promise<ConnectedXMResponse<EventTicket[]>>;
6501
6530
  /**
6502
6531
  * @category Hooks
6503
6532
  * @group Events
6504
6533
  */
6505
- declare const useGetReservationSectionTiers: (eventId?: string, reservationSectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6534
+ declare const useGetReservationSectionTickets: (eventId?: string, reservationSectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6506
6535
 
6507
6536
  /**
6508
6537
  * @category Keys
6509
6538
  * @group Events
6510
6539
  */
6511
- declare const EVENT_RESERVATION_SECTIONS_QUERY_KEY: (eventId: string) => string[];
6540
+ declare const EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
6512
6541
  /**
6513
6542
  * @category Setters
6514
6543
  * @group Events
6515
6544
  */
6516
- declare const SET_EVENT_RESERVATION_SECTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_RESERVATION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetReservationSections>>) => void;
6517
- interface GetReservationSectionsProps extends InfiniteQueryParams {
6545
+ declare const SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionTiers>>) => void;
6546
+ interface GetReservationSectionTiersProps extends InfiniteQueryParams {
6518
6547
  eventId: string;
6548
+ reservationSectionId: string;
6519
6549
  }
6520
6550
  /**
6521
6551
  * @category Queries
6522
6552
  * @group Events
6523
6553
  */
6524
- declare const GetReservationSections: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionsProps) => Promise<ConnectedXMResponse<EventReservationSection[]>>;
6554
+ declare const GetReservationSectionTiers: ({ eventId, reservationSectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetReservationSectionTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
6525
6555
  /**
6526
6556
  * @category Hooks
6527
6557
  * @group Events
6528
6558
  */
6529
- declare const useGetReservationSections: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventReservationSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6559
+ declare const useGetReservationSectionTiers: (eventId?: string, reservationSectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetReservationSectionTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6530
6560
 
6531
6561
  /**
6532
6562
  * @category Keys
@@ -6658,38 +6688,37 @@ declare const useGetEventSectionQuestions: (eventId?: string, sectionId?: string
6658
6688
  * @category Keys
6659
6689
  * @group Events
6660
6690
  */
6661
- declare const EVENT_SECTION_TICKETS_QUERY_KEY: (eventId: string, sectionId: string) => string[];
6691
+ declare const EVENT_SECTIONS_QUERY_KEY: (eventId: string) => string[];
6662
6692
  /**
6663
6693
  * @category Setters
6664
6694
  * @group Events
6665
6695
  */
6666
- declare const SET_EVENT_SECTION_TICKETS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionTickets>>) => void;
6667
- interface GetEventSectionTicketsProps extends InfiniteQueryParams {
6696
+ declare const SET_EVENT_SECTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSections>>) => void;
6697
+ interface GetEventSectionsProps extends InfiniteQueryParams {
6668
6698
  eventId: string;
6669
- sectionId: string;
6670
6699
  }
6671
6700
  /**
6672
6701
  * @category Queries
6673
6702
  * @group Events
6674
6703
  */
6675
- declare const GetEventSectionTickets: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSectionTicketsProps) => Promise<ConnectedXMResponse<EventTicket[]>>;
6704
+ declare const GetEventSections: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
6676
6705
  /**
6677
6706
  * @category Hooks
6678
6707
  * @group Events
6679
6708
  */
6680
- declare const useGetEventSectionTickets: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSectionTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6709
+ declare const useGetEventSections: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6681
6710
 
6682
6711
  /**
6683
6712
  * @category Keys
6684
6713
  * @group Events
6685
6714
  */
6686
- declare const EVENT_SECTION_TIERS_QUERY_KEY: (eventId: string, sectionId: string) => string[];
6715
+ declare const EVENT_SECTION_TICKETS_QUERY_KEY: (eventId: string, sectionId: string) => string[];
6687
6716
  /**
6688
6717
  * @category Setters
6689
6718
  * @group Events
6690
6719
  */
6691
- declare const SET_EVENT_SECTION_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionTiers>>) => void;
6692
- interface GetEventSectionTiersProps extends InfiniteQueryParams {
6720
+ declare const SET_EVENT_SECTION_TICKETS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionTickets>>) => void;
6721
+ interface GetEventSectionTicketsProps extends InfiniteQueryParams {
6693
6722
  eventId: string;
6694
6723
  sectionId: string;
6695
6724
  }
@@ -6697,36 +6726,37 @@ interface GetEventSectionTiersProps extends InfiniteQueryParams {
6697
6726
  * @category Queries
6698
6727
  * @group Events
6699
6728
  */
6700
- declare const GetEventSectionTiers: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSectionTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
6729
+ declare const GetEventSectionTickets: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSectionTicketsProps) => Promise<ConnectedXMResponse<EventTicket[]>>;
6701
6730
  /**
6702
6731
  * @category Hooks
6703
6732
  * @group Events
6704
6733
  */
6705
- declare const useGetEventSectionTiers: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSectionTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6734
+ declare const useGetEventSectionTickets: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSectionTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6706
6735
 
6707
6736
  /**
6708
6737
  * @category Keys
6709
6738
  * @group Events
6710
6739
  */
6711
- declare const EVENT_SECTIONS_QUERY_KEY: (eventId: string) => string[];
6740
+ declare const EVENT_SECTION_TIERS_QUERY_KEY: (eventId: string, sectionId: string) => string[];
6712
6741
  /**
6713
6742
  * @category Setters
6714
6743
  * @group Events
6715
6744
  */
6716
- declare const SET_EVENT_SECTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSections>>) => void;
6717
- interface GetEventSectionsProps extends InfiniteQueryParams {
6745
+ declare const SET_EVENT_SECTION_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionTiers>>) => void;
6746
+ interface GetEventSectionTiersProps extends InfiniteQueryParams {
6718
6747
  eventId: string;
6748
+ sectionId: string;
6719
6749
  }
6720
6750
  /**
6721
6751
  * @category Queries
6722
6752
  * @group Events
6723
6753
  */
6724
- declare const GetEventSections: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
6754
+ declare const GetEventSectionTiers: ({ eventId, sectionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSectionTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
6725
6755
  /**
6726
6756
  * @category Hooks
6727
6757
  * @group Events
6728
6758
  */
6729
- declare const useGetEventSections: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSections>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<RegistrationSection[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6759
+ declare const useGetEventSectionTiers: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSectionTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6730
6760
 
6731
6761
  /**
6732
6762
  * @category Keys
@@ -6833,38 +6863,37 @@ declare const useGetEventSessionAccounts: (eventId?: string, sessionId?: string,
6833
6863
  * @category Keys
6834
6864
  * @group Events
6835
6865
  */
6836
- declare const EVENT_SESSION_SPEAKERS_QUERY_KEY: (eventId: string, sessionId: string) => string[];
6866
+ declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string) => string[];
6837
6867
  /**
6838
6868
  * @category Setters
6839
6869
  * @group Events
6840
6870
  */
6841
- declare const SET_EVENT_SESSION_SPEAKERS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionSpeakers>>) => void;
6842
- interface GetEventSessionSpeakersProps extends InfiniteQueryParams {
6871
+ declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>) => void;
6872
+ interface GetEventSessionsProps extends InfiniteQueryParams {
6843
6873
  eventId: string;
6844
- sessionId: string;
6845
6874
  }
6846
6875
  /**
6847
6876
  * @category Queries
6848
6877
  * @group Events
6849
6878
  */
6850
- declare const GetEventSessionSpeakers: ({ eventId, sessionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSessionSpeakersProps) => Promise<ConnectedXMResponse<EventSpeaker[]>>;
6879
+ declare const GetEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSessionsProps) => Promise<ConnectedXMResponse<EventSession[]>>;
6851
6880
  /**
6852
6881
  * @category Hooks
6853
6882
  * @group Events
6854
6883
  */
6855
- declare const useGetEventSessionSpeakers: (eventId?: string, sessionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessionSpeakers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventSpeaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6884
+ declare const useGetEventSessions: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventSession[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6856
6885
 
6857
6886
  /**
6858
6887
  * @category Keys
6859
6888
  * @group Events
6860
6889
  */
6861
- declare const EVENT_SESSION_SPONSORS_QUERY_KEY: (eventId: string, sessionId: string) => string[];
6890
+ declare const EVENT_SESSION_SPEAKERS_QUERY_KEY: (eventId: string, sessionId: string) => string[];
6862
6891
  /**
6863
6892
  * @category Setters
6864
6893
  * @group Events
6865
6894
  */
6866
- declare const SET_EVENT_SESSION_SPONSORS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionSponsors>>) => void;
6867
- interface GetEventSessionSponsorsProps extends InfiniteQueryParams {
6895
+ declare const SET_EVENT_SESSION_SPEAKERS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionSpeakers>>) => void;
6896
+ interface GetEventSessionSpeakersProps extends InfiniteQueryParams {
6868
6897
  eventId: string;
6869
6898
  sessionId: string;
6870
6899
  }
@@ -6872,24 +6901,24 @@ interface GetEventSessionSponsorsProps extends InfiniteQueryParams {
6872
6901
  * @category Queries
6873
6902
  * @group Events
6874
6903
  */
6875
- declare const GetEventSessionSponsors: ({ eventId, sessionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSessionSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
6904
+ declare const GetEventSessionSpeakers: ({ eventId, sessionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSessionSpeakersProps) => Promise<ConnectedXMResponse<EventSpeaker[]>>;
6876
6905
  /**
6877
6906
  * @category Hooks
6878
6907
  * @group Events
6879
6908
  */
6880
- declare const useGetEventSessionSponsors: (eventId?: string, sessionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessionSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6909
+ declare const useGetEventSessionSpeakers: (eventId?: string, sessionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessionSpeakers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventSpeaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6881
6910
 
6882
6911
  /**
6883
6912
  * @category Keys
6884
6913
  * @group Events
6885
6914
  */
6886
- declare const EVENT_SESSION_TRACKS_QUERY_KEY: (eventId: string, sessionId: string) => string[];
6915
+ declare const EVENT_SESSION_SPONSORS_QUERY_KEY: (eventId: string, sessionId: string) => string[];
6887
6916
  /**
6888
6917
  * @category Setters
6889
6918
  * @group Events
6890
6919
  */
6891
- declare const SET_EVENT_SESSION_TRACKS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionTracks>>) => void;
6892
- interface GetEventSessionTracksProps extends InfiniteQueryParams {
6920
+ declare const SET_EVENT_SESSION_SPONSORS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionSponsors>>) => void;
6921
+ interface GetEventSessionSponsorsProps extends InfiniteQueryParams {
6893
6922
  eventId: string;
6894
6923
  sessionId: string;
6895
6924
  }
@@ -6897,36 +6926,37 @@ interface GetEventSessionTracksProps extends InfiniteQueryParams {
6897
6926
  * @category Queries
6898
6927
  * @group Events
6899
6928
  */
6900
- declare const GetEventSessionTracks: ({ eventId, sessionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSessionTracksProps) => Promise<ConnectedXMResponse<EventTrack[]>>;
6929
+ declare const GetEventSessionSponsors: ({ eventId, sessionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSessionSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
6901
6930
  /**
6902
6931
  * @category Hooks
6903
6932
  * @group Events
6904
6933
  */
6905
- declare const useGetEventSessionTracks: (eventId?: string, sessionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessionTracks>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTrack[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6934
+ declare const useGetEventSessionSponsors: (eventId?: string, sessionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessionSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6906
6935
 
6907
6936
  /**
6908
6937
  * @category Keys
6909
6938
  * @group Events
6910
6939
  */
6911
- declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string) => string[];
6940
+ declare const EVENT_SESSION_TRACKS_QUERY_KEY: (eventId: string, sessionId: string) => string[];
6912
6941
  /**
6913
6942
  * @category Setters
6914
6943
  * @group Events
6915
6944
  */
6916
- declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>) => void;
6917
- interface GetEventSessionsProps extends InfiniteQueryParams {
6945
+ declare const SET_EVENT_SESSION_TRACKS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionTracks>>) => void;
6946
+ interface GetEventSessionTracksProps extends InfiniteQueryParams {
6918
6947
  eventId: string;
6948
+ sessionId: string;
6919
6949
  }
6920
6950
  /**
6921
6951
  * @category Queries
6922
6952
  * @group Events
6923
6953
  */
6924
- declare const GetEventSessions: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSessionsProps) => Promise<ConnectedXMResponse<EventSession[]>>;
6954
+ declare const GetEventSessionTracks: ({ eventId, sessionId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSessionTracksProps) => Promise<ConnectedXMResponse<EventTrack[]>>;
6925
6955
  /**
6926
6956
  * @category Hooks
6927
6957
  * @group Events
6928
6958
  */
6929
- declare const useGetEventSessions: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventSession[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6959
+ declare const useGetEventSessionTracks: (eventId?: string, sessionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSessionTracks>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTrack[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
6930
6960
 
6931
6961
  /**
6932
6962
  * @category Keys
@@ -7008,50 +7038,50 @@ declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options
7008
7038
  * @category Keys
7009
7039
  * @group Events
7010
7040
  */
7011
- declare const EVENT_SPEAKER_SESSIONS_QUERY_KEY: (eventId: string, speakerId: string) => string[];
7041
+ declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => string[];
7012
7042
  /**
7013
7043
  * @category Setters
7014
7044
  * @group Events
7015
7045
  */
7016
- declare const SET_EVENT_SPEAKER_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, speakerId: string], response: Awaited<ReturnType<typeof GetEventSpeakerSessions>>) => void;
7017
- interface GetEventSpeakerSessionsProps extends InfiniteQueryParams {
7046
+ declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakers>>) => void;
7047
+ interface GetEventSpeakersProps extends InfiniteQueryParams {
7018
7048
  eventId: string;
7019
- speakerId: string;
7020
7049
  }
7021
7050
  /**
7022
7051
  * @category Queries
7023
7052
  * @group Events
7024
7053
  */
7025
- declare const GetEventSpeakerSessions: ({ eventId, speakerId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSpeakerSessionsProps) => Promise<ConnectedXMResponse<EventSession[]>>;
7054
+ declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSpeakersProps) => Promise<ConnectedXMResponse<EventSpeaker[]>>;
7026
7055
  /**
7027
7056
  * @category Hooks
7028
7057
  * @group Events
7029
7058
  */
7030
- declare const useGetEventSpeakerSessions: (eventId?: string, speakerId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakerSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventSession[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7059
+ declare const useGetEventSpeakers: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventSpeaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7031
7060
 
7032
7061
  /**
7033
7062
  * @category Keys
7034
7063
  * @group Events
7035
7064
  */
7036
- declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => string[];
7065
+ declare const EVENT_SPEAKER_SESSIONS_QUERY_KEY: (eventId: string, speakerId: string) => string[];
7037
7066
  /**
7038
7067
  * @category Setters
7039
7068
  * @group Events
7040
7069
  */
7041
- declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakers>>) => void;
7042
- interface GetEventSpeakersProps extends InfiniteQueryParams {
7070
+ declare const SET_EVENT_SPEAKER_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, speakerId: string], response: Awaited<ReturnType<typeof GetEventSpeakerSessions>>) => void;
7071
+ interface GetEventSpeakerSessionsProps extends InfiniteQueryParams {
7043
7072
  eventId: string;
7073
+ speakerId: string;
7044
7074
  }
7045
7075
  /**
7046
7076
  * @category Queries
7047
7077
  * @group Events
7048
7078
  */
7049
- declare const GetEventSpeakers: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSpeakersProps) => Promise<ConnectedXMResponse<EventSpeaker[]>>;
7079
+ declare const GetEventSpeakerSessions: ({ eventId, speakerId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventSpeakerSessionsProps) => Promise<ConnectedXMResponse<EventSession[]>>;
7050
7080
  /**
7051
7081
  * @category Hooks
7052
7082
  * @group Events
7053
7083
  */
7054
- declare const useGetEventSpeakers: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventSpeaker[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7084
+ declare const useGetEventSpeakerSessions: (eventId?: string, speakerId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventSpeakerSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventSession[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7055
7085
 
7056
7086
  /**
7057
7087
  * @category Keys
@@ -7256,50 +7286,50 @@ declare const useGetEventTicketPurchases: (eventId?: string, ticketId?: string,
7256
7286
  * @category Keys
7257
7287
  * @group Events
7258
7288
  */
7259
- declare const EVENT_TICKET_TIERS_QUERY_KEY: (eventId: string, ticketId: string) => string[];
7289
+ declare const EVENT_TICKETS_QUERY_KEY: (eventId: string) => string[];
7260
7290
  /**
7261
7291
  * @category Setters
7262
7292
  * @group Events
7263
7293
  */
7264
- declare const SET_EVENT_TICKET_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, ticketId: string], response: Awaited<ReturnType<typeof GetEventTicketTiers>>) => void;
7265
- interface GetEventTicketTiersProps extends InfiniteQueryParams {
7294
+ declare const SET_EVENT_TICKETS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTickets>>) => void;
7295
+ interface GetEventTicketsProps extends InfiniteQueryParams {
7266
7296
  eventId: string;
7267
- ticketId: string;
7268
7297
  }
7269
7298
  /**
7270
7299
  * @category Queries
7271
7300
  * @group Events
7272
7301
  */
7273
- declare const GetEventTicketTiers: ({ eventId, ticketId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTicketTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
7302
+ declare const GetEventTickets: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTicketsProps) => Promise<ConnectedXMResponse<EventTicket[]>>;
7274
7303
  /**
7275
7304
  * @category Hooks
7276
7305
  * @group Events
7277
7306
  */
7278
- declare const useGetEventTicketTiers: (eventId?: string, ticketId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTicketTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7307
+ declare const useGetEventTickets: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7279
7308
 
7280
7309
  /**
7281
7310
  * @category Keys
7282
7311
  * @group Events
7283
7312
  */
7284
- declare const EVENT_TICKETS_QUERY_KEY: (eventId: string) => string[];
7313
+ declare const EVENT_TICKET_TIERS_QUERY_KEY: (eventId: string, ticketId: string) => string[];
7285
7314
  /**
7286
7315
  * @category Setters
7287
7316
  * @group Events
7288
7317
  */
7289
- declare const SET_EVENT_TICKETS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTickets>>) => void;
7290
- interface GetEventTicketsProps extends InfiniteQueryParams {
7318
+ declare const SET_EVENT_TICKET_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, ticketId: string], response: Awaited<ReturnType<typeof GetEventTicketTiers>>) => void;
7319
+ interface GetEventTicketTiersProps extends InfiniteQueryParams {
7291
7320
  eventId: string;
7321
+ ticketId: string;
7292
7322
  }
7293
7323
  /**
7294
7324
  * @category Queries
7295
7325
  * @group Events
7296
7326
  */
7297
- declare const GetEventTickets: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTicketsProps) => Promise<ConnectedXMResponse<EventTicket[]>>;
7327
+ declare const GetEventTicketTiers: ({ eventId, ticketId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTicketTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
7298
7328
  /**
7299
7329
  * @category Hooks
7300
7330
  * @group Events
7301
7331
  */
7302
- declare const useGetEventTickets: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTickets>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventTicket[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7332
+ declare const useGetEventTicketTiers: (eventId?: string, ticketId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTicketTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7303
7333
 
7304
7334
  /**
7305
7335
  * @category Keys
@@ -7381,38 +7411,37 @@ declare const useGetEventTrack: (eventId?: string, trackId?: string, options?: S
7381
7411
  * @category Keys
7382
7412
  * @group Events
7383
7413
  */
7384
- declare const EVENT_TRACK_SESSIONS_QUERY_KEY: (eventId: string, trackId: string) => string[];
7414
+ declare const EVENT_TRACKS_QUERY_KEY: (eventId: string) => string[];
7385
7415
  /**
7386
7416
  * @category Setters
7387
7417
  * @group Events
7388
7418
  */
7389
- declare const SET_EVENT_TRACK_SESSIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrackSessions>>) => void;
7390
- interface GetEventTrackSessionsProps extends InfiniteQueryParams {
7419
+ declare const SET_EVENT_TRACKS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_TRACKS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTracks>>) => void;
7420
+ interface GetEventTracksProps extends InfiniteQueryParams {
7391
7421
  eventId: string;
7392
- trackId: string;
7393
7422
  }
7394
7423
  /**
7395
7424
  * @category Queries
7396
7425
  * @group Events
7397
7426
  */
7398
- declare const GetEventTrackSessions: ({ eventId, trackId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTrackSessionsProps) => Promise<ConnectedXMResponse<EventSession[]>>;
7427
+ declare const GetEventTracks: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTracksProps) => Promise<ConnectedXMResponse<EventTrack[]>>;
7399
7428
  /**
7400
7429
  * @category Hooks
7401
7430
  * @group Events
7402
7431
  */
7403
- declare const useGetEventTrackSessions: (eventId?: string, trackId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTrackSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventSession[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7432
+ declare const useGetEventTracks: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTracks>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventTrack[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7404
7433
 
7405
7434
  /**
7406
7435
  * @category Keys
7407
7436
  * @group Events
7408
7437
  */
7409
- declare const EVENT_TRACK_SPONSORS_QUERY_KEY: (eventId: string, trackId: string) => string[];
7438
+ declare const EVENT_TRACK_SESSIONS_QUERY_KEY: (eventId: string, trackId: string) => string[];
7410
7439
  /**
7411
7440
  * @category Setters
7412
7441
  * @group Events
7413
7442
  */
7414
- declare const SET_EVENT_TRACK_SPONSORS_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrackSponsors>>) => void;
7415
- interface GetEventTrackSponsorsProps extends InfiniteQueryParams {
7443
+ declare const SET_EVENT_TRACK_SESSIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrackSessions>>) => void;
7444
+ interface GetEventTrackSessionsProps extends InfiniteQueryParams {
7416
7445
  eventId: string;
7417
7446
  trackId: string;
7418
7447
  }
@@ -7420,36 +7449,37 @@ interface GetEventTrackSponsorsProps extends InfiniteQueryParams {
7420
7449
  * @category Queries
7421
7450
  * @group Events
7422
7451
  */
7423
- declare const GetEventTrackSponsors: ({ eventId, trackId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTrackSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
7452
+ declare const GetEventTrackSessions: ({ eventId, trackId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTrackSessionsProps) => Promise<ConnectedXMResponse<EventSession[]>>;
7424
7453
  /**
7425
7454
  * @category Hooks
7426
7455
  * @group Events
7427
7456
  */
7428
- declare const useGetEventTrackSponsors: (eventId?: string, trackId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTrackSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7457
+ declare const useGetEventTrackSessions: (eventId?: string, trackId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTrackSessions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<EventSession[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7429
7458
 
7430
7459
  /**
7431
7460
  * @category Keys
7432
7461
  * @group Events
7433
7462
  */
7434
- declare const EVENT_TRACKS_QUERY_KEY: (eventId: string) => string[];
7463
+ declare const EVENT_TRACK_SPONSORS_QUERY_KEY: (eventId: string, trackId: string) => string[];
7435
7464
  /**
7436
7465
  * @category Setters
7437
7466
  * @group Events
7438
7467
  */
7439
- declare const SET_EVENT_TRACKS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_TRACKS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTracks>>) => void;
7440
- interface GetEventTracksProps extends InfiniteQueryParams {
7468
+ declare const SET_EVENT_TRACK_SPONSORS_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrackSponsors>>) => void;
7469
+ interface GetEventTrackSponsorsProps extends InfiniteQueryParams {
7441
7470
  eventId: string;
7471
+ trackId: string;
7442
7472
  }
7443
7473
  /**
7444
7474
  * @category Queries
7445
7475
  * @group Events
7446
7476
  */
7447
- declare const GetEventTracks: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTracksProps) => Promise<ConnectedXMResponse<EventTrack[]>>;
7477
+ declare const GetEventTrackSponsors: ({ eventId, trackId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventTrackSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
7448
7478
  /**
7449
7479
  * @category Hooks
7450
7480
  * @group Events
7451
7481
  */
7452
- declare const useGetEventTracks: (eventId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTracks>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<EventTrack[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7482
+ declare const useGetEventTrackSponsors: (eventId?: string, trackId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventTrackSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
7453
7483
 
7454
7484
  /**
7455
7485
  * @category Keys
@@ -8008,50 +8038,50 @@ declare const useGetGroupRequests: (groupId?: string, status?: keyof typeof Grou
8008
8038
  * @category Keys
8009
8039
  * @group Groups
8010
8040
  */
8011
- declare const GROUP_SPONSORS_QUERY_KEY: (groupId: string) => string[];
8041
+ declare const GROUPS_QUERY_KEY: (access?: "public" | "private", featured?: boolean) => string[];
8012
8042
  /**
8013
8043
  * @category Setters
8014
8044
  * @group Groups
8015
8045
  */
8016
- declare const SET_GROUP_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupSponsors>>) => void;
8017
- interface GetGroupSponsorsProps extends InfiniteQueryParams {
8018
- groupId: string;
8046
+ declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: [access?: "public" | "private" | undefined, featured?: boolean | undefined], response: Awaited<ReturnType<typeof GetGroups>>) => void;
8047
+ interface GetGroupsProps extends InfiniteQueryParams {
8048
+ access?: "public" | "private";
8049
+ featured?: boolean;
8019
8050
  }
8020
8051
  /**
8021
8052
  * @category Queries
8022
8053
  * @group Groups
8023
8054
  */
8024
- declare const GetGroupSponsors: ({ groupId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetGroupSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
8055
+ declare const GetGroups: ({ access, featured, pageParam, pageSize, orderBy, search, adminApiParams, }: GetGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
8025
8056
  /**
8026
8057
  * @category Hooks
8027
8058
  * @group Groups
8028
8059
  */
8029
- declare const useGetGroupSponsors: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
8060
+ declare const useGetGroups: (access?: "public" | "private", featured?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroups>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
8030
8061
 
8031
8062
  /**
8032
8063
  * @category Keys
8033
8064
  * @group Groups
8034
8065
  */
8035
- declare const GROUPS_QUERY_KEY: (access?: "public" | "private", featured?: boolean) => string[];
8066
+ declare const GROUP_SPONSORS_QUERY_KEY: (groupId: string) => string[];
8036
8067
  /**
8037
8068
  * @category Setters
8038
8069
  * @group Groups
8039
8070
  */
8040
- declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: [access?: "public" | "private" | undefined, featured?: boolean | undefined], response: Awaited<ReturnType<typeof GetGroups>>) => void;
8041
- interface GetGroupsProps extends InfiniteQueryParams {
8042
- access?: "public" | "private";
8043
- featured?: boolean;
8071
+ declare const SET_GROUP_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupSponsors>>) => void;
8072
+ interface GetGroupSponsorsProps extends InfiniteQueryParams {
8073
+ groupId: string;
8044
8074
  }
8045
8075
  /**
8046
8076
  * @category Queries
8047
8077
  * @group Groups
8048
8078
  */
8049
- declare const GetGroups: ({ access, featured, pageParam, pageSize, orderBy, search, adminApiParams, }: GetGroupsProps) => Promise<ConnectedXMResponse<Group[]>>;
8079
+ declare const GetGroupSponsors: ({ groupId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetGroupSponsorsProps) => Promise<ConnectedXMResponse<Account[]>>;
8050
8080
  /**
8051
8081
  * @category Hooks
8052
8082
  * @group Groups
8053
8083
  */
8054
- declare const useGetGroups: (access?: "public" | "private", featured?: boolean, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroups>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Group[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
8084
+ declare const useGetGroupSponsors: (groupId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetGroupSponsors>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
8055
8085
 
8056
8086
  /**
8057
8087
  * @category Keys
@@ -8081,63 +8111,63 @@ declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<Retur
8081
8111
  * @category Keys
8082
8112
  * @group Images
8083
8113
  */
8084
- declare const IMAGE_USAGE_QUERY_KEY: (imageId: string) => string[];
8114
+ declare const IMAGES_QUERY_KEY: (type?: ImageType) => string[];
8085
8115
  /**
8086
8116
  * @category Setters
8087
8117
  * @group Images
8088
8118
  */
8089
- declare const SET_IMAGE_USAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof IMAGE_USAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetImageUsage>>) => void;
8090
- interface GetImageUsageParams extends SingleQueryParams {
8091
- imageId: string;
8119
+ declare const SET_IMAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof IMAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetImages>>) => void;
8120
+ interface ImageWCopyUri extends Image {
8121
+ copyUri: string;
8092
8122
  }
8093
- interface ImageUsage extends Image {
8094
- _count: {
8095
- accounts: number;
8096
- events: number;
8097
- sessions: number;
8098
- groups: number;
8099
- usage: number;
8100
- speakers: number;
8101
- tickets: number;
8102
- };
8123
+ interface GetImagePrams extends InfiniteQueryParams {
8124
+ type?: ImageType;
8103
8125
  }
8104
8126
  /**
8105
8127
  * @category Queries
8106
8128
  * @group Images
8107
8129
  */
8108
- declare const GetImageUsage: ({ imageId, adminApiParams, }: GetImageUsageParams) => Promise<ConnectedXMResponse<ImageUsage>>;
8130
+ declare const GetImages: ({ pageParam, pageSize, orderBy, type, search, adminApiParams, }: GetImagePrams) => Promise<ConnectedXMResponse<ImageWCopyUri[]>>;
8109
8131
  /**
8110
8132
  * @category Hooks
8111
8133
  * @group Images
8112
8134
  */
8113
- declare const useGetImageUsage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImageUsage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ImageUsage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8135
+ declare const useGetImages: (type?: ImageType, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetImages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ImageWCopyUri[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
8114
8136
 
8115
8137
  /**
8116
8138
  * @category Keys
8117
8139
  * @group Images
8118
8140
  */
8119
- declare const IMAGES_QUERY_KEY: (type?: ImageType) => string[];
8141
+ declare const IMAGE_USAGE_QUERY_KEY: (imageId: string) => string[];
8120
8142
  /**
8121
8143
  * @category Setters
8122
8144
  * @group Images
8123
8145
  */
8124
- declare const SET_IMAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof IMAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetImages>>) => void;
8125
- interface ImageWCopyUri extends Image {
8126
- copyUri: string;
8146
+ declare const SET_IMAGE_USAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof IMAGE_USAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetImageUsage>>) => void;
8147
+ interface GetImageUsageParams extends SingleQueryParams {
8148
+ imageId: string;
8127
8149
  }
8128
- interface GetImagePrams extends InfiniteQueryParams {
8129
- type?: ImageType;
8150
+ interface ImageUsage extends Image {
8151
+ _count: {
8152
+ accounts: number;
8153
+ events: number;
8154
+ sessions: number;
8155
+ groups: number;
8156
+ usage: number;
8157
+ speakers: number;
8158
+ tickets: number;
8159
+ };
8130
8160
  }
8131
8161
  /**
8132
8162
  * @category Queries
8133
8163
  * @group Images
8134
8164
  */
8135
- declare const GetImages: ({ pageParam, pageSize, orderBy, type, search, adminApiParams, }: GetImagePrams) => Promise<ConnectedXMResponse<ImageWCopyUri[]>>;
8165
+ declare const GetImageUsage: ({ imageId, adminApiParams, }: GetImageUsageParams) => Promise<ConnectedXMResponse<ImageUsage>>;
8136
8166
  /**
8137
8167
  * @category Hooks
8138
8168
  * @group Images
8139
8169
  */
8140
- declare const useGetImages: (type?: ImageType, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetImages>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<ImageWCopyUri[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
8170
+ declare const useGetImageUsage: (imageId?: string, options?: SingleQueryOptions<ReturnType<typeof GetImageUsage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<ImageUsage>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
8141
8171
 
8142
8172
  /**
8143
8173
  * @category Keys
@@ -9112,47 +9142,47 @@ declare const useGetSelf: (options?: SingleQueryOptions<ReturnType<typeof GetSel
9112
9142
  * @category Keys
9113
9143
  * @group Self
9114
9144
  */
9115
- declare const SELF_MEMBERSHIP_QUERY_KEY: () => string[];
9145
+ declare const SELF_ORGANIZATIONS_QUERY_KEY: () => string[];
9116
9146
  /**
9117
9147
  * @category Setters
9118
9148
  * @group Self
9119
9149
  */
9120
- declare const SET_SELF_MEMBERSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_MEMBERSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfOrgMembership>>) => void;
9121
- interface GetSelfOrgMembershipProps extends SingleQueryParams {
9150
+ declare const SET_SELF_ORGANIZATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_ORGANIZATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfOrganizations>>) => void;
9151
+ interface GetSelfOrganizationsProps extends InfiniteQueryParams {
9122
9152
  }
9123
9153
  /**
9124
9154
  * @category Queries
9125
9155
  * @group Self
9126
9156
  */
9127
- declare const GetSelfOrgMembership: ({ adminApiParams, }: GetSelfOrgMembershipProps) => Promise<any>;
9157
+ declare const GetSelfOrganizations: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetSelfOrganizationsProps) => Promise<ConnectedXMResponse<Organization[]>>;
9128
9158
  /**
9129
9159
  * @category Hooks
9130
9160
  * @group Self
9131
9161
  */
9132
- declare const useGetSelfOrgMembership: (options?: SingleQueryOptions<ReturnType<typeof GetSelfOrgMembership>>) => _tanstack_react_query.UseQueryResult<any, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9162
+ declare const useGetSelfOrganizations: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfOrganizations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Organization[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9133
9163
 
9134
9164
  /**
9135
9165
  * @category Keys
9136
9166
  * @group Self
9137
9167
  */
9138
- declare const SELF_ORGANIZATIONS_QUERY_KEY: () => string[];
9168
+ declare const SELF_MEMBERSHIP_QUERY_KEY: () => string[];
9139
9169
  /**
9140
9170
  * @category Setters
9141
9171
  * @group Self
9142
9172
  */
9143
- declare const SET_SELF_ORGANIZATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_ORGANIZATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfOrganizations>>) => void;
9144
- interface GetSelfOrganizationsProps extends InfiniteQueryParams {
9173
+ declare const SET_SELF_MEMBERSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_MEMBERSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfOrgMembership>>) => void;
9174
+ interface GetSelfOrgMembershipProps extends SingleQueryParams {
9145
9175
  }
9146
9176
  /**
9147
9177
  * @category Queries
9148
9178
  * @group Self
9149
9179
  */
9150
- declare const GetSelfOrganizations: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetSelfOrganizationsProps) => Promise<ConnectedXMResponse<Organization[]>>;
9180
+ declare const GetSelfOrgMembership: ({ adminApiParams, }: GetSelfOrgMembershipProps) => Promise<any>;
9151
9181
  /**
9152
9182
  * @category Hooks
9153
9183
  * @group Self
9154
9184
  */
9155
- declare const useGetSelfOrganizations: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfOrganizations>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Organization[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9185
+ declare const useGetSelfOrgMembership: (options?: SingleQueryOptions<ReturnType<typeof GetSelfOrgMembership>>) => _tanstack_react_query.UseQueryResult<any, axios.AxiosError<ConnectedXMResponse<any>, any>>;
9156
9186
 
9157
9187
  /**
9158
9188
  * @category Keys
@@ -9446,73 +9476,73 @@ declare const useGetSubscriptionProductPrices: (subscriptionProductId?: string,
9446
9476
  * @category Keys
9447
9477
  * @group Subscriptions
9448
9478
  */
9449
- declare const SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY: (subscriptionProductId: string, status?: SubscriptionStatus) => string[];
9479
+ declare const SUBSCRIPTION_PRODUCTS_QUERY_KEY: () => string[];
9450
9480
  /**
9451
9481
  * @category Setters
9452
9482
  * @group Subscriptions
9453
9483
  */
9454
- declare const SET_SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_DATA: (client: QueryClient, keyParams: [subscriptionProductId: string, status?: SubscriptionStatus | undefined], response: Awaited<ReturnType<typeof GetSubscriptionProductSubscriptions>>) => void;
9455
- interface GetSubscriptionProductSubscriptionsProps extends InfiniteQueryParams {
9456
- subscriptionProductId: string;
9457
- status?: SubscriptionStatus;
9484
+ declare const SET_SUBSCRIPTION_PRODUCTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_PRODUCTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptionProducts>>) => void;
9485
+ interface GetSubscriptionProductsProps extends InfiniteQueryParams {
9458
9486
  }
9459
9487
  /**
9460
9488
  * @category Queries
9461
9489
  * @group Subscriptions
9462
9490
  */
9463
- declare const GetSubscriptionProductSubscriptions: ({ subscriptionProductId, status, pageParam, pageSize, orderBy, search, adminApiParams, }: GetSubscriptionProductSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
9491
+ declare const GetSubscriptionProducts: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetSubscriptionProductsProps) => Promise<ConnectedXMResponse<SubscriptionProduct[]>>;
9464
9492
  /**
9465
9493
  * @category Hooks
9466
9494
  * @group Subscriptions
9467
9495
  */
9468
- declare const useGetSubscriptionProductSubscriptions: (subscriptionProductId: string, status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscriptionProductSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9496
+ declare const useGetSubscriptionProducts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscriptionProducts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SubscriptionProduct[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9469
9497
 
9470
9498
  /**
9471
9499
  * @category Keys
9472
9500
  * @group Subscriptions
9473
9501
  */
9474
- declare const SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY: (subscriptionProductId: string) => string[];
9502
+ declare const SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY: (subscriptionProductId: string, status?: SubscriptionStatus) => string[];
9475
9503
  /**
9476
9504
  * @category Setters
9477
9505
  * @group Subscriptions
9478
9506
  */
9479
- declare const SET_SUBSCRIPTION_PRODUCT_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptionProductTiers>>) => void;
9480
- interface GetSubscriptionProductTiersProps extends InfiniteQueryParams {
9507
+ declare const SET_SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_DATA: (client: QueryClient, keyParams: [subscriptionProductId: string, status?: SubscriptionStatus | undefined], response: Awaited<ReturnType<typeof GetSubscriptionProductSubscriptions>>) => void;
9508
+ interface GetSubscriptionProductSubscriptionsProps extends InfiniteQueryParams {
9481
9509
  subscriptionProductId: string;
9510
+ status?: SubscriptionStatus;
9482
9511
  }
9483
9512
  /**
9484
9513
  * @category Queries
9485
9514
  * @group Subscriptions
9486
9515
  */
9487
- declare const GetSubscriptionProductTiers: ({ pageParam, pageSize, orderBy, search, subscriptionProductId, adminApiParams, }: GetSubscriptionProductTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
9516
+ declare const GetSubscriptionProductSubscriptions: ({ subscriptionProductId, status, pageParam, pageSize, orderBy, search, adminApiParams, }: GetSubscriptionProductSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
9488
9517
  /**
9489
9518
  * @category Hooks
9490
9519
  * @group Subscriptions
9491
9520
  */
9492
- declare const useGetSubscriptionProductTiers: (subscriptionProductId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscriptionProductTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9521
+ declare const useGetSubscriptionProductSubscriptions: (subscriptionProductId: string, status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscriptionProductSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9493
9522
 
9494
9523
  /**
9495
9524
  * @category Keys
9496
9525
  * @group Subscriptions
9497
9526
  */
9498
- declare const SUBSCRIPTION_PRODUCTS_QUERY_KEY: () => string[];
9527
+ declare const SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY: (subscriptionProductId: string) => string[];
9499
9528
  /**
9500
9529
  * @category Setters
9501
9530
  * @group Subscriptions
9502
9531
  */
9503
- declare const SET_SUBSCRIPTION_PRODUCTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_PRODUCTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptionProducts>>) => void;
9504
- interface GetSubscriptionProductsProps extends InfiniteQueryParams {
9532
+ declare const SET_SUBSCRIPTION_PRODUCT_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptionProductTiers>>) => void;
9533
+ interface GetSubscriptionProductTiersProps extends InfiniteQueryParams {
9534
+ subscriptionProductId: string;
9505
9535
  }
9506
9536
  /**
9507
9537
  * @category Queries
9508
9538
  * @group Subscriptions
9509
9539
  */
9510
- declare const GetSubscriptionProducts: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetSubscriptionProductsProps) => Promise<ConnectedXMResponse<SubscriptionProduct[]>>;
9540
+ declare const GetSubscriptionProductTiers: ({ pageParam, pageSize, orderBy, search, subscriptionProductId, adminApiParams, }: GetSubscriptionProductTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
9511
9541
  /**
9512
9542
  * @category Hooks
9513
9543
  * @group Subscriptions
9514
9544
  */
9515
- declare const useGetSubscriptionProducts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscriptionProducts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<SubscriptionProduct[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9545
+ declare const useGetSubscriptionProductTiers: (subscriptionProductId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSubscriptionProductTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9516
9546
 
9517
9547
  /**
9518
9548
  * @category Keys
@@ -9639,49 +9669,49 @@ declare const useGetTierAccounts: (tierId?: string, params?: Omit<InfiniteQueryP
9639
9669
  * @category Keys
9640
9670
  * @group Tiers
9641
9671
  */
9642
- declare const TIER_SUBSCRIBERS_QUERY_KEY: (tierId: string) => string[];
9672
+ declare const TIERS_QUERY_KEY: (type?: "external" | "internal") => string[];
9643
9673
  /**
9644
9674
  * @category Setters
9645
9675
  * @group Tiers
9646
9676
  */
9647
- declare const SET_TIER_SUBSCRIBERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof TIER_SUBSCRIBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetTierSubscribers>>) => void;
9648
- interface GetTierSubscribersProps extends InfiniteQueryParams {
9649
- tierId?: string;
9677
+ declare const SET_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetTiers>>) => void;
9678
+ interface GetTiersProps extends InfiniteQueryParams {
9679
+ type?: "external" | "internal";
9650
9680
  }
9651
9681
  /**
9652
9682
  * @category Queries
9653
9683
  * @group Tiers
9654
9684
  */
9655
- declare const GetTierSubscribers: ({ pageParam, pageSize, orderBy, search, tierId, adminApiParams, }: GetTierSubscribersProps) => Promise<ConnectedXMResponse<Account[]>>;
9685
+ declare const GetTiers: ({ type, pageParam, pageSize, orderBy, search, adminApiParams, }: GetTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
9656
9686
  /**
9657
9687
  * @category Hooks
9658
9688
  * @group Tiers
9659
9689
  */
9660
- declare const useGetTierSubscribers: (tierId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetTierSubscribers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9690
+ declare const useGetTiers: (type?: "external" | "internal", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9661
9691
 
9662
9692
  /**
9663
9693
  * @category Keys
9664
9694
  * @group Tiers
9665
9695
  */
9666
- declare const TIERS_QUERY_KEY: (type?: "external" | "internal") => string[];
9696
+ declare const TIER_SUBSCRIBERS_QUERY_KEY: (tierId: string) => string[];
9667
9697
  /**
9668
9698
  * @category Setters
9669
9699
  * @group Tiers
9670
9700
  */
9671
- declare const SET_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetTiers>>) => void;
9672
- interface GetTiersProps extends InfiniteQueryParams {
9673
- type?: "external" | "internal";
9701
+ declare const SET_TIER_SUBSCRIBERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof TIER_SUBSCRIBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetTierSubscribers>>) => void;
9702
+ interface GetTierSubscribersProps extends InfiniteQueryParams {
9703
+ tierId?: string;
9674
9704
  }
9675
9705
  /**
9676
9706
  * @category Queries
9677
9707
  * @group Tiers
9678
9708
  */
9679
- declare const GetTiers: ({ type, pageParam, pageSize, orderBy, search, adminApiParams, }: GetTiersProps) => Promise<ConnectedXMResponse<Tier[]>>;
9709
+ declare const GetTierSubscribers: ({ pageParam, pageSize, orderBy, search, tierId, adminApiParams, }: GetTierSubscribersProps) => Promise<ConnectedXMResponse<Account[]>>;
9680
9710
  /**
9681
9711
  * @category Hooks
9682
9712
  * @group Tiers
9683
9713
  */
9684
- declare const useGetTiers: (type?: "external" | "internal", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetTiers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Tier[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9714
+ declare const useGetTierSubscribers: (tierId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetTierSubscribers>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
9685
9715
 
9686
9716
  /**
9687
9717
  * @category Keys
@@ -15191,7 +15221,7 @@ declare const useDeleteOrganizationUser: (options?: Omit<ConnectedXMMutationOpti
15191
15221
  * @group Organization
15192
15222
  */
15193
15223
  interface UpdateOrganizationParams extends MutationParams {
15194
- organization: Organization;
15224
+ organization: OrganizationUpdateInputs;
15195
15225
  }
15196
15226
  /**
15197
15227
  * @category Methods
@@ -15231,7 +15261,7 @@ declare const useUpdateOrganizationIntegrations: (options?: Omit<ConnectedXMMuta
15231
15261
  */
15232
15262
  interface UpdateOrganizationMembershipParams extends MutationParams {
15233
15263
  userId: string;
15234
- membership: OrganizationMembership;
15264
+ membership: OrganizationMembershipUpdateInputs;
15235
15265
  }
15236
15266
  /**
15237
15267
  * @category Methods
@@ -16029,4 +16059,4 @@ declare const UpdateVideo: ({ videoId, video, adminApiParams, queryClient, }: Up
16029
16059
  */
16030
16060
  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>;
16031
16061
 
16032
- export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_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_LIKES_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_REGISTRATIONS_QUERY_KEY, ACCOUNT_RESHARES_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_INTERESTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ACTIVITY_RESHARES_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, type Account, 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, AddChannelContentGuest, type AddChannelContentGuestParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddEventAddOnTicket, type AddEventAddOnTicketParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventPageImage, type AddEventPageImageParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventRegistrationPurchaseAddOn, type AddEventRegistrationPurchaseAddOnParams, AddEventReservationSectionTicket, type AddEventReservationSectionTicketParams, AddEventReservationSectionTier, type AddEventReservationSectionTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTicket, type AddEventSectionTicketParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTrack, type AddEventSessionTrackParams, AddEventSpeakerSession, type AddEventSpeakerSessionParams, AddEventSponsorAccount, type AddEventSponsorAccountParams, AddEventTicketAddOn, type AddEventTicketAddOnParams, AddEventTicketTier, type AddEventTicketTierParams, AddEventTrackSession, type AddEventTrackSessionParams, AddEventTrackSponsor, type AddEventTrackSponsorParams, AddGroupEvent, type AddGroupEventParams, AddGroupInterest, type AddGroupInterestParams, AddGroupMember, type AddGroupMemberParams, AddGroupModerator, type AddGroupModeratorParams, AddGroupSponsor, type AddGroupSponsorParams, AddLevelAccount, type AddLevelAccountParams, AddOrganizationUser, type AddOrganizationUserParams, AddSeriesEvent, type AddSeriesEventParams, AddSubscriptionProductTier, type AddSubscriptionProductTierParams, AddTierAccount, type AddTierAccountParams, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, ApproveEvent, type ApproveEventParams, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAccount, type BaseActivationCompletion, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelSubscriber, type BaseCoupon, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventEmail, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseEventSession, type BaseEventSpeaker, type BaseEventTicket, type BaseEventTrack, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseImport, type BaseImportItem, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistration, type BaseRegistrationBypass, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseRegistrationStatusChange, type BaseSeries, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionPayment, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, CHANNELS_QUERY_KEY, CHANNEL_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_GUEST_QUERY_KEY, CHANNEL_CONTENT_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, CacheIndividualQueries, CancelEventRegistrationPurchaseTransfer, type CancelEventRegistrationPurchaseTransferParams, CancelSubscription, type CancelSubscriptionParams, type Channel, type ChannelCollectionCreateInputs, type ChannelCollectionTranslationUpdateInputs, type ChannelCollectionUpdateInputs, type ChannelContent, type ChannelContentCreateInputs, type ChannelContentGuestCreateInputs, type ChannelContentGuestTranslationUpdateInputs, type ChannelContentGuestUpdateInputs, type ChannelContentTranslation, type ChannelContentTranslationUpdateInputs, type ChannelContentUpdateInputs, type ChannelCreateInputs, ChannelFormat, type ChannelSubscriberUpdateInputs, type ChannelTranslation, type ChannelTranslationUpdateInputs, type ChannelUpdateInputs, type CognitoUser, type CognitoUserStatus, ConfirmAccountCognitoUser, type ConfirmAccountCognitoUserParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, ContentType, type CountChartSummaryData, type Coupon, CreateAccount, type CreateAccountParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateChannel, CreateChannelContent, 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, CreateEventCoupon, type CreateEventCouponParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionSearchValues, type CreateEventQuestionSearchValuesParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistration, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, type CreateEventRegistrationParams, CreateEventRegistrationPurchase, type CreateEventRegistrationPurchaseParams, CreateEventReservationSection, CreateEventReservationSectionLocation, type CreateEventReservationSectionLocationParams, CreateEventReservationSectionLocationTranslation, type CreateEventReservationSectionLocationTranslationParams, type CreateEventReservationSectionParams, CreateEventReservationSectionTranslation, type CreateEventReservationSectionTranslationParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, type CreateEventSessionParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventTicket, type CreateEventTicketParams, CreateEventTicketTranslation, type CreateEventTicketTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, type CreateGroupParams, CreateGroupTranslation, type CreateGroupTranslationParams, CreateImage, type CreateImageParams, CreateImport, type CreateImportParams, 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, CreateSeries, type CreateSeriesParams, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSubscription, type CreateSubscriptionParams, CreateSubscriptionProduct, type CreateSubscriptionProductParams, CreateSubscriptionProductPrice, type CreateSubscriptionProductPriceParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateTier, type CreateTierParams, Currency, DelegateRole, DeleteAccount, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteChannel, DeleteChannelContent, 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, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionSearchValue, type DeleteEventQuestionSearchValueParams, DeleteEventQuestionSearchValues, type DeleteEventQuestionSearchValuesParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistration, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, type DeleteEventRegistrationParams, DeleteEventRegistrationPurchase, type DeleteEventRegistrationPurchaseParams, DeleteEventReservationSection, DeleteEventReservationSectionLocation, type DeleteEventReservationSectionLocationParams, DeleteEventReservationSectionLocationTranslation, type DeleteEventReservationSectionLocationTranslationParams, type DeleteEventReservationSectionParams, DeleteEventReservationSectionTranslation, type DeleteEventReservationSectionTranslationParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, type DeleteEventSessionParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, DeleteEventTicket, type DeleteEventTicketParams, DeleteEventTicketTranslation, type DeleteEventTicketTranslationParams, DeleteEventTrack, type DeleteEventTrackParams, DeleteEventTrackTranslation, type DeleteEventTrackTranslationParams, DeleteEventTranslation, type DeleteEventTranslationParams, DeleteFile, type DeleteFileParams, DeleteGroup, type DeleteGroupParams, DeleteGroupTranslation, type DeleteGroupTranslationParams, DeleteImage, type DeleteImageParams, DeleteInterest, type DeleteInterestParams, DeleteInvoice, DeleteInvoiceLineItem, type DeleteInvoiceLineItemParams, type DeleteInvoiceParams, DeleteLevel, type DeleteLevelParams, DeleteLevelTranslation, type DeleteLevelTranslationParams, DeleteManyImages, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteOrganizationPageTranslation, type DeleteOrganizationPageTranslationParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteReport, type DeleteReportParams, DeleteSeries, type DeleteSeriesParams, DeleteStreamInput, DeleteStreamInputOutput, type DeleteStreamInputOutputParams, type DeleteStreamInputParams, DeleteSubscriptionProduct, type DeleteSubscriptionProductParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteTier, type DeleteTierParams, DeleteVideo, type DeleteVideoParams, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCOUNT_REGISTRATION_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_PURCHASES_QUERY_KEY, EVENT_ADD_ON_QUERY_KEY, EVENT_ADD_ON_TICKETS_QUERY_KEY, EVENT_ADD_ON_TIERS_QUERY_KEY, EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY, EVENT_ADD_ON_TRANSLATION_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_COUPON_REGISTRATIONS_QUERY_KEY, EVENT_CO_HOSTS_QUERY_KEY, EVENT_EMAIL_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_PURCHASES_QUERY_KEY, EVENT_PURCHASE_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_REGISTRATIONS_QUERY_KEY, EVENT_REGISTRATION_BYPASS_LIST_QUERY_KEY, EVENT_REGISTRATION_BYPASS_QUERY_KEY, EVENT_REGISTRATION_COUNTS_QUERY_KEY, EVENT_REGISTRATION_COUPONS_QUERY_KEY, EVENT_REGISTRATION_PAYMENTS_QUERY_KEY, EVENT_REGISTRATION_PAYMENT_QUERY_KEY, EVENT_REGISTRATION_PURCHASES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSE_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_RESERVATION_SECTIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_KEY, EVENT_RESERVATION_SECTION_QUERY_KEY, EVENT_RESERVATION_SECTION_TICKETS_QUERY_KEY, EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_KEY, EVENT_SECTIONS_QUERY_KEY, EVENT_SECTION_ADDONS_QUERY_KEY, EVENT_SECTION_QUERY_KEY, EVENT_SECTION_QUESTIONS_QUERY_KEY, EVENT_SECTION_TICKETS_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_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_TICKETS_QUERY_KEY, EVENT_TICKET_ADD_ONS_QUERY_KEY, EVENT_TICKET_COUPONS_QUERY_KEY, EVENT_TICKET_PURCHASES_QUERY_KEY, EVENT_TICKET_QUERY_KEY, EVENT_TICKET_TIERS_QUERY_KEY, EVENT_TICKET_TRANSLATIONS_QUERY_KEY, EVENT_TICKET_TRANSLATION_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 EventBadgeFieldUpdateInputs, type EventCouponCreateInputs, type EventCouponUpdateInputs, type EventCreateInputs, type EventEmail, EventEmailType, type EventEmailUpdateInputs, type EventFaqSectionCreateInputs, type EventFaqSectionQuestionCreateInputs, type EventFaqSectionQuestionTranslationUpdateInputs, type EventFaqSectionQuestionUpdateInputs, type EventFaqSectionTranslationUpdateInputs, type EventFaqSectionUpdateInputs, type EventListing, type EventOnSite, type EventOnSiteBadgeField, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPurchaseCreateInputs, type EventPurchaseUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionSearchInputs, type EventQuestionSearchValueUpdateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, type EventRegistrationUpdateInputs, type EventReservationSection, type EventReservationSectionCreateInputs, type EventReservationSectionLocation, type EventReservationSectionLocationCreateInputs, type EventReservationSectionLocationTranslation, type EventReservationSectionLocationTranslationUpdateInputs, type EventReservationSectionLocationUpdateInputs, type EventReservationSectionTranslation, type EventReservationSectionTranslationUpdateInputs, type EventReservationSectionUpdateInputs, type EventReservationSelectInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionCreateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventTicket, type EventTicketCreateInputs, type EventTicketTranslation, type EventTicketTranslationUpdateInputs, type EventTicketUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, ExportStatus, 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, GetAccountCognitoUser, GetAccountCognitoUsers, GetAccountComments, GetAccountDelegateOf, GetAccountDelegates, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountLikes, GetAccountRegistrations, GetAccountReshares, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityInterests, GetActivityLikes, GetActivityReshares, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAnnouncement, GetAnnouncementEmailReceipts, GetAnnouncements, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuests, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccountRegistration, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPurchases, GetEventAddOnTickets, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventCoHosts, GetEventCoupon, GetEventCouponRegistrations, GetEventCoupons, GetEventEmail, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventOnSite, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPurchase, GetEventPurchases, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSearchValue, GetEventQuestionSearchValues, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistration, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventRegistrationCounts, GetEventRegistrationCoupons, GetEventRegistrationPayment, GetEventRegistrationPayments, GetEventRegistrationPurchase, GetEventRegistrationPurchaseAddOns, GetEventRegistrationPurchaseResponse, GetEventRegistrationPurchaseResponseChanges, GetEventRegistrationPurchaseResponses, GetEventRegistrationPurchaseSections, GetEventRegistrationPurchases, GetEventRegistrationTransferLogs, GetEventRegistrations, GetEventSection, GetEventSectionAddOns, GetEventSectionQuestions, GetEventSectionTickets, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccounts, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventTicket, GetEventTicketAddOns, GetEventTicketCoupons, GetEventTicketPurchases, GetEventTicketTiers, GetEventTicketTranslation, GetEventTicketTranslations, GetEventTickets, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedEvents, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImportItems, GetImports, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoicePayment, GetInvoicePayments, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetOrganization, GetOrganizationMembership, GetOrganizationPage, GetOrganizationPageTranslation, GetOrganizationPageTranslations, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationPaymentLink, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationTrigger, GetOrganizationUsers, GetPayment, GetPayments, GetPurchase, GetPurchases, GetReport, GetReportParent, GetReportParents, GetReports, GetReservationSection, GetReservationSectionLocation, GetReservationSectionLocationTranslation, GetReservationSectionLocationTranslations, GetReservationSectionLocations, GetReservationSectionTickets, GetReservationSectionTiers, GetReservationSectionTranslation, GetReservationSectionTranslations, GetReservationSections, GetSelf, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetSubscription, GetSubscriptionPayments, GetSubscriptionProduct, GetSubscriptionProductPrice, GetSubscriptionProductPrices, GetSubscriptionProductSubscriptions, GetSubscriptionProductTiers, GetSubscriptionProducts, GetSubscriptions, GetSupportTicket, GetSupportTickets, GetTier, GetTierAccounts, 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, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_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 ImportItem, ImportItemStatus, type InfiniteQueryOptions, type InfiniteQueryParams, type Integrations, type Interest, type InterestCreateInputs, type InterestUpdateInputs, type Invoice, type InvoiceCreateInputs, type InvoiceLineItem, type InvoiceLineItemCreateInputs, type InvoiceLineItemUpdateInputs, InvoiceStatus, type InvoiceUpdateInputs, LEVELS_QUERY_KEY, LEVEL_ACCOUNTS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_TRANSLATIONS_QUERY_KEY, LEVEL_TRANSLATION_QUERY_KEY, type LeadCreateInputs, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkPreview, MergeInfinitePages, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, NotificationType, ORGANIZATION_MEMBERSHIP_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, type OrganizationMembership, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PURCHASES_QUERY_KEY, PURCHASE_QUERY_KEY, type Page, type PageTranslation, PageType, type Payment, type PaymentIntegration, type PaymentIntentPurchaseMetadataInputs, PaymentType, type PermissionDomain, type PermissionType, type Permissions, type Purchase, type PushDevice, PushDeviceAppType, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_PARENTS_QUERY_KEY, REPORT_PARENT_QUERY_KEY, REPORT_QUERY_KEY, RefundEventRegistrationPayment, type RefundEventRegistrationPaymentParams, type Registration, 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, RegistrationStatus, type RegistrationStatusChange, RemoveAccountDelegate, type RemoveAccountDelegateParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveActivityInterest, type RemoveActivityInterestParams, RemoveChannelContentGuest, type RemoveChannelContentGuestParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveEventAddOnTicket, type RemoveEventAddOnTicketParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventRegistrationCoupon, type RemoveEventRegistrationCouponParams, RemoveEventRegistrationPurchaseAddOn, type RemoveEventRegistrationPurchaseAddOnParams, RemoveEventReservationSectionTicket, type RemoveEventReservationSectionTicketParams, RemoveEventReservationSectionTier, type RemoveEventReservationSectionTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTicket, type RemoveEventSectionTicketParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, RemoveEventSpeakerSession, type RemoveEventSpeakerSessionParams, RemoveEventSponsorAccount, type RemoveEventSponsorAccountParams, RemoveEventTicketAddOn, type RemoveEventTicketAddOnParams, RemoveEventTicketTier, type RemoveEventTicketTierParams, RemoveEventTrackSession, type RemoveEventTrackSessionParams, RemoveEventTrackSponsor, type RemoveEventTrackSponsorParams, RemoveGroupEvent, type RemoveGroupEventParams, RemoveGroupInterest, type RemoveGroupInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveGroupModerator, type RemoveGroupModeratorParams, RemoveGroupSponsor, type RemoveGroupSponsorParams, RemoveLevelAccount, type RemoveLevelAccountParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSubscriptionProductTier, type RemoveSubscriptionProductTierParams, RemoveTierAccount, type RemoveTierAccountParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, type Report, type ReportCreateInputs, type ReportParent, ReportType, type ReportUpdateInputs, ResendEventRegistrationConfirmationEmail, type ResendEventRegistrationConfirmationEmailParams, SEARCH_ORGANIZATION_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_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_LIKES_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_REGISTRATIONS_QUERY_DATA, SET_ACCOUNT_RESHARES_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_INTEREST_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ACTIVITY_RESHARES_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_QUERY_DATA, SET_ANNOUNCEMENTS_QUERY_DATA, SET_ANNOUNCEMENT_EMAILS_QUERY_DATA, SET_ANNOUNCEMENT_QUERY_DATA, SET_API_LOGS_QUERY_DATA, SET_API_LOG_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_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_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACCOUNT_REGISTRATION_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_PURCHASES_QUERY_DATA, SET_EVENT_ADD_ON_QUERY_DATA, SET_EVENT_ADD_ON_TICKETS_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_COUPONS_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_COUPON_REGISTRATIONS_QUERY_DATA, SET_EVENT_CO_HOSTS_QUERY_DATA, SET_EVENT_EMAIL_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_PURCHASE_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_REGISTRATIONS_QUERY_DATA, SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA, SET_EVENT_REGISTRATION_COUNTS_QUERY_DATA, SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA, SET_EVENT_REGISTRATION_PAYMENTS_QUERY_DATA, SET_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_REGISTRATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TICKETS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SECTIONS_QUERY_DATA, SET_EVENT_SECTION_ADDONS_QUERY_DATA, SET_EVENT_SECTION_QUERY_DATA, SET_EVENT_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SECTION_TICKETS_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_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_TICKETS_QUERY_DATA, SET_EVENT_TICKET_ADD_ONS_QUERY_DATA, SET_EVENT_TICKET_COUPONS_QUERY_DATA, SET_EVENT_TICKET_PURCHASES_QUERY_DATA, SET_EVENT_TICKET_QUERY_DATA, SET_EVENT_TICKET_TIERS_QUERY_DATA, SET_EVENT_TICKET_TRANSLATIONS_QUERY_DATA, SET_EVENT_TICKET_TRANSLATION_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_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_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_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_MEMBERSHIP_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_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PURCHASES_QUERY_DATA, SET_PURCHASE_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_PARENTS_QUERY_DATA, SET_REPORT_PARENT_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_SEARCH_ORGANIZATION_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_TIERS_QUERY_DATA, SET_TIER_ACCOUNTS_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 SearchField, SearchOrganization, SelectEventRegistrationPurchaseReservation, type SelectEventRegistrationPurchaseReservationParams, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, type Series, type SeriesCreateInputs, type SeriesUpdateInputs, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StreamInput, type StreamInputConfig, type StreamInputCreateInputs, type StreamInputDetails, type StreamInputOutput, type StreamInputOutputCreateInputs, type StreamInputOutputUpdateInputs, type StreamInputUpdateInputs, type StreamOutputCreateInputs, type Subscription, type SubscriptionCreateInputs, type SubscriptionPayment, type SubscriptionProduct, type SubscriptionProductCreateInputs, type SubscriptionProductPrice, type SubscriptionProductPriceCreateInputs, SubscriptionProductPriceInterval, SubscriptionProductPriceType, type SubscriptionProductPriceUpdateInputs, type SubscriptionProductUpdateInputs, SubscriptionStatus, type SubscriptionUpdateInputs, type SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, SupportTicketType, type SupportTicketUpdateInputs, SwitchImage, type SwitchImageParams, TIERS_QUERY_KEY, TIER_ACCOUNTS_QUERY_KEY, TIER_QUERY_KEY, TIER_SUBSCRIBERS_QUERY_KEY, type TableChartSummaryData, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, ThreadAccessLevel, type ThreadCreateInputs, type ThreadUpdateInputs, TicketEventAccessLevel, TicketVisibility, type Tier, type TierCreateInputs, type TierUpdateInputs, ToggleOrganizationPaymentIntegration, type ToggleOrganizationPaymentIntegrationParams, type Transfer, TransferEventRegistrationPurchase, type TransferEventRegistrationPurchaseParams, type TransferLog, TransformPrice, type TriggerCreateInputs, type TriggerUpdateInputs, UNAPPROVED_EVENTS_QUERY_KEY, UpdateAccount, UpdateAccountCognitoUserPassword, type UpdateAccountCognitoUserPasswordParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, type UpdateChannelContentParams, 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, UpdateEventCheckinCode, type UpdateEventCheckinCodeParams, UpdateEventCoupon, type UpdateEventCouponParams, UpdateEventEmail, type UpdateEventEmailParams, UpdateEventFaqSection, type UpdateEventFaqSectionParams, UpdateEventFaqSectionQuestion, type UpdateEventFaqSectionQuestionParams, UpdateEventFaqSectionQuestionTranslation, type UpdateEventFaqSectionQuestionTranslationParams, UpdateEventFaqSectionTranslation, type UpdateEventFaqSectionTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionSearchValue, type UpdateEventQuestionSearchValueParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistration, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, type UpdateEventRegistrationParams, UpdateEventRegistrationPurchase, type UpdateEventRegistrationPurchaseParams, UpdateEventRegistrationPurchaseResponse, type UpdateEventRegistrationPurchaseResponseParams, UpdateEventRegistrationPurchaseResponses, type UpdateEventRegistrationPurchaseResponsesParams, UpdateEventReservationSection, UpdateEventReservationSectionLocation, type UpdateEventReservationSectionLocationParams, UpdateEventReservationSectionLocationTranslation, type UpdateEventReservationSectionLocationTranslationParams, type UpdateEventReservationSectionParams, UpdateEventReservationSectionTranslation, type UpdateEventReservationSectionTranslationParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, type UpdateEventSessionParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, UpdateEventTicket, type UpdateEventTicketParams, UpdateEventTicketTranslation, type UpdateEventTicketTranslationParams, 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, UpdateInterest, type UpdateInterestParams, UpdateInvoice, UpdateInvoiceLineItem, type UpdateInvoiceLineItemParams, type UpdateInvoiceParams, UpdateLevel, type UpdateLevelParams, UpdateLevelTranslation, type UpdateLevelTranslationParams, UpdateOrganization, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, 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, UpdateTier, type UpdateTierParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, type User, type UserCreateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_QUERY_KEY, type Video, VideoSource, VideoStatus, type VideoUpdateInputs, isUUID, setFirstPageData, useAddAccountDelegate, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddActivityInterest, useAddChannelContentGuest, useAddChannelSubscriber, useAddEventAddOnTicket, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventPageImage, useAddEventQuestionChoiceSubQuestion, useAddEventRegistrationPurchaseAddOn, useAddEventReservationSectionTicket, useAddEventReservationSectionTier, useAddEventSectionAddOn, useAddEventSectionQuestion, useAddEventSectionTicket, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTicketAddOn, useAddEventTicketTier, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddOrganizationUser, useAddSeriesEvent, useAddSubscriptionProductTier, useAddTierAccount, useApplyEventRegistrationCoupon, useApproveEvent, useCancelEventRegistrationPurchaseTransfer, useCancelSubscription, useConfirmAccountCognitoUser, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAdvertisement, useCreateAnnouncement, useCreateBenefit, useCreateBenefitTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventCoupon, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionSearchValues, useCreateEventQuestionTranslation, useCreateEventRegistration, useCreateEventRegistrationBypass, useCreateEventRegistrationPurchase, useCreateEventReservationSection, useCreateEventReservationSectionLocation, useCreateEventReservationSectionLocationTranslation, useCreateEventReservationSectionTranslation, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventTicket, useCreateEventTicketTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateOrganizationPageTranslation, useCreateOrganizationPaymentIntegration, useCreateOrganizationTeamMember, useCreateReport, useCreateSeries, useCreateStreamInput, useCreateStreamInputOutput, useCreateSubscription, useCreateSubscriptionProduct, useCreateSubscriptionProductPrice, useCreateSupportTicket, useCreateSupportTicketNote, useCreateTier, useDeleteAccount, useDeleteActivity, useDeleteAdvertisement, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventCoupon, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionSearchValue, useDeleteEventQuestionSearchValues, useDeleteEventQuestionTranslation, useDeleteEventRegistration, useDeleteEventRegistrationBypass, useDeleteEventRegistrationPurchase, useDeleteEventReservationSection, useDeleteEventReservationSectionLocation, useDeleteEventReservationSectionLocationTranslation, useDeleteEventReservationSectionTranslation, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventTicket, useDeleteEventTicketTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupTranslation, useDeleteImage, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteManyImages, useDeleteManyVideos, useDeleteOrganizationPageTranslation, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteReport, useDeleteSeries, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSubscriptionProduct, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteTier, useDeleteVideo, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountCognitoUser, useGetAccountCognitoUsers, useGetAccountComments, useGetAccountDelegateOf, useGetAccountDelegates, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountLikes, useGetAccountRegistrations, useGetAccountReshares, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityInterests, useGetActivityLikes, useGetActivityReshares, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAnnouncement, useGetAnnouncementEmailReceipts, useGetAnnouncements, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuests, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccountRegistration, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPurchases, useGetEventAddOnTickets, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponRegistrations, useGetEventCoupons, useGetEventEmail, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventOnSite, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPurchase, useGetEventPurchases, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSearchValue, useGetEventQuestionSearchValues, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistration, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventRegistrationCounts, useGetEventRegistrationCoupons, useGetEventRegistrationPayment, useGetEventRegistrationPayments, useGetEventRegistrationPurchase, useGetEventRegistrationPurchaseAddOns, useGetEventRegistrationPurchaseResponse, useGetEventRegistrationPurchaseResponseChanges, useGetEventRegistrationPurchaseResponses, useGetEventRegistrationPurchaseSections, useGetEventRegistrationPurchases, useGetEventRegistrationTransferLogs, useGetEventRegistrations, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionQuestions, useGetEventSectionTickets, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccounts, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventTicket, useGetEventTicketAddOns, useGetEventTicketCoupons, useGetEventTicketPurchases, useGetEventTicketTiers, useGetEventTicketTranslation, useGetEventTicketTranslations, useGetEventTickets, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedEvents, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImportItems, useGetImports, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoicePayment, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetOrganization, useGetOrganizationMembership, useGetOrganizationPage, useGetOrganizationPageTranslation, useGetOrganizationPageTranslations, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationPaymentLink, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationTrigger, useGetOrganizationUsers, useGetPayment, useGetPayments, useGetPurchase, useGetPurchases, useGetReport, useGetReportParent, useGetReportParents, useGetReports, useGetReservationSection, useGetReservationSectionLocation, useGetReservationSectionLocationTranslation, useGetReservationSectionLocationTranslations, useGetReservationSectionLocations, useGetReservationSectionTickets, useGetReservationSectionTiers, useGetReservationSectionTranslation, useGetReservationSectionTranslations, useGetReservationSections, useGetSelf, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetSubscription, useGetSubscriptionPayments, useGetSubscriptionProduct, useGetSubscriptionProductPrice, useGetSubscriptionProductPrices, useGetSubscriptionProductSubscriptions, useGetSubscriptionProductTiers, useGetSubscriptionProducts, useGetSubscriptions, useGetSupportTicket, useGetSupportTickets, useGetTier, useGetTierAccounts, useGetTierSubscribers, useGetTiers, useGetUnapprovedEvents, useGetVideo, useGetVideos, useImpersonateAccount, useRefundEventRegistrationPayment, useRemoveAccountDelegate, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveActivityInterest, useRemoveChannelContentGuest, useRemoveChannelSubscriber, useRemoveEventAddOnTicket, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventPageImage, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventRegistrationCoupon, useRemoveEventRegistrationPurchaseAddOn, useRemoveEventReservationSectionTicket, useRemoveEventReservationSectionTier, useRemoveEventSectionAddOn, useRemoveEventSectionQuestion, useRemoveEventSectionTicket, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTicketAddOn, useRemoveEventTicketTier, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveSeriesEvent, useRemoveSubscriptionProductTier, useRemoveTierAccount, useReorderEventFaqSectionQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useResendEventRegistrationConfirmationEmail, useSearchOrganization, useSelectEventRegistrationPurchaseReservation, useSelfLeaveOrganization, useSwitchImage, useToggleOrganizationPaymentIntegration, useTransferEventRegistrationPurchase, useUpdateAccount, useUpdateAccountCognitoUserPassword, useUpdateActivity, useUpdateAdvertisement, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionSearchValue, useUpdateEventQuestionTranslation, useUpdateEventRegistration, useUpdateEventRegistrationBypass, useUpdateEventRegistrationPurchase, useUpdateEventRegistrationPurchaseResponse, useUpdateEventRegistrationPurchaseResponses, useUpdateEventReservationSection, useUpdateEventReservationSectionLocation, useUpdateEventReservationSectionLocationTranslation, useUpdateEventReservationSectionTranslation, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventTicket, useUpdateEventTicketTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateOrganization, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateTier, useUpdateVideo, useUploadFile };
16062
+ export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_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_LIKES_QUERY_KEY, ACCOUNT_QUERY_KEY, ACCOUNT_REGISTRATIONS_QUERY_KEY, ACCOUNT_RESHARES_QUERY_KEY, ACCOUNT_TIERS_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_INTERESTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ACTIVITY_RESHARES_QUERY_KEY, ADVERTISEMENTS_QUERY_KEY, ADVERTISEMENT_CLICKS_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, ADVERTISEMENT_VIEWS_QUERY_KEY, ANNOUNCEMENTS_QUERY_KEY, ANNOUNCEMENT_EMAILS_QUERY_KEY, ANNOUNCEMENT_QUERY_KEY, type APILog, API_LOGS_QUERY_KEY, API_LOG_QUERY_KEY, type Account, 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, AddChannelContentGuest, type AddChannelContentGuestParams, AddChannelSubscriber, type AddChannelsubscriberParams, AddEventAddOnTicket, type AddEventAddOnTicketParams, AddEventAddOnTier, type AddEventAddOnTierParams, AddEventBenefit, type AddEventBenefitParams, AddEventCoHost, type AddEventCoHostParams, AddEventPageImage, type AddEventPageImageParams, AddEventQuestionChoiceSubQuestion, type AddEventQuestionChoiceSubQuestionParams, AddEventRegistrationPurchaseAddOn, type AddEventRegistrationPurchaseAddOnParams, AddEventReservationSectionTicket, type AddEventReservationSectionTicketParams, AddEventReservationSectionTier, type AddEventReservationSectionTierParams, AddEventSectionAddOn, type AddEventSectionAddOnParams, AddEventSectionQuestion, type AddEventSectionQuestionParams, AddEventSectionTicket, type AddEventSectionTicketParams, AddEventSectionTier, type AddEventSectionTierParams, AddEventSessionAccount, type AddEventSessionAccountParams, AddEventSessionSpeaker, type AddEventSessionSpeakerParams, AddEventSessionSponsor, type AddEventSessionSponsorParams, AddEventSessionTrack, type AddEventSessionTrackParams, AddEventSpeakerSession, type AddEventSpeakerSessionParams, AddEventSponsorAccount, type AddEventSponsorAccountParams, AddEventTicketAddOn, type AddEventTicketAddOnParams, AddEventTicketTier, type AddEventTicketTierParams, AddEventTrackSession, type AddEventTrackSessionParams, AddEventTrackSponsor, type AddEventTrackSponsorParams, AddGroupEvent, type AddGroupEventParams, AddGroupInterest, type AddGroupInterestParams, AddGroupMember, type AddGroupMemberParams, AddGroupModerator, type AddGroupModeratorParams, AddGroupSponsor, type AddGroupSponsorParams, AddLevelAccount, type AddLevelAccountParams, AddOrganizationUser, type AddOrganizationUserParams, AddSeriesEvent, type AddSeriesEventParams, AddSubscriptionProductTier, type AddSubscriptionProductTierParams, AddTierAccount, type AddTierAccountParams, type AdminApiParams, type Advertisement, type AdvertisementClick, type AdvertisementCreateInputs, AdvertisementType, type AdvertisementUpdateInputs, type AdvertisementView, type Announcement, type AnnouncementCreateInputs, AppendInfiniteQuery, ApplyEventRegistrationCoupon, type ApplyEventRegistrationCouponParams, ApproveEvent, type ApproveEventParams, BENEFITS_QUERY_KEY, BENEFIT_CLICKS_QUERY_KEY, BENEFIT_QUERY_KEY, BENEFIT_TRANSLATIONS_QUERY_KEY, BENEFIT_TRANSLATION_QUERY_KEY, BadgeFieldTransformation, BadgeFieldType, type BarChartSummaryData, type BaseAccount, type BaseActivationCompletion, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChannel, type BaseChannelContent, type BaseChannelContentGuest, type BaseChannelSubscriber, type BaseCoupon, type BaseEmailReceipt, type BaseEvent, type BaseEventActivation, type BaseEventAddOn, type BaseEventEmail, type BaseEventOnSite, type BaseEventOnSiteBadgeField, type BaseEventPage, type BaseEventReservationSection, type BaseEventReservationSectionLocation, type BaseEventSession, type BaseEventSpeaker, type BaseEventTicket, type BaseEventTrack, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseImport, type BaseImportItem, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLevel, type BaseLike, type BaseLinkPreview, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistration, type BaseRegistrationBypass, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionChoiceSubQuestion, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionResponseChange, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRegistrationSectionQuestion, type BaseRegistrationStatusChange, type BaseSeries, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionPayment, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTier, type BaseTransfer, type BaseTransferLog, type BaseUser, type BaseVideo, type Benefit, type BenefitClick, type BenefitCreateInputs, type BenefitTranslation, type BenefitTranslationUpdateInputs, type BenefitUpdateInputs, CHANNELS_QUERY_KEY, CHANNEL_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_GUEST_QUERY_KEY, CHANNEL_CONTENT_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, CacheIndividualQueries, CancelEventRegistrationPurchaseTransfer, type CancelEventRegistrationPurchaseTransferParams, CancelSubscription, type CancelSubscriptionParams, type Channel, type ChannelCollectionCreateInputs, type ChannelCollectionTranslationUpdateInputs, type ChannelCollectionUpdateInputs, type ChannelContent, type ChannelContentCreateInputs, type ChannelContentGuestCreateInputs, type ChannelContentGuestTranslationUpdateInputs, type ChannelContentGuestUpdateInputs, type ChannelContentTranslation, type ChannelContentTranslationUpdateInputs, type ChannelContentUpdateInputs, type ChannelCreateInputs, ChannelFormat, type ChannelSubscriberUpdateInputs, type ChannelTranslation, type ChannelTranslationUpdateInputs, type ChannelUpdateInputs, type CognitoUser, type CognitoUserStatus, ConfirmAccountCognitoUser, type ConfirmAccountCognitoUserParams, type ConnectedXMMutationOptions, ConnectedXMProvider, type ConnectedXMResponse, ContentGuestType, ContentStatus, ContentType, type CountChartSummaryData, type Coupon, CreateAccount, type CreateAccountParams, CreateAdvertisement, type CreateAdvertisementParams, CreateAnnouncement, type CreateAnnouncementParams, CreateBenefit, type CreateBenefitParams, CreateBenefitTranslation, type CreateBenefitTranslationParams, CreateChannel, CreateChannelContent, 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, CreateEventCoupon, type CreateEventCouponParams, CreateEventFaqSection, type CreateEventFaqSectionParams, CreateEventFaqSectionQuestion, type CreateEventFaqSectionQuestionParams, CreateEventFaqSectionQuestionTranslation, type CreateEventFaqSectionQuestionTranslationParams, CreateEventFaqSectionTranslation, type CreateEventFaqSectionTranslationParams, CreateEventPage, type CreateEventPageParams, CreateEventPageTranslation, type CreateEventPageTranslationParams, type CreateEventParams, CreateEventQuestion, CreateEventQuestionChoice, type CreateEventQuestionChoiceParams, CreateEventQuestionChoiceTranslation, type CreateEventQuestionChoiceTranslationParams, type CreateEventQuestionParams, CreateEventQuestionSearchValues, type CreateEventQuestionSearchValuesParams, CreateEventQuestionTranslation, type CreateEventQuestionTranslationParams, CreateEventRegistration, CreateEventRegistrationBypass, type CreateEventRegistrationBypassParams, type CreateEventRegistrationParams, CreateEventRegistrationPurchase, type CreateEventRegistrationPurchaseParams, CreateEventReservationSection, CreateEventReservationSectionLocation, type CreateEventReservationSectionLocationParams, CreateEventReservationSectionLocationTranslation, type CreateEventReservationSectionLocationTranslationParams, type CreateEventReservationSectionParams, CreateEventReservationSectionTranslation, type CreateEventReservationSectionTranslationParams, CreateEventSection, type CreateEventSectionParams, CreateEventSectionTranslation, type CreateEventSectionTranslationParams, CreateEventSession, type CreateEventSessionParams, CreateEventSessionTranslation, type CreateEventSessionTranslationParams, CreateEventSpeaker, type CreateEventSpeakerParams, CreateEventSpeakerTranslation, type CreateEventSpeakerTranslationParams, CreateEventTicket, type CreateEventTicketParams, CreateEventTicketTranslation, type CreateEventTicketTranslationParams, CreateEventTrack, type CreateEventTrackParams, CreateEventTrackTranslation, type CreateEventTrackTranslationParams, CreateEventTranslation, type CreateEventTranslationParams, CreateGroup, type CreateGroupParams, CreateGroupTranslation, type CreateGroupTranslationParams, CreateImage, type CreateImageParams, CreateImport, type CreateImportParams, 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, CreateSeries, type CreateSeriesParams, CreateStreamInput, CreateStreamInputOutput, type CreateStreamInputOutputParams, type CreateStreamInputParams, CreateSubscription, type CreateSubscriptionParams, CreateSubscriptionProduct, type CreateSubscriptionProductParams, CreateSubscriptionProductPrice, type CreateSubscriptionProductPriceParams, CreateSupportTicket, CreateSupportTicketNote, type CreateSupportTicketNoteParams, type CreateSupportTicketParams, CreateTier, type CreateTierParams, Currency, DelegateRole, DeleteAccount, type DeleteAccountParams, DeleteActivity, type DeleteActivityParams, DeleteAdvertisement, type DeleteAdvertisementParams, DeleteBenefit, type DeleteBenefitParams, DeleteBenefitTranslation, type DeleteBenefitTranslationParams, DeleteChannel, DeleteChannelContent, 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, DeleteEventCoupon, type DeleteEventCouponParams, DeleteEventFaqSection, type DeleteEventFaqSectionParams, DeleteEventFaqSectionQuestion, type DeleteEventFaqSectionQuestionParams, DeleteEventFaqSectionQuestionTranslation, type DeleteEventFaqSectionQuestionTranslationParams, DeleteEventFaqSectionTranslation, type DeleteEventFaqSectionTranslationParams, DeleteEventPage, type DeleteEventPageParams, DeleteEventPageTranslation, type DeleteEventPageTranslationParams, type DeleteEventParams, DeleteEventQuestion, DeleteEventQuestionChoice, type DeleteEventQuestionChoiceParams, DeleteEventQuestionChoiceTranslation, type DeleteEventQuestionChoiceTranslationParams, type DeleteEventQuestionParams, DeleteEventQuestionSearchValue, type DeleteEventQuestionSearchValueParams, DeleteEventQuestionSearchValues, type DeleteEventQuestionSearchValuesParams, DeleteEventQuestionTranslation, type DeleteEventQuestionTranslationParams, DeleteEventRegistration, DeleteEventRegistrationBypass, type DeleteEventRegistrationBypassParams, type DeleteEventRegistrationParams, DeleteEventRegistrationPurchase, type DeleteEventRegistrationPurchaseParams, DeleteEventReservationSection, DeleteEventReservationSectionLocation, type DeleteEventReservationSectionLocationParams, DeleteEventReservationSectionLocationTranslation, type DeleteEventReservationSectionLocationTranslationParams, type DeleteEventReservationSectionParams, DeleteEventReservationSectionTranslation, type DeleteEventReservationSectionTranslationParams, DeleteEventSection, type DeleteEventSectionParams, DeleteEventSectionTranslation, type DeleteEventSectionTranslationParams, DeleteEventSession, type DeleteEventSessionParams, DeleteEventSessionTranslation, type DeleteEventSessionTranslationParams, DeleteEventSpeaker, type DeleteEventSpeakerParams, DeleteEventSpeakerTranslation, type DeleteEventSpeakerTranslationParams, DeleteEventTicket, type DeleteEventTicketParams, DeleteEventTicketTranslation, type DeleteEventTicketTranslationParams, DeleteEventTrack, type DeleteEventTrackParams, DeleteEventTrackTranslation, type DeleteEventTrackTranslationParams, DeleteEventTranslation, type DeleteEventTranslationParams, DeleteFile, type DeleteFileParams, DeleteGroup, type DeleteGroupParams, DeleteGroupTranslation, type DeleteGroupTranslationParams, DeleteImage, type DeleteImageParams, DeleteInterest, type DeleteInterestParams, DeleteInvoice, DeleteInvoiceLineItem, type DeleteInvoiceLineItemParams, type DeleteInvoiceParams, DeleteLevel, type DeleteLevelParams, DeleteLevelTranslation, type DeleteLevelTranslationParams, DeleteManyImages, type DeleteManyImagesParams, DeleteManyVideos, type DeleteManyVideosParams, DeleteOrganizationPageTranslation, type DeleteOrganizationPageTranslationParams, DeleteOrganizationPaymentIntegration, type DeleteOrganizationPaymentIntegrationParams, DeleteOrganizationTeamMember, type DeleteOrganizationTeamMemberParams, DeleteOrganizationUser, type DeleteOrganizationUserParams, DeleteReport, type DeleteReportParams, DeleteSeries, type DeleteSeriesParams, DeleteStreamInput, DeleteStreamInputOutput, type DeleteStreamInputOutputParams, type DeleteStreamInputParams, DeleteSubscriptionProduct, type DeleteSubscriptionProductParams, DeleteSupportTicket, DeleteSupportTicketNote, type DeleteSupportTicketNoteParams, type DeleteSupportTicketParams, DeleteTier, type DeleteTierParams, DeleteVideo, type DeleteVideoParams, EMAIL_RECEIPTS_QUERY_KEY, EMAIL_RECEIPT_QUERY_KEY, EVENTS_QUERY_KEY, EVENT_ACCOUNT_REGISTRATION_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_PURCHASES_QUERY_KEY, EVENT_ADD_ON_QUERY_KEY, EVENT_ADD_ON_TICKETS_QUERY_KEY, EVENT_ADD_ON_TIERS_QUERY_KEY, EVENT_ADD_ON_TRANSLATIONS_QUERY_KEY, EVENT_ADD_ON_TRANSLATION_QUERY_KEY, EVENT_COUPONS_QUERY_KEY, EVENT_COUPON_QUERY_KEY, EVENT_COUPON_REGISTRATIONS_QUERY_KEY, EVENT_CO_HOSTS_QUERY_KEY, EVENT_EMAIL_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_PURCHASES_QUERY_KEY, EVENT_PURCHASE_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_REGISTRATIONS_QUERY_KEY, EVENT_REGISTRATION_BYPASS_LIST_QUERY_KEY, EVENT_REGISTRATION_BYPASS_QUERY_KEY, EVENT_REGISTRATION_COUNTS_QUERY_KEY, EVENT_REGISTRATION_COUPONS_QUERY_KEY, EVENT_REGISTRATION_PAYMENTS_QUERY_KEY, EVENT_REGISTRATION_PAYMENT_QUERY_KEY, EVENT_REGISTRATION_PURCHASES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_RESPONSE_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_KEY, EVENT_REGISTRATION_QUERY_KEY, EVENT_RESERVATION_SECTIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_KEY, EVENT_RESERVATION_SECTION_QUERY_KEY, EVENT_RESERVATION_SECTION_TICKETS_QUERY_KEY, EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_KEY, EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_KEY, EVENT_SECTIONS_QUERY_KEY, EVENT_SECTION_ADDONS_QUERY_KEY, EVENT_SECTION_QUERY_KEY, EVENT_SECTION_QUESTIONS_QUERY_KEY, EVENT_SECTION_TICKETS_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_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_TICKETS_QUERY_KEY, EVENT_TICKET_ADD_ONS_QUERY_KEY, EVENT_TICKET_COUPONS_QUERY_KEY, EVENT_TICKET_PURCHASES_QUERY_KEY, EVENT_TICKET_QUERY_KEY, EVENT_TICKET_TIERS_QUERY_KEY, EVENT_TICKET_TRANSLATIONS_QUERY_KEY, EVENT_TICKET_TRANSLATION_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 EventBadgeFieldUpdateInputs, type EventCouponCreateInputs, type EventCouponUpdateInputs, type EventCreateInputs, type EventEmail, EventEmailType, type EventEmailUpdateInputs, type EventFaqSectionCreateInputs, type EventFaqSectionQuestionCreateInputs, type EventFaqSectionQuestionTranslationUpdateInputs, type EventFaqSectionQuestionUpdateInputs, type EventFaqSectionTranslationUpdateInputs, type EventFaqSectionUpdateInputs, type EventListing, type EventOnSite, type EventOnSiteBadgeField, type EventPage, type EventPageCreateInputs, type EventPageTranslation, type EventPageTranslationUpdateInputs, type EventPageUpdateInputs, type EventPurchaseCreateInputs, type EventPurchaseUpdateInputs, type EventQuestionChoiceCreateInputs, type EventQuestionChoiceTranslationUpdateInputs, type EventQuestionChoiceUpdateInputs, type EventQuestionCreateInputs, type EventQuestionSearchInputs, type EventQuestionSearchValueUpdateInputs, type EventQuestionTranslationUpdateInputs, type EventQuestionUpdateInputs, type EventRegistrationBypassCreateInputs, type EventRegistrationBypassUpdateInputs, type EventRegistrationUpdateInputs, type EventReservationSection, type EventReservationSectionCreateInputs, type EventReservationSectionLocation, type EventReservationSectionLocationCreateInputs, type EventReservationSectionLocationTranslation, type EventReservationSectionLocationTranslationUpdateInputs, type EventReservationSectionLocationUpdateInputs, type EventReservationSectionTranslation, type EventReservationSectionTranslationUpdateInputs, type EventReservationSectionUpdateInputs, type EventReservationSelectInputs, type EventSectionCreateInputs, type EventSectionTranslationUpdateInputs, type EventSectionUpdateInputs, type EventSession, type EventSessionCreateInputs, type EventSessionTranslation, type EventSessionTranslationUpdateInputs, type EventSessionUpdateInputs, EventSource, type EventSpeaker, type EventSpeakerCreateInputs, type EventSpeakerTranslation, type EventSpeakerTranslationUpdateInputs, type EventSpeakerUpdateInputs, type EventTicket, type EventTicketCreateInputs, type EventTicketTranslation, type EventTicketTranslationUpdateInputs, type EventTicketUpdateInputs, type EventTrack, type EventTrackCreateInputs, type EventTrackTranslation, type EventTrackTranslationUpdateInputs, type EventTrackUpdateInputs, type EventTranslation, type EventTranslationUpdateInputs, EventType, type EventUpdateInputs, ExportStatus, 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, GetAccountCognitoUser, GetAccountCognitoUsers, GetAccountComments, GetAccountDelegateOf, GetAccountDelegates, GetAccountEvents, GetAccountFollowers, GetAccountFollowing, GetAccountGroups, GetAccountInterests, GetAccountLikes, GetAccountRegistrations, GetAccountReshares, GetAccountTiers, GetAccounts, GetActivities, GetActivity, GetActivityComments, GetActivityInterests, GetActivityLikes, GetActivityReshares, GetAdminAPI, GetAdvertisement, GetAdvertisementClicks, GetAdvertisementViews, GetAdvertisements, GetAnnouncement, GetAnnouncementEmailReceipts, GetAnnouncements, GetBaseInfiniteQueryKeys, GetBenefit, GetBenefitClicks, GetBenefitTranslation, GetBenefitTranslations, GetBenefits, GetChannel, GetChannelActivities, GetChannelContent, GetChannelContentActivities, GetChannelContentGuest, GetChannelContentGuests, GetChannelContentTranslation, GetChannelContentTranslations, GetChannelContents, GetChannelSubscriber, GetChannelSubscribers, GetChannelTranslation, GetChannelTranslations, GetChannels, GetEmailReceipt, GetEmailReceipts, GetErrorMessage, GetEvent, GetEventAccountRegistration, GetEventActivation, GetEventActivationCompletions, GetEventActivationTranslation, GetEventActivationTranslations, GetEventActivations, GetEventActivities, GetEventAddOn, GetEventAddOnPurchases, GetEventAddOnTickets, GetEventAddOnTiers, GetEventAddOnTranslation, GetEventAddOnTranslations, GetEventAddOns, GetEventCoHosts, GetEventCoupon, GetEventCouponRegistrations, GetEventCoupons, GetEventEmail, GetEventFaqSection, GetEventFaqSectionQuestion, GetEventFaqSectionQuestionTranslation, GetEventFaqSectionQuestionTranslations, GetEventFaqSectionQuestions, GetEventFaqSectionTranslation, GetEventFaqSectionTranslations, GetEventFaqSections, GetEventOnSite, GetEventPage, GetEventPageImages, GetEventPageTranslation, GetEventPageTranslations, GetEventPages, GetEventPurchase, GetEventPurchases, GetEventQuestion, GetEventQuestionChoice, GetEventQuestionChoiceSubQuestions, GetEventQuestionChoiceTranslation, GetEventQuestionChoiceTranslations, GetEventQuestionChoices, GetEventQuestionResponses, GetEventQuestionSearchValue, GetEventQuestionSearchValues, GetEventQuestionSummaries, GetEventQuestionSummary, GetEventQuestionTranslation, GetEventQuestionTranslations, GetEventQuestions, GetEventRegistration, GetEventRegistrationBypass, GetEventRegistrationBypassList, GetEventRegistrationCounts, GetEventRegistrationCoupons, GetEventRegistrationPayment, GetEventRegistrationPayments, GetEventRegistrationPurchase, GetEventRegistrationPurchaseAddOns, GetEventRegistrationPurchaseResponse, GetEventRegistrationPurchaseResponseChanges, GetEventRegistrationPurchaseResponses, GetEventRegistrationPurchaseSections, GetEventRegistrationPurchases, GetEventRegistrationTransferLogs, GetEventRegistrations, GetEventSection, GetEventSectionAddOns, GetEventSectionQuestions, GetEventSectionTickets, GetEventSectionTiers, GetEventSectionTranslation, GetEventSectionTranslations, GetEventSections, GetEventSession, GetEventSessionAccounts, GetEventSessionSpeakers, GetEventSessionSponsors, GetEventSessionTracks, GetEventSessionTranslation, GetEventSessionTranslations, GetEventSessions, GetEventSpeaker, GetEventSpeakerSessions, GetEventSpeakerTranslation, GetEventSpeakerTranslations, GetEventSpeakers, GetEventSponsorAccounts, GetEventSponsors, GetEventTicket, GetEventTicketAddOns, GetEventTicketCoupons, GetEventTicketPurchases, GetEventTicketTiers, GetEventTicketTranslation, GetEventTicketTranslations, GetEventTickets, GetEventTrack, GetEventTrackSessions, GetEventTrackSponsors, GetEventTrackTranslation, GetEventTrackTranslations, GetEventTracks, GetEventTranslation, GetEventTranslations, GetEventZplTemplateBadgeField, GetEventZplTemplateBadgeFields, GetEvents, GetFeaturedEvents, GetFile, GetFiles, GetGroup, GetGroupActivities, GetGroupEvents, GetGroupInterests, GetGroupInvitation, GetGroupInvitations, GetGroupMembers, GetGroupModerators, GetGroupRequest, GetGroupRequests, GetGroupSponsors, GetGroupTranslation, GetGroupTranslations, GetGroups, GetImage, GetImageUsage, GetImageVariant, GetImages, GetImportItems, GetImports, GetInterest, GetInterestAccounts, GetInterestActivities, GetInterestEvents, GetInterestGroups, GetInterests, GetInvoice, GetInvoiceLineItem, GetInvoiceLineItems, GetInvoicePayment, GetInvoicePayments, GetInvoices, GetLevel, GetLevelAccounts, GetLevelTranslation, GetLevelTranslations, GetLevels, GetOrganization, GetOrganizationMembership, GetOrganizationPage, GetOrganizationPageTranslation, GetOrganizationPageTranslations, GetOrganizationPaymentIntegration, GetOrganizationPaymentIntegrations, GetOrganizationPaymentLink, GetOrganizationTeamMember, GetOrganizationTeamMembers, GetOrganizationTrigger, GetOrganizationUsers, GetPayment, GetPayments, GetPurchase, GetPurchases, GetReport, GetReportParent, GetReportParents, GetReports, GetReservationSection, GetReservationSectionLocation, GetReservationSectionLocationTranslation, GetReservationSectionLocationTranslations, GetReservationSectionLocations, GetReservationSectionTickets, GetReservationSectionTiers, GetReservationSectionTranslation, GetReservationSectionTranslations, GetReservationSections, GetSelf, GetSelfOrgMembership, GetSelfOrganizations, GetSeries, GetSeriesEvents, GetSeriesList, GetStreamInput, GetStreamInputOutput, GetStreamInputOutputs, GetStreamInputs, GetSubscription, GetSubscriptionPayments, GetSubscriptionProduct, GetSubscriptionProductPrice, GetSubscriptionProductPrices, GetSubscriptionProductSubscriptions, GetSubscriptionProductTiers, GetSubscriptionProducts, GetSubscriptions, GetSupportTicket, GetSupportTickets, GetTier, GetTierAccounts, 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, INTERESTS_QUERY_KEY, INTEREST_ACCOUNTS_QUERY_KEY, INTEREST_ACTIVITIES_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 ImportItem, ImportItemStatus, type InfiniteQueryOptions, type InfiniteQueryParams, type Integrations, type Interest, type InterestCreateInputs, type InterestUpdateInputs, type Invoice, type InvoiceCreateInputs, type InvoiceLineItem, type InvoiceLineItemCreateInputs, type InvoiceLineItemUpdateInputs, InvoiceStatus, type InvoiceUpdateInputs, LEVELS_QUERY_KEY, LEVEL_ACCOUNTS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_TRANSLATIONS_QUERY_KEY, LEVEL_TRANSLATION_QUERY_KEY, type LeadCreateInputs, type LeadUpdateInputs, type Level, type LevelCreateInputs, type LevelTranslationUpdateInputs, type LevelUpdateInputs, type Like, type LineChartSummaryData, type LinkPreview, MergeInfinitePages, type ModulePermissions, type MutationParams, type Notification, type NotificationPreferences, type NotificationPreferencesCreateInputs, type NotificationPreferencesUpdateInputs, NotificationType, ORGANIZATION_MEMBERSHIP_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, type OrganizationMembership, type OrganizationMembershipUpdateInputs, type OrganizationPageCreateInputs, type OrganizationPageTranslationUpdateInputs, type OrganizationPageUpdateInputs, type OrganizationTeamMemberCreateInputs, type OrganizationTeamMemberUpdateInputs, type OrganizationTrigger, OrganizationTriggerType, type OrganizationUpdateInputs, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, PURCHASES_QUERY_KEY, PURCHASE_QUERY_KEY, type Page, type PageTranslation, PageType, type Payment, type PaymentIntegration, type PaymentIntentPurchaseMetadataInputs, PaymentType, type PaypalActivationFormParams, type PermissionDomain, type PermissionType, type Purchase, type PushDevice, PushDeviceAppType, type PushDeviceCreateInputs, type PushDeviceUpdateInputs, PushService, type Question, REPORTS_QUERY_KEY, REPORT_PARENTS_QUERY_KEY, REPORT_PARENT_QUERY_KEY, REPORT_QUERY_KEY, RefundEventRegistrationPayment, type RefundEventRegistrationPaymentParams, type Registration, 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, RegistrationStatus, type RegistrationStatusChange, RemoveAccountDelegate, type RemoveAccountDelegateParams, RemoveAccountFollower, type RemoveAccountFollowerParams, RemoveAccountFollowing, type RemoveAccountFollowingParams, RemoveAccountGroup, type RemoveAccountGroupParams, RemoveAccountInterest, type RemoveAccountInterestParams, RemoveAccountTier, type RemoveAccountTierParams, RemoveActivityInterest, type RemoveActivityInterestParams, RemoveChannelContentGuest, type RemoveChannelContentGuestParams, RemoveChannelSubscriber, type RemoveChannelSubscriberParams, RemoveEventAddOnTicket, type RemoveEventAddOnTicketParams, RemoveEventAddOnTier, type RemoveEventAddOnTierParams, RemoveEventBenefit, type RemoveEventBenefitParams, RemoveEventCoHost, type RemoveEventCoHostParams, RemoveEventPageImage, type RemoveEventPageImageParams, RemoveEventQuestionChoiceSubQuestion, type RemoveEventQuestionChoiceSubQuestionParams, RemoveEventRegistrationCoupon, type RemoveEventRegistrationCouponParams, RemoveEventRegistrationPurchaseAddOn, type RemoveEventRegistrationPurchaseAddOnParams, RemoveEventReservationSectionTicket, type RemoveEventReservationSectionTicketParams, RemoveEventReservationSectionTier, type RemoveEventReservationSectionTierParams, RemoveEventSectionAddOn, type RemoveEventSectionAddOnParams, RemoveEventSectionQuestion, type RemoveEventSectionQuestionParams, RemoveEventSectionTicket, type RemoveEventSectionTicketParams, RemoveEventSectionTier, type RemoveEventSectionTierParams, RemoveEventSessionAccount, type RemoveEventSessionAccountParams, RemoveEventSessionSpeaker, type RemoveEventSessionSpeakerParams, RemoveEventSessionSponsor, type RemoveEventSessionSponsorParams, RemoveEventSessionTrack, type RemoveEventSessionTrackParams, RemoveEventSpeakerSession, type RemoveEventSpeakerSessionParams, RemoveEventSponsorAccount, type RemoveEventSponsorAccountParams, RemoveEventTicketAddOn, type RemoveEventTicketAddOnParams, RemoveEventTicketTier, type RemoveEventTicketTierParams, RemoveEventTrackSession, type RemoveEventTrackSessionParams, RemoveEventTrackSponsor, type RemoveEventTrackSponsorParams, RemoveGroupEvent, type RemoveGroupEventParams, RemoveGroupInterest, type RemoveGroupInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveGroupModerator, type RemoveGroupModeratorParams, RemoveGroupSponsor, type RemoveGroupSponsorParams, RemoveLevelAccount, type RemoveLevelAccountParams, RemoveSeriesEvent, type RemoveSeriesEventParams, RemoveSubscriptionProductTier, type RemoveSubscriptionProductTierParams, RemoveTierAccount, type RemoveTierAccountParams, ReorderEventFaqSectionQuestions, type ReorderEventFaqSectionQuestionsParams, ReorderEventQuestionChoices, type ReorderEventQuestionChoicesParams, ReorderEventSectionQuestions, type ReorderEventSectionQuestionsParams, type Report, type ReportCreateInputs, type ReportParent, ReportType, type ReportUpdateInputs, ResendEventRegistrationConfirmationEmail, type ResendEventRegistrationConfirmationEmailParams, SEARCH_ORGANIZATION_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_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_LIKES_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACCOUNT_REGISTRATIONS_QUERY_DATA, SET_ACCOUNT_RESHARES_QUERY_DATA, SET_ACCOUNT_TIERS_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_INTEREST_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ACTIVITY_RESHARES_QUERY_DATA, SET_ADVERTISEMENTS_QUERY_DATA, SET_ADVERTISEMENT_CLICKS_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_ADVERTISEMENT_VIEWS_QUERY_DATA, SET_ANNOUNCEMENTS_QUERY_DATA, SET_ANNOUNCEMENT_EMAILS_QUERY_DATA, SET_ANNOUNCEMENT_QUERY_DATA, SET_API_LOGS_QUERY_DATA, SET_API_LOG_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_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_EMAIL_RECEIPTS_QUERY_DATA, SET_EMAIL_RECEIPT_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACCOUNT_REGISTRATION_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_PURCHASES_QUERY_DATA, SET_EVENT_ADD_ON_QUERY_DATA, SET_EVENT_ADD_ON_TICKETS_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_COUPONS_QUERY_DATA, SET_EVENT_COUPON_QUERY_DATA, SET_EVENT_COUPON_REGISTRATIONS_QUERY_DATA, SET_EVENT_CO_HOSTS_QUERY_DATA, SET_EVENT_EMAIL_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_PURCHASE_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_REGISTRATIONS_QUERY_DATA, SET_EVENT_REGISTRATION_BYPASS_QUERY_DATA, SET_EVENT_REGISTRATION_COUNTS_QUERY_DATA, SET_EVENT_REGISTRATION_COUPONS_QUERY_DATA, SET_EVENT_REGISTRATION_PAYMENTS_QUERY_DATA, SET_EVENT_REGISTRATION_PAYMENT_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_ADD_ONS_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_CHANGES_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_RESPONSE_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_EVENT_REGISTRATION_PURCHASE_TRANSFER_LOGS_QUERY_DATA, SET_EVENT_REGISTRATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_LOCATION_TRANSLATION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TICKETS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATIONS_QUERY_DATA, SET_EVENT_RESERVATION_SECTION_TRANSLATION_QUERY_DATA, SET_EVENT_SECTIONS_QUERY_DATA, SET_EVENT_SECTION_ADDONS_QUERY_DATA, SET_EVENT_SECTION_QUERY_DATA, SET_EVENT_SECTION_QUESTIONS_QUERY_DATA, SET_EVENT_SECTION_TICKETS_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_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_TICKETS_QUERY_DATA, SET_EVENT_TICKET_ADD_ONS_QUERY_DATA, SET_EVENT_TICKET_COUPONS_QUERY_DATA, SET_EVENT_TICKET_PURCHASES_QUERY_DATA, SET_EVENT_TICKET_QUERY_DATA, SET_EVENT_TICKET_TIERS_QUERY_DATA, SET_EVENT_TICKET_TRANSLATIONS_QUERY_DATA, SET_EVENT_TICKET_TRANSLATION_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_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_INTERESTS_QUERY_DATA, SET_INTEREST_ACCOUNTS_QUERY_DATA, SET_INTEREST_ACTIVITIES_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_MEMBERSHIP_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_PAYMENTS_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PURCHASES_QUERY_DATA, SET_PURCHASE_QUERY_DATA, SET_REPORTS_QUERY_DATA, SET_REPORT_PARENTS_QUERY_DATA, SET_REPORT_PARENT_QUERY_DATA, SET_REPORT_QUERY_DATA, SET_SEARCH_ORGANIZATION_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_TIERS_QUERY_DATA, SET_TIER_ACCOUNTS_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 SearchField, SearchOrganization, SelectEventRegistrationPurchaseReservation, type SelectEventRegistrationPurchaseReservationParams, type Self, SelfLeaveOrganization, type SelfLeaveOrganizationParams, type Series, type SeriesCreateInputs, type SeriesUpdateInputs, type SingleQueryOptions, type SingleQueryParams, type SponsorshipLevelTranslation, type StreamInput, type StreamInputConfig, type StreamInputCreateInputs, type StreamInputDetails, type StreamInputOutput, type StreamInputOutputCreateInputs, type StreamInputOutputUpdateInputs, type StreamInputUpdateInputs, type StreamOutputCreateInputs, type Subscription, type SubscriptionCreateInputs, type SubscriptionPayment, type SubscriptionProduct, type SubscriptionProductCreateInputs, type SubscriptionProductPrice, type SubscriptionProductPriceCreateInputs, SubscriptionProductPriceInterval, SubscriptionProductPriceType, type SubscriptionProductPriceUpdateInputs, type SubscriptionProductUpdateInputs, SubscriptionStatus, type SubscriptionUpdateInputs, type SummaryData, type SupportTicket, type SupportTicketCreateInputs, type SupportTicketNote, SupportTicketType, type SupportTicketUpdateInputs, SwitchImage, type SwitchImageParams, TIERS_QUERY_KEY, TIER_ACCOUNTS_QUERY_KEY, TIER_QUERY_KEY, TIER_SUBSCRIBERS_QUERY_KEY, type TableChartSummaryData, type TeamCreateInputs, type TeamMember, type TeamUpdateInputs, ThreadAccessLevel, type ThreadCreateInputs, type ThreadUpdateInputs, TicketEventAccessLevel, TicketVisibility, type Tier, type TierCreateInputs, type TierUpdateInputs, ToggleOrganizationPaymentIntegration, type ToggleOrganizationPaymentIntegrationParams, type Transfer, TransferEventRegistrationPurchase, type TransferEventRegistrationPurchaseParams, type TransferLog, TransformPrice, type TriggerCreateInputs, type TriggerUpdateInputs, UNAPPROVED_EVENTS_QUERY_KEY, UpdateAccount, UpdateAccountCognitoUserPassword, type UpdateAccountCognitoUserPasswordParams, type UpdateAccountParams, UpdateActivity, type UpdateActivityParams, UpdateAdvertisement, type UpdateAdvertisementParams, UpdateBenefit, type UpdateBenefitParams, UpdateBenefitTranslation, type UpdateBenefitTranslationParams, UpdateChannel, UpdateChannelContent, UpdateChannelContentGuest, type UpdateChannelContentGuestParams, type UpdateChannelContentParams, 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, UpdateEventCheckinCode, type UpdateEventCheckinCodeParams, UpdateEventCoupon, type UpdateEventCouponParams, UpdateEventEmail, type UpdateEventEmailParams, UpdateEventFaqSection, type UpdateEventFaqSectionParams, UpdateEventFaqSectionQuestion, type UpdateEventFaqSectionQuestionParams, UpdateEventFaqSectionQuestionTranslation, type UpdateEventFaqSectionQuestionTranslationParams, UpdateEventFaqSectionTranslation, type UpdateEventFaqSectionTranslationParams, UpdateEventPage, type UpdateEventPageParams, UpdateEventPageTranslation, type UpdateEventPageTranslationParams, type UpdateEventParams, UpdateEventQuestion, UpdateEventQuestionChoice, type UpdateEventQuestionChoiceParams, UpdateEventQuestionChoiceSubQuestion, type UpdateEventQuestionChoiceSubQuestionParams, UpdateEventQuestionChoiceTranslation, type UpdateEventQuestionChoiceTranslationParams, type UpdateEventQuestionParams, UpdateEventQuestionSearchValue, type UpdateEventQuestionSearchValueParams, UpdateEventQuestionTranslation, type UpdateEventQuestionTranslationParams, UpdateEventRegistration, UpdateEventRegistrationBypass, type UpdateEventRegistrationBypassParams, type UpdateEventRegistrationParams, UpdateEventRegistrationPurchase, type UpdateEventRegistrationPurchaseParams, UpdateEventRegistrationPurchaseResponse, type UpdateEventRegistrationPurchaseResponseParams, UpdateEventRegistrationPurchaseResponses, type UpdateEventRegistrationPurchaseResponsesParams, UpdateEventReservationSection, UpdateEventReservationSectionLocation, type UpdateEventReservationSectionLocationParams, UpdateEventReservationSectionLocationTranslation, type UpdateEventReservationSectionLocationTranslationParams, type UpdateEventReservationSectionParams, UpdateEventReservationSectionTranslation, type UpdateEventReservationSectionTranslationParams, UpdateEventSection, type UpdateEventSectionParams, UpdateEventSectionQuestion, type UpdateEventSectionQuestionParams, UpdateEventSectionTranslation, type UpdateEventSectionTranslationParams, UpdateEventSession, type UpdateEventSessionParams, UpdateEventSessionTranslation, type UpdateEventSessionTranslationParams, UpdateEventSpeaker, type UpdateEventSpeakerParams, UpdateEventSpeakerTranslation, type UpdateEventSpeakerTranslationParams, UpdateEventTicket, type UpdateEventTicketParams, UpdateEventTicketTranslation, type UpdateEventTicketTranslationParams, 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, UpdateInterest, type UpdateInterestParams, UpdateInvoice, UpdateInvoiceLineItem, type UpdateInvoiceLineItemParams, type UpdateInvoiceParams, UpdateLevel, type UpdateLevelParams, UpdateLevelTranslation, type UpdateLevelTranslationParams, UpdateOrganization, UpdateOrganizationIntegrations, type UpdateOrganizationIntegrationsParams, UpdateOrganizationMembership, type UpdateOrganizationMembershipParams, 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, UpdateTier, type UpdateTierParams, UpdateVideo, type UpdateVideoParams, UploadFile, type UploadFileParams, type User, type UserCreateInputs, UserRole, type UserUpdateInputs, VIDEOS_QUERY_KEY, VIDEO_QUERY_KEY, type Video, VideoSource, VideoStatus, type VideoUpdateInputs, isUUID, setFirstPageData, useAddAccountDelegate, useAddAccountFollower, useAddAccountFollowing, useAddAccountGroup, useAddAccountInterest, useAddAccountTier, useAddActivityInterest, useAddChannelContentGuest, useAddChannelSubscriber, useAddEventAddOnTicket, useAddEventAddOnTier, useAddEventBenefit, useAddEventCoHost, useAddEventPageImage, useAddEventQuestionChoiceSubQuestion, useAddEventRegistrationPurchaseAddOn, useAddEventReservationSectionTicket, useAddEventReservationSectionTier, useAddEventSectionAddOn, useAddEventSectionQuestion, useAddEventSectionTicket, useAddEventSectionTier, useAddEventSessionAccount, useAddEventSessionSpeaker, useAddEventSessionSponsor, useAddEventSessionTrack, useAddEventSpeakerSession, useAddEventSponsorAccount, useAddEventTicketAddOn, useAddEventTicketTier, useAddEventTrackSession, useAddEventTrackSponsor, useAddGroupEvent, useAddGroupInterest, useAddGroupMember, useAddGroupModerator, useAddGroupSponsor, useAddLevelAccount, useAddOrganizationUser, useAddSeriesEvent, useAddSubscriptionProductTier, useAddTierAccount, useApplyEventRegistrationCoupon, useApproveEvent, useCancelEventRegistrationPurchaseTransfer, useCancelSubscription, useConfirmAccountCognitoUser, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateAccount, useCreateAdvertisement, useCreateAnnouncement, useCreateBenefit, useCreateBenefitTranslation, useCreateChannel, useCreateChannelContent, useCreateChannelContentTranslation, useCreateChannelTranslation, useCreateEvent, useCreateEventActivation, useCreateEventActivationCompletion, useCreateEventActivationTranslation, useCreateEventAddOn, useCreateEventAddOnTranslation, useCreateEventCoupon, useCreateEventFaqSection, useCreateEventFaqSectionQuestion, useCreateEventFaqSectionQuestionTranslation, useCreateEventFaqSectionTranslation, useCreateEventPage, useCreateEventPageTranslation, useCreateEventQuestion, useCreateEventQuestionChoice, useCreateEventQuestionChoiceTranslation, useCreateEventQuestionSearchValues, useCreateEventQuestionTranslation, useCreateEventRegistration, useCreateEventRegistrationBypass, useCreateEventRegistrationPurchase, useCreateEventReservationSection, useCreateEventReservationSectionLocation, useCreateEventReservationSectionLocationTranslation, useCreateEventReservationSectionTranslation, useCreateEventSection, useCreateEventSectionTranslation, useCreateEventSession, useCreateEventSessionTranslation, useCreateEventSpeaker, useCreateEventSpeakerTranslation, useCreateEventTicket, useCreateEventTicketTranslation, useCreateEventTrack, useCreateEventTrackTranslation, useCreateEventTranslation, useCreateGroup, useCreateGroupTranslation, useCreateImage, useCreateImport, useCreateInterest, useCreateInvoice, useCreateInvoiceLineItem, useCreateLevel, useCreateLevelTranslation, useCreateOrganizationPageTranslation, useCreateOrganizationPaymentIntegration, useCreateOrganizationTeamMember, useCreateReport, useCreateSeries, useCreateStreamInput, useCreateStreamInputOutput, useCreateSubscription, useCreateSubscriptionProduct, useCreateSubscriptionProductPrice, useCreateSupportTicket, useCreateSupportTicketNote, useCreateTier, useDeleteAccount, useDeleteActivity, useDeleteAdvertisement, useDeleteBenefit, useDeleteBenefitTranslation, useDeleteChannel, useDeleteChannelContent, useDeleteChannelContentTranslation, useDeleteChannelTranslation, useDeleteEvent, useDeleteEventActivation, useDeleteEventActivationCompletion, useDeleteEventActivationTranslation, useDeleteEventAddOn, useDeleteEventAddOnTranslation, useDeleteEventCoupon, useDeleteEventFaqSection, useDeleteEventFaqSectionQuestion, useDeleteEventFaqSectionQuestionTranslation, useDeleteEventFaqSectionTranslation, useDeleteEventPage, useDeleteEventPageTranslation, useDeleteEventQuestion, useDeleteEventQuestionChoice, useDeleteEventQuestionChoiceTranslation, useDeleteEventQuestionSearchValue, useDeleteEventQuestionSearchValues, useDeleteEventQuestionTranslation, useDeleteEventRegistration, useDeleteEventRegistrationBypass, useDeleteEventRegistrationPurchase, useDeleteEventReservationSection, useDeleteEventReservationSectionLocation, useDeleteEventReservationSectionLocationTranslation, useDeleteEventReservationSectionTranslation, useDeleteEventSection, useDeleteEventSectionTranslation, useDeleteEventSession, useDeleteEventSessionTranslation, useDeleteEventSpeaker, useDeleteEventSpeakerTranslation, useDeleteEventTicket, useDeleteEventTicketTranslation, useDeleteEventTrack, useDeleteEventTrackTranslation, useDeleteEventTranslation, useDeleteFile, useDeleteGroup, useDeleteGroupTranslation, useDeleteImage, useDeleteInterest, useDeleteInvoice, useDeleteInvoiceLineItem, useDeleteLevel, useDeleteLevelTranslation, useDeleteManyImages, useDeleteManyVideos, useDeleteOrganizationPageTranslation, useDeleteOrganizationPaymentIntegration, useDeleteOrganizationTeamMember, useDeleteOrganizationUser, useDeleteReport, useDeleteSeries, useDeleteStreamInput, useDeleteStreamInputOutput, useDeleteSubscriptionProduct, useDeleteSupportTicket, useDeleteSupportTicketNote, useDeleteTier, useDeleteVideo, useGetAPILog, useGetAPILogs, useGetAcccountEmailReceipts, useGetAccount, useGetAccountActivities, useGetAccountCognitoUser, useGetAccountCognitoUsers, useGetAccountComments, useGetAccountDelegateOf, useGetAccountDelegates, useGetAccountEvents, useGetAccountFollowers, useGetAccountFollowing, useGetAccountGroups, useGetAccountInterests, useGetAccountLikes, useGetAccountRegistrations, useGetAccountReshares, useGetAccountTiers, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityInterests, useGetActivityLikes, useGetActivityReshares, useGetAdvertisement, useGetAdvertisementClicks, useGetAdvertisementViews, useGetAdvertisements, useGetAnnouncement, useGetAnnouncementEmailReceipts, useGetAnnouncements, useGetBenefit, useGetBenefitClicks, useGetBenefitTranslation, useGetBenefitTranslations, useGetBenefits, useGetChannel, useGetChannelActivities, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuest, useGetChannelContentGuests, useGetChannelContentTranslation, useGetChannelContentTranslations, useGetChannelContents, useGetChannelSubscriber, useGetChannelSubscribers, useGetChannelTranslation, useGetChannelTranslations, useGetChannels, useGetEmailReceipt, useGetEmailReceipts, useGetEvent, useGetEventAccountRegistration, useGetEventActivation, useGetEventActivationCompletions, useGetEventActivationTranslation, useGetEventActivationTranslations, useGetEventActivations, useGetEventActivities, useGetEventAddOn, useGetEventAddOnPurchases, useGetEventAddOnTickets, useGetEventAddOnTiers, useGetEventAddOnTranslation, useGetEventAddOnTranslations, useGetEventAddOns, useGetEventCoHosts, useGetEventCoupon, useGetEventCouponRegistrations, useGetEventCoupons, useGetEventEmail, useGetEventFaqSection, useGetEventFaqSectionQuestion, useGetEventFaqSectionQuestionTranslation, useGetEventFaqSectionQuestionTranslations, useGetEventFaqSectionQuestions, useGetEventFaqSectionTranslation, useGetEventFaqSectionTranslations, useGetEventFaqSections, useGetEventOnSite, useGetEventPage, useGetEventPageImages, useGetEventPageTranslation, useGetEventPageTranslations, useGetEventPages, useGetEventPurchase, useGetEventPurchases, useGetEventQuestion, useGetEventQuestionChoice, useGetEventQuestionChoiceSubQuestions, useGetEventQuestionChoiceTranslation, useGetEventQuestionChoiceTranslations, useGetEventQuestionChoices, useGetEventQuestionResponses, useGetEventQuestionSearchValue, useGetEventQuestionSearchValues, useGetEventQuestionSummaries, useGetEventQuestionSummary, useGetEventQuestionTranslation, useGetEventQuestionTranslations, useGetEventQuestions, useGetEventRegistration, useGetEventRegistrationBypass, useGetEventRegistrationBypassList, useGetEventRegistrationCounts, useGetEventRegistrationCoupons, useGetEventRegistrationPayment, useGetEventRegistrationPayments, useGetEventRegistrationPurchase, useGetEventRegistrationPurchaseAddOns, useGetEventRegistrationPurchaseResponse, useGetEventRegistrationPurchaseResponseChanges, useGetEventRegistrationPurchaseResponses, useGetEventRegistrationPurchaseSections, useGetEventRegistrationPurchases, useGetEventRegistrationTransferLogs, useGetEventRegistrations, useGetEventSection, useGetEventSectionAddOns, useGetEventSectionQuestions, useGetEventSectionTickets, useGetEventSectionTiers, useGetEventSectionTranslation, useGetEventSectionTranslations, useGetEventSections, useGetEventSession, useGetEventSessionAccounts, useGetEventSessionSpeakers, useGetEventSessionSponsors, useGetEventSessionTracks, useGetEventSessionTranslation, useGetEventSessionTranslations, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakerTranslation, useGetEventSpeakerTranslations, useGetEventSpeakers, useGetEventSponsorAccounts, useGetEventSponsors, useGetEventTicket, useGetEventTicketAddOns, useGetEventTicketCoupons, useGetEventTicketPurchases, useGetEventTicketTiers, useGetEventTicketTranslation, useGetEventTicketTranslations, useGetEventTickets, useGetEventTrack, useGetEventTrackSessions, useGetEventTrackSponsors, useGetEventTrackTranslation, useGetEventTrackTranslations, useGetEventTracks, useGetEventTranslation, useGetEventTranslations, useGetEventZplTemplateBadgeField, useGetEventZplTemplateBadgeFields, useGetEvents, useGetFeaturedEvents, useGetFile, useGetFiles, useGetGroup, useGetGroupActivities, useGetGroupEvents, useGetGroupInterests, useGetGroupInvitation, useGetGroupInvitations, useGetGroupMembers, useGetGroupModerators, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroupTranslation, useGetGroupTranslations, useGetGroups, useGetImage, useGetImageUsage, useGetImages, useGetImportItems, useGetImports, useGetInterest, useGetInterestAccounts, useGetInterestActivities, useGetInterestEvents, useGetInterestGroups, useGetInterests, useGetInvoice, useGetInvoiceLineItem, useGetInvoiceLineItems, useGetInvoicePayment, useGetInvoicePayments, useGetInvoices, useGetLevel, useGetLevelAccounts, useGetLevelTranslation, useGetLevelTranslations, useGetLevels, useGetOrganization, useGetOrganizationMembership, useGetOrganizationPage, useGetOrganizationPageTranslation, useGetOrganizationPageTranslations, useGetOrganizationPaymentIntegration, useGetOrganizationPaymentIntegrations, useGetOrganizationPaymentLink, useGetOrganizationTeamMember, useGetOrganizationTeamMembers, useGetOrganizationTrigger, useGetOrganizationUsers, useGetPayment, useGetPayments, useGetPurchase, useGetPurchases, useGetReport, useGetReportParent, useGetReportParents, useGetReports, useGetReservationSection, useGetReservationSectionLocation, useGetReservationSectionLocationTranslation, useGetReservationSectionLocationTranslations, useGetReservationSectionLocations, useGetReservationSectionTickets, useGetReservationSectionTiers, useGetReservationSectionTranslation, useGetReservationSectionTranslations, useGetReservationSections, useGetSelf, useGetSelfOrgMembership, useGetSelfOrganizations, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStreamInput, useGetStreamInputOutput, useGetStreamInputOutputs, useGetStreamInputs, useGetSubscription, useGetSubscriptionPayments, useGetSubscriptionProduct, useGetSubscriptionProductPrice, useGetSubscriptionProductPrices, useGetSubscriptionProductSubscriptions, useGetSubscriptionProductTiers, useGetSubscriptionProducts, useGetSubscriptions, useGetSupportTicket, useGetSupportTickets, useGetTier, useGetTierAccounts, useGetTierSubscribers, useGetTiers, useGetUnapprovedEvents, useGetVideo, useGetVideos, useImpersonateAccount, useRefundEventRegistrationPayment, useRemoveAccountDelegate, useRemoveAccountFollower, useRemoveAccountFollowing, useRemoveAccountGroup, useRemoveAccountInterest, useRemoveAccountTier, useRemoveActivityInterest, useRemoveChannelContentGuest, useRemoveChannelSubscriber, useRemoveEventAddOnTicket, useRemoveEventAddOnTier, useRemoveEventBenefit, useRemoveEventCoHost, useRemoveEventPageImage, useRemoveEventQuestionChoiceSubQuestion, useRemoveEventRegistrationCoupon, useRemoveEventRegistrationPurchaseAddOn, useRemoveEventReservationSectionTicket, useRemoveEventReservationSectionTier, useRemoveEventSectionAddOn, useRemoveEventSectionQuestion, useRemoveEventSectionTicket, useRemoveEventSectionTier, useRemoveEventSessionAccount, useRemoveEventSessionSpeaker, useRemoveEventSessionSponsor, useRemoveEventSessionTrack, useRemoveEventSpeakerSession, useRemoveEventSponsorAccount, useRemoveEventTicketAddOn, useRemoveEventTicketTier, useRemoveEventTrackSession, useRemoveEventTrackSponsor, useRemoveGroupEvent, useRemoveGroupInterest, useRemoveGroupMember, useRemoveGroupModerator, useRemoveGroupSponsor, useRemoveLevelAccount, useRemoveSeriesEvent, useRemoveSubscriptionProductTier, useRemoveTierAccount, useReorderEventFaqSectionQuestions, useReorderEventQuestionChoices, useReorderEventSectionQuestions, useResendEventRegistrationConfirmationEmail, useSearchOrganization, useSelectEventRegistrationPurchaseReservation, useSelfLeaveOrganization, useSwitchImage, useToggleOrganizationPaymentIntegration, useTransferEventRegistrationPurchase, useUpdateAccount, useUpdateAccountCognitoUserPassword, useUpdateActivity, useUpdateAdvertisement, useUpdateBenefit, useUpdateBenefitTranslation, useUpdateChannel, useUpdateChannelContent, useUpdateChannelContentGuest, useUpdateChannelContentTranslation, useUpdateChannelSubscriber, useUpdateChannelTranslation, useUpdateEvent, useUpdateEventActivation, useUpdateEventActivationCompletion, useUpdateEventActivationTranslation, useUpdateEventAddOn, useUpdateEventAddOnTranslation, useUpdateEventCheckinCode, useUpdateEventCoupon, useUpdateEventEmail, useUpdateEventFaqSection, useUpdateEventFaqSectionQuestion, useUpdateEventFaqSectionQuestionTranslation, useUpdateEventFaqSectionTranslation, useUpdateEventPage, useUpdateEventPageTranslation, useUpdateEventQuestion, useUpdateEventQuestionChoice, useUpdateEventQuestionChoiceSubQuestion, useUpdateEventQuestionChoiceTranslation, useUpdateEventQuestionSearchValue, useUpdateEventQuestionTranslation, useUpdateEventRegistration, useUpdateEventRegistrationBypass, useUpdateEventRegistrationPurchase, useUpdateEventRegistrationPurchaseResponse, useUpdateEventRegistrationPurchaseResponses, useUpdateEventReservationSection, useUpdateEventReservationSectionLocation, useUpdateEventReservationSectionLocationTranslation, useUpdateEventReservationSectionTranslation, useUpdateEventSection, useUpdateEventSectionQuestion, useUpdateEventSectionTranslation, useUpdateEventSession, useUpdateEventSessionTranslation, useUpdateEventSpeaker, useUpdateEventSpeakerTranslation, useUpdateEventTicket, useUpdateEventTicketTranslation, useUpdateEventTrack, useUpdateEventTrackTranslation, useUpdateEventTranslation, useUpdateEventZplTemplate, useUpdateEventZplTemplateBadgeField, useUpdateFile, useUpdateGroup, useUpdateGroupTranslation, useUpdateImage, useUpdateInterest, useUpdateInvoice, useUpdateInvoiceLineItem, useUpdateLevel, useUpdateLevelTranslation, useUpdateOrganization, useUpdateOrganizationIntegrations, useUpdateOrganizationMembership, useUpdateOrganizationPage, useUpdateOrganizationPageTranslation, useUpdateOrganizationTeamMember, useUpdateOrganizationTrigger, useUpdateReport, useUpdateSelf, useUpdateSeries, useUpdateStreamConfig, useUpdateStreamInput, useUpdateStreamInputOutput, useUpdateSubscription, useUpdateSubscriptionProduct, useUpdateSubscriptionProductPrice, useUpdateSupportTicket, useUpdateTier, useUpdateVideo, useUploadFile };