@connectedxm/admin 0.0.12 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -715,7 +715,7 @@ interface BaseEvent {
715
715
  shortDescription: string;
716
716
  eventStart: string;
717
717
  eventEnd: string;
718
- timezone: string | null;
718
+ timezone: string;
719
719
  externalUrl: string | null;
720
720
  location: string | null;
721
721
  venue: string | null;
@@ -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
  }
@@ -1670,7 +1670,6 @@ interface StreamInput extends BaseStreamInput {
1670
1670
  createdAt: string;
1671
1671
  }
1672
1672
  interface StreamInputOutput {
1673
- status: string;
1674
1673
  enabled: boolean;
1675
1674
  url: string;
1676
1675
  streamKey: string;
@@ -2004,6 +2003,10 @@ interface BaseFile {
2004
2003
  }
2005
2004
  interface File extends BaseFile {
2006
2005
  }
2006
+ interface PaypalActivationFormParams {
2007
+ clientId: string;
2008
+ clientSecret: string;
2009
+ }
2007
2010
 
2008
2011
  interface ConnectedXMClientContextState {
2009
2012
  queryClient: QueryClient;
@@ -2440,6 +2443,7 @@ interface EventCreateInputs {
2440
2443
  eventType: keyof typeof EventType;
2441
2444
  name: string;
2442
2445
  shortDescription: string;
2446
+ timezone: string;
2443
2447
  eventStart: string;
2444
2448
  eventEnd: string;
2445
2449
  featured?: boolean | null;
@@ -2447,7 +2451,6 @@ interface EventCreateInputs {
2447
2451
  slug?: string | null;
2448
2452
  internalRefId?: string | null;
2449
2453
  longDescription?: string | null;
2450
- timezone?: string;
2451
2454
  externalUrl?: string | null;
2452
2455
  imageId?: string | null;
2453
2456
  venueMapId?: string | null;
@@ -2759,6 +2762,32 @@ interface GroupMembershipUpdateInputs {
2759
2762
  eventPushNotification?: boolean | null;
2760
2763
  chatPushNotification?: boolean | null;
2761
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
+ }
2762
2791
  interface GroupTranslationUpdateInputs {
2763
2792
  name?: string | null;
2764
2793
  description?: string | null;
@@ -3037,12 +3066,20 @@ interface StreamInputCreateInputs {
3037
3066
  details?: object | null;
3038
3067
  }
3039
3068
  interface StreamInputUpdateInputs {
3040
- name: string;
3069
+ name?: string;
3041
3070
  sortOrder?: number | string | null;
3042
3071
  eventId?: string | null;
3043
3072
  sessionId?: string | null;
3044
3073
  details?: object | null;
3045
3074
  }
3075
+ interface StreamInputOutputCreateInputs {
3076
+ enabled: boolean;
3077
+ url: string;
3078
+ streamKey: string;
3079
+ }
3080
+ interface StreamInputOutputUpdateInputs {
3081
+ enabled: boolean;
3082
+ }
3046
3083
  interface StreamOutputCreateInputs {
3047
3084
  enabled: boolean;
3048
3085
  streamKey: string;
@@ -3695,49 +3732,49 @@ declare const useGetAccountReshares: (accountId?: string, params?: Omit<Infinite
3695
3732
  * @category Keys
3696
3733
  * @group Accounts
3697
3734
  */
3698
- declare const ACCOUNT_TIERS_QUERY_KEY: (accountId: string) => string[];
3735
+ declare const ACCOUNTS_QUERY_KEY: (accountType?: "account" | "team") => string[];
3699
3736
  /**
3700
3737
  * @category Setters
3701
3738
  * @group Accounts
3702
3739
  */
3703
- declare const SET_ACCOUNT_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountTiers>>) => void;
3704
- interface GetAccountTiersProps extends InfiniteQueryParams {
3705
- 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";
3706
3743
  }
3707
3744
  /**
3708
3745
  * @category Queries
3709
3746
  * @group Accounts
3710
3747
  */
3711
- 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[]>>;
3712
3749
  /**
3713
3750
  * @category Hooks
3714
3751
  * @group Accounts
3715
3752
  */
3716
- 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>>;
3717
3754
 
3718
3755
  /**
3719
3756
  * @category Keys
3720
3757
  * @group Accounts
3721
3758
  */
3722
- declare const ACCOUNTS_QUERY_KEY: (accountType?: "account" | "team") => string[];
3759
+ declare const ACCOUNT_TIERS_QUERY_KEY: (accountId: string) => string[];
3723
3760
  /**
3724
3761
  * @category Setters
3725
3762
  * @group Accounts
3726
3763
  */
3727
- declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccounts>>) => void;
3728
- interface GetAccountsProps extends InfiniteQueryParams {
3729
- 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;
3730
3767
  }
3731
3768
  /**
3732
3769
  * @category Queries
3733
3770
  * @group Accounts
3734
3771
  */
3735
- 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[]>>;
3736
3773
  /**
3737
3774
  * @category Hooks
3738
3775
  * @group Accounts
3739
3776
  */
3740
- 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>>;
3741
3778
 
3742
3779
  /**
3743
3780
  * @category Keys
@@ -3934,48 +3971,48 @@ declare const useGetAdvertisementClicks: (advertisementId?: string, params?: Omi
3934
3971
  * @category Keys
3935
3972
  * @group Advertisements
3936
3973
  */
3937
- declare const ADVERTISEMENT_VIEWS_QUERY_KEY: (advertisementId: string) => string[];
3974
+ declare const ADVERTISEMENTS_QUERY_KEY: () => string[];
3938
3975
  /**
3939
3976
  * @category Setters
3940
3977
  * @group Advertisements
3941
3978
  */
3942
- declare const SET_ADVERTISEMENT_VIEWS_QUERY_DATA: (client: any, keyParams: Parameters<typeof ADVERTISEMENT_VIEWS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAdvertisementViews>>) => void;
3943
- interface GetAdvertisementViewsProps extends InfiniteQueryParams {
3944
- 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 {
3945
3981
  }
3946
3982
  /**
3947
3983
  * @category Queries
3948
3984
  * @group Advertisements
3949
3985
  */
3950
- 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[]>>;
3951
3987
  /**
3952
3988
  * @category Hooks
3953
3989
  * @group Advertisements
3954
3990
  */
3955
- 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>>;
3956
3992
 
3957
3993
  /**
3958
3994
  * @category Keys
3959
3995
  * @group Advertisements
3960
3996
  */
3961
- declare const ADVERTISEMENTS_QUERY_KEY: () => string[];
3997
+ declare const ADVERTISEMENT_VIEWS_QUERY_KEY: (advertisementId: string) => string[];
3962
3998
  /**
3963
3999
  * @category Setters
3964
4000
  * @group Advertisements
3965
4001
  */
3966
- declare const SET_ADVERTISEMENTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ADVERTISEMENTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAdvertisements>>) => void;
3967
- 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;
3968
4005
  }
3969
4006
  /**
3970
4007
  * @category Queries
3971
4008
  * @group Advertisements
3972
4009
  */
3973
- 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[]>>;
3974
4011
  /**
3975
4012
  * @category Hooks
3976
4013
  * @group Advertisements
3977
4014
  */
3978
- 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>>;
3979
4016
 
3980
4017
  /**
3981
4018
  * @category Keys
@@ -4500,6 +4537,29 @@ declare const GetChannelContents: ({ pageParam, pageSize, orderBy, search, chann
4500
4537
  */
4501
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>>;
4502
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
+
4503
4563
  /**
4504
4564
  * @category Keys
4505
4565
  * @group Channels
@@ -4550,29 +4610,6 @@ declare const GetChannelSubscribers: ({ pageParam, pageSize, orderBy, search, ch
4550
4610
  */
4551
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>>;
4552
4612
 
4553
- /**
4554
- * @category Keys
4555
- * @group Channels
4556
- */
4557
- declare const CHANNELS_QUERY_KEY: () => string[];
4558
- /**
4559
- * @category Setters
4560
- * @group Channels
4561
- */
4562
- declare const SET_CHANNELS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof CHANNELS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetChannels>>) => void;
4563
- interface GetChannelsProps extends InfiniteQueryParams {
4564
- }
4565
- /**
4566
- * @category Queries
4567
- * @group Channels
4568
- */
4569
- declare const GetChannels: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetChannelsProps) => Promise<ConnectedXMResponse<Channel[]>>;
4570
- /**
4571
- * @category Hooks
4572
- * @group Channels
4573
- */
4574
- 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>>;
4575
-
4576
4613
  /**
4577
4614
  * @category Key
4578
4615
  * @group Emails
@@ -4851,38 +4888,37 @@ declare const useGetEventAddOnPurchases: (eventId?: string, addOnId?: string, pa
4851
4888
  * @category Keys
4852
4889
  * @group Events
4853
4890
  */
4854
- declare const EVENT_ADD_ON_TICKETS_QUERY_KEY: (eventId: string, addOnId: string) => string[];
4891
+ declare const EVENT_ADD_ONS_QUERY_KEY: (eventId: string) => string[];
4855
4892
  /**
4856
4893
  * @category Setters
4857
4894
  * @group Events
4858
4895
  */
4859
- declare const SET_EVENT_ADD_ON_TICKETS_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnTickets>>) => void;
4860
- 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 {
4861
4898
  eventId: string;
4862
- addOnId: string;
4863
4899
  }
4864
4900
  /**
4865
4901
  * @category Queries
4866
4902
  * @group Events
4867
4903
  */
4868
- 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[]>>;
4869
4905
  /**
4870
4906
  * @category Hooks
4871
4907
  * @group Events
4872
4908
  */
4873
- 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>>;
4874
4910
 
4875
4911
  /**
4876
4912
  * @category Keys
4877
4913
  * @group Events
4878
4914
  */
4879
- 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[];
4880
4916
  /**
4881
4917
  * @category Setters
4882
4918
  * @group Events
4883
4919
  */
4884
- declare const SET_EVENT_ADD_ON_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, addOnId: string], response: Awaited<ReturnType<typeof GetEventAddOnTiers>>) => void;
4885
- 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 {
4886
4922
  eventId: string;
4887
4923
  addOnId: string;
4888
4924
  }
