@connectedxm/client 6.0.6 → 6.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +61 -91
- package/dist/index.js +67 -210
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -143,14 +143,9 @@ interface AccountTier extends BaseAccountTier {
|
|
|
143
143
|
updatedAt: string;
|
|
144
144
|
}
|
|
145
145
|
declare const isTypeAccountTier: (accountTier: BaseAccountTier | AccountTier) => accountTier is AccountTier;
|
|
146
|
-
declare enum AccountType {
|
|
147
|
-
account = "account",
|
|
148
|
-
team = "team"
|
|
149
|
-
}
|
|
150
146
|
interface BaseAccount {
|
|
151
147
|
id: string;
|
|
152
148
|
username: string;
|
|
153
|
-
accountType: AccountType;
|
|
154
149
|
firstName: string | null;
|
|
155
150
|
lastName: string | null;
|
|
156
151
|
title: string | null;
|
|
@@ -993,21 +988,6 @@ interface BaseComplimentaryTicket {
|
|
|
993
988
|
}
|
|
994
989
|
interface ComplimentaryTicket extends BaseComplimentaryTicket {
|
|
995
990
|
}
|
|
996
|
-
declare enum PageType$1 {
|
|
997
|
-
about = "about",
|
|
998
|
-
privacy = "privacy",
|
|
999
|
-
terms = "terms",
|
|
1000
|
-
team = "team"
|
|
1001
|
-
}
|
|
1002
|
-
interface BasePage {
|
|
1003
|
-
type: PageType$1;
|
|
1004
|
-
title: string | null;
|
|
1005
|
-
subtitle: string | null;
|
|
1006
|
-
html: string | null;
|
|
1007
|
-
updatedAt: string;
|
|
1008
|
-
}
|
|
1009
|
-
interface Page extends BasePage {
|
|
1010
|
-
}
|
|
1011
991
|
interface BaseFaq {
|
|
1012
992
|
id: string;
|
|
1013
993
|
slug: string;
|
|
@@ -1082,28 +1062,6 @@ interface AdvertisementClick {
|
|
|
1082
1062
|
}
|
|
1083
1063
|
interface AdvertisementView {
|
|
1084
1064
|
}
|
|
1085
|
-
interface BaseTeamMember {
|
|
1086
|
-
id: string;
|
|
1087
|
-
slug: string;
|
|
1088
|
-
firstName: string | null;
|
|
1089
|
-
lastName: string | null;
|
|
1090
|
-
title: true;
|
|
1091
|
-
image: BaseImage | null;
|
|
1092
|
-
}
|
|
1093
|
-
interface TeamMember extends BaseTeamMember {
|
|
1094
|
-
nickName: true;
|
|
1095
|
-
email: true;
|
|
1096
|
-
phone: true;
|
|
1097
|
-
bio: true;
|
|
1098
|
-
linkedIn: true;
|
|
1099
|
-
facebook: true;
|
|
1100
|
-
instagram: true;
|
|
1101
|
-
twitter: true;
|
|
1102
|
-
tikTok: true;
|
|
1103
|
-
discord: true;
|
|
1104
|
-
startDate: true;
|
|
1105
|
-
}
|
|
1106
|
-
declare const isTypeTeamMember: (teamMember: BaseTeamMember | TeamMember) => teamMember is TeamMember;
|
|
1107
1065
|
declare enum GroupMembershipRole {
|
|
1108
1066
|
member = "member",
|
|
1109
1067
|
moderator = "moderator"
|
|
@@ -2403,6 +2361,21 @@ interface BlockedAccount extends BaseBlockedAccount {
|
|
|
2403
2361
|
account: BaseAccount;
|
|
2404
2362
|
blocker: BaseAccount;
|
|
2405
2363
|
}
|
|
2364
|
+
interface BaseLogin {
|
|
2365
|
+
userPoolId: string;
|
|
2366
|
+
username: string;
|
|
2367
|
+
sub: string;
|
|
2368
|
+
email: string;
|
|
2369
|
+
firstName: string | null;
|
|
2370
|
+
lastName: string | null;
|
|
2371
|
+
internalRefId: string | null;
|
|
2372
|
+
status: string;
|
|
2373
|
+
enabled: boolean;
|
|
2374
|
+
verified: boolean;
|
|
2375
|
+
}
|
|
2376
|
+
interface Login extends BaseLogin {
|
|
2377
|
+
accounts: BaseAccount[];
|
|
2378
|
+
}
|
|
2406
2379
|
|
|
2407
2380
|
interface ClientApiParams {
|
|
2408
2381
|
apiUrl: "https://client-api.connected.dev" | "https://staging-client-api.connected.dev" | "http://localhost:4001";
|
|
@@ -3136,12 +3109,6 @@ interface UpdateSubscriptionPaymentMethodParams extends MutationParams {
|
|
|
3136
3109
|
declare const UpdateSubscriptionPaymentMethod: ({ subscriptionId, paymentMethodId, clientApiParams, queryClient, }: UpdateSubscriptionPaymentMethodParams) => Promise<ConnectedXMResponse<null>>;
|
|
3137
3110
|
declare const useUpdateSubscriptionPaymentMethod: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSubscriptionPaymentMethod>>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSubscriptionPaymentMethodParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3138
3111
|
|
|
3139
|
-
interface AddSelfDelegateParams extends MutationParams {
|
|
3140
|
-
email: string;
|
|
3141
|
-
}
|
|
3142
|
-
declare const AddSelfDelegate: ({ email, clientApiParams, queryClient, }: AddSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
|
|
3143
|
-
declare const useAddSelfDelegate: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfDelegate>>, Omit<AddSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<AddSelfDelegateParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3144
|
-
|
|
3145
3112
|
interface AddSelfEventSessionParams extends MutationParams {
|
|
3146
3113
|
eventId: string;
|
|
3147
3114
|
sessionId: string;
|
|
@@ -3160,12 +3127,6 @@ interface DeleteSelfPushDeviceParams extends MutationParams {
|
|
|
3160
3127
|
declare const DeleteSelfPushDevice: ({ pushDeviceId, clientApiParams, queryClient, }: DeleteSelfPushDeviceParams) => Promise<ConnectedXMResponse<PushDevice>>;
|
|
3161
3128
|
declare const useDeleteSelfPushDevice: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfPushDevice>>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<PushDevice>, axios.AxiosError<ConnectedXMResponse<PushDevice>, any>, Omit<DeleteSelfPushDeviceParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3162
3129
|
|
|
3163
|
-
interface RemoveSelfDelegateParams extends MutationParams {
|
|
3164
|
-
accountId: string;
|
|
3165
|
-
}
|
|
3166
|
-
declare const RemoveSelfDelegate: ({ accountId, clientApiParams, queryClient, }: RemoveSelfDelegateParams) => Promise<ConnectedXMResponse<Account>>;
|
|
3167
|
-
declare const useRemoveSelfDelegate: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfDelegate>>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<RemoveSelfDelegateParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3168
|
-
|
|
3169
3130
|
interface RemoveSelfEventSessionParams extends MutationParams {
|
|
3170
3131
|
eventId: string;
|
|
3171
3132
|
sessionId: string;
|
|
@@ -3269,13 +3230,6 @@ interface CreateSupportTicketParams extends MutationParams {
|
|
|
3269
3230
|
declare const CreateSupportTicket: ({ type, email, request, eventId, productId, clientApiParams, }: CreateSupportTicketParams) => Promise<ConnectedXMResponse<SupportTicket>>;
|
|
3270
3231
|
declare const useCreateSupportTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSupportTicket>>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<SupportTicket>, axios.AxiosError<ConnectedXMResponse<SupportTicket>, any>, Omit<CreateSupportTicketParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3271
3232
|
|
|
3272
|
-
interface CreateTeamAccountParams extends MutationParams {
|
|
3273
|
-
name: string;
|
|
3274
|
-
email: string;
|
|
3275
|
-
}
|
|
3276
|
-
declare const CreateTeamAccount: ({ name, email, clientApiParams, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
3277
|
-
declare const useCreateTeamAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateTeamAccount>>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateTeamAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3278
|
-
|
|
3279
3233
|
interface AcceptGroupInviteParitation extends MutationParams {
|
|
3280
3234
|
groupId: string;
|
|
3281
3235
|
}
|
|
@@ -3676,6 +3630,37 @@ interface UpdateListingRegistrationPassResponsesParams extends MutationParams {
|
|
|
3676
3630
|
declare const UpdateListingRegistrationPassResponses: ({ eventId, accountId, passId, questions, clientApiParams, queryClient, }: UpdateListingRegistrationPassResponsesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3677
3631
|
declare const useUpdateListingRegistrationPassResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateListingRegistrationPassResponses>>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateListingRegistrationPassResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3678
3632
|
|
|
3633
|
+
interface CreateLoginAccountAccount {
|
|
3634
|
+
featured?: boolean;
|
|
3635
|
+
email: string;
|
|
3636
|
+
firstName?: string;
|
|
3637
|
+
lastName?: string;
|
|
3638
|
+
imageId?: string;
|
|
3639
|
+
bannerId?: string;
|
|
3640
|
+
username: string;
|
|
3641
|
+
phone?: string;
|
|
3642
|
+
title?: string;
|
|
3643
|
+
company?: string;
|
|
3644
|
+
bio?: string;
|
|
3645
|
+
website?: string;
|
|
3646
|
+
video?: string;
|
|
3647
|
+
facebook?: string;
|
|
3648
|
+
twitter?: string;
|
|
3649
|
+
instagram?: string;
|
|
3650
|
+
tikTok?: string;
|
|
3651
|
+
linkedIn?: string;
|
|
3652
|
+
youtube?: string;
|
|
3653
|
+
discord?: string;
|
|
3654
|
+
dietaryRestrictions?: string;
|
|
3655
|
+
locale?: string;
|
|
3656
|
+
termsAccepted?: Date;
|
|
3657
|
+
}
|
|
3658
|
+
interface CreateLoginAccountParams extends MutationParams {
|
|
3659
|
+
account: CreateLoginAccountAccount;
|
|
3660
|
+
}
|
|
3661
|
+
declare const CreateLoginAccount: ({ clientApiParams, queryClient, account, }: CreateLoginAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
3662
|
+
declare const useCreateLoginAccount: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateLoginAccount>>, Omit<CreateLoginAccountParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Account>, axios.AxiosError<ConnectedXMResponse<Account>, any>, Omit<CreateLoginAccountParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3663
|
+
|
|
3679
3664
|
interface UploadFileParams extends MutationParams {
|
|
3680
3665
|
dataUri: string;
|
|
3681
3666
|
name?: string;
|
|
@@ -3917,6 +3902,7 @@ declare const ERR_INTEGRATION_PERMISSION_DENIED = 459;
|
|
|
3917
3902
|
declare const ERR_KNOWN_ERROR = 460;
|
|
3918
3903
|
declare const ERR_PRIVATE_CHANNEL = 461;
|
|
3919
3904
|
declare const ERR_BANNED_USER = 462;
|
|
3905
|
+
declare const ERR_NO_ACCOUNT_SELECTED = 463;
|
|
3920
3906
|
declare const CUSTOM_ERROR_CODES: number[];
|
|
3921
3907
|
declare const GetErrorMessage: (error: any, fallback?: string) => string;
|
|
3922
3908
|
|
|
@@ -4011,21 +3997,19 @@ interface GetAccountFollowingsProps extends InfiniteQueryParams {
|
|
|
4011
3997
|
declare const GetAccountFollowings: ({ pageParam, pageSize, orderBy, search, accountId, clientApiParams, }: GetAccountFollowingsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
4012
3998
|
declare const useGetAccountFollowings: (accountId?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountFollowings>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4013
3999
|
|
|
4014
|
-
declare const ACCOUNTS_QUERY_KEY: (
|
|
4000
|
+
declare const ACCOUNTS_QUERY_KEY: () => QueryKey;
|
|
4015
4001
|
declare const SET_ACCOUNTS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccounts>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4016
4002
|
interface GetAccountsProps extends InfiniteQueryParams {
|
|
4017
|
-
accountType?: keyof typeof AccountType;
|
|
4018
4003
|
}
|
|
4019
|
-
declare const GetAccounts: ({ pageParam, pageSize, orderBy, search,
|
|
4020
|
-
declare const useGetAccounts: (
|
|
4004
|
+
declare const GetAccounts: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetAccountsProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
4005
|
+
declare const useGetAccounts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccounts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4021
4006
|
|
|
4022
|
-
declare const ACCOUNTS_POPULAR_QUERY_KEY: (
|
|
4007
|
+
declare const ACCOUNTS_POPULAR_QUERY_KEY: () => QueryKey;
|
|
4023
4008
|
declare const SET_ACCOUNTS_POPULAR_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNTS_POPULAR_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountsPopular>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
4024
4009
|
interface GetAccountsPopularProps extends InfiniteQueryParams {
|
|
4025
|
-
accountType?: keyof typeof AccountType;
|
|
4026
4010
|
}
|
|
4027
|
-
declare const GetAccountsPopular: ({ pageParam, pageSize, orderBy, search,
|
|
4028
|
-
declare const useGetAccountsPopular: (
|
|
4011
|
+
declare const GetAccountsPopular: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetAccountsPopularProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
4012
|
+
declare const useGetAccountsPopular: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetAccountsPopular>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4029
4013
|
|
|
4030
4014
|
declare const ACCOUNT_MEDIA_QUERY_KEY: (accountId: string, type?: "images" | "videos") => QueryKey;
|
|
4031
4015
|
declare const SET_ACCOUNT_MEDIA_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof ACCOUNT_MEDIA_QUERY_KEY>, response: Awaited<ReturnType<typeof GetAccountMedia>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
@@ -4643,15 +4627,6 @@ interface GetOrganizationExploreProps extends SingleQueryParams {
|
|
|
4643
4627
|
declare const GetOrganizationExplore: ({ clientApiParams, }: GetOrganizationExploreProps) => Promise<ConnectedXMResponse<Explore>>;
|
|
4644
4628
|
declare const useGetOrganizationExplore: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Explore>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4645
4629
|
|
|
4646
|
-
declare const ORGANIZATION_PAGE_QUERY_KEY: (type: PageType) => QueryKey;
|
|
4647
|
-
declare const SET_ORGANIZATION_PAGE_QUERY_DATA: (queryClient: QueryClient, keyParams: Parameters<typeof ORGANIZATION_PAGE_QUERY_KEY>, response: Awaited<ReturnType<typeof GetOrganizationPage>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
4648
|
-
type PageType = "about" | "team" | "privacy" | "terms";
|
|
4649
|
-
interface GetOrganizationPageProps extends SingleQueryParams {
|
|
4650
|
-
type: PageType;
|
|
4651
|
-
}
|
|
4652
|
-
declare const GetOrganizationPage: ({ type, clientApiParams, }: GetOrganizationPageProps) => Promise<ConnectedXMResponse<Page | null>>;
|
|
4653
|
-
declare const useGetOrganizationPage: (type: PageType, options?: SingleQueryOptions<ReturnType<typeof GetOrganizationPage>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Page | null>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4654
|
-
|
|
4655
4630
|
declare const ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY: () => unknown[];
|
|
4656
4631
|
interface GetOrganizationSubscriptionProductsProps extends InfiniteQueryParams {
|
|
4657
4632
|
}
|
|
@@ -5047,18 +5022,6 @@ interface GetSelfGroupMembershipsProps extends InfiniteQueryParams {
|
|
|
5047
5022
|
declare const GetSelfGroupMemberships: ({ pageParam, pageSize, orderBy, search, role, clientApiParams, }: GetSelfGroupMembershipsProps) => Promise<ConnectedXMResponse<GroupMembership[]>>;
|
|
5048
5023
|
declare const useGetSelfGroupMemberships: (role?: "member" | "moderator", params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfGroupMemberships>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<GroupMembership[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5049
5024
|
|
|
5050
|
-
declare const SELF_DELEGATE_OF_QUERY_KEY: () => QueryKey;
|
|
5051
|
-
interface GetSelfDelegateOfProps extends InfiniteQueryParams {
|
|
5052
|
-
}
|
|
5053
|
-
declare const GetSelfDelegateOf: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfDelegateOfProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
5054
|
-
declare const useGetSelfDelegateOf: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegateOf>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5055
|
-
|
|
5056
|
-
declare const SELF_DELEGATES_QUERY_KEY: () => QueryKey;
|
|
5057
|
-
interface GetSelfDelegatesProps extends InfiniteQueryParams {
|
|
5058
|
-
}
|
|
5059
|
-
declare const GetSelfDelegates: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfDelegatesProps) => Promise<ConnectedXMResponse<Account[]>>;
|
|
5060
|
-
declare const useGetSelfDelegates: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfDelegates>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Account[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5061
|
-
|
|
5062
5025
|
declare const SELF_EVENTS_QUERY_KEY: (past: boolean) => QueryKey;
|
|
5063
5026
|
interface GetSelfEventsProps extends InfiniteQueryParams {
|
|
5064
5027
|
past?: boolean;
|
|
@@ -5314,6 +5277,13 @@ interface GetInterestActivitiesProps extends InfiniteQueryParams {
|
|
|
5314
5277
|
declare const GetInterestActivities: ({ interest, pageParam, pageSize, orderBy, search, clientApiParams, }: GetInterestActivitiesProps) => Promise<ConnectedXMResponse<Activity[]>>;
|
|
5315
5278
|
declare const useGetInterestActivities: (interest?: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetInterestActivities>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Activity[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5316
5279
|
|
|
5280
|
+
declare const LOGIN_QUERY_KEY: () => QueryKey;
|
|
5281
|
+
declare const SET_LOGINS_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof LOGIN_QUERY_KEY>, response: Awaited<ReturnType<typeof GetLogin>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5282
|
+
interface GetLoginProps extends SingleQueryParams {
|
|
5283
|
+
}
|
|
5284
|
+
declare const GetLogin: ({ clientApiParams, }: GetLoginProps) => Promise<ConnectedXMResponse<Login>>;
|
|
5285
|
+
declare const useGetLogin: (options?: SingleQueryOptions<ReturnType<typeof GetLogin>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Login>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5286
|
+
|
|
5317
5287
|
declare const THREADS_QUERY_KEY: () => QueryKey;
|
|
5318
5288
|
declare const THREAD_CIRCLES_QUERY_KEY: () => QueryKey;
|
|
5319
5289
|
declare const SET_THREAD_CIRCLES_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof THREAD_CIRCLES_QUERY_KEY>, response: Awaited<ReturnType<typeof GetThreadCircles>>, baseKeys?: Parameters<typeof GetBaseInfiniteQueryKeys>) => void;
|
|
@@ -5495,4 +5465,4 @@ interface GetStreamProps extends SingleQueryParams {
|
|
|
5495
5465
|
declare const GetStream: ({ streamId, output, clientApiParams, }: GetStreamProps) => Promise<ConnectedXMResponse<StreamInput>>;
|
|
5496
5466
|
declare const useGetStream: (streamId?: string, output?: keyof typeof StreamOutput, options?: SingleQueryOptions<ReturnType<typeof GetStream>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<StreamInput>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5497
5467
|
|
|
5498
|
-
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountShare, type AccountTier, AccountType, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionSearchValue, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseMatch, type BaseNotification, type BaseOrganization, type BasePage, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRound, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveyQuestionSearchValue, type BaseSurveySection, type BaseSurveySubmission, type BaseTeamMember, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, CreateThreadMessage, type CreateThreadMessageParams, Currency, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_PRIVATE_CHANNEL, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_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_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_QUESTION_VALUES_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, type EventSessionQuestionSearchValue, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessionQuestionSearchValues, type GetEventSessionQuestionSearchValuesProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakerSessions, type GetEventSpeakerSessionsProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetStream, type GetStreamProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveyQuestionSearchValues, type GetSurveyQuestionSearchValuesProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Page, type PageType, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Round, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_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_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPEAKER_SESSIONS_FIRST_PAGE, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LINK_PREVIEW_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_ORGANIZATION_PAGE_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_STREAM_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, StreamOutput, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, type SurveyQuestionSearchValue, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type TeamMember, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, type User, VIDEO_QUERY_KEY, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessionQuestionSearchValues, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStream, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveyQuestionSearchValues, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfDelegate, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage };
|
|
5468
|
+
export { ACCOUNTS_POPULAR_QUERY_KEY, ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_FOLLOW_STATS_QUERY_KEY, ACCOUNT_GROUPS_QUERY_KEY, ACCOUNT_MEDIA_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_LIKES_QUERY_KEY, ACTIVITY_QUERY_KEY, ADD_SELF_RELATIONSHIP, ADVERTISEMENT_QUERY_KEY, AcceptGroupInvitation, type AcceptGroupInviteParitation, AcceptGroupRequest, type AcceptGroupRequestParams, type Account, type AccountAddress, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfEventSession, type AddSelfEventSessionParams, AddSelfInterests, type AddSelfInterestsParams, AddThreadCircleAccount, type AddThreadCircleAccountParams, AddThreadMessageReaction, type AddThreadMessageReactionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, type AttendeePackage, BENEFITS_QUERY_KEY, BOOKINGS_QUERY_KEY, BOOKING_PLACES_QUERY_KEY, BOOKING_PLACE_QUERY_KEY, BOOKING_PLACE_SPACES_QUERY_KEY, BOOKING_PLACE_SPACE_QUERY_KEY, BOOKING_PLACE_SPACE_SLOTS_QUERY_KEY, BOOKING_QUERY_KEY, type BaseAccount, type BaseAccountAddress, type BaseAccountTier, type BaseActivity, type BaseActivityEntity, type BaseActivityEntityInput, type BaseActivityReport, type BaseAdvertisement, type BaseAnnouncement, type BaseAttendeePackage, type BaseBenefit, type BaseBlockedAccount, type BaseBooking, type BaseBookingPlace, type BaseBookingSpace, type BaseBookingSpaceAvailability, type BaseBookingSpaceBlackout, type BaseChannel, type BaseChannelCollection, type BaseChannelSubscriber, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseComplimentaryTicket, type BaseContent, type BaseContentGuest, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventAddOn, type BaseEventEmail, type BaseEventMediaItem, type BaseEventPackage, type BaseEventPackagePass, type BaseEventPage, type BaseEventRoomType, type BaseEventRoomTypeAddOnDetails, type BaseEventRoomTypePassTypeDetails, type BaseEventRoomTypeReservation, type BaseEventSessionAccess, type BaseEventSessionQuestion, type BaseEventSessionQuestionChoice, type BaseEventSessionQuestionResponse, type BaseEventSessionQuestionSearchValue, type BaseEventSessionSection, type BaseEventSponsorship, type BaseEventSponsorshipLevel, type BaseFaq, type BaseFaqSection, type BaseFile, type BaseGroup, type BaseGroupInvitation, type BaseGroupMembership, type BaseGroupRequest, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseLinkPreview, type BaseLogin, type BaseMatch, type BaseNotification, type BaseOrganization, type BasePass, type BasePassAddon, type BasePassType, type BasePassTypePriceSchedule, type BasePassTypeRefundSchedule, type BasePayment, type BasePaymentIntent, type BasePaymentLineItem, type BaseRegistrationFollowup, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseRound, type BaseScan, type BaseSchedule, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, type BaseSurveyQuestionSearchValue, type BaseSurveySection, type BaseSurveySubmission, type BaseThread, type BaseThreadCircle, type BaseThreadCircleAccount, type BaseThreadMessage, type BaseThreadMessageEntity, type BaseThreadMessageReaction, type BaseThreadViewer, type BaseTicketRefundSchedule, type BaseTrack, type BaseTransferLog, type BaseVideo, type Benefit, BlockAccount, type BlockAccountParams, BlockIntegration, type BlockIntegrationParams, type BlockedAccount, type Booking, type BookingDaySlots, type BookingPlace, type BookingSpace, type BookingSpaceAvailability, type BookingSpaceBlackout, type BookingSpaceSlot, CHANNELS_QUERY_KEY, CHANNEL_COLLECTIONS_QUERY_KEY, CHANNEL_COLLECTION_CONTENTS_QUERY_KEY, CHANNEL_COLLECTION_QUERY_KEY, CHANNEL_CONTENTS_QUERY_KEY, CHANNEL_CONTENT_ACTIVITIES_QUERY_KEY, CHANNEL_CONTENT_GUESTS_QUERY_KEY, CHANNEL_CONTENT_INTERESTS_QUERY_KEY, CHANNEL_CONTENT_QUERY_KEY, CHANNEL_INTERESTS_QUERY_KEY, CHANNEL_QUERY_KEY, CHANNEL_SUBSCRIBERS_QUERY_KEY, CONTENTS_QUERY_KEY, CUSTOM_ERROR_CODES, CancelBooking, type CancelBookingParams, CancelGroupInvitation, type CancelGroupInvitationParams, CancelGroupRequest, type CancelGroupRequestParams, CancelPass, type CancelPassParams, CancelSubscription, type CancelSubscriptionParams, CapturePaymentIntent, type CapturePaymentIntentParams, type Channel, type ChannelCollection, type ChannelSubscriber, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, CheckinListingAttendeePass, type CheckinListingAttendeePassParams, type ClientApiParams, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConfirmBooking, type ConfirmBookingParams, ConnectedProvider, type ConnectedXMResponse, type Content, type ContentGuest, ContentGuestType, type Coupon, CouponType, CreateActivity, type CreateActivityParams, CreateChannel, CreateChannelCollection, type CreateChannelCollectionParams, type CreateChannelCollectionPayload, CreateChannelContent, type CreateChannelContentParams, type CreateChannelContentPayload, type CreateChannelParams, type CreateChannelPayload, CreateChannelSubscriber, type CreateChannelSubscriberParams, CreateContentGuest, type CreateContentGuestParams, type CreateContentGuestPayload, CreateGroup, CreateGroupAnnouncement, type CreateGroupAnnouncementParams, CreateGroupInvitations, type CreateGroupInvitationsParams, type CreateGroupParams, CreateGroupRequest, type CreateGroupRequestParams, CreateInterest, type CreateInterestParams, CreateListing, CreateListingAnnouncement, type CreateListingAnnouncementParams, type CreateListingParams, CreateListingQuestion, type CreateListingQuestionParams, CreateListingSession, type CreateListingSessionParams, CreateListingSpeaker, type CreateListingSpeakerParams, CreateLoginAccount, type CreateLoginAccountAccount, type CreateLoginAccountParams, CreateSelfAddress, type CreateSelfAddressParams, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfLead, type CreateSelfLeadParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateThreadMessage, type CreateThreadMessageParams, Currency, type CursorQueryOptions, type CursorQueryParams, DayOfWeek, DeactivateGroup, type DeactivateGroupParams, DefaultAuthAction, DeleteActivity, type DeleteActivityParams, DeleteChannel, DeleteChannelCollection, type DeleteChannelCollectionParams, DeleteChannelContent, type DeleteChannelContentParams, type DeleteChannelParams, DeleteChannelSubscriber, type DeleteChannelSubscriberParams, DeleteContentGuest, type DeleteContentGuestParams, DeleteContentPublishSchedule, type DeleteContentPublishScheduleParams, DeleteDraftBooking, type DeleteDraftBookingParams, DeleteListing, type DeleteListingParams, DeleteListingQuestion, type DeleteListingQuestionParams, DeleteListingSession, type DeleteListingSessionParams, DeleteListingSpeaker, type DeleteListingSpeakerParams, DeleteSelf, DeleteSelfAddress, type DeleteSelfAddressParams, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfLead, type DeleteSelfLeadParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, DeleteThreadCircleAccount, type DeleteThreadCircleAccountParams, DeleteThreadMessage, type DeleteThreadMessageParams, DemoteGroupModerator, type DemoteGroupModeratorParams, DisableIntegration, type DisableIntegrationParams, DraftBooking, type DraftBookingParams, ERR_BANNED_USER, ERR_FEATURE_NOT_AVAILABLE, ERR_INTEGRATION_PERMISSION_DENIED, ERR_KNOWN_ERROR, ERR_NOT_EVENT_REGISTERED, ERR_NOT_GROUP_MEMBER, ERR_NO_ACCOUNT_SELECTED, ERR_PRIVATE_CHANNEL, ERR_REGISTRATION_UNAVAILABLE, ERR_SUBSCRIPTION_REQUIRED, ERR_TIER_REQUIRED, EVENTS_QUERY_KEY, EVENT_ACTIVATIONS_QUERY_KEY, EVENT_ACTIVATION_QUERY_KEY, EVENT_ACTIVATION_SUMMARY_QUERY_KEY, EVENT_ACTIVITIES_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_MEDIA_ITEMS_QUERY_KEY, EVENT_MEDIA_ITEM_QUERY_KEY, EVENT_PAGES_QUERY_KEY, EVENT_PAGE_QUERY_KEY, EVENT_QUERY_KEY, EVENT_QUESTION_VALUES_QUERY_KEY, EVENT_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_QUERY_KEY, EVENT_SESSION_QUESTION_VALUES_QUERY_KEY, EVENT_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPEAKER_SESSIONS_QUERY_KEY, EVENT_SPONSORSHIP_LEVELS_QUERY_KEY, EVENT_SPONSORSHIP_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EnableIntegration, type EnableIntegrationParams, type Event, type EventActivation, type EventActivationCompletion, EventActivationType, type EventAddOn, EventAgendaVisibility, type EventAllowlistMember, type EventEmail, EventEmailType, type EventListing, type EventMediaItem, type EventPackage, type EventPackagePass, type EventPage, type EventRoomType, type EventRoomTypeAddOnDetails, type EventRoomTypePassTypeDetails, type EventRoomTypeReservation, type EventSessionAccess, type EventSessionQuestion, type EventSessionQuestionChoice, type EventSessionQuestionResponse, type EventSessionQuestionSearchValue, EventSessionQuestionType, type EventSessionSection, EventSource, type EventSponsorship, type EventSponsorshipLevel, EventType, type Faq, type FaqSection, type File, FollowAccount, type FollowAccountParams, GROUPS_FEATURED_QUERY_KEY, GROUPS_INVITED_QUERY_KEY, GROUPS_QUERY_KEY, GROUPS_REQUESTED_QUERY_KEY, GROUP_ACTIVITIES_QUERY_KEY, GROUP_ANNOUNCEMENTS_QUERY_KEY, GROUP_EVENTS_QUERY_KEY, GROUP_INVITABLE_ACCOUNTS_QUERY_KEY, GROUP_INVITATIONS_QUERY_KEY, GROUP_MEDIA_QUERY_KEY, GROUP_MEMBERS_QUERY_KEY, GROUP_QUERY_KEY, GROUP_REQUESTS_QUERY_KEY, GROUP_REQUEST_QUERY_KEY, GROUP_SPONSORS_QUERY_KEY, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountFollowStats, type GetAccountFollowStatsProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, GetAccountGroups, type GetAccountGroupsProps, GetAccountMedia, type GetAccountMediaProps, type GetAccountProps, GetAccounts, GetAccountsPopular, type GetAccountsPopularProps, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, GetActivityLikes, type GetActivityLikesProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetBooking, GetBookingIntent, type GetBookingIntentProps, GetBookingPlace, type GetBookingPlaceProps, GetBookingPlaceSpace, type GetBookingPlaceSpaceProps, GetBookingPlaceSpaceSlots, type GetBookingPlaceSpaceSlotsProps, GetBookingPlaces, type GetBookingPlacesParams, GetBookingPlacesSpaces, type GetBookingPlacesSpacesProps, type GetBookingProps, GetBookings, type GetBookingsParams, GetChannel, GetChannelCollection, GetChannelCollectionContents, type GetChannelCollectionContentsParams, type GetChannelCollectionParams, GetChannelCollections, type GetChannelCollectionsParams, GetChannelContent, GetChannelContentActivities, type GetChannelContentActivitiesParams, GetChannelContentGuests, type GetChannelContentGuestsParams, GetChannelContentInterests, type GetChannelContentInterestsParams, type GetChannelContentParams, GetChannelContents, type GetChannelContentsParams, GetChannelInterests, type GetChannelInterestsParams, type GetChannelParams, GetChannelSubscribers, type GetChannelSubscribersParams, GetChannels, type GetChannelsParams, GetClientAPI, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivation, type GetEventActivationProps, GetEventActivationSummary, type GetEventActivationSummaryProps, GetEventActivations, type GetEventActivationsProps, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventMediaItem, type GetEventMediaItemProps, GetEventMediaItems, type GetEventMediaItemsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessionQuestionSearchValues, type GetEventSessionQuestionSearchValuesProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakerSessions, type GetEventSpeakerSessionsProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventSponsorship, GetEventSponsorshipLevels, type GetEventSponsorshipLevelsProps, type GetEventSponsorshipProps, GetEvents, type GetEventsProps, GetGroup, GetGroupActivities, type GetGroupActivitiesProps, GetGroupAnnouncements, type GetGroupAnnouncementsProps, GetGroupEvents, type GetGroupEventsProps, GetGroupInvitableAccounts, type GetGroupInvitableAccountsProps, GetGroupInvitations, type GetGroupInvitationsProps, GetGroupMedia, type GetGroupMediaProps, GetGroupMembers, type GetGroupMembersProps, type GetGroupProps, GetGroupRequest, type GetGroupRequestProps, GetGroupRequests, type GetGroupRequestsProps, GetGroupSponsors, type GetGroupSponsorsProps, GetGroups, GetGroupsFeatured, type GetGroupsFeaturedProps, GetGroupsInvited, type GetGroupsInvitedProps, type GetGroupsProps, GetGroupsRequested, type GetGroupsRequestedProps, GetImage, type GetImageProps, GetIntegration, GetIntegrationAuth, type GetIntegrationAuthProps, type GetIntegrationProps, GetIntegrations, type GetIntegrationsProps, GetInterest, GetInterestActivities, type GetInterestActivitiesProps, type GetInterestProps, GetInterests, type GetInterestsProps, GetInvoice, GetInvoiceIntent, type GetInvoiceIntentProps, type GetInvoiceProps, GetInvoices, type GetInvoicesProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetLinkPreview, type GetLinkPreviewProps, GetListingAttendeePassQuestionSections, type GetListingAttendeePassQuestionSectionsProps, GetLogin, type GetLoginProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfContacts, type GetSelfContactsProps, GetSelfEventAttendee, GetSelfEventAttendeeAccess, type GetSelfEventAttendeeAccessProps, GetSelfEventAttendeeAccessQuestionSections, type GetSelfEventAttendeeAccessQuestionSectionsProps, GetSelfEventAttendeeCoupon, GetSelfEventAttendeeCouponPasses, type GetSelfEventAttendeeCouponPassesProps, type GetSelfEventAttendeeCouponProps, GetSelfEventAttendeeCoupons, type GetSelfEventAttendeeCouponsProps, GetSelfEventAttendeePass, GetSelfEventAttendeePassAddOns, GetSelfEventAttendeePassAddOnsIntent, type GetSelfEventAttendeePassAddOnsIntentProps, type GetSelfEventAttendeePassAddOnsProps, GetSelfEventAttendeePassAvailableSessions, type GetSelfEventAttendeePassAvailableSessionsProps, type GetSelfEventAttendeePassProps, GetSelfEventAttendeePassQuestionFollowup, type GetSelfEventAttendeePassQuestionFollowupProps, GetSelfEventAttendeePassQuestionFollowups, type GetSelfEventAttendeePassQuestionFollowupsProps, GetSelfEventAttendeePassQuestionSections, type GetSelfEventAttendeePassQuestionSectionsProps, GetSelfEventAttendeePayment, type GetSelfEventAttendeePaymentProps, type GetSelfEventAttendeeProps, GetSelfEventAttendeeTransferAccounts, type GetSelfEventAttendeeTransferAccountsProps, GetSelfEventAttendeeTransfersLogs, type GetSelfEventAttendeeTransfersLogsProps, GetSelfEventListing, GetSelfEventListingAnnouncement, type GetSelfEventListingAnnouncementProps, GetSelfEventListingAnnouncements, type GetSelfEventListingAnnouncementsProps, GetSelfEventListingAttendees, type GetSelfEventListingAttendeesProps, GetSelfEventListingCoHosts, type GetSelfEventListingCoHostsProps, GetSelfEventListingEmail, type GetSelfEventListingEmailProps, GetSelfEventListingPass, type GetSelfEventListingPassProps, GetSelfEventListingPasses, type GetSelfEventListingPassesProps, type GetSelfEventListingProps, GetSelfEventListingQuestions, type GetSelfEventListingQuestionsProps, GetSelfEventListingRegistration, type GetSelfEventListingRegistrationProps, GetSelfEventListingReport, type GetSelfEventListingReportProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationAddOns, type GetSelfEventRegistrationAddOnsProps, GetSelfEventRegistrationIntent, type GetSelfEventRegistrationIntentProps, GetSelfEventRegistrationPassTypes, type GetSelfEventRegistrationPassTypesProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationQuestions, type GetSelfEventRegistrationQuestionsProps, GetSelfEventRegistrationRoomTypes, type GetSelfEventRegistrationRoomTypesProps, GetSelfEventSessionRegistration, GetSelfEventSessionRegistrationAvailablePasses, type GetSelfEventSessionRegistrationAvailablePassesProps, GetSelfEventSessionRegistrationIntent, type GetSelfEventSessionRegistrationIntentProps, type GetSelfEventSessionRegistrationProps, GetSelfEventSessionRegistrationQuestions, type GetSelfEventSessionRegistrationQuestionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEventTicketCouponIntent, type GetSelfEventTicketCouponIntentProps, GetSelfEvents, type GetSelfEventsProps, GetSelfGroupActivities, type GetSelfGroupActivitiesProps, GetSelfGroupMembership, type GetSelfGroupMembershipProps, GetSelfGroupMemberships, type GetSelfGroupMembershipsProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfLead, GetSelfLeadCounts, type GetSelfLeadCountsProps, type GetSelfLeadProps, GetSelfLeads, type GetSelfLeadsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetStream, type GetStreamProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, GetSurveyQuestionSearchValues, type GetSurveyQuestionSearchValuesProps, GetSurveySubmission, type GetSurveySubmissionProps, GetSurveySubmissionSections, type GetSurveySubmissionSectionsProps, GetSurveySubmissions, type GetSurveySubmissionsProps, GetThread, GetThreadCircle, GetThreadCircleAccount, type GetThreadCircleAccountProps, GetThreadCircleAccounts, type GetThreadCircleAccountsProps, type GetThreadCircleProps, GetThreadCircles, type GetThreadCirclesProps, GetThreadMessage, type GetThreadMessageProps, GetThreadMessages, type GetThreadMessagesProps, type GetThreadProps, GetVideo, type GetVideoProps, type Group, GroupAccess, type GroupInvitation, GroupInvitationStatus, type GroupMembership, GroupMembershipRole, type GroupRequest, GroupRequestStatus, IMAGE_QUERY_KEY, INTEGRATIONS_QUERY_KEY, INTEGRATION_AUTH_QUERY_KEY, INTEGRATION_QUERY_KEY, INTERESTS_QUERY_KEY, INTEREST_ACTIVITIES_QUERY_KEY, INTEREST_QUERY_KEY, INVOICES_QUERY_KEY, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integration, type IntegrationDetails, IntegrationType, type Integrations, type Interest, type InterestInput, type InvitableAccount, type Invoice, type InvoiceLineItem, InvoiceStatus, JoinGroup, type JoinGroupParams, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, LINK_PREVIEW_QUERY_KEY, LISTINGS_QUERY_KEY, LISTING_ANNOUNCEMENTS_QUERY_KEY, LISTING_ANNOUNCEMENT_QUERY_KEY, LISTING_ATTENDEES_QUERY_KEY, LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, LISTING_ATTENDEE_QUERY_KEY, LISTING_CO_HOSTS_QUERY_KEY, LISTING_EMAIL_QUERY_KEY, LISTING_PASSES_QUERY_KEY, LISTING_PASS_QUERY_KEY, LISTING_QUERY_KEY, LISTING_QUESTIONS_QUERY_KEY, LISTING_REPORT_QUERY_KEY, LOGIN_QUERY_KEY, type Lead, LeadStatus, LeaveGroup, type LeaveGroupParams, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, LikeContent, type LikeContentParams, type LinkInput, type LinkPreview, type ListingPass, type ListingRegistration, type Login, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushDeviceAppType, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, ReinviteGroupInvitation, type ReinviteGroupInvitationParams, RejectGroupInvitation, type RejectGroupInvitationParams, RejectGroupRequest, type RejectGroupRequestParams, RemoveActivityReport, type RemoveActivityReportParams, RemoveChannelCollectionContent, type RemoveChannelCollectionContentParams, RemoveChannelInterest, type RemoveChannelInterestParams, RemoveContentInterest, type RemoveContentInterestParams, RemoveGroupMember, type RemoveGroupMemberParams, RemoveListingCoHost, type RemoveListingCoHostParams, RemoveListingSponsor, type RemoveListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Round, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHAT_CHANNELS_QUERY_KEY, SELF_CHAT_CHANNEL_MEMBERS_QUERY_KEY, SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY, SELF_CHAT_CHANNEL_QUERY_KEY, SELF_CONTACTS_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY, SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPONS_QUERY_KEY, SELF_EVENT_ATTENDEE_COUPON_PASSES_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_KEY, SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_KEY, SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY, SELF_EVENT_ATTENDEE_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_ACCOUNTS_QUERY_KEY, SELF_EVENT_ATTENDEE_TRANSFER_LOGS_QUERY_KEY, SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_KEY, SELF_EVENT_REGISTRATION_COUPON_QUERY_KEY, SELF_EVENT_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_ADD_ONS_INTENT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_INTENT_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_KEY, SELF_EVENT_TICKET_COUPON_INTENT_QUERY_KEY, SELF_GROUP_ACTIVITIES_QUERY_KEY, SELF_GROUP_MEMBERSHIPS_QUERY_KEY, SELF_GROUP_MEMBERSHIP_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_INVOICE_INTENT_QUERY_KEY, SELF_LEADS_QUERY_KEY, SELF_LEAD_COUNTS_QUERY_KEY, SELF_LEAD_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RELATIONSHIPS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_POPULAR_QUERY_DATA, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_FOLLOW_STATS_QUERY_DATA, SET_ACCOUNT_GROUPS_QUERY_DATA, SET_ACCOUNT_MEDIA_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_LIKES_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_BOOKINGS_QUERY_DATA, SET_BOOKING_PLACES_QUERY_DATA, SET_BOOKING_PLACE_QUERY_DATA, SET_BOOKING_PLACE_SPACES_QUERY_DATA, SET_BOOKING_PLACE_SPACE_QUERY_DATA, SET_BOOKING_QUERY_DATA, SET_CHANNELS_QUERY_DATA, SET_CHANNEL_COLLECTIONS_QUERY_DATA, SET_CHANNEL_COLLECTION_QUERY_DATA, SET_CHANNEL_CONTENTS_QUERY_DATA, SET_CHANNEL_CONTENT_QUERY_DATA, SET_CHANNEL_QUERY_DATA, SET_CHANNEL_SUBSCRIBERS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_EVENTS_QUERY_DATA, SET_EVENT_ACTIVATIONS_QUERY_DATA, SET_EVENT_ACTIVATION_QUERY_DATA, SET_EVENT_ACTIVITIES_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_IMAGE_QUERY_DATA, SET_EVENT_MEDIA_ITEMS_QUERY_DATA, SET_EVENT_PAGES_QUERY_DATA, SET_EVENT_PAGE_QUERY_DATA, SET_EVENT_QUERY_DATA, SET_EVENT_REGISTRANTS_QUERY_DATA, SET_EVENT_SESSIONS_QUERY_DATA, SET_EVENT_SESSION_QUERY_DATA, SET_EVENT_SPEAKERS_QUERY_DATA, SET_EVENT_SPEAKER_QUERY_DATA, SET_EVENT_SPEAKER_SESSIONS_FIRST_PAGE, SET_EVENT_SPONSORSHIP_LEVELS_QUERY_DATA, SET_EVENT_SPONSORSHIP_QUERY_DATA, SET_EVENT_SPONSORS_QUERY_DATA, SET_GROUPS_QUERY_DATA, SET_GROUP_ACTIVITIES_QUERY_DATA, SET_GROUP_ANNOUNCEMENTS_QUERY_DATA, SET_GROUP_EVENTS_QUERY_DATA, SET_GROUP_INVITATIONS_QUERY_DATA, SET_GROUP_MEDIA_QUERY_DATA, SET_GROUP_MEMBERS_QUERY_DATA, SET_GROUP_QUERY_DATA, SET_GROUP_REQUESTS_QUERY_DATA, SET_GROUP_REQUEST_QUERY_DATA, SET_GROUP_SPONSORS_QUERY_DATA, SET_IMAGE_QUERY_DATA, SET_INTEGRATIONS_QUERY_DATA, SET_INTEGRATION_AUTH_QUERY_DATA, SET_INTEGRATION_QUERY_DATA, SET_INTERESTS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_QUERY_DATA, SET_LINK_PREVIEW_QUERY_DATA, SET_LISTING_ANNOUNCEMENT_QUERY_KEY, SET_LISTING_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_LISTING_ATTENDEE_QUERY_KEY, SET_LISTING_EMAIL_QUERY_DATA, SET_LISTING_PASS_QUERY_KEY, SET_LISTING_QUERY_DATA, SET_LOGINS_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHAT_CHANNELS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA, SET_SELF_CHAT_CHANNEL_MESSAGES_QUERY_DATA, SET_SELF_CHAT_CHANNEL_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_AVAILABLE_SESSIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUPS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_FOLLOWUP_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PASS_QUESTION_SECTIONS_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA, SET_SELF_EVENT_ATTENDEE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ADD_ONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_COUPON_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PASS_TYPES_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_ROOM_TYPES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_AVAILABLE_PASSES_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUERY_DATA, SET_SELF_EVENT_SESSION_REGISTRATION_QUESTIONS_QUERY_DATA, SET_SELF_GROUP_MEMBERSHIP_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SELF_SURVEY_SUBMISSION_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_STREAM_QUERY_DATA, SET_SURVEY_QUERY_DATA, SET_SURVEY_SUBMISSION_SECTIONS_QUERY_DATA, SET_THREAD_CIRCLES_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNTS_QUERY_DATA, SET_THREAD_CIRCLE_ACCOUNT_QUERY_DATA, SET_THREAD_CIRCLE_QUERY_DATA, SET_THREAD_MESSAGES_QUERY_DATA, SET_THREAD_MESSAGE_QUERY_DATA, SET_THREAD_QUERY_DATA, SET_TRANSFER_ACCOUNTS_QUERY_DATA, SET_VIDEO_QUERY_DATA, STREAM_QUERY_KEY, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_QUESTION_SEARCH_VALUES_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, SelfUpdateGroupMembership, type SelfUpdateGroupMembershipParams, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, StreamOutput, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, type SurveyQuestionSearchValue, SurveyQuestionType, type SurveySection, type SurveySubmission, THREADS_QUERY_KEY, THREAD_CIRCLES_QUERY_KEY, THREAD_CIRCLE_ACCOUNTS_QUERY_KEY, THREAD_CIRCLE_ACCOUNT_QUERY_KEY, THREAD_CIRCLE_QUERY_KEY, THREAD_MESSAGES_QUERY_KEY, THREAD_MESSAGE_QUERY_KEY, THREAD_QUERY_KEY, type Thread, type ThreadCircle, type ThreadCircleAccount, ThreadCircleAccountRole, type ThreadMessage, type ThreadMessageEntity, type ThreadMessageReaction, ThreadMessageType, type ThreadViewer, type TicketAllowlistMember, TicketEventAccessLevel, type TicketPriceSchedule, type TicketRefundSchedule, TicketVisibility, type Track, type TransferLog, TransferPass, type TransferPassParams, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateChannel, UpdateChannelCollection, type UpdateChannelCollectionParams, type UpdateChannelCollectionPayload, UpdateChannelContent, type UpdateChannelContentParams, type UpdateChannelContentPayload, type UpdateChannelParams, type UpdateChannelPayload, UpdateChannelSubscriber, type UpdateChannelSubscriberParams, UpdateContentGuest, type UpdateContentGuestParams, type UpdateContentGuestPayload, UpdateGroup, type UpdateGroupParams, UpdateListing, UpdateListingEmail, type UpdateListingEmailParams, type UpdateListingParams, UpdateListingQuestion, type UpdateListingQuestionParams, UpdateListingRegistrationPassResponses, type UpdateListingRegistrationPassResponsesParams, UpdateListingSession, type UpdateListingSessionParams, UpdateListingSpeaker, type UpdateListingSpeakerParams, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, type User, VIDEO_QUERY_KEY, isListing, isManagedCoupon, isRegistrationQuestion, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeChannel, isTypeContent, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeGroup, isTypeGroupMembership, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTicket, isTypeTrack, isUUID, setFirstPageData, useAcceptGroupInvitation, useAcceptGroupRequest, useAddChannelCollectionContent, useAddChannelInterest, useAddContentInterest, useAddListingCoHost, useAddListingSponsor, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, useCancelSubscription, useCapturePaymentIntent, useCheckinListingAttendeePass, useCompleteEventActivation, useConfirmBooking, useConnected, useConnectedCursorQuery, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useCreateActivity, useCreateChannel, useCreateChannelCollection, useCreateChannelContent, useCreateChannelSubscriber, useCreateContentGuest, useCreateGroup, useCreateGroupAnnouncement, useCreateGroupInvitations, useCreateGroupRequest, useCreateInterest, useCreateListing, useCreateListingAnnouncement, useCreateListingQuestion, useCreateListingSession, useCreateListingSpeaker, useCreateLoginAccount, useCreateSelfAddress, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfLead, useCreateSubscription, useCreateSupportTicket, useCreateThreadMessage, useDeactivateGroup, useDeleteActivity, useDeleteChannel, useDeleteChannelCollection, useDeleteChannelContent, useDeleteChannelSubscriber, useDeleteContentGuest, useDeleteContentPublishSchedule, useDeleteDraftBooking, useDeleteListing, useDeleteListingQuestion, useDeleteListingSession, useDeleteListingSpeaker, useDeleteSelf, useDeleteSelfAddress, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfLead, useDeleteSelfPushDevice, useDeleteThreadCircleAccount, useDeleteThreadMessage, useDemoteGroupModerator, useDisableIntegration, useDraftBooking, useEnableIntegration, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountFollowStats, useGetAccountFollowers, useGetAccountFollowings, useGetAccountGroups, useGetAccountMedia, useGetAccounts, useGetAccountsPopular, useGetActivities, useGetActivity, useGetActivityComments, useGetActivityLikes, useGetAdvertisement, useGetBenefits, useGetBooking, useGetBookingIntent, useGetBookingPlace, useGetBookingPlaceSpace, useGetBookingPlaceSpaceSlots, useGetBookingPlaces, useGetBookingPlacesSpaces, useGetBookings, useGetChannel, useGetChannelCollection, useGetChannelCollectionContents, useGetChannelCollections, useGetChannelContent, useGetChannelContentActivities, useGetChannelContentGuests, useGetChannelContentInterests, useGetChannelContents, useGetChannelInterests, useGetChannelSubscribers, useGetChannels, useGetContents, useGetEvent, useGetEventActivation, useGetEventActivationSummary, useGetEventActivations, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventMediaItem, useGetEventMediaItems, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessionQuestionSearchValues, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakerSessions, useGetEventSpeakers, useGetEventSponsors, useGetEventSponsorship, useGetEventSponsorshipLevels, useGetEvents, useGetGroup, useGetGroupActivities, useGetGroupAnnouncements, useGetGroupEvents, useGetGroupInvitableAccounts, useGetGroupInvitations, useGetGroupMedia, useGetGroupMembers, useGetGroupRequest, useGetGroupRequests, useGetGroupSponsors, useGetGroups, useGetGroupsFeatured, useGetGroupsInvited, useGetGroupsRequested, useGetImage, useGetIntegration, useGetIntegrationAuth, useGetIntegrations, useGetInterest, useGetInterestActivities, useGetInterests, useGetInvoice, useGetInvoiceIntent, useGetInvoices, useGetLevel, useGetLevelSponsors, useGetLevels, useGetLinkPreview, useGetListingAttendeePassQuestionSections, useGetLogin, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfContacts, useGetSelfEventAttendee, useGetSelfEventAttendeeAccess, useGetSelfEventAttendeeAccessQuestionSections, useGetSelfEventAttendeeCoupon, useGetSelfEventAttendeeCouponPasses, useGetSelfEventAttendeeCoupons, useGetSelfEventAttendeePass, useGetSelfEventAttendeePassAddOns, useGetSelfEventAttendeePassAddOnsIntent, useGetSelfEventAttendeePassAvailableSessions, useGetSelfEventAttendeePassQuestionFollowup, useGetSelfEventAttendeePassQuestionFollowups, useGetSelfEventAttendeePassQuestionSections, useGetSelfEventAttendeePayment, useGetSelfEventAttendeeTransferAccounts, useGetSelfEventAttendeeTransfersLogs, useGetSelfEventListing, useGetSelfEventListingAnnouncement, useGetSelfEventListingAnnouncements, useGetSelfEventListingCoHosts, useGetSelfEventListingEmail, useGetSelfEventListingPass, useGetSelfEventListingPasses, useGetSelfEventListingQuestions, useGetSelfEventListingRegistration, useGetSelfEventListingReport, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationAddOns, useGetSelfEventRegistrationIntent, useGetSelfEventRegistrationPassTypes, useGetSelfEventRegistrationQuestions, useGetSelfEventRegistrationRoomTypes, useGetSelfEventSessionRegistration, useGetSelfEventSessionRegistrationAvailablePasses, useGetSelfEventSessionRegistrationIntent, useGetSelfEventSessionRegistrationQuestions, useGetSelfEventSessions, useGetSelfEventTicketCouponIntent, useGetSelfEvents, useGetSelfGroupActivities, useGetSelfGroupMembership, useGetSelfGroupMemberships, useGetSelfInterests, useGetSelfLead, useGetSelfLeadCounts, useGetSelfLeads, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetStream, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveyQuestionSearchValues, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSelfUpdateGroupMembership, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage };
|
package/dist/index.js
CHANGED
|
@@ -90,6 +90,7 @@ var ERR_INTEGRATION_PERMISSION_DENIED = 459;
|
|
|
90
90
|
var ERR_KNOWN_ERROR = 460;
|
|
91
91
|
var ERR_PRIVATE_CHANNEL = 461;
|
|
92
92
|
var ERR_BANNED_USER = 462;
|
|
93
|
+
var ERR_NO_ACCOUNT_SELECTED = 463;
|
|
93
94
|
var CUSTOM_ERROR_CODES = [
|
|
94
95
|
ERR_NOT_GROUP_MEMBER,
|
|
95
96
|
ERR_NOT_EVENT_REGISTERED,
|
|
@@ -100,7 +101,8 @@ var CUSTOM_ERROR_CODES = [
|
|
|
100
101
|
ERR_INTEGRATION_PERMISSION_DENIED,
|
|
101
102
|
ERR_KNOWN_ERROR,
|
|
102
103
|
ERR_PRIVATE_CHANNEL,
|
|
103
|
-
ERR_BANNED_USER
|
|
104
|
+
ERR_BANNED_USER,
|
|
105
|
+
ERR_NO_ACCOUNT_SELECTED
|
|
104
106
|
];
|
|
105
107
|
var GetErrorMessage = (error, fallback = "Something went wrong") => {
|
|
106
108
|
let message = fallback;
|
|
@@ -212,11 +214,8 @@ var GetClientAPI = async (params) => {
|
|
|
212
214
|
};
|
|
213
215
|
|
|
214
216
|
// src/queries/accounts/useGetAccounts.ts
|
|
215
|
-
var ACCOUNTS_QUERY_KEY = (
|
|
217
|
+
var ACCOUNTS_QUERY_KEY = () => {
|
|
216
218
|
const keys = ["ACCOUNTS"];
|
|
217
|
-
if (accountType) {
|
|
218
|
-
keys.push(accountType);
|
|
219
|
-
}
|
|
220
219
|
return keys;
|
|
221
220
|
};
|
|
222
221
|
var SET_ACCOUNTS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
@@ -233,13 +232,11 @@ var GetAccounts = async ({
|
|
|
233
232
|
pageSize,
|
|
234
233
|
orderBy,
|
|
235
234
|
search,
|
|
236
|
-
accountType,
|
|
237
235
|
clientApiParams
|
|
238
236
|
}) => {
|
|
239
237
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
240
238
|
const { data } = await clientApi.get(`/accounts`, {
|
|
241
239
|
params: {
|
|
242
|
-
accountType: accountType || void 0,
|
|
243
240
|
page: pageParam || void 0,
|
|
244
241
|
pageSize: pageSize || void 0,
|
|
245
242
|
orderBy: orderBy || void 0,
|
|
@@ -248,10 +245,10 @@ var GetAccounts = async ({
|
|
|
248
245
|
});
|
|
249
246
|
return data;
|
|
250
247
|
};
|
|
251
|
-
var useGetAccounts = (
|
|
248
|
+
var useGetAccounts = (params = {}, options = {}) => {
|
|
252
249
|
return useConnectedInfiniteQuery(
|
|
253
|
-
ACCOUNTS_QUERY_KEY(
|
|
254
|
-
(params2) => GetAccounts(
|
|
250
|
+
ACCOUNTS_QUERY_KEY(),
|
|
251
|
+
(params2) => GetAccounts(params2),
|
|
255
252
|
params,
|
|
256
253
|
{
|
|
257
254
|
...options
|
|
@@ -696,8 +693,8 @@ var useGetAccountFollowings = (accountId = "", params = {}, options = {}) => {
|
|
|
696
693
|
};
|
|
697
694
|
|
|
698
695
|
// src/queries/accounts/useGetAccountsPopular.ts
|
|
699
|
-
var ACCOUNTS_POPULAR_QUERY_KEY = (
|
|
700
|
-
const keys = [...ACCOUNTS_QUERY_KEY(
|
|
696
|
+
var ACCOUNTS_POPULAR_QUERY_KEY = () => {
|
|
697
|
+
const keys = [...ACCOUNTS_QUERY_KEY(), "POPULAR"];
|
|
701
698
|
return keys;
|
|
702
699
|
};
|
|
703
700
|
var SET_ACCOUNTS_POPULAR_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
@@ -714,13 +711,11 @@ var GetAccountsPopular = async ({
|
|
|
714
711
|
pageSize,
|
|
715
712
|
orderBy,
|
|
716
713
|
search,
|
|
717
|
-
accountType,
|
|
718
714
|
clientApiParams
|
|
719
715
|
}) => {
|
|
720
716
|
const clientApi = await GetClientAPI(clientApiParams);
|
|
721
717
|
const { data } = await clientApi.get(`/accounts/popular`, {
|
|
722
718
|
params: {
|
|
723
|
-
accountType: accountType || void 0,
|
|
724
719
|
page: pageParam || void 0,
|
|
725
720
|
pageSize: pageSize || void 0,
|
|
726
721
|
orderBy: orderBy || void 0,
|
|
@@ -729,10 +724,10 @@ var GetAccountsPopular = async ({
|
|
|
729
724
|
});
|
|
730
725
|
return data;
|
|
731
726
|
};
|
|
732
|
-
var useGetAccountsPopular = (
|
|
727
|
+
var useGetAccountsPopular = (params = {}, options = {}) => {
|
|
733
728
|
return useConnectedInfiniteQuery(
|
|
734
|
-
ACCOUNTS_POPULAR_QUERY_KEY(
|
|
735
|
-
(params2) => GetAccountsPopular(
|
|
729
|
+
ACCOUNTS_POPULAR_QUERY_KEY(),
|
|
730
|
+
(params2) => GetAccountsPopular(params2),
|
|
736
731
|
params,
|
|
737
732
|
{
|
|
738
733
|
...options
|
|
@@ -3443,40 +3438,6 @@ var useGetOrganizationExplore = (options = {}) => {
|
|
|
3443
3438
|
);
|
|
3444
3439
|
};
|
|
3445
3440
|
|
|
3446
|
-
// src/queries/organization/useGetOrganizationPage.ts
|
|
3447
|
-
var ORGANIZATION_PAGE_QUERY_KEY = (type) => [
|
|
3448
|
-
...ORGANIZATION_QUERY_KEY(),
|
|
3449
|
-
"PAGE",
|
|
3450
|
-
type
|
|
3451
|
-
];
|
|
3452
|
-
var SET_ORGANIZATION_PAGE_QUERY_DATA = (queryClient, keyParams, response, baseKeys = ["en"]) => {
|
|
3453
|
-
queryClient.setQueryData(
|
|
3454
|
-
[
|
|
3455
|
-
...ORGANIZATION_PAGE_QUERY_KEY(...keyParams),
|
|
3456
|
-
...GetBaseSingleQueryKeys(...baseKeys)
|
|
3457
|
-
],
|
|
3458
|
-
response
|
|
3459
|
-
);
|
|
3460
|
-
};
|
|
3461
|
-
var GetOrganizationPage = async ({
|
|
3462
|
-
type,
|
|
3463
|
-
clientApiParams
|
|
3464
|
-
}) => {
|
|
3465
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
3466
|
-
const { data } = await clientApi.get(`/organization/pages/${type}`);
|
|
3467
|
-
return data;
|
|
3468
|
-
};
|
|
3469
|
-
var useGetOrganizationPage = (type, options = {}) => {
|
|
3470
|
-
return useConnectedSingleQuery(
|
|
3471
|
-
ORGANIZATION_PAGE_QUERY_KEY(type),
|
|
3472
|
-
(params) => GetOrganizationPage({ type, ...params }),
|
|
3473
|
-
{
|
|
3474
|
-
...options,
|
|
3475
|
-
enabled: !!type && (options?.enabled ?? true)
|
|
3476
|
-
}
|
|
3477
|
-
);
|
|
3478
|
-
};
|
|
3479
|
-
|
|
3480
3441
|
// src/queries/organization/useGetOrganizationSubscriptionProducts.tsx
|
|
3481
3442
|
var ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY = () => [
|
|
3482
3443
|
...ORGANIZATION_QUERY_KEY(),
|
|
@@ -5324,78 +5285,6 @@ var useGetSelfGroupMembership = (groupId, options = {}) => {
|
|
|
5324
5285
|
);
|
|
5325
5286
|
};
|
|
5326
5287
|
|
|
5327
|
-
// src/queries/self/useGetSelfDelegateOf.ts
|
|
5328
|
-
var SELF_DELEGATE_OF_QUERY_KEY = () => [
|
|
5329
|
-
...SELF_QUERY_KEY(),
|
|
5330
|
-
"DELEGATE_OF"
|
|
5331
|
-
];
|
|
5332
|
-
var GetSelfDelegateOf = async ({
|
|
5333
|
-
pageParam,
|
|
5334
|
-
pageSize,
|
|
5335
|
-
orderBy,
|
|
5336
|
-
search,
|
|
5337
|
-
clientApiParams
|
|
5338
|
-
}) => {
|
|
5339
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
5340
|
-
const { data } = await clientApi.get(`/self/delegateof`, {
|
|
5341
|
-
params: {
|
|
5342
|
-
page: pageParam || void 0,
|
|
5343
|
-
pageSize: pageSize || void 0,
|
|
5344
|
-
orderBy: orderBy || void 0,
|
|
5345
|
-
search: search || void 0
|
|
5346
|
-
}
|
|
5347
|
-
});
|
|
5348
|
-
return data;
|
|
5349
|
-
};
|
|
5350
|
-
var useGetSelfDelegateOf = (params = {}, options = {}) => {
|
|
5351
|
-
const { authenticated } = useConnected();
|
|
5352
|
-
return useConnectedInfiniteQuery(
|
|
5353
|
-
SELF_DELEGATE_OF_QUERY_KEY(),
|
|
5354
|
-
(params2) => GetSelfDelegateOf({ ...params2 }),
|
|
5355
|
-
params,
|
|
5356
|
-
{
|
|
5357
|
-
...options,
|
|
5358
|
-
enabled: !!authenticated && (options?.enabled ?? true)
|
|
5359
|
-
}
|
|
5360
|
-
);
|
|
5361
|
-
};
|
|
5362
|
-
|
|
5363
|
-
// src/queries/self/useGetSelfDelegates.ts
|
|
5364
|
-
var SELF_DELEGATES_QUERY_KEY = () => [
|
|
5365
|
-
...SELF_QUERY_KEY(),
|
|
5366
|
-
"DELEGATES"
|
|
5367
|
-
];
|
|
5368
|
-
var GetSelfDelegates = async ({
|
|
5369
|
-
pageParam,
|
|
5370
|
-
pageSize,
|
|
5371
|
-
orderBy,
|
|
5372
|
-
search,
|
|
5373
|
-
clientApiParams
|
|
5374
|
-
}) => {
|
|
5375
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
5376
|
-
const { data } = await clientApi.get(`/self/delegates`, {
|
|
5377
|
-
params: {
|
|
5378
|
-
page: pageParam || void 0,
|
|
5379
|
-
pageSize: pageSize || void 0,
|
|
5380
|
-
orderBy: orderBy || void 0,
|
|
5381
|
-
search: search || void 0
|
|
5382
|
-
}
|
|
5383
|
-
});
|
|
5384
|
-
return data;
|
|
5385
|
-
};
|
|
5386
|
-
var useGetSelfDelegates = (params = {}, options = {}) => {
|
|
5387
|
-
const { authenticated } = useConnected();
|
|
5388
|
-
return useConnectedInfiniteQuery(
|
|
5389
|
-
SELF_DELEGATES_QUERY_KEY(),
|
|
5390
|
-
(params2) => GetSelfDelegates(params2),
|
|
5391
|
-
params,
|
|
5392
|
-
{
|
|
5393
|
-
...options,
|
|
5394
|
-
enabled: !!authenticated && (options?.enabled ?? true)
|
|
5395
|
-
}
|
|
5396
|
-
);
|
|
5397
|
-
};
|
|
5398
|
-
|
|
5399
5288
|
// src/queries/self/useGetSelfEvents.ts
|
|
5400
5289
|
var SELF_EVENTS_QUERY_KEY = (past) => [
|
|
5401
5290
|
...SELF_QUERY_KEY(),
|
|
@@ -6596,6 +6485,34 @@ var useGetInterestActivities = (interest = "", params = {}, options = {}) => {
|
|
|
6596
6485
|
);
|
|
6597
6486
|
};
|
|
6598
6487
|
|
|
6488
|
+
// src/queries/logins/useGetLogin.ts
|
|
6489
|
+
var LOGIN_QUERY_KEY = () => {
|
|
6490
|
+
const keys = ["LOGIN"];
|
|
6491
|
+
return keys;
|
|
6492
|
+
};
|
|
6493
|
+
var SET_LOGINS_QUERY_DATA = (client, keyParams, response, baseKeys = ["en"]) => {
|
|
6494
|
+
client.setQueryData(
|
|
6495
|
+
[...LOGIN_QUERY_KEY(...keyParams), ...GetBaseSingleQueryKeys(...baseKeys)],
|
|
6496
|
+
response
|
|
6497
|
+
);
|
|
6498
|
+
};
|
|
6499
|
+
var GetLogin = async ({
|
|
6500
|
+
clientApiParams
|
|
6501
|
+
}) => {
|
|
6502
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
6503
|
+
const { data } = await clientApi.get(`/login`);
|
|
6504
|
+
return data;
|
|
6505
|
+
};
|
|
6506
|
+
var useGetLogin = (options = {}) => {
|
|
6507
|
+
return useConnectedSingleQuery(
|
|
6508
|
+
LOGIN_QUERY_KEY(),
|
|
6509
|
+
(params) => GetLogin(params),
|
|
6510
|
+
{
|
|
6511
|
+
...options
|
|
6512
|
+
}
|
|
6513
|
+
);
|
|
6514
|
+
};
|
|
6515
|
+
|
|
6599
6516
|
// src/queries/threads/useGetThreadCircles.ts
|
|
6600
6517
|
var THREADS_QUERY_KEY = () => ["THREADS"];
|
|
6601
6518
|
var THREAD_CIRCLES_QUERY_KEY = () => [
|
|
@@ -7613,11 +7530,6 @@ var isTypeOrganization = (organization) => {
|
|
|
7613
7530
|
var isTypeAccountTier = (accountTier) => {
|
|
7614
7531
|
return accountTier.description !== void 0;
|
|
7615
7532
|
};
|
|
7616
|
-
var AccountType = /* @__PURE__ */ ((AccountType2) => {
|
|
7617
|
-
AccountType2["account"] = "account";
|
|
7618
|
-
AccountType2["team"] = "team";
|
|
7619
|
-
return AccountType2;
|
|
7620
|
-
})(AccountType || {});
|
|
7621
7533
|
var isTypeAccount = (account) => {
|
|
7622
7534
|
return account.bio !== void 0;
|
|
7623
7535
|
};
|
|
@@ -7793,9 +7705,6 @@ var AdvertisementType = /* @__PURE__ */ ((AdvertisementType2) => {
|
|
|
7793
7705
|
var isTypeAdvertisement = (advertisement) => {
|
|
7794
7706
|
return advertisement.title !== void 0;
|
|
7795
7707
|
};
|
|
7796
|
-
var isTypeTeamMember = (teamMember) => {
|
|
7797
|
-
return teamMember.email !== void 0;
|
|
7798
|
-
};
|
|
7799
7708
|
var GroupMembershipRole = /* @__PURE__ */ ((GroupMembershipRole2) => {
|
|
7800
7709
|
GroupMembershipRole2["member"] = "member";
|
|
7801
7710
|
GroupMembershipRole2["moderator"] = "moderator";
|
|
@@ -10071,28 +9980,6 @@ var useUpdateSubscriptionPaymentMethod = (options = {}) => {
|
|
|
10071
9980
|
return useConnectedMutation_default(UpdateSubscriptionPaymentMethod, options);
|
|
10072
9981
|
};
|
|
10073
9982
|
|
|
10074
|
-
// src/mutations/self/useAddSelfDelegate.ts
|
|
10075
|
-
var AddSelfDelegate = async ({
|
|
10076
|
-
email,
|
|
10077
|
-
clientApiParams,
|
|
10078
|
-
queryClient
|
|
10079
|
-
}) => {
|
|
10080
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10081
|
-
const { data } = await clientApi.post(
|
|
10082
|
-
`/self/delegates`,
|
|
10083
|
-
{
|
|
10084
|
-
email
|
|
10085
|
-
}
|
|
10086
|
-
);
|
|
10087
|
-
if (queryClient && data.status === "ok") {
|
|
10088
|
-
queryClient.invalidateQueries({ queryKey: SELF_DELEGATES_QUERY_KEY() });
|
|
10089
|
-
}
|
|
10090
|
-
return data;
|
|
10091
|
-
};
|
|
10092
|
-
var useAddSelfDelegate = (options = {}) => {
|
|
10093
|
-
return useConnectedMutation_default(AddSelfDelegate, options);
|
|
10094
|
-
};
|
|
10095
|
-
|
|
10096
9983
|
// src/mutations/self/useAddSelfEventSession.ts
|
|
10097
9984
|
var AddSelfEventSession = async ({
|
|
10098
9985
|
eventId,
|
|
@@ -10152,25 +10039,6 @@ var useDeleteSelfPushDevice = (options = {}) => {
|
|
|
10152
10039
|
return useConnectedMutation_default(DeleteSelfPushDevice, options);
|
|
10153
10040
|
};
|
|
10154
10041
|
|
|
10155
|
-
// src/mutations/self/useRemoveSelfDelegate.ts
|
|
10156
|
-
var RemoveSelfDelegate = async ({
|
|
10157
|
-
accountId,
|
|
10158
|
-
clientApiParams,
|
|
10159
|
-
queryClient
|
|
10160
|
-
}) => {
|
|
10161
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10162
|
-
const { data } = await clientApi.delete(
|
|
10163
|
-
`/self/delegates/${accountId}`
|
|
10164
|
-
);
|
|
10165
|
-
if (queryClient && data.status === "ok") {
|
|
10166
|
-
queryClient.invalidateQueries({ queryKey: SELF_DELEGATES_QUERY_KEY() });
|
|
10167
|
-
}
|
|
10168
|
-
return data;
|
|
10169
|
-
};
|
|
10170
|
-
var useRemoveSelfDelegate = (options = {}) => {
|
|
10171
|
-
return useConnectedMutation_default(RemoveSelfDelegate, options);
|
|
10172
|
-
};
|
|
10173
|
-
|
|
10174
10042
|
// src/mutations/self/useRemoveSelfEventSession.ts
|
|
10175
10043
|
var RemoveSelfEventSession = async ({
|
|
10176
10044
|
eventId,
|
|
@@ -10392,26 +10260,6 @@ var useCreateSupportTicket = (options = {}) => {
|
|
|
10392
10260
|
return useConnectedMutation_default(CreateSupportTicket, options);
|
|
10393
10261
|
};
|
|
10394
10262
|
|
|
10395
|
-
// src/mutations/team/useCreateTeamAccount.ts
|
|
10396
|
-
var CreateTeamAccount = async ({
|
|
10397
|
-
name,
|
|
10398
|
-
email,
|
|
10399
|
-
clientApiParams
|
|
10400
|
-
}) => {
|
|
10401
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10402
|
-
const { data } = await clientApi.post(
|
|
10403
|
-
`/self/team`,
|
|
10404
|
-
{
|
|
10405
|
-
name,
|
|
10406
|
-
email
|
|
10407
|
-
}
|
|
10408
|
-
);
|
|
10409
|
-
return data;
|
|
10410
|
-
};
|
|
10411
|
-
var useCreateTeamAccount = (options = {}) => {
|
|
10412
|
-
return useConnectedMutation_default(CreateTeamAccount, options);
|
|
10413
|
-
};
|
|
10414
|
-
|
|
10415
10263
|
// src/mutations/groups/useAcceptGroupInvitation.ts
|
|
10416
10264
|
var AcceptGroupInvitation = async ({
|
|
10417
10265
|
groupId,
|
|
@@ -11502,6 +11350,26 @@ var useUpdateListingRegistrationPassResponses = (options = {}) => {
|
|
|
11502
11350
|
return useConnectedMutation_default(UpdateListingRegistrationPassResponses, options);
|
|
11503
11351
|
};
|
|
11504
11352
|
|
|
11353
|
+
// src/mutations/logins/useCreateLoginAccount.ts
|
|
11354
|
+
var CreateLoginAccount = async ({
|
|
11355
|
+
clientApiParams,
|
|
11356
|
+
queryClient,
|
|
11357
|
+
account
|
|
11358
|
+
}) => {
|
|
11359
|
+
const clientApi = await GetClientAPI(clientApiParams);
|
|
11360
|
+
const { data } = await clientApi.post(
|
|
11361
|
+
`/login/account`,
|
|
11362
|
+
account
|
|
11363
|
+
);
|
|
11364
|
+
if (queryClient) {
|
|
11365
|
+
queryClient.invalidateQueries({ queryKey: LOGIN_QUERY_KEY() });
|
|
11366
|
+
}
|
|
11367
|
+
return data;
|
|
11368
|
+
};
|
|
11369
|
+
var useCreateLoginAccount = (options = {}) => {
|
|
11370
|
+
return useConnectedMutation_default(CreateLoginAccount, options);
|
|
11371
|
+
};
|
|
11372
|
+
|
|
11505
11373
|
// src/mutations/storage/useUploadFile.ts
|
|
11506
11374
|
var UploadFile = async ({
|
|
11507
11375
|
clientApiParams,
|
|
@@ -11949,7 +11817,6 @@ export {
|
|
|
11949
11817
|
ADVERTISEMENT_QUERY_KEY,
|
|
11950
11818
|
AcceptGroupInvitation,
|
|
11951
11819
|
AcceptGroupRequest,
|
|
11952
|
-
AccountType,
|
|
11953
11820
|
ActivityEntityType,
|
|
11954
11821
|
AddChannelCollectionContent,
|
|
11955
11822
|
AddChannelInterest,
|
|
@@ -11957,7 +11824,6 @@ export {
|
|
|
11957
11824
|
AddListingCoHost,
|
|
11958
11825
|
AddListingSponsor,
|
|
11959
11826
|
AddSelfChatChannelMember,
|
|
11960
|
-
AddSelfDelegate,
|
|
11961
11827
|
AddSelfEventSession,
|
|
11962
11828
|
AddSelfInterests,
|
|
11963
11829
|
AddThreadCircleAccount,
|
|
@@ -12016,13 +11882,13 @@ export {
|
|
|
12016
11882
|
CreateListingQuestion,
|
|
12017
11883
|
CreateListingSession,
|
|
12018
11884
|
CreateListingSpeaker,
|
|
11885
|
+
CreateLoginAccount,
|
|
12019
11886
|
CreateSelfAddress,
|
|
12020
11887
|
CreateSelfChatChannel,
|
|
12021
11888
|
CreateSelfChatChannelMessage,
|
|
12022
11889
|
CreateSelfLead,
|
|
12023
11890
|
CreateSubscription,
|
|
12024
11891
|
CreateSupportTicket,
|
|
12025
|
-
CreateTeamAccount,
|
|
12026
11892
|
CreateThreadMessage,
|
|
12027
11893
|
Currency,
|
|
12028
11894
|
DayOfWeek,
|
|
@@ -12057,6 +11923,7 @@ export {
|
|
|
12057
11923
|
ERR_KNOWN_ERROR,
|
|
12058
11924
|
ERR_NOT_EVENT_REGISTERED,
|
|
12059
11925
|
ERR_NOT_GROUP_MEMBER,
|
|
11926
|
+
ERR_NO_ACCOUNT_SELECTED,
|
|
12060
11927
|
ERR_PRIVATE_CHANNEL,
|
|
12061
11928
|
ERR_REGISTRATION_UNAVAILABLE,
|
|
12062
11929
|
ERR_SUBSCRIPTION_REQUIRED,
|
|
@@ -12205,10 +12072,10 @@ export {
|
|
|
12205
12072
|
GetLevels,
|
|
12206
12073
|
GetLinkPreview,
|
|
12207
12074
|
GetListingAttendeePassQuestionSections,
|
|
12075
|
+
GetLogin,
|
|
12208
12076
|
GetOrganization,
|
|
12209
12077
|
GetOrganizationConfig,
|
|
12210
12078
|
GetOrganizationExplore,
|
|
12211
|
-
GetOrganizationPage,
|
|
12212
12079
|
GetOrganizationSubscriptionProducts,
|
|
12213
12080
|
GetSelf,
|
|
12214
12081
|
GetSelfActivities,
|
|
@@ -12220,8 +12087,6 @@ export {
|
|
|
12220
12087
|
GetSelfChatChannelMessages,
|
|
12221
12088
|
GetSelfChatChannels,
|
|
12222
12089
|
GetSelfContacts,
|
|
12223
|
-
GetSelfDelegateOf,
|
|
12224
|
-
GetSelfDelegates,
|
|
12225
12090
|
GetSelfEventAttendee,
|
|
12226
12091
|
GetSelfEventAttendeeAccess,
|
|
12227
12092
|
GetSelfEventAttendeeAccessQuestionSections,
|
|
@@ -12331,6 +12196,7 @@ export {
|
|
|
12331
12196
|
LISTING_QUERY_KEY,
|
|
12332
12197
|
LISTING_QUESTIONS_QUERY_KEY,
|
|
12333
12198
|
LISTING_REPORT_QUERY_KEY,
|
|
12199
|
+
LOGIN_QUERY_KEY,
|
|
12334
12200
|
LeadStatus,
|
|
12335
12201
|
LeaveGroup,
|
|
12336
12202
|
LeaveSelfChatChannel,
|
|
@@ -12340,7 +12206,6 @@ export {
|
|
|
12340
12206
|
NotificationType,
|
|
12341
12207
|
ORGANIZATION_CONFIG_QUERY_KEY,
|
|
12342
12208
|
ORGANIZATION_EXPLORE_QUERY_KEY,
|
|
12343
|
-
ORGANIZATION_PAGE_QUERY_KEY,
|
|
12344
12209
|
ORGANIZATION_QUERY_KEY,
|
|
12345
12210
|
ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY,
|
|
12346
12211
|
OrganizationModuleType,
|
|
@@ -12364,7 +12229,6 @@ export {
|
|
|
12364
12229
|
RemoveGroupMember,
|
|
12365
12230
|
RemoveListingCoHost,
|
|
12366
12231
|
RemoveListingSponsor,
|
|
12367
|
-
RemoveSelfDelegate,
|
|
12368
12232
|
RemoveSelfEventRegistrationCoupon,
|
|
12369
12233
|
RemoveSelfEventSession,
|
|
12370
12234
|
RemoveThreadMessageReaction,
|
|
@@ -12379,8 +12243,6 @@ export {
|
|
|
12379
12243
|
SELF_CHAT_CHANNEL_MESSAGES_QUERY_KEY,
|
|
12380
12244
|
SELF_CHAT_CHANNEL_QUERY_KEY,
|
|
12381
12245
|
SELF_CONTACTS_QUERY_KEY,
|
|
12382
|
-
SELF_DELEGATES_QUERY_KEY,
|
|
12383
|
-
SELF_DELEGATE_OF_QUERY_KEY,
|
|
12384
12246
|
SELF_EVENTS_QUERY_KEY,
|
|
12385
12247
|
SELF_EVENT_ATTENDEE_ACCESS_QUERY_KEY,
|
|
12386
12248
|
SELF_EVENT_ATTENDEE_ACCESS_QUESTION_SECTIONS_QUERY_KEY,
|
|
@@ -12509,7 +12371,7 @@ export {
|
|
|
12509
12371
|
SET_LISTING_EMAIL_QUERY_DATA,
|
|
12510
12372
|
SET_LISTING_PASS_QUERY_KEY,
|
|
12511
12373
|
SET_LISTING_QUERY_DATA,
|
|
12512
|
-
|
|
12374
|
+
SET_LOGINS_QUERY_DATA,
|
|
12513
12375
|
SET_PUSH_DEVICE_QUERY_DATA,
|
|
12514
12376
|
SET_SELF_CHAT_CHANNELS_QUERY_DATA,
|
|
12515
12377
|
SET_SELF_CHAT_CHANNEL_MEMBERS_QUERY_DATA,
|
|
@@ -12663,7 +12525,6 @@ export {
|
|
|
12663
12525
|
isTypeSponsorshipLevel,
|
|
12664
12526
|
isTypeSupportTicket,
|
|
12665
12527
|
isTypeSupportTicketNote,
|
|
12666
|
-
isTypeTeamMember,
|
|
12667
12528
|
isTypeTicket,
|
|
12668
12529
|
isTypeTrack,
|
|
12669
12530
|
isUUID,
|
|
@@ -12676,7 +12537,6 @@ export {
|
|
|
12676
12537
|
useAddListingCoHost,
|
|
12677
12538
|
useAddListingSponsor,
|
|
12678
12539
|
useAddSelfChatChannelMember,
|
|
12679
|
-
useAddSelfDelegate,
|
|
12680
12540
|
useAddSelfEventSession,
|
|
12681
12541
|
useAddSelfInterests,
|
|
12682
12542
|
useAddThreadCircleAccount,
|
|
@@ -12713,13 +12573,13 @@ export {
|
|
|
12713
12573
|
useCreateListingQuestion,
|
|
12714
12574
|
useCreateListingSession,
|
|
12715
12575
|
useCreateListingSpeaker,
|
|
12576
|
+
useCreateLoginAccount,
|
|
12716
12577
|
useCreateSelfAddress,
|
|
12717
12578
|
useCreateSelfChatChannel,
|
|
12718
12579
|
useCreateSelfChatChannelMessage,
|
|
12719
12580
|
useCreateSelfLead,
|
|
12720
12581
|
useCreateSubscription,
|
|
12721
12582
|
useCreateSupportTicket,
|
|
12722
|
-
useCreateTeamAccount,
|
|
12723
12583
|
useCreateThreadMessage,
|
|
12724
12584
|
useDeactivateGroup,
|
|
12725
12585
|
useDeleteActivity,
|
|
@@ -12839,10 +12699,10 @@ export {
|
|
|
12839
12699
|
useGetLevels,
|
|
12840
12700
|
useGetLinkPreview,
|
|
12841
12701
|
useGetListingAttendeePassQuestionSections,
|
|
12702
|
+
useGetLogin,
|
|
12842
12703
|
useGetOrganization,
|
|
12843
12704
|
useGetOrganizationConfig,
|
|
12844
12705
|
useGetOrganizationExplore,
|
|
12845
|
-
useGetOrganizationPage,
|
|
12846
12706
|
useGetOrganizationSubscriptionProducts,
|
|
12847
12707
|
useGetSelf,
|
|
12848
12708
|
useGetSelfActivities,
|
|
@@ -12854,8 +12714,6 @@ export {
|
|
|
12854
12714
|
useGetSelfChatChannelMessages,
|
|
12855
12715
|
useGetSelfChatChannels,
|
|
12856
12716
|
useGetSelfContacts,
|
|
12857
|
-
useGetSelfDelegateOf,
|
|
12858
|
-
useGetSelfDelegates,
|
|
12859
12717
|
useGetSelfEventAttendee,
|
|
12860
12718
|
useGetSelfEventAttendeeAccess,
|
|
12861
12719
|
useGetSelfEventAttendeeAccessQuestionSections,
|
|
@@ -12951,7 +12809,6 @@ export {
|
|
|
12951
12809
|
useRemoveGroupMember,
|
|
12952
12810
|
useRemoveListingCoHost,
|
|
12953
12811
|
useRemoveListingSponsor,
|
|
12954
|
-
useRemoveSelfDelegate,
|
|
12955
12812
|
useRemoveSelfEventRegistrationCoupon,
|
|
12956
12813
|
useRemoveSelfEventSession,
|
|
12957
12814
|
useRemoveThreadMessageReaction,
|