@connectedxm/client 6.7.3 → 7.0.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.ts +7 -119
- package/dist/index.js +0 -221
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -165,11 +165,6 @@ interface BaseAccount {
|
|
|
165
165
|
image: BaseImage | null;
|
|
166
166
|
needsProfileCompletion: boolean;
|
|
167
167
|
accountTiers: BaseAccountTier[];
|
|
168
|
-
subscriptions: {
|
|
169
|
-
subscriptionProduct: {
|
|
170
|
-
tiers: BaseAccountTier[];
|
|
171
|
-
};
|
|
172
|
-
}[];
|
|
173
168
|
}
|
|
174
169
|
interface Account extends BaseAccount {
|
|
175
170
|
banner: BaseImage | null;
|
|
@@ -397,6 +392,11 @@ interface Event extends BaseEvent {
|
|
|
397
392
|
registration: boolean;
|
|
398
393
|
registrationStart: string;
|
|
399
394
|
registrationEnd: string;
|
|
395
|
+
registrationHeaderImageId: string | null;
|
|
396
|
+
registrationHeaderImage: BaseImage | null;
|
|
397
|
+
registrationFooterImageId: string | null;
|
|
398
|
+
registrationFooterImage: BaseImage | null;
|
|
399
|
+
registrationHideTitle: boolean;
|
|
400
400
|
publicRegistrants: boolean;
|
|
401
401
|
activityFeedEnabled: boolean;
|
|
402
402
|
chatBotNumber: string | null;
|
|
@@ -1314,7 +1314,6 @@ interface Payment extends BasePayment {
|
|
|
1314
1314
|
session: BaseSession | null;
|
|
1315
1315
|
place: BaseBookingPlace | null;
|
|
1316
1316
|
space: BaseBookingSpace | null;
|
|
1317
|
-
membership: BaseSubscriptionProduct | null;
|
|
1318
1317
|
coupon: BaseCoupon | null;
|
|
1319
1318
|
invoice: BaseInvoice | null;
|
|
1320
1319
|
lineItems: PaymentLineItem[];
|
|
@@ -1327,8 +1326,7 @@ declare enum PaymentLineItemType {
|
|
|
1327
1326
|
access = "access",
|
|
1328
1327
|
invoice = "invoice",
|
|
1329
1328
|
booking = "booking",
|
|
1330
|
-
coupon = "coupon"
|
|
1331
|
-
subscription = "subscription"
|
|
1329
|
+
coupon = "coupon"
|
|
1332
1330
|
}
|
|
1333
1331
|
interface BasePaymentLineItem {
|
|
1334
1332
|
id: string;
|
|
@@ -1355,7 +1353,6 @@ interface BasePaymentLineItem {
|
|
|
1355
1353
|
reservationId: string | null;
|
|
1356
1354
|
accessId: string | null;
|
|
1357
1355
|
bookingId: string | null;
|
|
1358
|
-
subscriptionId: string | null;
|
|
1359
1356
|
paymentId: number;
|
|
1360
1357
|
}
|
|
1361
1358
|
interface PaymentLineItem extends BasePaymentLineItem {
|
|
@@ -1366,7 +1363,6 @@ interface PaymentLineItem extends BasePaymentLineItem {
|
|
|
1366
1363
|
access: BaseEventSessionAccess | null;
|
|
1367
1364
|
invoice: BaseInvoice | null;
|
|
1368
1365
|
booking: BaseBooking | null;
|
|
1369
|
-
subscription: BaseSubscription | null;
|
|
1370
1366
|
payment: BasePayment | null;
|
|
1371
1367
|
}
|
|
1372
1368
|
declare enum LeadStatus {
|
|
@@ -1596,62 +1592,6 @@ interface BaseVideo {
|
|
|
1596
1592
|
hlsUrl: string;
|
|
1597
1593
|
dashUrl: string;
|
|
1598
1594
|
}
|
|
1599
|
-
declare enum SubscriptionStatus {
|
|
1600
|
-
active = "active",
|
|
1601
|
-
canceled = "canceled",
|
|
1602
|
-
paused = "paused",
|
|
1603
|
-
trialing = "trialing",
|
|
1604
|
-
past_due = "past_due",
|
|
1605
|
-
unpaid = "unpaid"
|
|
1606
|
-
}
|
|
1607
|
-
interface BaseSubscription {
|
|
1608
|
-
id: string;
|
|
1609
|
-
status: SubscriptionStatus;
|
|
1610
|
-
expiresAt: string;
|
|
1611
|
-
cancelAtEnd: boolean;
|
|
1612
|
-
subscriptionProduct: BaseSubscriptionProduct;
|
|
1613
|
-
}
|
|
1614
|
-
interface Subscription extends BaseSubscription {
|
|
1615
|
-
account: BaseAccount;
|
|
1616
|
-
price: BaseSubscriptionProductPrice;
|
|
1617
|
-
paymentMethod?: {
|
|
1618
|
-
brand: "amex" | "discover" | "mastercard" | "visa" | "unknown" | null;
|
|
1619
|
-
last4: string | null;
|
|
1620
|
-
expMonth: number | null;
|
|
1621
|
-
expYear: number | null;
|
|
1622
|
-
};
|
|
1623
|
-
createdAt: string;
|
|
1624
|
-
updatedAt: string;
|
|
1625
|
-
}
|
|
1626
|
-
interface BaseSubscriptionProduct {
|
|
1627
|
-
id: string;
|
|
1628
|
-
active: boolean;
|
|
1629
|
-
name: string;
|
|
1630
|
-
description: string | null;
|
|
1631
|
-
featured: boolean;
|
|
1632
|
-
}
|
|
1633
|
-
interface SubscriptionProduct extends BaseSubscriptionProduct {
|
|
1634
|
-
prices: SubscriptionProductPrice[];
|
|
1635
|
-
features: string[];
|
|
1636
|
-
createdAt: string;
|
|
1637
|
-
updatedAt: string;
|
|
1638
|
-
}
|
|
1639
|
-
interface BaseSubscriptionProductPrice {
|
|
1640
|
-
id: string;
|
|
1641
|
-
active: boolean;
|
|
1642
|
-
amount: number;
|
|
1643
|
-
currency: string;
|
|
1644
|
-
interval: "day" | "week" | "month" | "year";
|
|
1645
|
-
intervalCount: number;
|
|
1646
|
-
maxAmount: number;
|
|
1647
|
-
minAmount: number;
|
|
1648
|
-
type: string;
|
|
1649
|
-
}
|
|
1650
|
-
interface SubscriptionProductPrice extends BaseSubscriptionProductPrice {
|
|
1651
|
-
subscriptionProduct: BaseSubscriptionProduct;
|
|
1652
|
-
createdAt: string;
|
|
1653
|
-
updatedAt: string;
|
|
1654
|
-
}
|
|
1655
1595
|
declare enum InvoiceStatus {
|
|
1656
1596
|
sent = "sent",
|
|
1657
1597
|
paid = "paid",
|
|
@@ -1931,7 +1871,6 @@ declare enum OrganizationModuleType {
|
|
|
1931
1871
|
benefits = "benefits",
|
|
1932
1872
|
interests = "interests",
|
|
1933
1873
|
advertisements = "advertisements",
|
|
1934
|
-
subscriptions = "subscriptions",
|
|
1935
1874
|
invoices = "invoices",
|
|
1936
1875
|
announcements = "announcements",
|
|
1937
1876
|
bookings = "bookings",
|
|
@@ -3232,29 +3171,6 @@ interface UpdateSelfEventAttendeeAccessResponsesParams extends MutationParams {
|
|
|
3232
3171
|
declare const UpdateSelfEventAttendeeAccessResponses: ({ eventId, passId, sessionId, responses, clientApiParams, queryClient, }: UpdateSelfEventAttendeeAccessResponsesParams) => Promise<ConnectedXMResponse<null>>;
|
|
3233
3172
|
declare const useUpdateSelfEventAttendeeAccessResponses: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof UpdateSelfEventAttendeeAccessResponses>>, Omit<UpdateSelfEventAttendeeAccessResponsesParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<UpdateSelfEventAttendeeAccessResponsesParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3234
3173
|
|
|
3235
|
-
interface CancelSubscriptionParams extends MutationParams {
|
|
3236
|
-
subscriptionId: string;
|
|
3237
|
-
}
|
|
3238
|
-
declare const CancelSubscription: ({ subscriptionId, clientApiParams, queryClient, }: CancelSubscriptionParams) => Promise<ConnectedXMResponse<null>>;
|
|
3239
|
-
declare const useCancelSubscription: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CancelSubscription>>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<null>, axios.AxiosError<ConnectedXMResponse<null>, any>, Omit<CancelSubscriptionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3240
|
-
|
|
3241
|
-
interface CreateSubscriptionParams extends MutationParams {
|
|
3242
|
-
productId: string;
|
|
3243
|
-
priceId: string;
|
|
3244
|
-
}
|
|
3245
|
-
interface CreateSubscriptionResponse {
|
|
3246
|
-
clientSecret: string;
|
|
3247
|
-
}
|
|
3248
|
-
declare const CreateSubscription: ({ productId, priceId, clientApiParams, }: CreateSubscriptionParams) => Promise<ConnectedXMResponse<CreateSubscriptionResponse>>;
|
|
3249
|
-
declare const useCreateSubscription: (options?: Omit<MutationOptions<Awaited<ReturnType<typeof CreateSubscription>>, Omit<CreateSubscriptionParams, "queryClient" | "clientApiParams">>, "mutationFn">) => _tanstack_react_query.UseMutationResult<ConnectedXMResponse<CreateSubscriptionResponse>, axios.AxiosError<ConnectedXMResponse<CreateSubscriptionResponse>, any>, Omit<CreateSubscriptionParams, "queryClient" | "clientApiParams">, unknown>;
|
|
3250
|
-
|
|
3251
|
-
interface UpdateSubscriptionPaymentMethodParams extends MutationParams {
|
|
3252
|
-
subscriptionId: string;
|
|
3253
|
-
paymentMethodId: string;
|
|
3254
|
-
}
|
|
3255
|
-
declare const UpdateSubscriptionPaymentMethod: ({ subscriptionId, paymentMethodId, clientApiParams, queryClient, }: UpdateSubscriptionPaymentMethodParams) => Promise<ConnectedXMResponse<null>>;
|
|
3256
|
-
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>;
|
|
3257
|
-
|
|
3258
3174
|
interface AddSelfEventSessionParams extends MutationParams {
|
|
3259
3175
|
eventId: string;
|
|
3260
3176
|
sessionId: string;
|
|
@@ -4075,7 +3991,6 @@ declare const ERR_NOT_EVENT_REGISTERED = 454;
|
|
|
4075
3991
|
declare const ERR_REGISTRATION_UNAVAILABLE = 455;
|
|
4076
3992
|
declare const ERR_FEATURE_NOT_AVAILABLE = 456;
|
|
4077
3993
|
declare const ERR_TIER_REQUIRED = 457;
|
|
4078
|
-
declare const ERR_SUBSCRIPTION_REQUIRED = 458;
|
|
4079
3994
|
declare const ERR_INTEGRATION_PERMISSION_DENIED = 459;
|
|
4080
3995
|
declare const ERR_KNOWN_ERROR = 460;
|
|
4081
3996
|
declare const ERR_PRIVATE_CHANNEL = 461;
|
|
@@ -4805,12 +4720,6 @@ interface GetOrganizationExploreProps extends SingleQueryParams {
|
|
|
4805
4720
|
declare const GetOrganizationExplore: ({ clientApiParams, }: GetOrganizationExploreProps) => Promise<ConnectedXMResponse<Explore>>;
|
|
4806
4721
|
declare const useGetOrganizationExplore: (options?: SingleQueryOptions<ReturnType<typeof GetOrganizationExplore>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Explore>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
4807
4722
|
|
|
4808
|
-
declare const ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY: () => unknown[];
|
|
4809
|
-
interface GetOrganizationSubscriptionProductsProps extends InfiniteQueryParams {
|
|
4810
|
-
}
|
|
4811
|
-
declare const GetOrganizationSubscriptionProducts: ({ clientApiParams, }: GetOrganizationSubscriptionProductsProps) => Promise<ConnectedXMResponse<SubscriptionProduct[]>>;
|
|
4812
|
-
declare const useGetOrganizationSubscriptionProducts: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetOrganizationSubscriptionProducts>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<SubscriptionProduct[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
4813
|
-
|
|
4814
4723
|
declare const SEARCH_LIST_QUERY_KEY: (searchListId: string) => string[];
|
|
4815
4724
|
interface GetSearchListProps extends SingleQueryParams {
|
|
4816
4725
|
searchListId: string;
|
|
@@ -5006,27 +4915,6 @@ interface GetSelfEventSessionRegistrationAvailablePassesProps extends SingleQuer
|
|
|
5006
4915
|
declare const GetSelfEventSessionRegistrationAvailablePasses: ({ eventId, sessionId, clientApiParams, }: GetSelfEventSessionRegistrationAvailablePassesProps) => Promise<ConnectedXMResponse<Pass[]>>;
|
|
5007
4916
|
declare const useGetSelfEventSessionRegistrationAvailablePasses: (eventId: string, sessionId: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfEventSessionRegistrationAvailablePasses>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Pass[]>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5008
4917
|
|
|
5009
|
-
declare const SELF_SUBSCRIPTION_QUERY_KEY: (subscriptionId: string) => QueryKey;
|
|
5010
|
-
interface GetSelfSubcriptionProps extends SingleQueryParams {
|
|
5011
|
-
subscriptionId: string;
|
|
5012
|
-
}
|
|
5013
|
-
declare const GetSelfSubcription: ({ subscriptionId, clientApiParams, }: GetSelfSubcriptionProps) => Promise<ConnectedXMResponse<Subscription>>;
|
|
5014
|
-
declare const useGetSelfSubcription: (subscriptionId?: string, options?: SingleQueryOptions<ReturnType<typeof GetSelfSubcription>>) => _tanstack_react_query.UseQueryResult<ConnectedXMResponse<Subscription>, axios.AxiosError<ConnectedXMResponse<any>, any>>;
|
|
5015
|
-
|
|
5016
|
-
declare const SELF_SUBSCRIPTIONS_QUERY_KEY: (status?: SubscriptionStatus) => unknown[];
|
|
5017
|
-
interface GetSelfSubscriptionsProps extends InfiniteQueryParams {
|
|
5018
|
-
status?: SubscriptionStatus;
|
|
5019
|
-
}
|
|
5020
|
-
declare const GetSelfSubscriptions: ({ status, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfSubscriptionsProps) => Promise<ConnectedXMResponse<Subscription[]>>;
|
|
5021
|
-
declare const useGetSelfSubscriptions: (status?: SubscriptionStatus, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptions>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Subscription[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5022
|
-
|
|
5023
|
-
declare const SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY: (subscriptionId: string) => unknown[];
|
|
5024
|
-
interface GetSelfSubscriptionPaymentsProps extends InfiniteQueryParams {
|
|
5025
|
-
subscriptionId: string;
|
|
5026
|
-
}
|
|
5027
|
-
declare const GetSelfSubscriptionPayments: ({ subscriptionId, pageParam, pageSize, orderBy, search, clientApiParams, }: GetSelfSubscriptionPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
|
|
5028
|
-
declare const useGetSelfSubscriptionPayments: (subscriptionId: string, params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetSelfSubscriptionPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_query_core.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5029
|
-
|
|
5030
4918
|
declare const SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY: (eventId: string, paymentId: string) => QueryKey;
|
|
5031
4919
|
declare const SET_SELF_EVENT_ATTENDEE_PAYMENT_QUERY_DATA: (client: QueryClient, keyParams: Parameters<typeof SELF_EVENT_ATTENDEE_PAYMENT_QUERY_KEY>, response: Awaited<ReturnType<typeof GetSelfEventAttendeePayment>>, baseKeys?: Parameters<typeof GetBaseSingleQueryKeys>) => void;
|
|
5032
4920
|
interface GetSelfEventAttendeePaymentProps extends SingleQueryParams {
|
|
@@ -5674,4 +5562,4 @@ interface GetPaymentsProps extends InfiniteQueryParams {
|
|
|
5674
5562
|
declare const GetPayments: ({ pageParam, pageSize, orderBy, search, clientApiParams, }: GetPaymentsProps) => Promise<ConnectedXMResponse<Payment[]>>;
|
|
5675
5563
|
declare const useGetPayments: (params?: Omit<InfiniteQueryParams, "pageParam" | "queryClient" | "clientApiParams">, options?: InfiniteQueryOptions<Awaited<ReturnType<typeof GetPayments>>>) => _tanstack_react_query.UseInfiniteQueryResult<_tanstack_react_query.InfiniteData<ConnectedXMResponse<Payment[]>, number>, axios.AxiosError<ConnectedXMResponse<null>, any>>;
|
|
5676
5564
|
|
|
5677
|
-
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 AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, 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 BaseAccountAttribute, type BaseAccountAttributeValue, 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 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 BaseMeeting, 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 BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, 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 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 CreateListingInput, 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_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_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, 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, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, 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, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetOrganizationSubscriptionProducts, type GetOrganizationSubscriptionProductsProps, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, 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, GetSelfLogins, type GetSelfLoginsProps, 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, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, 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, GetUsernameAvailability, type GetUsernameAvailabilityProps, 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, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, 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, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, 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, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, 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, RemoveLogin, type RemoveLoginParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_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_LOGINS_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_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_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_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_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type Subscription, type SubscriptionProduct, type SubscriptionProductPrice, SubscriptionStatus, type SupportTicket, type SupportTicketNote, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, 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, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, 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, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistration, type UpdateSelfEventRegistrationParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventRegistrationSearchListResponse, type UpdateSelfEventRegistrationSearchListResponseParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfEventSessionRegistrationSearchListResponse, type UpdateSelfEventSessionRegistrationSearchListResponseParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSubscriptionPaymentMethod, type UpdateSubscriptionPaymentMethodParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, type User, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, 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, useAddLogin, 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, useGetEventRegistrants, useGetEventSession, 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, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetOrganizationSubscriptionProducts, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, 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, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSelfSubcription, useGetSelfSubscriptionPayments, useGetSelfSubscriptions, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistration, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventRegistrationSearchListResponse, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfEventSessionRegistrationSearchListResponse, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSubscriptionPaymentMethod, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useVerifyLoginAccount };
|
|
5565
|
+
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 AccountAttribute, AccountAttributeType, type AccountAttributeValue, type AccountShare, type AccountTier, type Activity, type ActivityEntity, type ActivityEntityInput, ActivityEntityType, type ActivityLike, ActivityPreference, type ActivityReport, AddChannelCollectionContent, type AddChannelCollectionContentParams, AddChannelInterest, type AddChannelInterestParams, type AddChannelInterestPayload, AddContentInterest, type AddContentInterestParams, type AddContentInterestPayload, AddListingCoHost, type AddListingCoHostParams, AddListingSponsor, type AddListingSponsorParams, AddLogin, type AddLoginParams, 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 BaseAccountAttribute, type BaseAccountAttributeValue, 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 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 BaseMeeting, 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 BaseRegistrationSection, type BaseRoom, type BaseRound, type BaseScan, type BaseSchedule, type BaseSearchList, type BaseSearchListValue, type BaseSeries, type BaseSession, type BaseSessionLocation, type BaseSpeaker, type BaseSponsorshipLevel, type BaseStreamInput, type BaseSupportTicket, type BaseSupportTicketNote, type BaseSurvey, type BaseSurveyQuestion, type BaseSurveyQuestionChoice, type BaseSurveyQuestionResponse, 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, 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 CreateListingInput, 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, 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_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_REGISTRANTS_QUERY_KEY, EVENT_SESSIONS_QUERY_KEY, EVENT_SESSION_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, 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, GetEventRegistrants, type GetEventRegistrantsProps, GetEventSession, type GetEventSessionProps, 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, GetMeeting, type GetMeetingProps, GetOrganization, GetOrganizationConfig, type GetOrganizationConfigParams, GetOrganizationExplore, type GetOrganizationExploreProps, type GetOrganizationParams, GetPayment, type GetPaymentProps, GetPayments, type GetPaymentsProps, GetSearchList, type GetSearchListProps, GetSearchListValues, type GetSearchListValuesProps, GetSearchLists, type GetSearchListsProps, GetSelf, GetSelfActivities, type GetSelfActivitiesProps, GetSelfAddress, type GetSelfAddressProps, GetSelfAddresses, type GetSelfAddressesProps, GetSelfAnnouncement, type GetSelfAnnouncementProps, GetSelfChannelSubscriber, type GetSelfChannelSubscriberParams, 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, GetSelfLogins, type GetSelfLoginsProps, GetSelfNotificationPreferences, type GetSelfNotificationPreferencesProps, GetSelfNotifications, type GetSelfNotificationsProps, type GetSelfProps, GetSelfPushDevice, type GetSelfPushDeviceProps, GetSelfPushDevices, type GetSelfPushDevicesProps, GetSelfRelationships, type GetSelfRelationshipsProps, GetSeries, GetSeriesEvents, type GetSeriesEventsProps, GetSeriesList, type GetSeriesListProps, type GetSeriesProps, GetSubscribedChannels, type GetSubscribedChannelsParams, GetSubscribedContents, type GetSubscribedContentsParams, GetSurvey, type GetSurveyProps, 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, GetUsernameAvailability, type GetUsernameAvailabilityProps, 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, JoinMeetingViaCode, type JoinMeetingViaCodeParams, JoinMeetingViaEvent, type JoinMeetingViaEventParams, JoinMeetingViaGroup, type JoinMeetingViaGroupParams, 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, LocationQuestionOption, type Login, MEETING_QUERY_KEY, type ManagedCoupon, type ManagedCouponOrder, type ManagedCouponPass, type MarkType, type Match, type Meeting, MeetingType, type MentionInput, MergeInfinitePages, type MutationOptions, type MutationParams, type Notification, type NotificationPreferences, NotificationType, ORGANIZATION_CONFIG_QUERY_KEY, ORGANIZATION_EXPLORE_QUERY_KEY, ORGANIZATION_QUERY_KEY, type Order, type OrgMembership, type Organization, OrganizationActivityPreference, type OrganizationConfig, type OrganizationModule, OrganizationModuleType, type OrganizationOAuth, PAYMENTS_QUERY_KEY, PAYMENT_QUERY_KEY, type Pass, type PassAddOn, type PassType, type PassTypeRefundSchedule, type Payment, PaymentIntegrationType, type PaymentIntent, PaymentIntentSource, type PaymentLineItem, PaymentLineItemType, PrimaryModule, PromoteGroupMember, type PromoteGroupMemberParams, PurchaseStatus, type PushDevice, PushService, REMOVE_SELF_RELATIONSHIP, type Registration, type RegistrationEventDetails, type RegistrationFollowup, type RegistrationQuestion, type RegistrationQuestionChoice, type RegistrationQuestionResponse, 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, RemoveLogin, type RemoveLoginParams, RemoveSelfEventRegistrationCoupon, type RemoveSelfEventRegistrationCouponParams, RemoveSelfEventSession, type RemoveSelfEventSessionParams, RemoveThreadMessageReaction, type RemoveThreadMessageReactionParams, ReportActivity, type ReportActivityParams, type Room, type Round, SEARCH_LISTS_QUERY_KEY, SEARCH_LIST_QUERY_KEY, SEARCH_LIST_VALUES_QUERY_KEY, SELF_ACTIVITIES_QUERY_KEY, SELF_ADDRESSES_QUERY_KEY, SELF_ADDRESS_QUERY_KEY, SELF_ANNOUNCEMENT_QUERY_KEY, SELF_BOOKING_INTENT_QUERY_KEY, SELF_CHANNEL_SUBSCRIBER_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_LOGINS_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, 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_MEETING_QUERY_DATA, SET_PAYMENT_QUERY_DATA, SET_PUSH_DEVICE_QUERY_DATA, SET_SELF_CHANNEL_SUBSCRIBER_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_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_USERNAME_AVAILABILITY_QUERY_DATA, SET_VIDEO_QUERY_DATA, SUBSCRIBED_CHANNELS_QUERY_KEY, SUBSCRIBED_CONTENTS_QUERY_KEY, SURVEY_QUERY_KEY, SURVEY_SUBMISSIONS_QUERY_KEY, SURVEY_SUBMISSION_QUERY_KEY, SURVEY_SUBMISSION_SECTIONS_QUERY_KEY, type Scan, type Schedule, type SearchList, type SearchListValue, type SegmentInput, SelectSelfEventRegistrationCoupon, type SelectSelfEventRegistrationCouponParams, type Self, type SelfRelationships, type Series, type Session, SessionAccess, type SessionLocation, SetContentPublishSchedule, type SetContentPublishScheduleParams, type SingleQueryOptions, type SingleQueryParams, type Speaker, type SponsorshipLevel, StartSurvey, type StartSurveyParams, type StreamInput, SubmitSurvey, type SubmitSurveyParams, type SupportTicket, type SupportTicketNote, SupportTicketState, SupportTicketType, type Survey, type SurveyQuestion, type SurveyQuestionChoice, type SurveyQuestionResposne, 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, USERNAME_AVAILABILITY_QUERY_KEY, UnblockAccount, type UnblockAccountParams, UndoCheckinListingAttendeePass, type UndoCheckinListingAttendeePassParams, UnfollowAccount, type UnfollowAccountParams, UnlikeActivity, type UnlikeActivityParams, UnlikeContent, type UnlikeContentParams, UpdateActivity, type UpdateActivityParams, 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, type UpdateListingValues, UpdateSelf, UpdateSelfAddress, type UpdateSelfAddressParams, UpdateSelfBanner, type UpdateSelfBannerParams, UpdateSelfChatChannelNotifications, type UpdateSelfChatChannelNotificationsParams, UpdateSelfEventAttendeeAccessResponses, type UpdateSelfEventAttendeeAccessResponsesParams, UpdateSelfEventAttendeePassFollowup, type UpdateSelfEventAttendeePassFollowupParams, UpdateSelfEventAttendeePassResponses, type UpdateSelfEventAttendeePassResponsesParams, UpdateSelfEventRegistration, type UpdateSelfEventRegistrationParams, UpdateSelfEventRegistrationPassResponse, type UpdateSelfEventRegistrationPassResponseParams, UpdateSelfEventRegistrationPasses, type UpdateSelfEventRegistrationPassesParams, UpdateSelfEventRegistrationPurchaseAddOn, type UpdateSelfEventRegistrationPurchaseAddOnParams, UpdateSelfEventRegistrationReservations, type UpdateSelfEventRegistrationReservationsParams, UpdateSelfEventRegistrationResponses, type UpdateSelfEventRegistrationResponsesParams, UpdateSelfEventRegistrationSearchListResponse, type UpdateSelfEventRegistrationSearchListResponseParams, UpdateSelfEventSessionRegistrationPassResponse, type UpdateSelfEventSessionRegistrationPassResponseParams, UpdateSelfEventSessionRegistrationPasses, type UpdateSelfEventSessionRegistrationPassesParams, UpdateSelfEventSessionRegistrationResponses, type UpdateSelfEventSessionRegistrationResponsesParams, UpdateSelfEventSessionRegistrationSearchListResponse, type UpdateSelfEventSessionRegistrationSearchListResponseParams, UpdateSelfGroupMembership, type UpdateSelfGroupMembershipParams, UpdateSelfImage, type UpdateSelfImageParams, UpdateSelfLead, type UpdateSelfLeadParams, UpdateSelfNotificationPreferences, type UpdateSelfNotificationPreferencesParams, type UpdateSelfParams, UpdateSelfPushDevice, type UpdateSelfPushDeviceParams, UpdateSurveyResponse, type UpdateSurveyResponseParams, UpdateSurveySearchListResponse, type UpdateSurveySearchListResponseParams, UpdateThread, UpdateThreadCircle, UpdateThreadCircleAccount, type UpdateThreadCircleAccountParams, type UpdateThreadCircleParams, UpdateThreadMessage, type UpdateThreadMessageParams, type UpdateThreadParams, UploadFile, type UploadFileParams, UploadImage, type UploadImageParams, type User, type UsernameAvailability, VIDEO_QUERY_KEY, VerifyLoginAccount, type VerifyLoginAccountParams, 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, useAddLogin, useAddSelfChatChannelMember, useAddSelfEventSession, useAddSelfInterests, useAddThreadCircleAccount, useAddThreadMessageReaction, useBlockAccount, useBlockIntegration, useCancelBooking, useCancelGroupInvitation, useCancelGroupRequest, useCancelPass, 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, 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, useGetEventRegistrants, useGetEventSession, 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, useGetMeeting, useGetOrganization, useGetOrganizationConfig, useGetOrganizationExplore, useGetPayment, useGetPayments, useGetSearchList, useGetSearchListValues, useGetSearchLists, useGetSelf, useGetSelfActivities, useGetSelfAddress, useGetSelfAddresses, useGetSelfAnnouncement, useGetSelfChannelSubscriber, 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, useGetSelfLogins, useGetSelfNotificationPreferences, useGetSelfNotifications, useGetSelfPushDevice, useGetSelfPushDevices, useGetSelfRelationships, useGetSeries, useGetSeriesEvents, useGetSeriesList, useGetSubscribedChannels, useGetSubscribedContents, useGetSurvey, useGetSurveySubmission, useGetSurveySubmissionSections, useGetSurveySubmissions, useGetThread, useGetThreadCircle, useGetThreadCircleAccount, useGetThreadCircleAccounts, useGetThreadCircles, useGetThreadMessage, useGetThreadMessages, useGetUsernameAvailability, useGetVideo, useGroupStatus, useIsAccountFollowing, useIsChannelSubscribed, useIsEventRegistered, useJoinGroup, useJoinMeetingViaCode, useJoinMeetingViaEvent, useJoinMeetingViaGroup, useLeaveGroup, useLeaveSelfChatChannel, useLikeActivity, useLikeContent, usePromoteGroupMember, useReinviteGroupInvitation, useRejectGroupInvitation, useRejectGroupRequest, useRemoveActivityReport, useRemoveChannelCollectionContent, useRemoveChannelInterest, useRemoveContentInterest, useRemoveGroupMember, useRemoveListingCoHost, useRemoveListingSponsor, useRemoveLogin, useRemoveSelfEventRegistrationCoupon, useRemoveSelfEventSession, useRemoveThreadMessageReaction, useReportActivity, useSelectSelfEventRegistrationCoupon, useSetContentPublishSchedule, useStartSurvey, useSubmitSurvey, useTransferPass, useUnblockAccount, useUndoCheckinListingAttendeePass, useUnfollowAccount, useUnlikeActivity, useUnlikeContent, useUpdateActivity, useUpdateChannel, useUpdateChannelCollection, useUpdateChannelContent, useUpdateChannelSubscriber, useUpdateContentGuest, useUpdateGroup, useUpdateListing, useUpdateListingEmail, useUpdateListingQuestion, useUpdateListingRegistrationPassResponses, useUpdateListingSession, useUpdateListingSpeaker, useUpdateSelf, useUpdateSelfAddress, useUpdateSelfBanner, useUpdateSelfChatChannelNotifications, useUpdateSelfEventAttendeeAccessResponses, useUpdateSelfEventAttendeePassFollowup, useUpdateSelfEventAttendeePassResponses, useUpdateSelfEventRegistration, useUpdateSelfEventRegistrationPassResponse, useUpdateSelfEventRegistrationPasses, useUpdateSelfEventRegistrationPurchaseAddOn, useUpdateSelfEventRegistrationReservations, useUpdateSelfEventRegistrationResponses, useUpdateSelfEventRegistrationSearchListResponse, useUpdateSelfEventSessionRegistrationPassResponse, useUpdateSelfEventSessionRegistrationPasses, useUpdateSelfEventSessionRegistrationResponses, useUpdateSelfEventSessionRegistrationSearchListResponse, useUpdateSelfGroupMembership, useUpdateSelfImage, useUpdateSelfLead, useUpdateSelfNotificationPreferences, useUpdateSelfPushDevice, useUpdateSurveyResponse, useUpdateSurveySearchListResponse, useUpdateThread, useUpdateThreadCircle, useUpdateThreadCircleAccount, useUpdateThreadMessage, useUploadFile, useUploadImage, useVerifyLoginAccount };
|
package/dist/index.js
CHANGED
|
@@ -85,7 +85,6 @@ var ERR_NOT_EVENT_REGISTERED = 454;
|
|
|
85
85
|
var ERR_REGISTRATION_UNAVAILABLE = 455;
|
|
86
86
|
var ERR_FEATURE_NOT_AVAILABLE = 456;
|
|
87
87
|
var ERR_TIER_REQUIRED = 457;
|
|
88
|
-
var ERR_SUBSCRIPTION_REQUIRED = 458;
|
|
89
88
|
var ERR_INTEGRATION_PERMISSION_DENIED = 459;
|
|
90
89
|
var ERR_KNOWN_ERROR = 460;
|
|
91
90
|
var ERR_PRIVATE_CHANNEL = 461;
|
|
@@ -97,7 +96,6 @@ var CUSTOM_ERROR_CODES = [
|
|
|
97
96
|
ERR_REGISTRATION_UNAVAILABLE,
|
|
98
97
|
ERR_FEATURE_NOT_AVAILABLE,
|
|
99
98
|
ERR_TIER_REQUIRED,
|
|
100
|
-
ERR_SUBSCRIPTION_REQUIRED,
|
|
101
99
|
ERR_INTEGRATION_PERMISSION_DENIED,
|
|
102
100
|
ERR_KNOWN_ERROR,
|
|
103
101
|
ERR_PRIVATE_CHANNEL,
|
|
@@ -3419,27 +3417,6 @@ var useGetOrganizationExplore = (options = {}) => {
|
|
|
3419
3417
|
);
|
|
3420
3418
|
};
|
|
3421
3419
|
|
|
3422
|
-
// src/queries/organization/useGetOrganizationSubscriptionProducts.tsx
|
|
3423
|
-
var ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY = () => [
|
|
3424
|
-
...ORGANIZATION_QUERY_KEY(),
|
|
3425
|
-
"SUBSCRIPTIONS"
|
|
3426
|
-
];
|
|
3427
|
-
var GetOrganizationSubscriptionProducts = async ({
|
|
3428
|
-
clientApiParams
|
|
3429
|
-
}) => {
|
|
3430
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
3431
|
-
const { data } = await clientApi.get(`/organization/subscriptions`);
|
|
3432
|
-
return data;
|
|
3433
|
-
};
|
|
3434
|
-
var useGetOrganizationSubscriptionProducts = (params = {}, options = {}) => {
|
|
3435
|
-
return useConnectedInfiniteQuery(
|
|
3436
|
-
ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY(),
|
|
3437
|
-
(params2) => GetOrganizationSubscriptionProducts({ ...params2 }),
|
|
3438
|
-
params,
|
|
3439
|
-
options
|
|
3440
|
-
);
|
|
3441
|
-
};
|
|
3442
|
-
|
|
3443
3420
|
// src/queries/searchlists/useGetSearchList.ts
|
|
3444
3421
|
var SEARCH_LIST_QUERY_KEY = (searchListId) => [
|
|
3445
3422
|
"SEARCH_LISTS",
|
|
@@ -4376,106 +4353,6 @@ var useGetSelfEventSessionRegistrationAvailablePasses = (eventId, sessionId, opt
|
|
|
4376
4353
|
);
|
|
4377
4354
|
};
|
|
4378
4355
|
|
|
4379
|
-
// src/queries/self/subscriptions/useGetSelfSubscriptions.ts
|
|
4380
|
-
var SELF_SUBSCRIPTIONS_QUERY_KEY = (status) => {
|
|
4381
|
-
const key = [...SELF_QUERY_KEY(), "SUBSCRIPTIONS"];
|
|
4382
|
-
if (status) {
|
|
4383
|
-
key.push(status);
|
|
4384
|
-
}
|
|
4385
|
-
return key;
|
|
4386
|
-
};
|
|
4387
|
-
var GetSelfSubscriptions = async ({
|
|
4388
|
-
status,
|
|
4389
|
-
pageParam,
|
|
4390
|
-
pageSize,
|
|
4391
|
-
orderBy,
|
|
4392
|
-
search,
|
|
4393
|
-
clientApiParams
|
|
4394
|
-
}) => {
|
|
4395
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
4396
|
-
const { data } = await clientApi.get(`/self/subscriptions`, {
|
|
4397
|
-
params: {
|
|
4398
|
-
page: pageParam || void 0,
|
|
4399
|
-
pageSize: pageSize || void 0,
|
|
4400
|
-
orderBy: orderBy || void 0,
|
|
4401
|
-
search: search || void 0,
|
|
4402
|
-
status: status || void 0
|
|
4403
|
-
}
|
|
4404
|
-
});
|
|
4405
|
-
return data;
|
|
4406
|
-
};
|
|
4407
|
-
var useGetSelfSubscriptions = (status, params = {}, options = {}) => {
|
|
4408
|
-
const { authenticated } = useConnected();
|
|
4409
|
-
return useConnectedInfiniteQuery(
|
|
4410
|
-
SELF_SUBSCRIPTIONS_QUERY_KEY(status),
|
|
4411
|
-
(params2) => GetSelfSubscriptions({ status, ...params2 }),
|
|
4412
|
-
params,
|
|
4413
|
-
{
|
|
4414
|
-
...options,
|
|
4415
|
-
enabled: !!authenticated && (options?.enabled ?? true)
|
|
4416
|
-
}
|
|
4417
|
-
);
|
|
4418
|
-
};
|
|
4419
|
-
|
|
4420
|
-
// src/queries/self/subscriptions/useGetSelfSubscription.ts
|
|
4421
|
-
var SELF_SUBSCRIPTION_QUERY_KEY = (subscriptionId) => [...SELF_SUBSCRIPTIONS_QUERY_KEY(), subscriptionId];
|
|
4422
|
-
var GetSelfSubcription = async ({
|
|
4423
|
-
subscriptionId,
|
|
4424
|
-
clientApiParams
|
|
4425
|
-
}) => {
|
|
4426
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
4427
|
-
const { data } = await clientApi.get(`/self/subscriptions/${subscriptionId}`);
|
|
4428
|
-
return data;
|
|
4429
|
-
};
|
|
4430
|
-
var useGetSelfSubcription = (subscriptionId = "", options = {}) => {
|
|
4431
|
-
const { authenticated } = useConnected();
|
|
4432
|
-
return useConnectedSingleQuery(
|
|
4433
|
-
SELF_SUBSCRIPTION_QUERY_KEY(subscriptionId),
|
|
4434
|
-
(params) => GetSelfSubcription({ subscriptionId, ...params }),
|
|
4435
|
-
{
|
|
4436
|
-
...options,
|
|
4437
|
-
enabled: !!authenticated && !!subscriptionId && (options?.enabled ?? true)
|
|
4438
|
-
}
|
|
4439
|
-
);
|
|
4440
|
-
};
|
|
4441
|
-
|
|
4442
|
-
// src/queries/self/subscriptions/useGetSelfSubscriptionPayments.ts
|
|
4443
|
-
var SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY = (subscriptionId) => [...SELF_SUBSCRIPTION_QUERY_KEY(subscriptionId), "PAYMENTS"];
|
|
4444
|
-
var GetSelfSubscriptionPayments = async ({
|
|
4445
|
-
subscriptionId,
|
|
4446
|
-
pageParam,
|
|
4447
|
-
pageSize,
|
|
4448
|
-
orderBy,
|
|
4449
|
-
search,
|
|
4450
|
-
clientApiParams
|
|
4451
|
-
}) => {
|
|
4452
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
4453
|
-
const { data } = await clientApi.get(
|
|
4454
|
-
`/self/subscriptions/${subscriptionId}/payments`,
|
|
4455
|
-
{
|
|
4456
|
-
params: {
|
|
4457
|
-
page: pageParam || void 0,
|
|
4458
|
-
pageSize: pageSize || void 0,
|
|
4459
|
-
orderBy: orderBy || void 0,
|
|
4460
|
-
search: search || void 0
|
|
4461
|
-
}
|
|
4462
|
-
}
|
|
4463
|
-
);
|
|
4464
|
-
return data;
|
|
4465
|
-
};
|
|
4466
|
-
var useGetSelfSubscriptionPayments = (subscriptionId, params = {}, options = {}) => {
|
|
4467
|
-
const { authenticated } = useConnected();
|
|
4468
|
-
return useConnectedInfiniteQuery(
|
|
4469
|
-
SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY(subscriptionId),
|
|
4470
|
-
(params2) => GetSelfSubscriptionPayments({ ...params2, subscriptionId }),
|
|
4471
|
-
params,
|
|
4472
|
-
{
|
|
4473
|
-
...options,
|
|
4474
|
-
enabled: !!authenticated && (options?.enabled ?? true)
|
|
4475
|
-
}
|
|
4476
|
-
);
|
|
4477
|
-
};
|
|
4478
|
-
|
|
4479
4356
|
// src/queries/self/attendee/useGetSelfEventAttendee.ts
|
|
4480
4357
|
var SELF_EVENT_ATTENDEE_QUERY_KEY = (eventId) => [
|
|
4481
4358
|
...SELF_QUERY_KEY(),
|
|
@@ -7896,7 +7773,6 @@ var PaymentLineItemType = /* @__PURE__ */ ((PaymentLineItemType2) => {
|
|
|
7896
7773
|
PaymentLineItemType2["invoice"] = "invoice";
|
|
7897
7774
|
PaymentLineItemType2["booking"] = "booking";
|
|
7898
7775
|
PaymentLineItemType2["coupon"] = "coupon";
|
|
7899
|
-
PaymentLineItemType2["subscription"] = "subscription";
|
|
7900
7776
|
return PaymentLineItemType2;
|
|
7901
7777
|
})(PaymentLineItemType || {});
|
|
7902
7778
|
var LeadStatus = /* @__PURE__ */ ((LeadStatus2) => {
|
|
@@ -7934,15 +7810,6 @@ var isTypeEventActivation = (eventActivation) => {
|
|
|
7934
7810
|
var isTypeEventActivationCompletion = (eventActivationCompletion) => {
|
|
7935
7811
|
return eventActivationCompletion.updatedAt !== void 0;
|
|
7936
7812
|
};
|
|
7937
|
-
var SubscriptionStatus = /* @__PURE__ */ ((SubscriptionStatus2) => {
|
|
7938
|
-
SubscriptionStatus2["active"] = "active";
|
|
7939
|
-
SubscriptionStatus2["canceled"] = "canceled";
|
|
7940
|
-
SubscriptionStatus2["paused"] = "paused";
|
|
7941
|
-
SubscriptionStatus2["trialing"] = "trialing";
|
|
7942
|
-
SubscriptionStatus2["past_due"] = "past_due";
|
|
7943
|
-
SubscriptionStatus2["unpaid"] = "unpaid";
|
|
7944
|
-
return SubscriptionStatus2;
|
|
7945
|
-
})(SubscriptionStatus || {});
|
|
7946
7813
|
var InvoiceStatus = /* @__PURE__ */ ((InvoiceStatus2) => {
|
|
7947
7814
|
InvoiceStatus2["sent"] = "sent";
|
|
7948
7815
|
InvoiceStatus2["paid"] = "paid";
|
|
@@ -8013,7 +7880,6 @@ var OrganizationModuleType = /* @__PURE__ */ ((OrganizationModuleType2) => {
|
|
|
8013
7880
|
OrganizationModuleType2["benefits"] = "benefits";
|
|
8014
7881
|
OrganizationModuleType2["interests"] = "interests";
|
|
8015
7882
|
OrganizationModuleType2["advertisements"] = "advertisements";
|
|
8016
|
-
OrganizationModuleType2["subscriptions"] = "subscriptions";
|
|
8017
7883
|
OrganizationModuleType2["invoices"] = "invoices";
|
|
8018
7884
|
OrganizationModuleType2["announcements"] = "announcements";
|
|
8019
7885
|
OrganizationModuleType2["bookings"] = "bookings";
|
|
@@ -10244,73 +10110,6 @@ var useUpdateSelfEventAttendeeAccessResponses = (options = {}) => {
|
|
|
10244
10110
|
return useConnectedMutation_default(UpdateSelfEventAttendeeAccessResponses, options);
|
|
10245
10111
|
};
|
|
10246
10112
|
|
|
10247
|
-
// src/mutations/self/subscriptions/useCancelSubscription.ts
|
|
10248
|
-
var CancelSubscription = async ({
|
|
10249
|
-
subscriptionId,
|
|
10250
|
-
clientApiParams,
|
|
10251
|
-
queryClient
|
|
10252
|
-
}) => {
|
|
10253
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10254
|
-
const { data } = await clientApi.delete(
|
|
10255
|
-
`/self/subscriptions/${subscriptionId}`
|
|
10256
|
-
);
|
|
10257
|
-
if (queryClient && data.status === "ok") {
|
|
10258
|
-
queryClient.invalidateQueries({
|
|
10259
|
-
queryKey: SELF_SUBSCRIPTIONS_QUERY_KEY()
|
|
10260
|
-
});
|
|
10261
|
-
queryClient.invalidateQueries({
|
|
10262
|
-
queryKey: SELF_SUBSCRIPTION_QUERY_KEY(subscriptionId)
|
|
10263
|
-
});
|
|
10264
|
-
}
|
|
10265
|
-
return data;
|
|
10266
|
-
};
|
|
10267
|
-
var useCancelSubscription = (options = {}) => {
|
|
10268
|
-
return useConnectedMutation_default(CancelSubscription, options);
|
|
10269
|
-
};
|
|
10270
|
-
|
|
10271
|
-
// src/mutations/self/subscriptions/useCreateSubscription.ts
|
|
10272
|
-
var CreateSubscription = async ({
|
|
10273
|
-
productId,
|
|
10274
|
-
priceId,
|
|
10275
|
-
clientApiParams
|
|
10276
|
-
}) => {
|
|
10277
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10278
|
-
const { data } = await clientApi.post("/self/subscriptions", {
|
|
10279
|
-
productId,
|
|
10280
|
-
priceId,
|
|
10281
|
-
quantity: 1
|
|
10282
|
-
});
|
|
10283
|
-
return data;
|
|
10284
|
-
};
|
|
10285
|
-
var useCreateSubscription = (options = {}) => {
|
|
10286
|
-
return useConnectedMutation_default(CreateSubscription, options);
|
|
10287
|
-
};
|
|
10288
|
-
|
|
10289
|
-
// src/mutations/self/subscriptions/useUpdateSubscriptionPaymentMethod.ts
|
|
10290
|
-
var UpdateSubscriptionPaymentMethod = async ({
|
|
10291
|
-
subscriptionId,
|
|
10292
|
-
paymentMethodId,
|
|
10293
|
-
clientApiParams,
|
|
10294
|
-
queryClient
|
|
10295
|
-
}) => {
|
|
10296
|
-
const clientApi = await GetClientAPI(clientApiParams);
|
|
10297
|
-
const { data } = await clientApi.put(
|
|
10298
|
-
`/self/subscriptions/${subscriptionId}/payment-method`,
|
|
10299
|
-
{
|
|
10300
|
-
paymentMethodId
|
|
10301
|
-
}
|
|
10302
|
-
);
|
|
10303
|
-
if (queryClient && data.status === "ok") {
|
|
10304
|
-
queryClient.invalidateQueries({
|
|
10305
|
-
queryKey: SELF_SUBSCRIPTION_QUERY_KEY(subscriptionId)
|
|
10306
|
-
});
|
|
10307
|
-
}
|
|
10308
|
-
return data;
|
|
10309
|
-
};
|
|
10310
|
-
var useUpdateSubscriptionPaymentMethod = (options = {}) => {
|
|
10311
|
-
return useConnectedMutation_default(UpdateSubscriptionPaymentMethod, options);
|
|
10312
|
-
};
|
|
10313
|
-
|
|
10314
10113
|
// src/mutations/self/useAddSelfEventSession.ts
|
|
10315
10114
|
var AddSelfEventSession = async ({
|
|
10316
10115
|
eventId,
|
|
@@ -12337,7 +12136,6 @@ export {
|
|
|
12337
12136
|
CancelGroupInvitation,
|
|
12338
12137
|
CancelGroupRequest,
|
|
12339
12138
|
CancelPass,
|
|
12340
|
-
CancelSubscription,
|
|
12341
12139
|
CapturePaymentIntent,
|
|
12342
12140
|
CheckinListingAttendeePass,
|
|
12343
12141
|
CompleteEventActivation,
|
|
@@ -12366,7 +12164,6 @@ export {
|
|
|
12366
12164
|
CreateSelfChatChannel,
|
|
12367
12165
|
CreateSelfChatChannelMessage,
|
|
12368
12166
|
CreateSelfLead,
|
|
12369
|
-
CreateSubscription,
|
|
12370
12167
|
CreateSupportTicket,
|
|
12371
12168
|
CreateThreadMessage,
|
|
12372
12169
|
Currency,
|
|
@@ -12405,7 +12202,6 @@ export {
|
|
|
12405
12202
|
ERR_NO_ACCOUNT_SELECTED,
|
|
12406
12203
|
ERR_PRIVATE_CHANNEL,
|
|
12407
12204
|
ERR_REGISTRATION_UNAVAILABLE,
|
|
12408
|
-
ERR_SUBSCRIPTION_REQUIRED,
|
|
12409
12205
|
ERR_TIER_REQUIRED,
|
|
12410
12206
|
EVENTS_QUERY_KEY,
|
|
12411
12207
|
EVENT_ACTIVATIONS_QUERY_KEY,
|
|
@@ -12552,7 +12348,6 @@ export {
|
|
|
12552
12348
|
GetOrganization,
|
|
12553
12349
|
GetOrganizationConfig,
|
|
12554
12350
|
GetOrganizationExplore,
|
|
12555
|
-
GetOrganizationSubscriptionProducts,
|
|
12556
12351
|
GetPayment,
|
|
12557
12352
|
GetPayments,
|
|
12558
12353
|
GetSearchList,
|
|
@@ -12623,9 +12418,6 @@ export {
|
|
|
12623
12418
|
GetSelfPushDevice,
|
|
12624
12419
|
GetSelfPushDevices,
|
|
12625
12420
|
GetSelfRelationships,
|
|
12626
|
-
GetSelfSubcription,
|
|
12627
|
-
GetSelfSubscriptionPayments,
|
|
12628
|
-
GetSelfSubscriptions,
|
|
12629
12421
|
GetSeries,
|
|
12630
12422
|
GetSeriesEvents,
|
|
12631
12423
|
GetSeriesList,
|
|
@@ -12695,7 +12487,6 @@ export {
|
|
|
12695
12487
|
ORGANIZATION_CONFIG_QUERY_KEY,
|
|
12696
12488
|
ORGANIZATION_EXPLORE_QUERY_KEY,
|
|
12697
12489
|
ORGANIZATION_QUERY_KEY,
|
|
12698
|
-
ORGANIZATION_SUBSCRIPTIONS_QUERY_KEY,
|
|
12699
12490
|
OrganizationActivityPreference,
|
|
12700
12491
|
OrganizationModuleType,
|
|
12701
12492
|
PAYMENTS_QUERY_KEY,
|
|
@@ -12782,9 +12573,6 @@ export {
|
|
|
12782
12573
|
SELF_PUSH_DEVICE_QUERY_KEY,
|
|
12783
12574
|
SELF_QUERY_KEY,
|
|
12784
12575
|
SELF_RELATIONSHIPS_QUERY_KEY,
|
|
12785
|
-
SELF_SUBSCRIPTIONS_QUERY_KEY,
|
|
12786
|
-
SELF_SUBSCRIPTION_PAYMENTS_QUERY_KEY,
|
|
12787
|
-
SELF_SUBSCRIPTION_QUERY_KEY,
|
|
12788
12576
|
SERIES_EVENTS_QUERY_KEY,
|
|
12789
12577
|
SERIES_LIST_QUERY_KEY,
|
|
12790
12578
|
SERIES_QUERY_KEY,
|
|
@@ -12924,7 +12712,6 @@ export {
|
|
|
12924
12712
|
SetContentPublishSchedule,
|
|
12925
12713
|
StartSurvey,
|
|
12926
12714
|
SubmitSurvey,
|
|
12927
|
-
SubscriptionStatus,
|
|
12928
12715
|
SupportTicketState,
|
|
12929
12716
|
SupportTicketType,
|
|
12930
12717
|
SurveyQuestionType,
|
|
@@ -12983,7 +12770,6 @@ export {
|
|
|
12983
12770
|
UpdateSelfLead,
|
|
12984
12771
|
UpdateSelfNotificationPreferences,
|
|
12985
12772
|
UpdateSelfPushDevice,
|
|
12986
|
-
UpdateSubscriptionPaymentMethod,
|
|
12987
12773
|
UpdateSurveyResponse,
|
|
12988
12774
|
UpdateSurveySearchListResponse,
|
|
12989
12775
|
UpdateThread,
|
|
@@ -13051,7 +12837,6 @@ export {
|
|
|
13051
12837
|
useCancelGroupInvitation,
|
|
13052
12838
|
useCancelGroupRequest,
|
|
13053
12839
|
useCancelPass,
|
|
13054
|
-
useCancelSubscription,
|
|
13055
12840
|
useCapturePaymentIntent,
|
|
13056
12841
|
useCheckinListingAttendeePass,
|
|
13057
12842
|
useCompleteEventActivation,
|
|
@@ -13082,7 +12867,6 @@ export {
|
|
|
13082
12867
|
useCreateSelfChatChannel,
|
|
13083
12868
|
useCreateSelfChatChannelMessage,
|
|
13084
12869
|
useCreateSelfLead,
|
|
13085
|
-
useCreateSubscription,
|
|
13086
12870
|
useCreateSupportTicket,
|
|
13087
12871
|
useCreateThreadMessage,
|
|
13088
12872
|
useDeactivateGroup,
|
|
@@ -13206,7 +12990,6 @@ export {
|
|
|
13206
12990
|
useGetOrganization,
|
|
13207
12991
|
useGetOrganizationConfig,
|
|
13208
12992
|
useGetOrganizationExplore,
|
|
13209
|
-
useGetOrganizationSubscriptionProducts,
|
|
13210
12993
|
useGetPayment,
|
|
13211
12994
|
useGetPayments,
|
|
13212
12995
|
useGetSearchList,
|
|
@@ -13277,9 +13060,6 @@ export {
|
|
|
13277
13060
|
useGetSelfPushDevice,
|
|
13278
13061
|
useGetSelfPushDevices,
|
|
13279
13062
|
useGetSelfRelationships,
|
|
13280
|
-
useGetSelfSubcription,
|
|
13281
|
-
useGetSelfSubscriptionPayments,
|
|
13282
|
-
useGetSelfSubscriptions,
|
|
13283
13063
|
useGetSeries,
|
|
13284
13064
|
useGetSeriesEvents,
|
|
13285
13065
|
useGetSeriesList,
|
|
@@ -13372,7 +13152,6 @@ export {
|
|
|
13372
13152
|
useUpdateSelfLead,
|
|
13373
13153
|
useUpdateSelfNotificationPreferences,
|
|
13374
13154
|
useUpdateSelfPushDevice,
|
|
13375
|
-
useUpdateSubscriptionPaymentMethod,
|
|
13376
13155
|
useUpdateSurveyResponse,
|
|
13377
13156
|
useUpdateSurveySearchListResponse,
|
|
13378
13157
|
useUpdateThread,
|