@@ -4890,36 +4926,37 @@ interface GetEventAddOnTiersProps extends InfiniteQueryParams {
4890
4926
  * @category Queries
4891
4927
  * @group Events
4892
4928
  */
4893
- 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[]>>;
4894
4930
  /**
4895
4931
  * @category Hooks
4896
4932
  * @group Events
4897
4933
  */
4898
- 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>>;
4899
4935
 
4900
4936
  /**
4901
4937
  * @category Keys
4902
4938
  * @group Events
4903
4939
  */
4904
- declare const EVENT_ADD_ONS_QUERY_KEY: (eventId: string) => string[];
4940
+ declare const EVENT_ADD_ON_TIERS_QUERY_KEY: (eventId: string, addOnId: string) => string[];
4905
4941
  /**
4906
4942
  * @category Setters
4907
4943
  * @group Events
4908
4944
  */
4909
- declare const SET_EVENT_ADD_ONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_ADD_ONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventAddOns>>) => void;
4910
- 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 {
4911
4947
  eventId: string;
4948
+ addOnId: string;
4912
4949
  }
4913
4950
  /**
4914
4951
  * @category Queries
4915
4952
  * @group Events
4916
4953
  */
4917
- 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[]>>;
4918
4955
  /**
4919
4956
  * @category Hooks
4920
4957
  * @group Events
4921
4958
  */
4922
- 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>>;
4923
4960
 
4924
4961
  /**
4925
4962
  * @category Keys
@@ -5266,7 +5303,7 @@ declare const GetEventFaqSectionQuestions: ({ sectionId, eventId, pageParam, pag
5266
5303
  * @category Hooks
5267
5304
  * @group Events
5268
5305
  */
5269
- declare const useGetEventFaqSectionQuestionsectionQuestions: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqSectionQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Faq[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5306
+ declare const useGetEventFaqSectionQuestions: (eventId?: string, sectionId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "adminApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetEventFaqSectionQuestions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Faq[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
5270
5307
 
5271
5308
  /**
5272
5309
  * @category Keys
@@ -5649,52 +5686,52 @@ declare const useGetEventQuestionChoice: (eventId: string, questionId: string, c
5649
5686
  * @category Keys
5650
5687
  * @group Events
5651
5688
  */
5652
- 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[];
5653
5690
  /**
5654
5691
  * @category Setters
5655
5692
  * @group Events
5656
5693
  */
5657
- declare const SET_EVENT_QUESTION_CHOICE_QUESTIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, questionId: string, choiceId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoiceSubQuestions>>) => void;
5658
- 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 {
5659
5696
  eventId: string;
5660
5697
  questionId: string;
5661
- choiceId: string;
5662
5698
  }
5663
5699
  /**
5664
5700
  * @category Queries
5665
5701
  * @group Events
5666
5702
  */
5667
- 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[]>>;
5668
5704
  /**
5669
5705
  * @category Hooks
5670
5706
  * @group Events
5671
5707
  */
5672
- 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>>;
5673
5709
 
5674
5710
  /**
5675
5711
  * @category Keys
5676
5712
  * @group Events
5677
5713
  */
5678
- 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[];
5679
5715
  /**
5680
5716
  * @category Setters
5681
5717
  * @group Events
5682
5718
  */
5683
- declare const SET_EVENT_QUESTION_CHOICES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, questionId: string], response: Awaited<ReturnType<typeof GetEventQuestionChoices>>) => void;
5684
- 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 {
5685
5721
  eventId: string;
5686
5722
  questionId: string;
5723
+ choiceId: string;
5687
5724
  }
5688
5725
  /**
5689
5726
  * @category Queries
5690
5727
  * @group Events
5691
5728
  */
