@connectedxm/client 0.1.28 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +74 -134
- package/dist/index.d.ts +74 -134
- package/dist/index.js +287 -293
- package/dist/index.mjs +272 -273
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -292,19 +292,12 @@ interface Event extends BaseEvent {
|
|
|
292
292
|
};
|
|
293
293
|
}
|
|
294
294
|
declare const isTypeEvent: (event: BaseEvent | Event) => event is Event;
|
|
295
|
-
interface RegistrationEventDetails {
|
|
296
|
-
id: string;
|
|
297
|
-
slug: string;
|
|
298
|
-
name: string;
|
|
299
|
-
eventStart: string;
|
|
300
|
-
eventEnd: string;
|
|
295
|
+
interface RegistrationEventDetails extends BaseEvent {
|
|
301
296
|
registration: boolean;
|
|
302
297
|
registrationCount: number;
|
|
303
298
|
registrationLimit: number;
|
|
304
299
|
registrationStart: string;
|
|
305
300
|
registrationEnd: string;
|
|
306
|
-
tickets: BaseTicket[];
|
|
307
|
-
sections?: RegistrationSection[];
|
|
308
301
|
_count: {
|
|
309
302
|
sections: number;
|
|
310
303
|
tickets: number;
|
|
@@ -340,16 +333,10 @@ interface BaseRegistrationQuestion {
|
|
|
340
333
|
max: string | null;
|
|
341
334
|
validation: string | null;
|
|
342
335
|
validationMessage: string | null;
|
|
343
|
-
primary: boolean;
|
|
344
|
-
guest: boolean;
|
|
345
|
-
}
|
|
346
|
-
interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
347
336
|
choices: BaseRegistrationQuestionChoice[];
|
|
348
337
|
}
|
|
349
|
-
interface
|
|
350
|
-
|
|
351
|
-
question: RegistrationQuestion;
|
|
352
|
-
sortOrder: number;
|
|
338
|
+
interface RegistrationQuestion extends BaseRegistrationQuestion {
|
|
339
|
+
response?: string;
|
|
353
340
|
}
|
|
354
341
|
interface BaseRegistrationQuestionChoice {
|
|
355
342
|
id: number;
|
|
@@ -358,7 +345,6 @@ interface BaseRegistrationQuestionChoice {
|
|
|
358
345
|
supply: number | null;
|
|
359
346
|
description: string | null;
|
|
360
347
|
sortOrder: number;
|
|
361
|
-
question: RegistrationQuestion;
|
|
362
348
|
subQuestions: RegistrationQuestion[];
|
|
363
349
|
}
|
|
364
350
|
interface RegistrationQuestionChoice extends BaseRegistrationQuestionChoice {
|
|
@@ -382,11 +368,12 @@ interface BaseRegistrationSection {
|
|
|
382
368
|
id: number;
|
|
383
369
|
name: string;
|
|
384
370
|
description: string | null;
|
|
385
|
-
guestDescription: string | null;
|
|
386
371
|
sortOrder: number;
|
|
387
372
|
}
|
|
388
373
|
interface RegistrationSection extends BaseRegistrationSection {
|
|
389
|
-
|
|
374
|
+
accountTiers: BaseAccountTier[];
|
|
375
|
+
eventTickets: BaseTicket[];
|
|
376
|
+
questions: RegistrationQuestion[];
|
|
390
377
|
}
|
|
391
378
|
interface EventListing extends Event {
|
|
392
379
|
newActivityCreatorEmailNotification: boolean;
|
|
@@ -426,8 +413,6 @@ interface BaseTicket {
|
|
|
426
413
|
featuredImage: BaseImage | null;
|
|
427
414
|
minQuantityPerSale: number;
|
|
428
415
|
maxQuantityPerSale: number;
|
|
429
|
-
minGuests: number;
|
|
430
|
-
maxGuests: number;
|
|
431
416
|
supply: number | null;
|
|
432
417
|
}
|
|
433
418
|
interface Ticket extends BaseTicket {
|
|
@@ -438,16 +423,17 @@ interface Ticket extends BaseTicket {
|
|
|
438
423
|
declare const isTypeTicket: (ticket: BaseTicket | Ticket) => ticket is Ticket;
|
|
439
424
|
interface BasePurchase {
|
|
440
425
|
id: string;
|
|
441
|
-
|
|
426
|
+
alternateId: number;
|
|
442
427
|
location: string | null;
|
|
443
428
|
usedAt: string | null;
|
|
444
|
-
alternateId: number;
|
|
445
429
|
transfer: {
|
|
446
430
|
id: string;
|
|
447
431
|
email: string;
|
|
448
432
|
createdAt: string;
|
|
449
|
-
};
|
|
450
|
-
|
|
433
|
+
} | null;
|
|
434
|
+
ticketId: string | null;
|
|
435
|
+
ticket: BaseTicket | null;
|
|
436
|
+
responses: BaseRegistrationQuestionResponse[];
|
|
451
437
|
}
|
|
452
438
|
interface Purchase extends BasePurchase {
|
|
453
439
|
createdAt: string;
|
|
@@ -844,29 +830,15 @@ interface Registration {
|
|
|
844
830
|
id: string;
|
|
845
831
|
alternateId: number;
|
|
846
832
|
eventId: string;
|
|
847
|
-
event: RegistrationEventDetails
|
|
833
|
+
event: RegistrationEventDetails;
|
|
848
834
|
account: BaseAccount;
|
|
849
835
|
status: RegistrationStatus;
|
|
850
|
-
selectedTicketId: string | null;
|
|
851
|
-
selectedTicket: BaseTicket | null;
|
|
852
|
-
selectedQuantity: number;
|
|
853
836
|
couponId: string | null;
|
|
854
837
|
coupon: BaseCoupon | null;
|
|
855
838
|
purchases: BasePurchase[];
|
|
856
839
|
payments: Payment[];
|
|
857
|
-
responses: BaseRegistrationQuestionResponse[];
|
|
858
|
-
guests: BaseRegistrationGuest[];
|
|
859
840
|
createdAt: string;
|
|
860
841
|
}
|
|
861
|
-
interface BaseRegistrationGuest {
|
|
862
|
-
id: number;
|
|
863
|
-
firstName: string;
|
|
864
|
-
lastName: string;
|
|
865
|
-
email: string;
|
|
866
|
-
responses: BaseRegistrationQuestionResponse[];
|
|
867
|
-
}
|
|
868
|
-
interface RegistrationGuest extends BaseRegistrationGuest {
|
|
869
|
-
}
|
|
870
842
|
declare enum RegistrationPaymentType {
|
|
871
843
|
charge = "charge",
|
|
872
844
|
refund = "refund"
|
|
@@ -1161,17 +1133,28 @@ interface SubscriptionProductPrice extends BaseSubscriptionProductPrice {
|
|
|
1161
1133
|
createdAt: string;
|
|
1162
1134
|
updatedAt: string;
|
|
1163
1135
|
}
|
|
1136
|
+
declare enum InvoiceStatus {
|
|
1137
|
+
draft = "draft",
|
|
1138
|
+
sent = "sent",
|
|
1139
|
+
paid = "paid",
|
|
1140
|
+
void = "void"
|
|
1141
|
+
}
|
|
1164
1142
|
interface BaseInvoice {
|
|
1165
1143
|
id: string;
|
|
1166
1144
|
title: string;
|
|
1167
1145
|
description: string | null;
|
|
1168
1146
|
dueDate: string;
|
|
1147
|
+
status: InvoiceStatus;
|
|
1169
1148
|
}
|
|
1170
1149
|
interface Invoice extends BaseInvoice {
|
|
1171
1150
|
lineItems: BaseInvoiceLineItem[];
|
|
1172
1151
|
payments: BasePayment[];
|
|
1173
1152
|
createdAt: string;
|
|
1174
1153
|
updatedAt: string;
|
|
1154
|
+
type?: string;
|
|
1155
|
+
intentId?: string;
|
|
1156
|
+
connectionId?: string;
|
|
1157
|
+
secret?: string;
|
|
1175
1158
|
}
|
|
1176
1159
|
interface BaseInvoiceLineItem {
|
|
1177
1160
|
id: string;
|
|
@@ -1689,12 +1672,9 @@ declare const SELF_EVENT_REGISTRATION_QUERY_KEY: (eventId: string) => QueryKey;
|
|
|
1689
1672
|
declare const SET_SELF_EVENT_REGISTRATION_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_REGISTRATION_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventRegistration>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1690
1673
|
interface GetSelfEventRegistrationProps extends SingleQueryParams {
|
|
1691
1674
|
eventId: string;
|
|
1692
|
-
ticket?: string;
|
|
1693
|
-
quantity?: number;
|
|
1694
|
-
coupon?: string;
|
|
1695
1675
|
}
|
|
1696
|
-
declare const GetSelfEventRegistration: ({ eventId,
|
|
1697
|
-
declare const useGetSelfEventRegistration: (eventId: string,
|
|
1676
|
+
declare const GetSelfEventRegistration: ({ eventId, clientApiParams, }: GetSelfEventRegistrationProps) => Promise<ConnectedXMResponse<Registration>>;
|
|
1677
|
+
declare const useGetSelfEventRegistration: (eventId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistration>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1698
1678
|
|
|
1699
1679
|
interface CheckoutResponse {
|
|
1700
1680
|
type: "stripe" | "paypal";
|
|
@@ -1710,6 +1690,32 @@ interface GetSelfEventRegistrationCheckoutProps extends SingleQueryParams {
|
|
|
1710
1690
|
declare const GetSelfEventRegistrationCheckout: ({ eventId, registrationId, clientApiParams, }: GetSelfEventRegistrationCheckoutProps) => Promise<Awaited<ConnectedXMResponse<CheckoutResponse>>>;
|
|
1711
1691
|
declare const useGetSelfEventRegistrationCheckout: (eventId: string, registrationId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationCheckout>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<CheckoutResponse>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1712
1692
|
|
|
1693
|
+
interface ResponseWithQuestion extends RegistrationQuestionResponse {
|
|
1694
|
+
question: RegistrationQuestion;
|
|
1695
|
+
}
|
|
1696
|
+
interface PurchaseWithResponseQuestions extends Purchase {
|
|
1697
|
+
responses: ResponseWithQuestion[];
|
|
1698
|
+
}
|
|
1699
|
+
declare const SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
|
|
1700
|
+
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchase>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1701
|
+
interface GetSelfEventRegistrationPurchaseProps extends SingleQueryParams {
|
|
1702
|
+
eventId: string;
|
|
1703
|
+
registrationId: string;
|
|
1704
|
+
purchaseId: string;
|
|
1705
|
+
}
|
|
1706
|
+
declare const GetSelfEventRegistrationPurchase: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseProps) => Promise<ConnectedXMResponse<PurchaseWithResponseQuestions>>;
|
|
1707
|
+
declare const useGetSelfEventRegistrationPurchase: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchase>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<PurchaseWithResponseQuestions>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1708
|
+
|
|
1709
|
+
declare const SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY: (eventId: string, registrationId: string, purchaseId: string) => QueryKey;
|
|
1710
|
+
declare const SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA: (client: QueryClient, keyParams: [eventId: string, registrationId: string, purchaseId: string], response: Awaited<ReturnType<typeof GetSelfEventRegistrationPurchaseSections>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
1711
|
+
interface GetSelfEventRegistrationPurchaseSectionsProps extends SingleQueryParams {
|
|
1712
|
+
eventId: string;
|
|
1713
|
+
registrationId: string;
|
|
1714
|
+
purchaseId: string;
|
|
1715
|
+
}
|
|
1716
|
+
declare const GetSelfEventRegistrationPurchaseSections: ({ eventId, registrationId, purchaseId, clientApiParams, }: GetSelfEventRegistrationPurchaseSectionsProps) => Promise<ConnectedXMResponse<RegistrationSection[]>>;
|
|
1717
|
+
declare const useGetSelfEventRegistrationPurchaseSections: (eventId: string, registrationId: string, purchaseId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventRegistrationPurchaseSections>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<RegistrationSection[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
1718
|
+
|
|
1713
1719
|
declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
|
|
1714
1720
|
interface GetSelfSubcriptionProps extends SingleQueryParams {
|
|
1715
1721
|
subscriptionId: string;
|
|
@@ -2046,6 +2052,13 @@ interface CreateEventLeadParams extends MutationParams {
|
|
|
2046
2052
|
declare const CreateEventLead: ({ eventId, purchaseId, note, clientApiParams, queryClient, }: CreateEventLeadParams) => Promise<ConnectedXMResponse<Lead>>;
|
|
2047
2053
|
declare const useCreateEventLead: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateEventLead>>, Omit<CreateEventLeadParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Lead>, axios.AxiosError<ConnectedXMResponse<Lead>, any>, Omit<CreateEventLeadParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2048
2054
|
|
|
2055
|
+
interface CaptureInvoicePaymentParams extends MutationParams {
|
|
2056
|
+
invoiceId: string;
|
|
2057
|
+
intentId: string;
|
|
2058
|
+
}
|
|
2059
|
+
declare const CaptureInvoicePayment: ({ invoiceId, intentId, clientApiParams, queryClient, }: CaptureInvoicePaymentParams) => Promise<ConnectedXMResponse<Invoice>>;
|
|
2060
|
+
declare const useCaptureInvoicePayment: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CaptureInvoicePayment>>, Omit<CaptureInvoicePaymentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Invoice>, axios.AxiosError<ConnectedXMResponse<Invoice>, any>, Omit<CaptureInvoicePaymentParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2061
|
+
|
|
2049
2062
|
interface AddSelfChatChannelMemberParams extends MutationParams {
|
|
2050
2063
|
channelId: string;
|
|
2051
2064
|
accountId: string;
|
|
@@ -2115,27 +2128,6 @@ interface CaptureSelfEventRegistrationPaymentParams extends MutationParams {
|
|
|
2115
2128
|
declare const CaptureSelfEventRegistrationPayment: ({ eventId, registrationId, clientApiParams, queryClient, }: CaptureSelfEventRegistrationPaymentParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2116
2129
|
declare const useCaptureSelfEventRegistrationPayment: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CaptureSelfEventRegistrationPayment>>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CaptureSelfEventRegistrationPaymentParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2117
2130
|
|
|
2118
|
-
interface CreateGuest {
|
|
2119
|
-
firstName: string;
|
|
2120
|
-
lastName: string;
|
|
2121
|
-
email: string;
|
|
2122
|
-
}
|
|
2123
|
-
interface CreateSelfEventRegistrationGuestParams extends MutationParams {
|
|
2124
|
-
eventId: string;
|
|
2125
|
-
registrationId: string;
|
|
2126
|
-
guest: CreateGuest;
|
|
2127
|
-
}
|
|
2128
|
-
declare const CreateSelfEventRegistrationGuest: ({ eventId, registrationId, guest, clientApiParams, queryClient, }: CreateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2129
|
-
declare const useCreateSelfEventRegistrationGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSelfEventRegistrationGuest>>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<CreateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2130
|
-
|
|
2131
|
-
interface DeleteSelfEventRegistrationGuestParams extends MutationParams {
|
|
2132
|
-
eventId: string;
|
|
2133
|
-
registrationId: string;
|
|
2134
|
-
guestId: string;
|
|
2135
|
-
}
|
|
2136
|
-
declare const DeleteSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, clientApiParams, queryClient, }: DeleteSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2137
|
-
declare const useDeleteSelfEventRegistrationGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof DeleteSelfEventRegistrationGuest>>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<DeleteSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2138
|
-
|
|
2139
2131
|
interface RemoveSelfEventRegistrationCouponParams extends MutationParams {
|
|
2140
2132
|
eventId: string;
|
|
2141
2133
|
registrationId: string;
|
|
@@ -2146,17 +2138,19 @@ declare const useRemoveSelfEventRegistrationCoupon: (options?: Omit<MutationOpti
|
|
|
2146
2138
|
interface RemoveSelfEventRegistrationTicketParams extends MutationParams {
|
|
2147
2139
|
eventId: string;
|
|
2148
2140
|
registrationId: string;
|
|
2141
|
+
ticketId: string;
|
|
2149
2142
|
}
|
|
2150
|
-
declare const RemoveSelfEventRegistrationTicket: ({ eventId, registrationId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2143
|
+
declare const RemoveSelfEventRegistrationTicket: ({ eventId, registrationId, ticketId, clientApiParams, queryClient, }: RemoveSelfEventRegistrationTicketParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2151
2144
|
declare const useRemoveSelfEventRegistrationTicket: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof RemoveSelfEventRegistrationTicket>>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<RemoveSelfEventRegistrationTicketParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2152
2145
|
|
|
2153
|
-
interface
|
|
2146
|
+
interface AddSelfEventRegistrationPurchaseParams extends MutationParams {
|
|
2154
2147
|
eventId: string;
|
|
2155
2148
|
registrationId: string;
|
|
2156
2149
|
ticketId: string;
|
|
2150
|
+
quantity: number;
|
|
2157
2151
|
}
|
|
2158
|
-
declare const
|
|
2159
|
-
declare const
|
|
2152
|
+
declare const AddSelfEventRegistrationPurchase: ({ eventId, registrationId, ticketId, quantity, clientApiParams, queryClient, }: AddSelfEventRegistrationPurchaseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2153
|
+
declare const useAddSelfEventRegistrationPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof AddSelfEventRegistrationPurchase>>, Omit<AddSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<AddSelfEventRegistrationPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2160
2154
|
|
|
2161
2155
|
interface SubmitStripe {
|
|
2162
2156
|
type: "stripe";
|
|
@@ -2184,52 +2178,16 @@ interface SubmitSelfEventRegistrationParams extends MutationParams {
|
|
|
2184
2178
|
declare const SubmitSelfEventRegistration: ({ eventId, registrationId, payment, clientApiParams, queryClient, }: SubmitSelfEventRegistrationParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2185
2179
|
declare const useSubmitSelfEventRegistration: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof SubmitSelfEventRegistration>>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<SubmitSelfEventRegistrationParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2186
2180
|
|
|
2187
|
-
interface
|
|
2188
|
-
eventId: string;
|
|
2189
|
-
registrationId: string;
|
|
2190
|
-
guestId: string;
|
|
2191
|
-
guest: BaseRegistrationGuest;
|
|
2192
|
-
}
|
|
2193
|
-
declare const UpdateSelfEventRegistrationGuest: ({ eventId, registrationId, guestId, guest, clientApiParams, queryClient, }: UpdateSelfEventRegistrationGuestParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2194
|
-
declare const useUpdateSelfEventRegistrationGuest: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuest>>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2195
|
-
|
|
2196
|
-
interface UpdateSelfEventRegistrationGuestResponseFileParams extends MutationParams {
|
|
2197
|
-
eventId: string;
|
|
2198
|
-
registrationId: string;
|
|
2199
|
-
questionId: string;
|
|
2200
|
-
guestId?: string;
|
|
2201
|
-
dataUrl: string;
|
|
2202
|
-
name: string;
|
|
2203
|
-
}
|
|
2204
|
-
declare const UpdateSelfEventRegistrationGuestResponseFile: ({ eventId, registrationId, questionId, guestId, dataUrl, name, clientApiParams, }: UpdateSelfEventRegistrationGuestResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
|
|
2205
|
-
declare const useUpdateSelfEventRegistrationGuestResponseFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponseFile>>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponseFileParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2206
|
-
|
|
2207
|
-
interface UpdateSelfEventRegistrationGuestResponsesParams extends MutationParams {
|
|
2181
|
+
interface UpdateSelfEventRegistrationQuestionResponseParams extends MutationParams {
|
|
2208
2182
|
eventId: string;
|
|
2209
2183
|
registrationId: string;
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
declare const useUpdateSelfEventRegistrationGuestResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponses>>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationGuestResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2215
|
-
|
|
2216
|
-
interface UpdateSelfEventRegistrationResponseFileParams extends MutationParams {
|
|
2217
|
-
eventId: string;
|
|
2218
|
-
registrationId: string;
|
|
2219
|
-
dataUrl: string;
|
|
2220
|
-
name: string;
|
|
2221
|
-
questionId: string;
|
|
2222
|
-
}
|
|
2223
|
-
declare const UpdateSelfEventRegistrationResponseFile: ({ eventId, registrationId, dataUrl, name, questionId, clientApiParams, }: UpdateSelfEventRegistrationResponseFileParams) => Promise<ConnectedXMResponse<RegistrationQuestionResponse>>;
|
|
2224
|
-
declare const useUpdateSelfEventRegistrationResponseFile: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponseFile>>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<RegistrationQuestionResponse>, axios.AxiosError<ConnectedXMResponse<RegistrationQuestionResponse>, any>, Omit<UpdateSelfEventRegistrationResponseFileParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2225
|
-
|
|
2226
|
-
interface UpdateSelfEventRegistrationResponsesParams extends MutationParams {
|
|
2227
|
-
eventId: string;
|
|
2228
|
-
registrationId: string;
|
|
2229
|
-
responses: BaseRegistrationQuestionResponse[];
|
|
2184
|
+
purchaseId: string;
|
|
2185
|
+
questionId: number;
|
|
2186
|
+
value: string;
|
|
2187
|
+
update?: boolean;
|
|
2230
2188
|
}
|
|
2231
|
-
declare const
|
|
2232
|
-
declare const
|
|
2189
|
+
declare const UpdateSelfEventRegistrationQuestionResponse: ({ eventId, registrationId, purchaseId, questionId, value, update, clientApiParams, queryClient, }: UpdateSelfEventRegistrationQuestionResponseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2190
|
+
declare const useUpdateSelfEventRegistrationQuestionResponse: (update?: boolean, options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationQuestionResponse>>, Omit<UpdateSelfEventRegistrationQuestionResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationQuestionResponseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2233
2191
|
|
|
2234
2192
|
interface CancelEventRegistrationParams extends MutationParams {
|
|
2235
2193
|
eventId: string;
|
|
@@ -2242,8 +2200,9 @@ interface CancelTransferParams extends MutationParams {
|
|
|
2242
2200
|
transferId: string;
|
|
2243
2201
|
eventId: string;
|
|
2244
2202
|
registrationId: string;
|
|
2203
|
+
purchaseId: string;
|
|
2245
2204
|
}
|
|
2246
|
-
declare const CancelTransfer: ({ transferId, eventId, registrationId, clientApiParams, queryClient, }: CancelTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2205
|
+
declare const CancelTransfer: ({ transferId, eventId, registrationId, purchaseId, clientApiParams, queryClient, }: CancelTransferParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2247
2206
|
declare const useCancelTransfer: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelTransfer>>, Omit<CancelTransferParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<CancelTransferParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2248
2207
|
|
|
2249
2208
|
interface TransferPurchaseParams extends MutationParams {
|
|
@@ -2255,25 +2214,6 @@ interface TransferPurchaseParams extends MutationParams {
|
|
|
2255
2214
|
declare const TransferPurchase: ({ email, purchaseId, eventId, registrationId, clientApiParams, queryClient, }: TransferPurchaseParams) => Promise<ConnectedXMResponse<Transfer>>;
|
|
2256
2215
|
declare const useTransferPurchase: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof TransferPurchase>>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Transfer>, axios.AxiosError<ConnectedXMResponse<Transfer>, any>, Omit<TransferPurchaseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2257
2216
|
|
|
2258
|
-
interface UpdateSelfEventRegistrationResponseParams extends MutationParams {
|
|
2259
|
-
eventId: string;
|
|
2260
|
-
registrationId: string;
|
|
2261
|
-
questionId: string;
|
|
2262
|
-
response: string;
|
|
2263
|
-
}
|
|
2264
|
-
declare const UpdateSelfEventRegistrationResponse: ({ eventId, registrationId, questionId, response, clientApiParams, queryClient, }: UpdateSelfEventRegistrationResponseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2265
|
-
declare const useUpdateSelfEventRegistrationResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationResponse>>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationResponseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2266
|
-
|
|
2267
|
-
interface UpdateSelfEventRegistrationGuestResponseParams extends MutationParams {
|
|
2268
|
-
eventId: string;
|
|
2269
|
-
registrationId: string;
|
|
2270
|
-
questionId: string;
|
|
2271
|
-
guestId: string;
|
|
2272
|
-
response: string;
|
|
2273
|
-
}
|
|
2274
|
-
declare const UpdateSelfEventRegistrationGuestResponse: ({ eventId, registrationId, questionId, guestId, response, clientApiParams, queryClient, }: UpdateSelfEventRegistrationGuestResponseParams) => Promise<ConnectedXMResponse<Registration>>;
|
|
2275
|
-
declare const useUpdateSelfEventRegistrationGuestResponse: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventRegistrationGuestResponse>>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<Registration>, axios.AxiosError<ConnectedXMResponse<Registration>, any>, Omit<UpdateSelfEventRegistrationGuestResponseParams, "queryClient" | "clientApiParams">, unknown>;
|
|
2276
|
-
|
|
2277
2217
|
interface CancelSubscriptionParams extends MutationParams {
|
|
2278
2218
|
subscriptionId: string;
|
|
2279
2219
|
}
|
|
@@ -2609,4 +2549,4 @@ interface CreateTeamAccountParams extends MutationParams {
|
|
|
2609
2549
|
declare const CreateTeamAccount: ({ name, email, clientApiParams, }: CreateTeamAccountParams) => Promise<ConnectedXMResponse<Account>>;
|
|
2610
2550
|
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>;
|
|
2611
2551
|
|
|
2612
|
-
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventPage, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationGuest, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, type CreateGuest, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSelfEventRegistrationGuest, type CreateSelfEventRegistrationGuestParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, DeleteSelfEventRegistrationGuest, type DeleteSelfEventRegistrationGuestParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_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_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_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationGuest, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, type RegistrationSectionQuestion, RegistrationStatus, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationTicket, type RemoveSelfEventRegistrationTicketParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_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_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_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_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_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, SelectSelfEventRegistrationTicket, type SelectSelfEventRegistrationTicketParams, type Self, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, UpdateSelfEventRegistrationGuest, type UpdateSelfEventRegistrationGuestParams, UpdateSelfEventRegistrationGuestResponse, UpdateSelfEventRegistrationGuestResponseFile, type UpdateSelfEventRegistrationGuestResponseFileParams, type UpdateSelfEventRegistrationGuestResponseParams, UpdateSelfEventRegistrationGuestResponses, UpdateSelfEventRegistrationResponse, UpdateSelfEventRegistrationResponseFile, type UpdateSelfEventRegistrationResponseFileParams, type UpdateSelfEventRegistrationResponseParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, setFirstPageData, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureSelfEventRegistrationPayment, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSelfEventRegistrationGuest, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfEventRegistrationGuest, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelectSelfEventRegistrationTicket, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationGuest, useUpdateSelfEventRegistrationGuestResponse, useUpdateSelfEventRegistrationGuestResponseFile, useUpdateSelfEventRegistrationGuestResponses, useUpdateSelfEventRegistrationResponse, useUpdateSelfEventRegistrationResponseFile, useUpdateSelfEventRegistrationResponses, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|
|
2552
|
+
export { ACCOUNTS_QUERY_KEY, ACCOUNT_ACTIVITIES_QUERY_KEY, ACCOUNT_BY_SHARE_CODE_QUERY_KEY, ACCOUNT_COMMUNITIES_QUERY_KEY, ACCOUNT_FOLLOWERS_QUERY_KEY, ACCOUNT_FOLLOWINGS_QUERY_KEY, ACCOUNT_QUERY_KEY, ACTIVITIES_QUERY_KEY, ACTIVITY_COMMENTS_QUERY_KEY, ACTIVITY_QUERY_KEY, ADVERTISEMENT_QUERY_KEY, AcceptTransfer, type AcceptTransferParams, type Account, type AccountShare, type AccountTier, AccountType, type Activity, AddCommunityEvent, type AddCommunityEventParams, AddSelfChatChannelMember, type AddSelfChatChannelMemberParams, AddSelfDelegate, type AddSelfDelegateParams, AddSelfEventListingSession, type AddSelfEventListingSessionParams, AddSelfEventListingSpeaker, type AddSelfEventListingSpeakerParams, AddSelfEventListingSponsor, type AddSelfEventListingSponsorParams, AddSelfEventRegistrationPurchase, type AddSelfEventRegistrationPurchaseParams, AddSelfEventSession, type AddSelfEventSessionParams, type Advertisement, type AdvertisementClick, AdvertisementType, type AdvertisementView, type Announcement, AppendInfiniteQuery, BENEFITS_QUERY_KEY, type BaseAccount, type BaseAccountTier, type BaseActivity, type BaseAdvertisement, type BaseAnnouncement, type BaseBenefit, type BaseChatChannel, type BaseChatChannelMember, type BaseChatChannelMessage, type BaseCommunity, type BaseCommunityMembership, type BaseComplimentaryTicket, type BaseContent, type BaseContentType, type BaseCoupon, type BaseEvent, type BaseEventActivation, type BaseEventActivationCompletion, type BaseEventPage, type BaseFaq, type BaseFaqSection, type BaseImage, type BaseInstance, type BaseIntegrations, type BaseInterest, type BaseInvoice, type BaseInvoiceLineItem, type BaseLead, type BaseLike, type BaseNotification, type BaseOrganization, type BasePage, type BasePayment, type BasePurchase, type BaseRegistrationQuestion, type BaseRegistrationQuestionChoice, type BaseRegistrationQuestionResponse, type BaseRegistrationQuestionSearchValue, type BaseRegistrationSection, type BaseScan, type BaseSeries, type BaseSession, type BaseSpeaker, type BaseSponsorshipLevel, type BaseSubscription, type BaseSubscriptionProduct, type BaseSubscriptionProductPrice, type BaseSupportTicket, type BaseSupportTicketNote, type BaseTeamMember, type BaseTicket, type BaseTrack, type BaseTransfer, type BaseVideo, type Benefit, COMMUNITIES_QUERY_KEY, COMMUNITY_ACTIVITIES_QUERY_KEY, COMMUNITY_ANNOUNCEMENTS_QUERY_KEY, COMMUNITY_EVENTS_QUERY_KEY, COMMUNITY_MEMBERS_QUERY_KEY, COMMUNITY_MODERATORS_QUERY_KEY, COMMUNITY_QUERY_KEY, COMMUNITY_SPONSORS_QUERY_KEY, CONTENTS_QUERY_KEY, CONTENT_ACTIVITIES_QUERY_KEY, CONTENT_QUERY_KEY, CONTENT_TYPES_QUERY_KEY, CONTENT_TYPE_CONTENTS_QUERY_KEY, CONTENT_TYPE_QUERY_KEY, CacheIndividualQueries, CancelEventRegistration, type CancelEventRegistrationParams, CancelSubscription, type CancelSubscriptionParams, CancelTransfer, type CancelTransferParams, CaptureInvoicePayment, type CaptureInvoicePaymentParams, CaptureSelfEventRegistrationPayment, type CaptureSelfEventRegistrationPaymentParams, type ChatChannel, type ChatChannelMember, type ChatChannelMessage, type CheckoutResponse, type ClientApiParams, type Community, CommunityAccess, type CommunityMembership, CommunityMembershipRole, CompleteEventActivation, type CompleteEventActivationParams, type ComplimentaryTicket, ConnectedXMProvider, type ConnectedXMResponse, type Content, type ContentType, ContentTypeFormat, type Coupon, CouponType, type CreateActivity, CreateCommunityAnnouncement, type CreateCommunityAnnouncementParams, CreateEventLead, type CreateEventLeadParams, type CreateEventListing, CreateSelfChatChannel, CreateSelfChatChannelMessage, type CreateSelfChatChannelMessageParams, type CreateSelfChatChannelParams, CreateSelfEventListing, type CreateSelfEventListingParams, CreateSubscription, type CreateSubscriptionParams, type CreateSubscriptionResponse, CreateSupportTicket, type CreateSupportTicketParams, CreateTeamAccount, type CreateTeamAccountParams, Currency, DeleteActivity, type DeleteActivityParams, DeleteReshare, type DeleteReshareParams, DeleteSelf, DeleteSelfChatChannel, DeleteSelfChatChannelMessage, type DeleteSelfChatChannelMessageParams, type DeleteSelfChatChannelParams, type DeleteSelfParams, DeleteSelfPushDevice, type DeleteSelfPushDeviceParams, EVENTS_FEATURED_QUERY_KEY, EVENTS_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_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_SPEAKERS_QUERY_KEY, EVENT_SPEAKER_QUERY_KEY, EVENT_SPONSORS_QUERY_KEY, EVENT_TICKETS_QUERY_KEY, type Event, type EventActivation, type EventActivationCompletion, type EventAllowlistMember, type EventListing, type EventListingSpeaker, type EventPage, EventSource, EventType, type Faq, type FaqSection, FollowAccount, type FollowAccountParams, GetAccount, GetAccountActivities, type GetAccountActivitiesProps, GetAccountByShareCode, type GetAccountByShareCodeProps, GetAccountCommunities, type GetAccountCommunitiesProps, GetAccountFollowers, type GetAccountFollowersProps, GetAccountFollowings, type GetAccountFollowingsProps, type GetAccountProps, GetAccounts, type GetAccountsProps, GetActivities, type GetActivitiesProps, GetActivity, GetActivityComments, type GetActivityCommentsProps, type GetActivityProps, GetAdvertisement, type GetAdvertisementProps, GetBaseInfiniteQueryKeys, GetBaseSingleQueryKeys, GetBenefits, type GetBenefitsProps, GetClientAPI, GetCommunities, type GetCommunitiesProps, GetCommunity, GetCommunityActivities, type GetCommunityActivitiesProps, GetCommunityAnnouncements, type GetCommunityAnnouncementsProps, GetCommunityEvents, type GetCommunityEventsProps, GetCommunityMembers, type GetCommunityMembersProps, GetCommunityModerators, type GetCommunityModeratorsProps, type GetCommunityProps, GetCommunitySponsors, type GetCommunitySponsorsProps, GetContent, GetContentActivities, type GetContentActivitiesParams, type GetContentParams, GetContentType, GetContentTypeContents, type GetContentTypeContentsParams, type GetContentTypeParams, GetContentTypes, type GetContentTypesParams, GetContents, type GetContentsParams, GetErrorMessage, GetEvent, GetEventActivities, type GetEventActivitiesProps, GetEventFAQSection, type GetEventFAQSectionProps, GetEventFAQSectionQuestion, type GetEventFAQSectionQuestionProps, GetEventFaqSections, type GetEventFaqSectionsProps, GetEventFaqs, type GetEventFaqsProps, GetEventPage, type GetEventPageProps, GetEventPages, type GetEventPagesProps, type GetEventProps, GetEventQuestionSearchValues, type GetEventQuestionSearchValuesProps, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, GetEventSessions, type GetEventSessionsProps, GetEventSpeaker, type GetEventSpeakerProps, GetEventSpeakers, type GetEventSpeakersProps, GetEventSponsors, type GetEventSponsorsProps, GetEventTickets, type GetEventTicketsProps, GetEvents, type GetEventsProps, GetFeaturedEvents, type GetFeaturedEventsProps, GetInvoice, type GetInvoiceProps, GetLevel, type GetLevelProps, GetLevelSponsors, type GetLevelSponsorsProps, GetLevels, type GetLevelsProps, GetOrganization, GetOrganizationExplore, type GetOrganizationExploreProps, GetOrganizationPage, type GetOrganizationPageProps, type GetOrganizationParams, GetOrganizationPaymentIntegration, type GetOrganizationPaymentIntegrationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChatChannel, GetSelfChatChannelMembers, type GetSelfChatChannelMembersProps, GetSelfChatChannelMessages, type GetSelfChatChannelMessagesProps, type GetSelfChatChannelProps, GetSelfChatChannels, type GetSelfChatChannelsProps, GetSelfCommunityMembership, type GetSelfCommunityMembershipProps, GetSelfCommunityMemberships, type GetSelfCommunityMembershipsProps, GetSelfDelegateOf, type GetSelfDelegateOfProps, GetSelfDelegates, type GetSelfDelegatesProps, GetSelfEventListing, type GetSelfEventListingProps, GetSelfEventListingRegistrations, type GetSelfEventListingRegistrationsProps, GetSelfEventListings, type GetSelfEventListingsProps, GetSelfEventRegistration, GetSelfEventRegistrationCheckout, type GetSelfEventRegistrationCheckoutProps, type GetSelfEventRegistrationProps, GetSelfEventRegistrationPurchase, type GetSelfEventRegistrationPurchaseProps, GetSelfEventRegistrationPurchaseSections, type GetSelfEventRegistrationPurchaseSectionsProps, GetSelfEventSessions, type GetSelfEventSessionsProps, GetSelfEvents, type GetSelfEventsProps, GetSelfFeed, type GetSelfFeedProps, GetSelfInterests, type GetSelfInterestsProps, GetSelfNewNotificationsCount, type GetSelfNewNotificationsCountProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRecommendations, type GetSelfRecommendationsProps, GetSelfSubcription, type GetSelfSubcriptionProps, GetSelfSubscriptionPayments, type GetSelfSubscriptionPaymentsProps, GetSelfSubscriptions, type GetSelfSubscriptionsProps, GetSelfTransfer, type GetSelfTransferProps, GetSelfTransfers, type GetSelfTransfersProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSponsor, type GetSponsorProps, GetSponsors, type GetSponsorsProps, INVOICE_QUERY_KEY, type Image, ImageType, type InfiniteQueryOptions, type InfiniteQueryParams, type Instance, type Integrations, type Interest, type Invoice, type InvoiceLineItem, InvoiceStatus, LEVELS_QUERY_KEY, LEVEL_QUERY_KEY, LEVEL_SPONSORS_QUERY_KEY, type Lead, LeaveSelfChatChannel, type LeaveSelfChatChannelParams, type Like, LikeActivity, type LikeActivityParams, type LinkPreview, type ManagedCoupon, type ManagedCouponOrder, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification$1 as Notification, type NotificationPreferences, NotificationType, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_PAGE_QUERY_KEY, ORGANIZATION_PAYMENT_INTEGRATION_QUERY_KEY, ORGANIZATION_QUERY_KEY, ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY, type Order, type OrgMembership, type Organization, type Page, type PageType, type Payment, type Purchase, type PushDevice, PushDeviceAppType, PushService, type RecomendationType, RegisterCancelledEventRegistration, type RegisterCancelledEventRegistrationParams, type Registration, type RegistrationEventDetails, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, type RegistrationQuestionSearchValue, RegistrationQuestionType, type RegistrationSection, RegistrationStatus, RejectTransfer, type RejectTransferParams, RemoveCommunityEvent, type RemoveCommunityEventParams, RemoveSelfDelegate, type RemoveSelfDelegateParams, RemoveSelfEventListingSession, type RemoveSelfEventListingSessionParams, RemoveSelfEventListingSpeaker, type RemoveSelfEventListingSpeakerParams, RemoveSelfEventListingSponsor, type RemoveSelfEventListingSponsorParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventRegistrationTicket, type RemoveSelfEventRegistrationTicketParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, ReshareActivity, type ReshareActivityParams, SELF_ACTIVITIES_QUERY_KEY, SELF_ANNOUNCEMENT_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_COMMUNITY_MEMBERSHIPS_QUERY_KEY, SELF_COMMUNITY_MEMBERSHIP_QUERY_KEY, SELF_DELEGATES_QUERY_KEY, SELF_DELEGATE_OF_QUERY_KEY, SELF_EVENTS_QUERY_KEY, SELF_EVENT_LISTINGS_QUERY_KEY, SELF_EVENT_LISTING_QUERY_KEY, SELF_EVENT_LISTING_REGISTRATIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_CHECKOUT_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_QUERY_KEY, SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_KEY, SELF_EVENT_REGISTRATION_QUERY_KEY, SELF_EVENT_SESSIONS_QUERY_KEY, SELF_FEED_QUERY_KEY, SELF_INTERESTS_QUERY_KEY, SELF_NOTIFICATIONS_QUERY_KEY, SELF_NOTIFICATION_COUNT_QUERY_KEY, SELF_PENDING_TRANSFER_QUERY_KEY, SELF_PREFERENCES_QUERY_KEY, SELF_PUSH_DEVICES_QUERY_KEY, SELF_PUSH_DEVICE_QUERY_KEY, SELF_QUERY_KEY, SELF_RECOMMENDATIONS_QUERY_KEY, SELF_SUBSCRIPTIONS_QUERY_KEY, SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY, SELF_SUBSCRIPTION_QUERY_KEY, SELF_TRANSFERS_QUERY_KEY, SERIES_EVENTS_QUERY_KEY, SERIES_LIST_QUERY_KEY, SERIES_QUERY_KEY, SET_ACCOUNTS_QUERY_DATA, SET_ACCOUNT_ACTIVITIES_QUERY_DATA, SET_ACCOUNT_BY_SHARE_CODE_QUERY_DATA, SET_ACCOUNT_COMMUNITIES_QUERY_DATA, SET_ACCOUNT_FOLLOWERS_QUERY_DATA, SET_ACCOUNT_FOLLOWINGS_QUERY_DATA, SET_ACCOUNT_QUERY_DATA, SET_ACTIVITIES_QUERY_DATA, SET_ACTIVITY_COMMENTS_QUERY_DATA, SET_ACTIVITY_QUERY_DATA, SET_ADVERTISEMENT_QUERY_DATA, SET_BENEFITS_QUERY_DATA, SET_COMMUNITIES_QUERY_DATA, SET_COMMUNITY_ACTIVITIES_QUERY_DATA, SET_COMMUNITY_ANNOUNCEMENTS_QUERY_DATA, SET_COMMUNITY_EVENTS_QUERY_DATA, SET_COMMUNITY_MEMBERS_QUERY_DATA, SET_COMMUNITY_MODERATORS_QUERY_DATA, SET_COMMUNITY_QUERY_DATA, SET_COMMUNITY_SPONSORS_QUERY_DATA, SET_CONTENTS_QUERY_DATA, SET_CONTENT_ACTIVITIES_QUERY_DATA, SET_CONTENT_QUERY_DATA, SET_CONTENT_TYPES_QUERY_DATA, SET_CONTENT_TYPE_CONTENTS_QUERY_DATA, SET_CONTENT_TYPE_QUERY_DATA, SET_EVENTS_FEATURED_QUERY_DATA, SET_EVENTS_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_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_SPONSORS_QUERY_DATA, SET_EVENT_TICKETS_QUERY_DATA, SET_INVOICE_QUERY_DATA, SET_LEVELS_QUERY_DATA, SET_LEVEL_QUERY_DATA, SET_LEVEL_SPONSORS_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_COMMUNITY_MEMBERSHIP_QUERY_DATA, SET_SELF_EVENT_LISTING_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_PURCHASE_SECTIONS_QUERY_DATA, SET_SELF_EVENT_REGISTRATION_QUERY_DATA, SET_SELF_QUERY_DATA, SET_SERIES_EVENTS_QUERY_DATA, SET_SERIES_LIST_QUERY_DATA, SET_SERIES_QUERY_DATA, SET_SPONSORS_QUERY_DATA, SET_SPONSOR_QUERY_DATA, SPONSORS_QUERY_KEY, SPONSOR_QUERY_KEY, type Scan, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, SelfCheckinRegistration, type SelfCheckinRegistrationParams, SelfCreateActivity, type SelfCreateActivityParams, SelfJoinCommunity, type SelfJoinCommunityParams, SelfLeaveCommunity, type SelfLeaveCommunityParams, SelfUpdateCommunityMembership, type SelfUpdateCommunityMembershipParams, type Series, type Session, type SingleActivity, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, type StreamInput, type SubmitPayment, type SubmitPaypalResponse, type SubmitResponse, SubmitSelfEventRegistration, type SubmitSelfEventRegistrationParams, type SubmitStripeResponse, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketType, type TeamMember, type Ticket, type TicketAllowlistMember, TicketEventAccessLevel, TicketVisibility, type Track, type Transfer, TransferPurchase, type TransferPurchaseParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UpdateCommunity, type UpdateCommunityParams, type UpdateListing, UpdateSelf, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventListing, type UpdateSelfEventListingParams, UpdateSelfEventListingSession, type UpdateSelfEventListingSessionParams, UpdateSelfEventListingSpeaker, type UpdateSelfEventListingSpeakerParams, UpdateSelfEventRegistrationQuestionResponse, type UpdateSelfEventRegistrationQuestionResponseParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, type User, isListing, isManagedCoupon, isSelf, isTypeAccount, isTypeAccountTier, isTypeActivity, isTypeAdvertisement, isTypeAnnouncement, isTypeBenefit, isTypeCommunity, isTypeCommunityMembership, isTypeContent, isTypeContentType, isTypeCoupon, isTypeEvent, isTypeEventActivation, isTypeEventActivationCompletion, isTypeEventPage, isTypeFaq, isTypeFaqSection, isTypeImage, isTypeInstance, isTypeIntegrations, isTypeLead, isTypeNotification, isTypeOrganization, isTypePurchase, isTypeScan, isTypeSession, isTypeSpeaker, isTypeSponsorshipLevel, isTypeSupportTicket, isTypeSupportTicketNote, isTypeTeamMember, isTypeTicket, isTypeTrack, isTypeTransfer, setFirstPageData, useAcceptTransfer, useAddCommunityEvent, useAddSelfChatChannelMember, useAddSelfDelegate, useAddSelfEventListingSession, useAddSelfEventListingSpeaker, useAddSelfEventListingSponsor, useAddSelfEventRegistrationPurchase, useAddSelfEventSession, useCancelEventRegistration, useCancelSubscription, useCancelTransfer, useCaptureInvoicePayment, useCaptureSelfEventRegistrationPayment, useCompleteEventActivation, useConnectedInfiniteQuery, useConnectedMutation, useConnectedSingleQuery, useConnectedXM, useCreateCommunityAnnouncement, useCreateEventLead, useCreateSelfChatChannel, useCreateSelfChatChannelMessage, useCreateSelfEventListing, useCreateSubscription, useCreateSupportTicket, useCreateTeamAccount, useDeleteActivity, useDeleteReshare, useDeleteSelf, useDeleteSelfChatChannel, useDeleteSelfChatChannelMessage, useDeleteSelfPushDevice, useFollowAccount, useGetAccount, useGetAccountActivities, useGetAccountByShareCode, useGetAccountCommunities, useGetAccountFollowers, useGetAccountFollowings, useGetAccounts, useGetActivities, useGetActivity, useGetActivityComments, useGetAdvertisement, useGetBenefits, useGetCommunities, useGetCommunity, useGetCommunityActivities, useGetCommunityAnnouncements, useGetCommunityEvents, useGetCommunityMembers, useGetCommunityModerators, useGetCommunitySponsors, useGetContent, useGetContentActivities, useGetContentType, useGetContentTypeContents, useGetContentTypes, useGetContents, useGetEvent, useGetEventActivities, useGetEventFAQSection, useGetEventFAQSectionQuestion, useGetEventFaqSections, useGetEventFaqs, useGetEventPage, useGetEventPages, useGetEventQuestionSearchValues, useGetEventRegistrants, useGetEventSession, useGetEventSessions, useGetEventSpeaker, useGetEventSpeakers, useGetEventSponsors, useGetEventTickets, useGetEvents, useGetFeaturedEvents, useGetInvoice, useGetLevel, useGetLevelSponsors, useGetLevels, useGetOrganization, useGetOrganizationExplore, useGetOrganizationPage, useGetOrganizationPaymentIntegration, useGetOrganizationSubscriptionProducts, useGetSelf, useGetSelfActivities, useGetSelfAnnouncement, useGetSelfChatChannel, useGetSelfChatChannelMembers, useGetSelfChatChannelMessages, useGetSelfChatChannels, useGetSelfCommunityMembership, useGetSelfCommunityMemberships, useGetSelfDelegateOf, useGetSelfDelegates, useGetSelfEventListing, useGetSelfEventListings, useGetSelfEventListingsRegistrations, useGetSelfEventRegistration, useGetSelfEventRegistrationCheckout, useGetSelfEventRegistrationPurchase, useGetSelfEventRegistrationPurchaseSections, useGetSelfEventSessions, useGetSelfEvents, useGetSelfFeed, useGetSelfInterests, useGetSelfNewNotificationsCount, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRecommendations, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSelfTransfer, useGetSelfTransfers, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSponsor, useGetSponsors, useLeaveSelfChatChannel, useLikeActivity, useRegisterCancelledEventRegistration, useRejectTransfer, useRemoveCommunityEvent, useRemoveSelfDelegate, useRemoveSelfEventListingSession, useRemoveSelfEventListingSpeaker, useRemoveSelfEventListingSponsor, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventRegistrationTicket, useRemoveSelfEventSession, useReshareActivity, useSelectSelfEventRegistrationCoupon, useSelfCheckinRegistration, useSelfCreateActivity, useSelfJoinCommunity, useSelfLeaveCommunity, useSelfUpdateCommunityMembership, useSubmitSelfEventRegistration, useTransferPurchase, useUnfollowAccount, useUnlikeActivity, useUpdateCommunity, useUpdateSelf, useUpdateSelfChatChannelNotifications, useUpdateSelfEventListing, useUpdateSelfEventListingSession, useUpdateSelfEventListingSpeaker, useUpdateSelfEventRegistrationQuestionResponse, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod };
|