5692
- 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[]>>;
5693
5730
  /**
5694
5731
  * @category Hooks
5695
5732
  * @group Events
5696
5733
  */
5697
- 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>>;
5698
5735
 
5699
5736
  /**
5700
5737
  * @category Keys
@@ -5721,6 +5758,30 @@ declare const GetEventQuestionResponses: ({ eventId, questionId, pageParam, page
5721
5758
  */
5722
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>>;
5723
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
+
5724
5785
  /**
5725
5786
  * @category Keys
5726
5787
  * @group Events
@@ -5854,30 +5915,6 @@ declare const GetEventQuestionSummaries: ({ eventId, pageParam, pageSize, adminA
5854
5915
  */
5855
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>>;
5856
5917
 
5857
- /**
5858
- * @category Keys
5859
- * @group Events
5860
- */
5861
- declare const EVENT_QUESTIONS_QUERY_KEY: (eventId: string) => string[];
5862
- /**
5863
- * @category Setters
5864
- * @group Events
5865
- */
5866
- declare const SET_EVENT_QUESTIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_QUESTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventQuestions>>) => void;
5867
- interface GetEventQuestionsProps extends InfiniteQueryParams {
5868
- eventId: string;
5869
- }
5870
- /**
5871
- * @category Queries
5872
- * @group Events
5873
- */
5874
- declare const GetEventQuestions: ({ eventId, pageParam, pageSize, orderBy, search, adminApiParams, }: GetEventQuestionsProps) => Promise<ConnectedXMResponse<RegistrationQuestion[]>>;
5875
- /**
5876
- * @category Hooks
5877
- * @group Events
5878
- */
5879
- 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>>;
5880
-
5881
5918
  /**
5882
5919
  * @category Keys
5883
5920
  * @group Events
@@ -6041,39 +6078,39 @@ declare const useGetEventRegistrationPurchaseResponses: (eventId?: string, regis
6041
6078
  * @category Keys
6042
6079
  * @group Events
6043
6080
  */
6044
- 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[];
6045
6082
  /**
6046
6083
  * @category Setters
6047
6084
  * @group Events
6048
6085
  */
6049
- declare const SET_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetEventRegistrationPurchaseSections>>) => void;
6050
- 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 {
6051
6088
  eventId: string;
6052
6089
  registrationId: string;
6053
- purchaseId: string;
6090
+ paid?: boolean;
6054
6091
  }
6055
6092
  /**
6056
6093
  * @category Queries
6057
6094
  * @group Events
6058
6095
  */
6059
- 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[]>>;
6060
6097
  /**
6061
6098
  * @category Hooks
6062
6099
  * @group Events
6063
6100
  */
6064
- 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>>;
6065
6102
 
6066
6103
  /**
6067
6104
  * @category Keys
6068
6105
  * @group Events
6069
6106
  */
6070
- 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[];
6071
6108
  /**
6072
6109
  * @category Setters
6073
6110
  * @group Events
6074
6111
  */
6075
- 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;
6076
- 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 {
6077
6114
  eventId: string;
6078
6115
  registrationId: string;
6079
6116
  purchaseId: string;
@@ -6082,65 +6119,65 @@ interface GetEventRegistrationTransferLogsProps extends InfiniteQueryParams {
6082
6119
  * @category Queries
6083
6120
  * @group Events
6084
6121
  */
6085
- 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[]>>;
6086
6123
  /**
6087
6124
  * @category Hooks
6088
6125
  * @group Events
6089
6126
  */
6090
- 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>>;
6091
6128
 
6092
6129
  /**
6093
6130
  * @category Keys
6094
6131
  * @group Events
6095
6132
  */
6096
- 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[];
6097
6134
  /**
6098
6135
  * @category Setters
6099
6136
  * @group Events
6100
6137
  */
6101
- declare const SET_EVENT_REGISTRATION_PURCHASES_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, paid?: boolean | undefined], response: Awaited<ReturnType<typeof GetEventRegistrationPurchases>>) => void;
6102
- 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 {
6103
6140
  eventId: string;
6104
6141
  registrationId: string;
6105
- paid?: boolean;
6142
+ purchaseId: string;
6143
+ questionId: string;
6106
6144
  }
6107
6145
  /**
6108
6146
  * @category Queries
6109
6147
  * @group Events
6110
6148
  */
6111
- 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[]>>;
6112
6150
  /**
6113
6151
  * @category Hooks
6114
6152
  * @group Events
6115
6153
  */
6116
- 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>>;
6117
6155
 
6118
6156
  /**
6119
6157
  * @category Keys
6120
6158
  * @group Events
6121
6159
  */
6122
- 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[];
6123
6161
  /**
6124
6162
  * @category Setters
6125
6163
  * @group Events
6126
6164
  */
6127
- 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;
6128
- 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 {
6129
6167
  eventId: string;
6130
6168
  registrationId: string;
6131
6169
  purchaseId: string;
6132
- questionId: string;
6133
6170
  }
6134
6171
  /**
6135
6172
  * @category Queries
6136
6173
  * @group Events
6137
6174
  */
6138
- 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[]>>;
6139
6176
  /**
6140
6177
  * @category Hooks
6141
6178
  * @group Events
6142
6179
  */
6143
- 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>>;
6144
6181
 
6145
6182
  /**
6146
6183
  * @category Keys
@@ -6451,38 +6488,37 @@ declare const useGetReservationSection: (eventId?: string, reservationSectionId?
6451
6488
  * @category Keys
6452
6489
  * @group Events
6453
6490
  */
6454
- declare const EVENT_RESERVATION_SECTION_TICKETS_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
6491
+ declare const EVENT_RESERVATION_SECTIONS_QUERY_KEY: (eventId: string) => string[];
6455
6492
  /**
6456
6493
  * @category Setters
6457
6494
  * @group Events
6458
6495
  */
6459
- declare const SET_EVENT_RESERVATION_SECTION_TICKETS_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionTickets>>) => void;
6460
- 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 {
6461
6498
  eventId: string;
6462
- reservationSectionId: string;
6463
6499
  }
6464
6500
  /**
6465
6501
  * @category Queries
6466
6502
  * @group Events
6467
6503
  */
6468
- 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[]>>;
6469
6505
  /**
6470
6506
  * @category Hooks
6471
6507
  * @group Events
6472
6508
  */
6473
- 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>>;
6474
6510
 
6475
6511
  /**
6476
6512
  * @category Keys
6477
6513
  * @group Events
6478
6514
  */
6479
- 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[];
6480
6516
  /**
6481
6517
  * @category Setters
6482
6518
  * @group Events
6483
6519
  */
6484
- declare const SET_EVENT_RESERVATION_SECTION_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, reservationSectionId: string], response: Awaited<ReturnType<typeof GetReservationSectionTiers>>) => void;
6485
- 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 {
6486
6522
  eventId: string;
6487
6523
  reservationSectionId: string;
6488
6524
  }
@@ -6490,36 +6526,37 @@ interface GetReservationSectionTiersProps extends InfiniteQueryParams {
6490
6526
  * @category Queries
6491
6527
  * @group Events
6492
6528
  */
6493
- 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[]>>;
6494
6530
  /**
6495
6531
  * @category Hooks
6496
6532
  * @group Events
6497
6533
  */
6498
- 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>>;
6499
6535
 
6500
6536
  /**
6501
6537
  * @category Keys
6502
6538
  * @group Events
6503
6539
  */
6504
- declare const EVENT_RESERVATION_SECTIONS_QUERY_KEY: (eventId: string) => string[];
6540
+ declare const EVENT_RESERVATION_SECTION_TIERS_QUERY_KEY: (eventId: string, reservationSectionId: string) => string[];
6505
6541
  /**
6506
6542
  * @category Setters
6507
6543
  * @group Events
6508
6544
  */
6509
- declare const SET_EVENT_RESERVATION_SECTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_RESERVATION_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetReservationSections>>) => void;
6510
- 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 {
6511
6547
  eventId: string;
6548
+ reservationSectionId: string;
6512
6549
  }
6513
6550
  /**
6514
6551
  * @category Queries
6515
6552
  * @group Events
6516
6553
  */
6517
- 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[]>>;
6518
6555
  /**
6519
6556
  * @category Hooks
6520
6557
  * @group Events
6521
6558
  */
6522
- 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>>;
6523
6560
 
6524
6561
  /**
6525
6562
  * @category Keys
@@ -6651,38 +6688,37 @@ declare const useGetEventSectionQuestions: (eventId?: string, sectionId?: string
6651
6688
  * @category Keys
6652
6689
  * @group Events
6653
6690
  */
6654
- declare const EVENT_SECTION_TICKETS_QUERY_KEY: (eventId: string, sectionId: string) => string[];
6691
+ declare const EVENT_SECTIONS_QUERY_KEY: (eventId: string) => string[];
6655
6692
  /**
6656
6693
  * @category Setters
6657
6694
  * @group Events
6658
6695
  */
6659
- declare const SET_EVENT_SECTION_TICKETS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionTickets>>) => void;
6660
- 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 {
6661
6698
  eventId: string;
6662
- sectionId: string;
6663
6699
  }
6664
6700
  /**
6665
6701
  * @category Queries
6666
6702
  * @group Events
6667
6703
  */
6668
- 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[]>>;
6669
6705
  /**
6670
6706
  * @category Hooks
6671
6707
  * @group Events
6672
6708
  */
6673
- 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>>;
6674
6710
 
6675
6711
  /**
6676
6712
  * @category Keys
6677
6713
  * @group Events
6678
6714
  */
6679
- 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[];
6680
6716
  /**
6681
6717
  * @category Setters
6682
6718
  * @group Events
6683
6719
  */
6684
- declare const SET_EVENT_SECTION_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, sectionId: string], response: Awaited<ReturnType<typeof GetEventSectionTiers>>) => void;
6685
- 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 {
6686
6722
  eventId: string;
6687
6723
  sectionId: string;
6688
6724
  }
@@ -6690,36 +6726,37 @@ interface GetEventSectionTiersProps extends InfiniteQueryParams {
6690
6726
  * @category Queries
6691
6727
  * @group Events
6692
6728
  */
6693
- 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[]>>;
6694
6730
  /**
6695
6731
  * @category Hooks
6696
6732
  * @group Events
6697
6733
  */
6698
- 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>>;
6699
6735
 
6700
6736
  /**
6701
6737
  * @category Keys
6702
6738
  * @group Events
6703
6739
  */
6704
- declare const EVENT_SECTIONS_QUERY_KEY: (eventId: string) => string[];
6740
+ declare const EVENT_SECTION_TIERS_QUERY_KEY: (eventId: string, sectionId: string) => string[];
6705
6741
  /**
6706
6742
  * @category Setters
6707
6743
  * @group Events
6708
6744
  */
6709
- declare const SET_EVENT_SECTIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SECTIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSections>>) => void;
6710
- 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 {
6711
6747
  eventId: string;
6748
+ sectionId: string;
6712
6749
  }
6713
6750
  /**
6714
6751
  * @category Queries
6715
6752
  * @group Events
6716
6753
  */
6717
- 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[]>>;
6718
6755
  /**
6719
6756
  * @category Hooks
6720
6757
  * @group Events
6721
6758
  */
6722
- 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>>;
6723
6760
 
6724
6761
  /**
6725
6762
  * @category Keys
@@ -6826,38 +6863,37 @@ declare const useGetEventSessionAccounts: (eventId?: string, sessionId?: string,
6826
6863
  * @category Keys
6827
6864
  * @group Events
6828
6865
  */
6829
- declare const EVENT_SESSION_SPEAKERS_QUERY_KEY: (eventId: string, sessionId: string) => string[];
6866
+ declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string) => string[];
6830
6867
  /**
6831
6868
  * @category Setters
6832
6869
  * @group Events
6833
6870
  */
6834
- declare const SET_EVENT_SESSION_SPEAKERS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionSpeakers>>) => void;
6835
- 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 {
6836
6873
  eventId: string;
6837
- sessionId: string;
6838
6874
  }
6839
6875
  /**
6840
6876
  * @category Queries
6841
6877
  * @group Events
6842
6878
  */
6843
- 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[]>>;
6844
6880
  /**
6845
6881
  * @category Hooks
6846
6882
  * @group Events
6847
6883
  */
6848
- 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>>;
6849
6885
 
6850
6886
  /**
6851
6887
  * @category Keys
6852
6888
  * @group Events
6853
6889
  */
6854
- 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[];
6855
6891
  /**
6856
6892
  * @category Setters
6857
6893
  * @group Events
6858
6894
  */
6859
- declare const SET_EVENT_SESSION_SPONSORS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionSponsors>>) => void;
6860
- 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 {
6861
6897
  eventId: string;
6862
6898
  sessionId: string;
6863
6899
  }
@@ -6865,24 +6901,24 @@ interface GetEventSessionSponsorsProps extends InfiniteQueryParams {
6865
6901
  * @category Queries
6866
6902
  * @group Events
6867
6903
  */
6868
- 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[]>>;
6869
6905
  /**
6870
6906
  * @category Hooks
6871
6907
  * @group Events
6872
6908
  */
6873
- 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>>;
6874
6910
 
6875
6911
  /**
6876
6912
  * @category Keys
6877
6913
  * @group Events
6878
6914
  */
6879
- 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[];
6880
6916
  /**
6881
6917
  * @category Setters
6882
6918
  * @group Events
6883
6919
  */
6884
- declare const SET_EVENT_SESSION_TRACKS_QUERY_DATA: (client: any, keyParams: [eventId: string, sessionId: string], response: Awaited<ReturnType<typeof GetEventSessionTracks>>) => void;
6885
- 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 {
6886
6922
  eventId: string;
6887
6923
  sessionId: string;
6888
6924
  }
@@ -6890,36 +6926,37 @@ interface GetEventSessionTracksProps extends InfiniteQueryParams {
6890
6926
  * @category Queries
6891
6927
  * @group Events
6892
6928
  */
6893
- 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[]>>;
6894
6930
  /**
6895
6931
  * @category Hooks
6896
6932
  * @group Events
6897
6933
  */
6898
- 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>>;
6899
6935
 
6900
6936
  /**
6901
6937
  * @category Keys
6902
6938
  * @group Events
6903
6939
  */
6904
- declare const EVENT_SESSIONS_QUERY_KEY: (eventId: string) => string[];
6940
+ declare const EVENT_SESSION_TRACKS_QUERY_KEY: (eventId: string, sessionId: string) => string[];
6905
6941
  /**
6906
6942
  * @category Setters
6907
6943
  * @group Events
6908
6944
  */
6909
- declare const SET_EVENT_SESSIONS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SESSIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSessions>>) => void;
6910
- 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 {
6911
6947
  eventId: string;
6948
+ sessionId: string;
6912
6949
  }
6913
6950
  /**
6914
6951
  * @category Queries
6915
6952
  * @group Events
6916
6953
  */
6917
- 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[]>>;
6918
6955
  /**
6919
6956
  * @category Hooks
6920
6957
  * @group Events
6921
6958
  */
6922
- 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>>;
6923
6960
 
6924
6961
  /**
6925
6962
  * @category Keys
@@ -7001,50 +7038,50 @@ declare const useGetEventSpeaker: (eventId?: string, speakerId?: string, options
7001
7038
  * @category Keys
7002
7039
  * @group Events
7003
7040
  */
7004
- declare const EVENT_SPEAKER_SESSIONS_QUERY_KEY: (eventId: string, speakerId: string) => string[];
7041
+ declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => string[];
7005
7042
  /**
7006
7043
  * @category Setters
7007
7044
  * @group Events
7008
7045
  */
7009
- declare const SET_EVENT_SPEAKER_SESSIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, speakerId: string], response: Awaited<ReturnType<typeof GetEventSpeakerSessions>>) => void;
7010
- 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 {
7011
7048
  eventId: string;
7012
- speakerId: string;
7013
7049
  }
7014
7050
  /**
7015
7051
  * @category Queries
7016
7052
  * @group Events
7017
7053
  */
7018
- 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[]>>;
7019
7055
  /**
7020
7056
  * @category Hooks
7021
7057
  * @group Events
7022
7058
  */
7023
- 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>>;
7024
7060
 
7025
7061
  /**
7026
7062
  * @category Keys
7027
7063
  * @group Events
7028
7064
  */
7029
- declare const EVENT_SPEAKERS_QUERY_KEY: (eventId: string) => string[];
7065
+ declare const EVENT_SPEAKER_SESSIONS_QUERY_KEY: (eventId: string, speakerId: string) => string[];
7030
7066
  /**
7031
7067
  * @category Setters
7032
7068
  * @group Events
7033
7069
  */
7034
- declare const SET_EVENT_SPEAKERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_SPEAKERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventSpeakers>>) => void;
7035
- 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 {
7036
7072
  eventId: string;
7073
+ speakerId: string;
7037
7074
  }
7038
7075
  /**
7039
7076
  * @category Queries
7040
7077
  * @group Events
7041
7078
  */
7042
- 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[]>>;
7043
7080
  /**
7044
7081
  * @category Hooks
7045
7082
  * @group Events
7046
7083
  */
7047
- 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>>;
7048
7085
 
7049
7086
  /**
7050
7087
  * @category Keys
@@ -7249,50 +7286,50 @@ declare const useGetEventTicketPurchases: (eventId?: string, ticketId?: string,
7249
7286
  * @category Keys
7250
7287
  * @group Events
7251
7288
  */
7252
- declare const EVENT_TICKET_TIERS_QUERY_KEY: (eventId: string, ticketId: string) => string[];
7289
+ declare const EVENT_TICKETS_QUERY_KEY: (eventId: string) => string[];
7253
7290
  /**
7254
7291
  * @category Setters
7255
7292
  * @group Events
7256
7293
  */
7257
- declare const SET_EVENT_TICKET_TIERS_QUERY_DATA: (client: any, keyParams: [eventId: string, ticketId: string], response: Awaited<ReturnType<typeof GetEventTicketTiers>>) => void;
7258
- 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 {
7259
7296
  eventId: string;
7260
- ticketId: string;
7261
7297
  }
7262
7298
  /**
7263
7299
  * @category Queries
7264
7300
  * @group Events
7265
7301
  */
7266
- 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[]>>;
7267
7303
  /**
7268
7304
  * @category Hooks
7269
7305
  * @group Events
7270
7306
  */
7271
- 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>>;
7272
7308
 
7273
7309
  /**
7274
7310
  * @category Keys
7275
7311
  * @group Events
7276
7312
  */
7277
- declare const EVENT_TICKETS_QUERY_KEY: (eventId: string) => string[];
7313
+ declare const EVENT_TICKET_TIERS_QUERY_KEY: (eventId: string, ticketId: string) => string[];
7278
7314
  /**
7279
7315
  * @category Setters
7280
7316
  * @group Events
7281
7317
  */
7282
- declare const SET_EVENT_TICKETS_QUERY_DATA: (client: any, keyParams: Parameters<typeof EVENT_TICKETS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTickets>>) => void;
7283
- 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 {
7284
7320
  eventId: string;
7321
+ ticketId: string;
7285
7322
  }
7286
7323
  /**
7287
7324
  * @category Queries
7288
7325
  * @group Events
7289
7326
  */
7290
- 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[]>>;
7291
7328
  /**
7292
7329
  * @category Hooks
7293
7330
  * @group Events
7294
7331
  */
7295
- 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>>;
7296
7333
 
7297
7334
  /**
7298
7335
  * @category Keys
@@ -7374,38 +7411,37 @@ declare const useGetEventTrack: (eventId?: string, trackId?: string, options?: S
7374
7411
  * @category Keys
7375
7412
  * @group Events
7376
7413
  */
7377
- declare const EVENT_TRACK_SESSIONS_QUERY_KEY: (eventId: string, trackId: string) => string[];
7414
+ declare const EVENT_TRACKS_QUERY_KEY: (eventId: string) => string[];
7378
7415
  /**
7379
7416
  * @category Setters
7380
7417
  * @group Events
7381
7418
  */
7382
- declare const SET_EVENT_TRACK_SESSIONS_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrackSessions>>) => void;
7383
- 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 {
7384
7421
  eventId: string;
7385
- trackId: string;
7386
7422
  }
7387
7423
  /**
7388
7424
  * @category Queries
7389
7425
  * @group Events
7390
7426
  */
7391
- 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[]>>;
7392
7428
  /**
7393
7429
  * @category Hooks
7394
7430
  * @group Events
7395
7431
  */
7396
- 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>>;
7397
7433
 
7398
7434
  /**
7399
7435
  * @category Keys
7400
7436
  * @group Events
7401
7437
  */
7402
- 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[];
7403
7439
  /**
7404
7440
  * @category Setters
7405
7441
  * @group Events
7406
7442
  */
7407
- declare const SET_EVENT_TRACK_SPONSORS_QUERY_DATA: (client: any, keyParams: [eventId: string, trackId: string], response: Awaited<ReturnType<typeof GetEventTrackSponsors>>) => void;
7408
- 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 {
7409
7445
  eventId: string;
7410
7446
  trackId: string;
7411
7447
  }
@@ -7413,36 +7449,37 @@ interface GetEventTrackSponsorsProps extends InfiniteQueryParams {
7413
7449
  * @category Queries
7414
7450
  * @group Events
7415
7451
  */
7416
- 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[]>>;
7417
7453
  /**
7418
7454
  * @category Hooks
7419
7455
  * @group Events
7420
7456
  */
7421
- 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>>;
7422
7458
 
7423
7459
  /**
7424
7460
  * @category Keys
7425
7461
  * @group Events
7426
7462
  */
7427
- declare const EVENT_TRACKS_QUERY_KEY: (eventId: string) => string[];
7463
+ declare const EVENT_TRACK_SPONSORS_QUERY_KEY: (eventId: string, trackId: string) => string[];
7428
7464
  /**
7429
7465
  * @category Setters
7430
7466
  * @group Events
7431
7467
  */
7432
- declare const SET_EVENT_TRACKS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof EVENT_TRACKS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetEventTracks>>) => void;
7433
- 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 {
7434
7470
  eventId: string;
7471
+ trackId: string;
7435
7472
  }
7436
7473
  /**
7437
7474
  * @category Queries
7438
7475
  * @group Events
7439
7476
  */
7440
- 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[]>>;
7441
7478
  /**
7442
7479
  * @category Hooks
7443
7480
  * @group Events
7444
7481
  */
7445
- 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>>;
7446
7483
 
7447
7484
  /**
7448
7485
  * @category Keys
@@ -8001,50 +8038,50 @@ declare const useGetGroupRequests: (groupId?: string, status?: keyof typeof Grou
8001
8038
  * @category Keys
8002
8039
  * @group Groups
8003
8040
  */
8004
- declare const GROUP_SPONSORS_QUERY_KEY: (groupId: string) => string[];
8041
+ declare const GROUPS_QUERY_KEY: (access?: "public" | "private", featured?: boolean) => string[];
8005
8042
  /**
8006
8043
  * @category Setters
8007
8044
  * @group Groups
8008
8045
  */
8009
- declare const SET_GROUP_SPONSORS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof GROUP_SPONSORS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetGroupSponsors>>) => void;
8010
- interface GetGroupSponsorsProps extends InfiniteQueryParams {
8011
- 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;
8012
8050
  }
8013
8051
  /**
8014
8052
  * @category Queries
8015
8053
  * @group Groups
8016
8054
  */
8017
- 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[]>>;
8018
8056
  /**
8019
8057
  * @category Hooks
8020
8058
  * @group Groups
8021
8059
  */
8022
- 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>>;
8023
8061
 
8024
8062
  /**
8025
8063
  * @category Keys
8026
8064
  * @group Groups
8027
8065
  */
8028
- declare const GROUPS_QUERY_KEY: (access?: "public" | "private", featured?: boolean) => string[];
8066
+ declare const GROUP_SPONSORS_QUERY_KEY: (groupId: string) => string[];
8029
8067
  /**
8030
8068
  * @category Setters
8031
8069
  * @group Groups
8032
8070
  */
8033
- declare const SET_GROUPS_QUERY_DATA: (client: QueryClient, keyParams: [access?: "public" | "private" | undefined, featured?: boolean | undefined], response: Awaited<ReturnType<typeof GetGroups>>) => void;
8034
- interface GetGroupsProps extends InfiniteQueryParams {
8035
- access?: "public" | "private";
8036
- 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;
8037
8074
  }
8038
8075
  /**
8039
8076
  * @category Queries
8040
8077
  * @group Groups
8041
8078
  */
8042
- 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[]>>;
8043
8080
  /**
8044
8081
  * @category Hooks
8045
8082
  * @group Groups
8046
8083
  */
8047
- 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>>;
8048
8085
 
8049
8086
  /**
8050
8087
  * @category Keys
@@ -8074,63 +8111,63 @@ declare const useGetImage: (imageId?: string, options?: SingleQueryOptions<Retur
8074
8111
  * @category Keys
8075
8112
  * @group Images
8076
8113
  */
8077
- declare const IMAGE_USAGE_QUERY_KEY: (imageId: string) => string[];
8114
+ declare const IMAGES_QUERY_KEY: (type?: ImageType) => string[];
8078
8115
  /**
8079
8116
  * @category Setters
8080
8117
  * @group Images
8081
8118
  */
8082
- declare const SET_IMAGE_USAGE_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof IMAGE_USAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetImageUsage>>) => void;
8083
- interface GetImageUsageParams extends SingleQueryParams {
8084
- 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;
8085
8122
  }
8086
- interface ImageUsage extends Image {
8087
- _count: {
8088
- accounts: number;
8089
- events: number;
8090
- sessions: number;
8091
- groups: number;
8092
- usage: number;
8093
- speakers: number;
8094
- tickets: number;
8095
- };
8123
+ interface GetImagePrams extends InfiniteQueryParams {
8124
+ type?: ImageType;
8096
8125
  }
8097
8126
  /**
8098
8127
  * @category Queries
8099
8128
  * @group Images
8100
8129
  */
8101
- declare const GetImageUsage: ({ imageId, adminApiParams, }: GetImageUsageParams) => Promise<ConnectedXMResponse<ImageUsage>>;
8130
+ declare const GetImages: ({ pageParam, pageSize, orderBy, type, search, adminApiParams, }: GetImagePrams) => Promise<ConnectedXMResponse<ImageWCopyUri[]>>;
8102
8131
  /**
8103
8132
  * @category Hooks
8104
8133
  * @group Images
8105
8134
  */
8106
- 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>>;
8107
8136
 
8108
8137
  /**
8109
8138
  * @category Keys
8110
8139
  * @group Images
8111
8140
  */
8112
- declare const IMAGES_QUERY_KEY: (type?: ImageType) => string[];
8141
+ declare const IMAGE_USAGE_QUERY_KEY: (imageId: string) => string[];
8113
8142
  /**
8114
8143
  * @category Setters
8115
8144
  * @group Images
8116
8145
  */
8117
- declare const SET_IMAGES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof IMAGES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetImages>>) => void;
8118
- interface ImageWCopyUri extends Image {
8119
- 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;
8120
8149
  }
8121
- interface GetImagePrams extends InfiniteQueryParams {
8122
- 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
+ };
8123
8160
  }
8124
8161
  /**
8125
8162
  * @category Queries
8126
8163
  * @group Images
8127
8164
  */
8128
- declare const GetImages: ({ pageParam, pageSize, orderBy, type, search, adminApiParams, }: GetImagePrams) => Promise<ConnectedXMResponse<ImageWCopyUri[]>>;
8165
+ declare const GetImageUsage: ({ imageId, adminApiParams, }: GetImageUsageParams) => Promise<ConnectedXMResponse<ImageUsage>>;
8129
8166
  /**
8130
8167
  * @category Hooks
8131
8168
  * @group Images
8132
8169
  */
8133
- 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>>;
8134
8171
 
8135
8172
  /**
8136
8173
  * @category Keys
@@ -9105,47 +9142,47 @@ declare const useGetSelf: (options?: SingleQueryOptions<ReturnType<typeof GetSel
9105
9142
  * @category Keys
9106
9143
  * @group Self
9107
9144
  */
9108
- declare const SELF_MEMBERSHIP_QUERY_KEY: () => string[];
9145
+ declare const SELF_ORGANIZATIONS_QUERY_KEY: () => string[];
9109
9146
  /**
9110
9147
  * @category Setters
9111
9148
  * @group Self
9112
9149
  */
9113
- declare const SET_SELF_MEMBERSHIP_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_MEMBERSHIP_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfOrgMembership>>) => void;
9114
- 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 {
9115
9152
  }
9116
9153
  /**
9117
9154
  * @category Queries
9118
9155
  * @group Self
9119
9156
  */
9120
- declare const GetSelfOrgMembership: ({ adminApiParams, }: GetSelfOrgMembershipProps) => Promise<any>;
9157
+ declare const GetSelfOrganizations: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetSelfOrganizationsProps) => Promise<ConnectedXMResponse<Organization[]>>;
9121
9158
  /**
9122
9159
  * @category Hooks
9123
9160
  * @group Self
9124
9161
  */
9125
- 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>>;
9126
9163
 
9127
9164
  /**
9128
9165
  * @category Keys
9129
9166
  * @group Self
9130
9167
  */
9131
- declare const SELF_ORGANIZATIONS_QUERY_KEY: () => string[];
9168
+ declare const SELF_MEMBERSHIP_QUERY_KEY: () => string[];
9132
9169
  /**
9133
9170
  * @category Setters
9134
9171
  * @group Self
9135
9172
  */
9136
- declare const SET_SELF_ORGANIZATIONS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_ORGANIZATIONS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfOrganizations>>) => void;
9137
- 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 {
9138
9175
  }
9139
9176
  /**
9140
9177
  * @category Queries
9141
9178
  * @group Self
9142
9179
  */
9143
- declare const GetSelfOrganizations: ({ pageParam, pageSize, orderBy, search, adminApiParams, }: GetSelfOrganizationsProps) => Promise<ConnectedXMResponse<Organization[]>>;
9180
+ declare const GetSelfOrgMembership: ({ adminApiParams, }: GetSelfOrgMembershipProps) => Promise<any>;
9144
9181
  /**
9145
9182
  * @category Hooks
9146
9183
  * @group Self
9147
9184
  */
9148
- 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>>;
9149
9186
 
9150
9187
  /**
9151
9188
  * @category Keys
@@ -9439,73 +9476,73 @@ declare const useGetSubscriptionProductPrices: (subscriptionProductId?: string,
9439
9476
  * @category Keys
9440
9477
  * @group Subscriptions
9441
9478
  */
9442
- declare const SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY: (subscriptionProductId: string, status?: SubscriptionStatus) => string[];
9479
+ declare const SUBSCRIPTION_PRODUCTS_QUERY_KEY: () => string[];
9443
9480
  /**
9444
9481
  * @category Setters
9445
9482
  * @group Subscriptions
9446
9483
  */
9447
- declare const SET_SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_DATA: (client: QueryClient, keyParams: [subscriptionProductId: string, status?: SubscriptionStatus | undefined], response: Awaited<ReturnType<typeof GetSubscriptionProductSubscriptions>>) => void;
9448
- interface GetSubscriptionProductSubscriptionsProps extends InfiniteQueryParams {
9449
- subscriptionProductId: string;
9450
- 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 {
9451
9486
  }
9452
9487
  /**
9453
9488
  * @category Queries
9454
9489
  * @group Subscriptions
9455
9490
  */
9456
- 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[]>>;
9457
9492
  /**
9458
9493
  * @category Hooks
9459
9494
  * @group Subscriptions
9460
9495
  */
9461
- 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>>;
9462
9497
 
9463
9498
  /**
9464
9499
  * @category Keys
9465
9500
  * @group Subscriptions
9466
9501
  */
9467
- declare const SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY: (subscriptionProductId: string) => string[];
9502
+ declare const SUBSCRIPTION_PRODUCT_SUBSCRIPTIONS_QUERY_KEY: (subscriptionProductId: string, status?: SubscriptionStatus) => string[];
9468
9503
  /**
9469
9504
  * @category Setters
9470
9505
  * @group Subscriptions
9471
9506
  */
9472
- declare const SET_SUBSCRIPTION_PRODUCT_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptionProductTiers>>) => void;
9473
- 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 {
9474
9509
  subscriptionProductId: string;
9510
+ status?: SubscriptionStatus;
9475
9511
  }
9476
9512
  /**
9477
9513
  * @category Queries
9478
9514
  * @group Subscriptions
9479
9515
  */
9480
- 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[]>>;
9481
9517
  /**
9482
9518
  * @category Hooks
9483
9519
  * @group Subscriptions
9484
9520
  */
9485
- 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>>;
9486
9522
 
9487
9523
  /**
9488
9524
  * @category Keys
9489
9525
  * @group Subscriptions
9490
9526
  */
9491
- declare const SUBSCRIPTION_PRODUCTS_QUERY_KEY: () => string[];
9527
+ declare const SUBSCRIPTION_PRODUCT_TIERS_QUERY_KEY: (subscriptionProductId: string) => string[];
9492
9528
  /**
9493
9529
  * @category Setters
9494
9530
  * @group Subscriptions
9495
9531
  */
9496
- declare const SET_SUBSCRIPTION_PRODUCTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SUBSCRIPTION_PRODUCTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSubscriptionProducts>>) => void;
9497
- 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;
9498
9535
  }
9499
9536
  /**
9500
9537
  * @category Queries
9501
9538
  * @group Subscriptions
9502
9539
  */
9503
- 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[]>>;
9504
9541
  /**
9505
9542
  * @category Hooks
9506
9543
  * @group Subscriptions
9507
9544
  */
9508
- 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>>;
9509
9546
 
9510
9547
  /**
9511
9548
  * @category Keys
@@ -9632,49 +9669,49 @@ declare const useGetTierAccounts: (tierId?: string, params?: Omit<InfiniteQueryP
9632
9669
  * @category Keys
9633
9670
  * @group Tiers
9634
9671
  */
9635
- declare const TIER_SUBSCRIBERS_QUERY_KEY: (tierId: string) => string[];
9672
+ declare const TIERS_QUERY_KEY: (type?: "external" | "internal") => string[];
9636
9673
  /**
9637
9674
  * @category Setters
9638
9675
  * @group Tiers
9639
9676
  */
9640
- declare const SET_TIER_SUBSCRIBERS_QUERY_DATA: (client: any, keyParams: Parameters<typeof TIER_SUBSCRIBERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetTierSubscribers>>) => void;
9641
- interface GetTierSubscribersProps extends InfiniteQueryParams {
9642
- 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";
9643
9680
  }
9644
9681
  /**
9645
9682
  * @category Queries
9646
9683
  * @group Tiers
9647
9684
  */
9648
- 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[]>>;
9649
9686
  /**
9650
9687
  * @category Hooks
9651
9688
  * @group Tiers
9652
9689
  */
9653
- 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>>;
9654
9691
 
9655
9692
  /**
9656
9693
  * @category Keys
9657
9694
  * @group Tiers
9658
9695
  */
9659
- declare const TIERS_QUERY_KEY: (type?: "external" | "internal") => string[];
9696
+ declare const TIER_SUBSCRIBERS_QUERY_KEY: (tierId: string) => string[];
9660
9697
  /**
9661
9698
  * @category Setters
9662
9699
  * @group Tiers
9663
9700
  */
9664
- declare const SET_TIERS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof TIERS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetTiers>>) => void;
9665
- interface GetTiersProps extends InfiniteQueryParams {
9666
- 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;
9667
9704
  }
9668
9705
  /**
9669
9706
  * @category Queries
9670
9707
  * @group Tiers
9671
9708
  */
9672
- 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[]>>;
9673
9710
  /**
9674
9711
  * @category Hooks
9675
9712
  * @group Tiers
9676
9713
  */
9677
- 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>>;
9678
9715
 
9679
9716
  /**
9680
9717
  * @category Keys
@@ -11527,6 +11564,26 @@ declare const UpdateEventFaqSectionQuestion: ({ sectionId, eventId, questionId,
11527
11564
  */
11528
11565
  declare const useUpdateEventFaqSectionQuestion: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateEventFaqSectionQuestion>>, Omit<UpdateEventFaqSectionQuestionParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Faq>, axios.AxiosError<ConnectedXMResponse<Faq>, any>, Omit<UpdateEventFaqSectionQuestionParams, "queryClient" | "adminApiParams">, unknown>;
11529
11566
 
11567
+ /**
11568
+ * @category Params
11569
+ * @group Event-Sections
11570
+ */
11571
+ interface ReorderEventFaqSectionQuestionsParams extends MutationParams {
11572
+ eventId: string;
11573
+ sectionId: string;
11574
+ questionIds: string[];
11575
+ }
11576
+ /**
11577
+ * @category Methods
11578
+ * @group Event-Sections
11579
+ */
11580
+ declare const ReorderEventFaqSectionQuestions: ({ eventId, sectionId, questionIds, adminApiParams, queryClient, }: ReorderEventFaqSectionQuestionsParams) => Promise<ConnectedXMResponse<Faq[]>>;
11581
+ /**
11582
+ * @category Mutations
11583
+ * @group Event-Sections
11584
+ */
11585
+ declare const useReorderEventFaqSectionQuestions: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof ReorderEventFaqSectionQuestions>>, Omit<ReorderEventFaqSectionQuestionsParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Faq[]>, axios.AxiosError<ConnectedXMResponse<Faq[]>, any>, Omit<ReorderEventFaqSectionQuestionsParams, "queryClient" | "adminApiParams">, unknown>;
11586
+
11530
11587
  /**
11531
11588
  * @category Params
11532
11589
  * @group Event-OnSite
@@ -15164,7 +15221,7 @@ declare const useDeleteOrganizationUser: (options?: Omit<ConnectedXMMutationOpti
15164
15221
  * @group Organization
15165
15222
  */
15166
15223
  interface UpdateOrganizationParams extends MutationParams {
15167
- organization: Organization;
15224
+ organization: OrganizationUpdateInputs;
15168
15225
  }
15169
15226
  /**
15170
15227
  * @category Methods
@@ -15204,7 +15261,7 @@ declare const useUpdateOrganizationIntegrations: (options?: Omit<ConnectedXMMuta
15204
15261
  */
15205
15262
  interface UpdateOrganizationMembershipParams extends MutationParams {
15206
15263
  userId: string;
15207
- membership: OrganizationMembership;
15264
+ membership: OrganizationMembershipUpdateInputs;
15208
15265
  }
15209
15266
  /**
15210
15267
  * @category Methods
@@ -15466,7 +15523,7 @@ declare const useCreateStreamInput: (options?: Omit<ConnectedXMMutationOptions<A
15466
15523
  */
15467
15524
  interface CreateStreamInputOutputParams extends MutationParams {
15468
15525
  streamId: string;
15469
- output: StreamInputOutput;
15526
+ output: StreamInputOutputCreateInputs;
15470
15527
  }
15471
15528
  /**
15472
15529
  * @category Methods
@@ -15561,7 +15618,7 @@ declare const useUpdateStreamInput: (options?: Omit<ConnectedXMMutationOptions<A
15561
15618
  interface UpdateStreamInputOutputParams extends MutationParams {
15562
15619
  streamId: string;
15563
15620
  outputId: string;
15564
- output: StreamInputOutput;
15621
+ output: StreamInputOutputUpdateInputs;
15565
15622
  }
15566
15623
  /**
15567
15624
  * @category Methods
@@ -15572,7 +15629,7 @@ declare const UpdateStreamInputOutput: ({ streamId, outputId, output, adminApiPa
15572
15629
  * @category Mutations
15573
15630
  * @group Stream
15574
15631
  */
15575
- declare const useUpdateStreamInputOutputInput: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateStreamInputOutput>>, Omit<UpdateStreamInputOutputParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamInputOutput>, axios.AxiosError<ConnectedXMResponse<StreamInputOutput>, any>, Omit<UpdateStreamInputOutputParams, "queryClient" | "adminApiParams">, unknown>;
15632
+ declare const useUpdateStreamInputOutput: (options?: Omit<ConnectedXMMutationOptions<Awaited<ReturnType<typeof UpdateStreamInputOutput>>, Omit<UpdateStreamInputOutputParams, "queryClient" | "adminApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<StreamInputOutput>, axios.AxiosError<ConnectedXMResponse<StreamInputOutput>, any>, Omit<UpdateStreamInputOutputParams, "queryClient" | "adminApiParams">, unknown>;
15576
15633
 
15577
15634
  /**
15578
15635
  * @category Params
@@ -16002,4 +16059,4 @@ declare const UpdateVideo: ({ videoId, video, adminApiParams, queryClient, }: Up
16002
16059
  */
16003
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>;
16004
16061
 
16005
- 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, 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 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, useGetEventFaqSectionQuestionsectionQuestions, 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, 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, useUpdateStreamInputOutputInput, 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 };