@liberfi.io/ui-channels 0.1.43 → 0.1.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +12 -9
- package/dist/index.d.ts +12 -9
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +14 -15
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { z } from '
|
|
2
|
+
import { z } from 'zod';
|
|
3
3
|
import { C as ChannelEvent, a as Channel, b as ChannelSource, c as ChannelsList, I as IChannelsClient, L as ListChannelEventsOptions, d as ChannelEventsList, e as ListChannelsOptions, f as CreateChannelOptions, U as UpdateChannelOptions, g as UpdateChannelSourcesOptions, X as XEligibilityInfo } from './api-CKXPYs9e.mjs';
|
|
4
4
|
export { B as BaseChannelEvent, i as ChannelSink, j as ChannelSourceOption, h as ChannelTradeEvent } from './api-CKXPYs9e.mjs';
|
|
5
5
|
import * as _liberfi_io_wallet_connector from '@liberfi.io/wallet-connector';
|
|
@@ -16,7 +16,7 @@ declare global {
|
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
declare const _default: "0.1.
|
|
19
|
+
declare const _default: "0.1.45";
|
|
20
20
|
|
|
21
21
|
declare const baseFormSchema: z.ZodObject<{
|
|
22
22
|
name: z.ZodString;
|
|
@@ -40,8 +40,9 @@ type BaseFormUIProps = {
|
|
|
40
40
|
onSubmit?: (data: BaseFormValues) => Promise<void>;
|
|
41
41
|
defaultValues?: BaseFormValues;
|
|
42
42
|
submitLabel?: string;
|
|
43
|
+
upload?: (file: File) => Promise<string>;
|
|
43
44
|
};
|
|
44
|
-
declare function BaseFormUI({ isSubmitting, onSubmit, defaultValues, submitLabel, }: BaseFormUIProps): react_jsx_runtime.JSX.Element;
|
|
45
|
+
declare function BaseFormUI({ isSubmitting, onSubmit, defaultValues, submitLabel, upload, }: BaseFormUIProps): react_jsx_runtime.JSX.Element;
|
|
45
46
|
|
|
46
47
|
type ChannelEventRowProps = {
|
|
47
48
|
event: ChannelEvent;
|
|
@@ -52,8 +53,9 @@ type ChannelEventRowProps = {
|
|
|
52
53
|
type CreateChannelWidgetProps = {
|
|
53
54
|
onSuccess?: (channel: Channel) => void;
|
|
54
55
|
onError?: (error: unknown) => void;
|
|
56
|
+
upload?: (file: File) => Promise<string>;
|
|
55
57
|
};
|
|
56
|
-
declare function CreateChannelWidget({ onSuccess, onError, }: CreateChannelWidgetProps): react_jsx_runtime.JSX.Element;
|
|
58
|
+
declare function CreateChannelWidget({ onSuccess, onError, upload, }: CreateChannelWidgetProps): react_jsx_runtime.JSX.Element;
|
|
57
59
|
|
|
58
60
|
declare function useUpdateBaseForm(id: string): {
|
|
59
61
|
channel: Channel | undefined;
|
|
@@ -92,16 +94,19 @@ interface UpdateChannelFormUIProps {
|
|
|
92
94
|
isSubmittingWalletsForm?: boolean;
|
|
93
95
|
/** wallets on submit */
|
|
94
96
|
onSubmitWalletsForm?: (data: WalletsFormValues) => Promise<void>;
|
|
97
|
+
/** file upload handler for the base form */
|
|
98
|
+
upload?: (file: File) => Promise<string>;
|
|
95
99
|
/** custom styles */
|
|
96
100
|
className?: string;
|
|
97
101
|
}
|
|
98
|
-
declare function UpdateChannelFormUI({ channel, type, baseFormDefaultValues, isSubmittingBaseForm, onSubmitBaseForm, baseFormSubmitLabel, wallets, isSubmittingWalletsForm, onSubmitWalletsForm, className, }: UpdateChannelFormUIProps): react_jsx_runtime.JSX.Element;
|
|
102
|
+
declare function UpdateChannelFormUI({ channel, type, baseFormDefaultValues, isSubmittingBaseForm, onSubmitBaseForm, baseFormSubmitLabel, wallets, isSubmittingWalletsForm, onSubmitWalletsForm, upload, className, }: UpdateChannelFormUIProps): react_jsx_runtime.JSX.Element;
|
|
99
103
|
|
|
100
104
|
type UpdateChannelWidgetProps = {
|
|
101
105
|
id: string;
|
|
102
106
|
type?: UpdateChannelFormType;
|
|
107
|
+
upload?: (file: File) => Promise<string>;
|
|
103
108
|
};
|
|
104
|
-
declare function UpdateChannelWidget({ id, type, }: UpdateChannelWidgetProps): react_jsx_runtime.JSX.Element;
|
|
109
|
+
declare function UpdateChannelWidget({ id, type, upload, }: UpdateChannelWidgetProps): react_jsx_runtime.JSX.Element;
|
|
105
110
|
|
|
106
111
|
declare function useUpdateWalletsForm(id: string, channel?: Channel): {
|
|
107
112
|
isLoading: boolean;
|
|
@@ -1268,8 +1273,6 @@ type UseUpdateChannelSourcesMutationParams = UpdateChannelSourcesOptions;
|
|
|
1268
1273
|
declare function updateChannelSources(client: IChannelsClient, params: UseUpdateChannelSourcesMutationParams): Promise<Array<ChannelSource>>;
|
|
1269
1274
|
declare function useUpdateChannelSourcesMutation(options?: Omit<UseMutationOptions<Array<ChannelSource>, Error, UseUpdateChannelSourcesMutationParams, string[]>, "mutationFn">): _tanstack_react_query.UseMutationResult<ChannelSource[], Error, UpdateChannelSourcesOptions, string[]>;
|
|
1270
1275
|
|
|
1271
|
-
declare const useUpload: () => (file: File) => Promise<string>;
|
|
1272
|
-
|
|
1273
1276
|
declare function xEligibilityQueryKey(): string[];
|
|
1274
1277
|
declare function fetchXEligibility(client: IChannelsClient): Promise<XEligibilityInfo>;
|
|
1275
1278
|
declare function useXEligibilityQuery(options?: Omit<UseQueryOptions<XEligibilityInfo, Error, XEligibilityInfo, string[]>, "queryKey" | "queryFn">): _tanstack_react_query.UseQueryResult<XEligibilityInfo, Error>;
|
|
@@ -1282,4 +1285,4 @@ declare function useXAuthorizeUrlQuery(params?: {
|
|
|
1282
1285
|
|
|
1283
1286
|
declare function parseWalletsText(value: string): Array<Partial<WalletValues>>;
|
|
1284
1287
|
|
|
1285
|
-
export { ActivityFeedUI, type ActivityFeedUIProps, ActivityFeedWidget, type ActivityFeedWidgetProps, BaseFormUI, type BaseFormUIProps, type BaseFormValues, type BotConnectionStatus, Channel, ChannelAttributes, type ChannelAttributesProps, ChannelBaseInfo, type ChannelBaseInfoProps, ChannelBasicInfoUI, type ChannelBasicInfoUIProps, ChannelBasicInfoWidget, type ChannelBasicInfoWidgetProps, type ChannelCardData, type ChannelDetailData, ChannelDetailNewUI, type ChannelDetailNewUIProps, ChannelDetailNewWidget, type ChannelDetailNewWidgetProps, type ChannelDetailPageProps, type ChannelDetailStats, ChannelDetailUI, type ChannelDetailUIProps, ChannelDetailWidget, type ChannelDetailWidgetProps, ChannelEditButton, type ChannelEditButtonProps, ChannelEvent, type ChannelEventRowProps, ChannelEventsList, type ChannelHomePageProps, ChannelSource, ChannelStats, type ChannelStatsProps, ChannelSubscribeButton, type ChannelSubscribeButtonProps, ChannelsContext, type ChannelsContextValue, ChannelsDetailPage, ChannelsEmptyUI, type ChannelsEmptyUIProps, ChannelsHomePage, ChannelsList, ChannelsProvider, type ChannelsProviderProps, ChannelsSkeletonUI, type ChannelsSkeletonUIProps, ChannelsUI, type ChannelsUIProps, CheckEligibilityUI, type CheckEligibilityUIProps, CheckEligibilityWidget, type CheckEligibilityWidgetProps, CreateChannelOptions, CreateChannelWidget, type CreateChannelWidgetProps, type EligibilityCheckItem, type EligibilityCheckStatus, FindChannelUI, type FindChannelUIProps, FindChannelWidget, type FindChannelWidgetProps, IChannelsClient, type KeyMetric, ListChannelEventsOptions, ListChannelsOptions, type MonitoredWallet, MyChannelsWidget, type MyChannelsWidgetProps, MySubscribeUI, type MySubscribeUIProps, MySubscribeWidget, type MySubscribeWidgetProps, type PresetAvatar, SocialBotsUI, type SocialBotsUIProps, SocialBotsWidget, type SocialBotsWidgetProps, SocialsFormUI, type SocialsFormUIProps, type SortDirection, type SortField, type Step, type StepStatus, StepperUI, type StepperUIProps, type SubscribedChannelData, SubscribedChannelsWidget, type SubscribedChannelsWidgetProps, TabContainerUI, type TabContainerUIProps, TabContainerWidget, type TabContainerWidgetProps, type TabType, type TimeFilter, type Token, TokensListUI, type TokensListUIProps, TokensListWidget, type TokensListWidgetProps, type TradeEvent, type Trader, TradersTableUI, type TradersTableUIProps, TradersTableWidget, type TradersTableWidgetProps, TrendingChannelsWidget, type TrendingChannelsWidgetProps, type UpdateChannelFormType, UpdateChannelFormUI, type UpdateChannelFormUIProps, UpdateChannelOptions, UpdateChannelSourcesOptions, UpdateChannelWidget, type UpdateChannelWidgetProps, type UseChannelBasicInfoScriptParams, type UseChannelBasicInfoScriptResult, type UseChannelEventsQueryParams, type UseChannelsListQueryParams, type UseCheckEligibilityScriptParams, type UseCheckEligibilityScriptResult, type UseCreateChannelMutationParams, type UseFindChannelScriptParams, type UseMyChannelsListQueryParams, type UseMySubscribeScriptParams, type UseSocialBotsScriptParams, type UseSocialBotsScriptResult, type UseSubscribedChannelsListQueryParams, type UseUpdateChannelMutationParams, type UseUpdateChannelSourcesMutationParams, type UseWalletImportScriptParams, type UseWalletImportScriptResult, WalletImportUI, type WalletImportUIProps, WalletImportWidget, type WalletImportWidgetProps, type WalletValues, WalletsFormUI, type WalletsFormUIProps, type WalletsFormValues, WalletsListUI, type WalletsListUIProps, type XAccountInfo, XEligibilityInfo, baseFormSchema, channelEventsInfiniteQueryKey, channelEventsQueryKey, channelQueryKey, channelSourcesQueryKey, channelsListQueryKey, createChannel, fetchChannel, fetchChannelEvents, fetchChannelSources, fetchChannelsList, fetchMyChannelsList, fetchSubscribedChannelsList, fetchXAuthorizeUrl, fetchXEligibility, myChannelsListQueryKey, parseWalletsText, subscribeChannel, subscribedChannelsListQueryKey, unsubscribeChannel, updateChannel, updateChannelSources, useChannelBasicInfoScript, useChannelDetail, useChannelEventsInfiniteQuery, useChannelEventsQuery, useChannelQuery, useChannelSourcesQuery, useChannelsClient, useChannelsContext, useChannelsListQuery, useCheckEligibilityScript, useCreateChannelMutation, useFindChannelScript, useMyChannels, useMyChannelsListQuery, useMySubscribeScript, useSocialBotsScript, useSubscribeChannelMutation, useSubscribedChannels, useSubscribedChannelsListQuery, useTrendingChannels, useUnsubscribeChannelMutation, useUpdateBaseForm, useUpdateChannelMutation, useUpdateChannelSourcesMutation, useUpdateWalletsForm,
|
|
1288
|
+
export { ActivityFeedUI, type ActivityFeedUIProps, ActivityFeedWidget, type ActivityFeedWidgetProps, BaseFormUI, type BaseFormUIProps, type BaseFormValues, type BotConnectionStatus, Channel, ChannelAttributes, type ChannelAttributesProps, ChannelBaseInfo, type ChannelBaseInfoProps, ChannelBasicInfoUI, type ChannelBasicInfoUIProps, ChannelBasicInfoWidget, type ChannelBasicInfoWidgetProps, type ChannelCardData, type ChannelDetailData, ChannelDetailNewUI, type ChannelDetailNewUIProps, ChannelDetailNewWidget, type ChannelDetailNewWidgetProps, type ChannelDetailPageProps, type ChannelDetailStats, ChannelDetailUI, type ChannelDetailUIProps, ChannelDetailWidget, type ChannelDetailWidgetProps, ChannelEditButton, type ChannelEditButtonProps, ChannelEvent, type ChannelEventRowProps, ChannelEventsList, type ChannelHomePageProps, ChannelSource, ChannelStats, type ChannelStatsProps, ChannelSubscribeButton, type ChannelSubscribeButtonProps, ChannelsContext, type ChannelsContextValue, ChannelsDetailPage, ChannelsEmptyUI, type ChannelsEmptyUIProps, ChannelsHomePage, ChannelsList, ChannelsProvider, type ChannelsProviderProps, ChannelsSkeletonUI, type ChannelsSkeletonUIProps, ChannelsUI, type ChannelsUIProps, CheckEligibilityUI, type CheckEligibilityUIProps, CheckEligibilityWidget, type CheckEligibilityWidgetProps, CreateChannelOptions, CreateChannelWidget, type CreateChannelWidgetProps, type EligibilityCheckItem, type EligibilityCheckStatus, FindChannelUI, type FindChannelUIProps, FindChannelWidget, type FindChannelWidgetProps, IChannelsClient, type KeyMetric, ListChannelEventsOptions, ListChannelsOptions, type MonitoredWallet, MyChannelsWidget, type MyChannelsWidgetProps, MySubscribeUI, type MySubscribeUIProps, MySubscribeWidget, type MySubscribeWidgetProps, type PresetAvatar, SocialBotsUI, type SocialBotsUIProps, SocialBotsWidget, type SocialBotsWidgetProps, SocialsFormUI, type SocialsFormUIProps, type SortDirection, type SortField, type Step, type StepStatus, StepperUI, type StepperUIProps, type SubscribedChannelData, SubscribedChannelsWidget, type SubscribedChannelsWidgetProps, TabContainerUI, type TabContainerUIProps, TabContainerWidget, type TabContainerWidgetProps, type TabType, type TimeFilter, type Token, TokensListUI, type TokensListUIProps, TokensListWidget, type TokensListWidgetProps, type TradeEvent, type Trader, TradersTableUI, type TradersTableUIProps, TradersTableWidget, type TradersTableWidgetProps, TrendingChannelsWidget, type TrendingChannelsWidgetProps, type UpdateChannelFormType, UpdateChannelFormUI, type UpdateChannelFormUIProps, UpdateChannelOptions, UpdateChannelSourcesOptions, UpdateChannelWidget, type UpdateChannelWidgetProps, type UseChannelBasicInfoScriptParams, type UseChannelBasicInfoScriptResult, type UseChannelEventsQueryParams, type UseChannelsListQueryParams, type UseCheckEligibilityScriptParams, type UseCheckEligibilityScriptResult, type UseCreateChannelMutationParams, type UseFindChannelScriptParams, type UseMyChannelsListQueryParams, type UseMySubscribeScriptParams, type UseSocialBotsScriptParams, type UseSocialBotsScriptResult, type UseSubscribedChannelsListQueryParams, type UseUpdateChannelMutationParams, type UseUpdateChannelSourcesMutationParams, type UseWalletImportScriptParams, type UseWalletImportScriptResult, WalletImportUI, type WalletImportUIProps, WalletImportWidget, type WalletImportWidgetProps, type WalletValues, WalletsFormUI, type WalletsFormUIProps, type WalletsFormValues, WalletsListUI, type WalletsListUIProps, type XAccountInfo, XEligibilityInfo, baseFormSchema, channelEventsInfiniteQueryKey, channelEventsQueryKey, channelQueryKey, channelSourcesQueryKey, channelsListQueryKey, createChannel, fetchChannel, fetchChannelEvents, fetchChannelSources, fetchChannelsList, fetchMyChannelsList, fetchSubscribedChannelsList, fetchXAuthorizeUrl, fetchXEligibility, myChannelsListQueryKey, parseWalletsText, subscribeChannel, subscribedChannelsListQueryKey, unsubscribeChannel, updateChannel, updateChannelSources, useChannelBasicInfoScript, useChannelDetail, useChannelEventsInfiniteQuery, useChannelEventsQuery, useChannelQuery, useChannelSourcesQuery, useChannelsClient, useChannelsContext, useChannelsListQuery, useCheckEligibilityScript, useCreateChannelMutation, useFindChannelScript, useMyChannels, useMyChannelsListQuery, useMySubscribeScript, useSocialBotsScript, useSubscribeChannelMutation, useSubscribedChannels, useSubscribedChannelsListQuery, useTrendingChannels, useUnsubscribeChannelMutation, useUpdateBaseForm, useUpdateChannelMutation, useUpdateChannelSourcesMutation, useUpdateWalletsForm, useWalletImportScript, useXAuthorizeUrlQuery, useXEligibilityQuery, _default as version, walletSchema, walletsFormSchema, xAuthorizeUrlQueryKey, xEligibilityQueryKey };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { z } from '
|
|
2
|
+
import { z } from 'zod';
|
|
3
3
|
import { C as ChannelEvent, a as Channel, b as ChannelSource, c as ChannelsList, I as IChannelsClient, L as ListChannelEventsOptions, d as ChannelEventsList, e as ListChannelsOptions, f as CreateChannelOptions, U as UpdateChannelOptions, g as UpdateChannelSourcesOptions, X as XEligibilityInfo } from './api-CKXPYs9e.js';
|
|
4
4
|
export { B as BaseChannelEvent, i as ChannelSink, j as ChannelSourceOption, h as ChannelTradeEvent } from './api-CKXPYs9e.js';
|
|
5
5
|
import * as _liberfi_io_wallet_connector from '@liberfi.io/wallet-connector';
|
|
@@ -16,7 +16,7 @@ declare global {
|
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
declare const _default: "0.1.
|
|
19
|
+
declare const _default: "0.1.45";
|
|
20
20
|
|
|
21
21
|
declare const baseFormSchema: z.ZodObject<{
|
|
22
22
|
name: z.ZodString;
|
|
@@ -40,8 +40,9 @@ type BaseFormUIProps = {
|
|
|
40
40
|
onSubmit?: (data: BaseFormValues) => Promise<void>;
|
|
41
41
|
defaultValues?: BaseFormValues;
|
|
42
42
|
submitLabel?: string;
|
|
43
|
+
upload?: (file: File) => Promise<string>;
|
|
43
44
|
};
|
|
44
|
-
declare function BaseFormUI({ isSubmitting, onSubmit, defaultValues, submitLabel, }: BaseFormUIProps): react_jsx_runtime.JSX.Element;
|
|
45
|
+
declare function BaseFormUI({ isSubmitting, onSubmit, defaultValues, submitLabel, upload, }: BaseFormUIProps): react_jsx_runtime.JSX.Element;
|
|
45
46
|
|
|
46
47
|
type ChannelEventRowProps = {
|
|
47
48
|
event: ChannelEvent;
|
|
@@ -52,8 +53,9 @@ type ChannelEventRowProps = {
|
|
|
52
53
|
type CreateChannelWidgetProps = {
|
|
53
54
|
onSuccess?: (channel: Channel) => void;
|
|
54
55
|
onError?: (error: unknown) => void;
|
|
56
|
+
upload?: (file: File) => Promise<string>;
|
|
55
57
|
};
|
|
56
|
-
declare function CreateChannelWidget({ onSuccess, onError, }: CreateChannelWidgetProps): react_jsx_runtime.JSX.Element;
|
|
58
|
+
declare function CreateChannelWidget({ onSuccess, onError, upload, }: CreateChannelWidgetProps): react_jsx_runtime.JSX.Element;
|
|
57
59
|
|
|
58
60
|
declare function useUpdateBaseForm(id: string): {
|
|
59
61
|
channel: Channel | undefined;
|
|
@@ -92,16 +94,19 @@ interface UpdateChannelFormUIProps {
|
|
|
92
94
|
isSubmittingWalletsForm?: boolean;
|
|
93
95
|
/** wallets on submit */
|
|
94
96
|
onSubmitWalletsForm?: (data: WalletsFormValues) => Promise<void>;
|
|
97
|
+
/** file upload handler for the base form */
|
|
98
|
+
upload?: (file: File) => Promise<string>;
|
|
95
99
|
/** custom styles */
|
|
96
100
|
className?: string;
|
|
97
101
|
}
|
|
98
|
-
declare function UpdateChannelFormUI({ channel, type, baseFormDefaultValues, isSubmittingBaseForm, onSubmitBaseForm, baseFormSubmitLabel, wallets, isSubmittingWalletsForm, onSubmitWalletsForm, className, }: UpdateChannelFormUIProps): react_jsx_runtime.JSX.Element;
|
|
102
|
+
declare function UpdateChannelFormUI({ channel, type, baseFormDefaultValues, isSubmittingBaseForm, onSubmitBaseForm, baseFormSubmitLabel, wallets, isSubmittingWalletsForm, onSubmitWalletsForm, upload, className, }: UpdateChannelFormUIProps): react_jsx_runtime.JSX.Element;
|
|
99
103
|
|
|
100
104
|
type UpdateChannelWidgetProps = {
|
|
101
105
|
id: string;
|
|
102
106
|
type?: UpdateChannelFormType;
|
|
107
|
+
upload?: (file: File) => Promise<string>;
|
|
103
108
|
};
|
|
104
|
-
declare function UpdateChannelWidget({ id, type, }: UpdateChannelWidgetProps): react_jsx_runtime.JSX.Element;
|
|
109
|
+
declare function UpdateChannelWidget({ id, type, upload, }: UpdateChannelWidgetProps): react_jsx_runtime.JSX.Element;
|
|
105
110
|
|
|
106
111
|
declare function useUpdateWalletsForm(id: string, channel?: Channel): {
|
|
107
112
|
isLoading: boolean;
|
|
@@ -1268,8 +1273,6 @@ type UseUpdateChannelSourcesMutationParams = UpdateChannelSourcesOptions;
|
|
|
1268
1273
|
declare function updateChannelSources(client: IChannelsClient, params: UseUpdateChannelSourcesMutationParams): Promise<Array<ChannelSource>>;
|
|
1269
1274
|
declare function useUpdateChannelSourcesMutation(options?: Omit<UseMutationOptions<Array<ChannelSource>, Error, UseUpdateChannelSourcesMutationParams, string[]>, "mutationFn">): _tanstack_react_query.UseMutationResult<ChannelSource[], Error, UpdateChannelSourcesOptions, string[]>;
|
|
1270
1275
|
|
|
1271
|
-
declare const useUpload: () => (file: File) => Promise<string>;
|
|
1272
|
-
|
|
1273
1276
|
declare function xEligibilityQueryKey(): string[];
|
|
1274
1277
|
declare function fetchXEligibility(client: IChannelsClient): Promise<XEligibilityInfo>;
|
|
1275
1278
|
declare function useXEligibilityQuery(options?: Omit<UseQueryOptions<XEligibilityInfo, Error, XEligibilityInfo, string[]>, "queryKey" | "queryFn">): _tanstack_react_query.UseQueryResult<XEligibilityInfo, Error>;
|
|
@@ -1282,4 +1285,4 @@ declare function useXAuthorizeUrlQuery(params?: {
|
|
|
1282
1285
|
|
|
1283
1286
|
declare function parseWalletsText(value: string): Array<Partial<WalletValues>>;
|
|
1284
1287
|
|
|
1285
|
-
export { ActivityFeedUI, type ActivityFeedUIProps, ActivityFeedWidget, type ActivityFeedWidgetProps, BaseFormUI, type BaseFormUIProps, type BaseFormValues, type BotConnectionStatus, Channel, ChannelAttributes, type ChannelAttributesProps, ChannelBaseInfo, type ChannelBaseInfoProps, ChannelBasicInfoUI, type ChannelBasicInfoUIProps, ChannelBasicInfoWidget, type ChannelBasicInfoWidgetProps, type ChannelCardData, type ChannelDetailData, ChannelDetailNewUI, type ChannelDetailNewUIProps, ChannelDetailNewWidget, type ChannelDetailNewWidgetProps, type ChannelDetailPageProps, type ChannelDetailStats, ChannelDetailUI, type ChannelDetailUIProps, ChannelDetailWidget, type ChannelDetailWidgetProps, ChannelEditButton, type ChannelEditButtonProps, ChannelEvent, type ChannelEventRowProps, ChannelEventsList, type ChannelHomePageProps, ChannelSource, ChannelStats, type ChannelStatsProps, ChannelSubscribeButton, type ChannelSubscribeButtonProps, ChannelsContext, type ChannelsContextValue, ChannelsDetailPage, ChannelsEmptyUI, type ChannelsEmptyUIProps, ChannelsHomePage, ChannelsList, ChannelsProvider, type ChannelsProviderProps, ChannelsSkeletonUI, type ChannelsSkeletonUIProps, ChannelsUI, type ChannelsUIProps, CheckEligibilityUI, type CheckEligibilityUIProps, CheckEligibilityWidget, type CheckEligibilityWidgetProps, CreateChannelOptions, CreateChannelWidget, type CreateChannelWidgetProps, type EligibilityCheckItem, type EligibilityCheckStatus, FindChannelUI, type FindChannelUIProps, FindChannelWidget, type FindChannelWidgetProps, IChannelsClient, type KeyMetric, ListChannelEventsOptions, ListChannelsOptions, type MonitoredWallet, MyChannelsWidget, type MyChannelsWidgetProps, MySubscribeUI, type MySubscribeUIProps, MySubscribeWidget, type MySubscribeWidgetProps, type PresetAvatar, SocialBotsUI, type SocialBotsUIProps, SocialBotsWidget, type SocialBotsWidgetProps, SocialsFormUI, type SocialsFormUIProps, type SortDirection, type SortField, type Step, type StepStatus, StepperUI, type StepperUIProps, type SubscribedChannelData, SubscribedChannelsWidget, type SubscribedChannelsWidgetProps, TabContainerUI, type TabContainerUIProps, TabContainerWidget, type TabContainerWidgetProps, type TabType, type TimeFilter, type Token, TokensListUI, type TokensListUIProps, TokensListWidget, type TokensListWidgetProps, type TradeEvent, type Trader, TradersTableUI, type TradersTableUIProps, TradersTableWidget, type TradersTableWidgetProps, TrendingChannelsWidget, type TrendingChannelsWidgetProps, type UpdateChannelFormType, UpdateChannelFormUI, type UpdateChannelFormUIProps, UpdateChannelOptions, UpdateChannelSourcesOptions, UpdateChannelWidget, type UpdateChannelWidgetProps, type UseChannelBasicInfoScriptParams, type UseChannelBasicInfoScriptResult, type UseChannelEventsQueryParams, type UseChannelsListQueryParams, type UseCheckEligibilityScriptParams, type UseCheckEligibilityScriptResult, type UseCreateChannelMutationParams, type UseFindChannelScriptParams, type UseMyChannelsListQueryParams, type UseMySubscribeScriptParams, type UseSocialBotsScriptParams, type UseSocialBotsScriptResult, type UseSubscribedChannelsListQueryParams, type UseUpdateChannelMutationParams, type UseUpdateChannelSourcesMutationParams, type UseWalletImportScriptParams, type UseWalletImportScriptResult, WalletImportUI, type WalletImportUIProps, WalletImportWidget, type WalletImportWidgetProps, type WalletValues, WalletsFormUI, type WalletsFormUIProps, type WalletsFormValues, WalletsListUI, type WalletsListUIProps, type XAccountInfo, XEligibilityInfo, baseFormSchema, channelEventsInfiniteQueryKey, channelEventsQueryKey, channelQueryKey, channelSourcesQueryKey, channelsListQueryKey, createChannel, fetchChannel, fetchChannelEvents, fetchChannelSources, fetchChannelsList, fetchMyChannelsList, fetchSubscribedChannelsList, fetchXAuthorizeUrl, fetchXEligibility, myChannelsListQueryKey, parseWalletsText, subscribeChannel, subscribedChannelsListQueryKey, unsubscribeChannel, updateChannel, updateChannelSources, useChannelBasicInfoScript, useChannelDetail, useChannelEventsInfiniteQuery, useChannelEventsQuery, useChannelQuery, useChannelSourcesQuery, useChannelsClient, useChannelsContext, useChannelsListQuery, useCheckEligibilityScript, useCreateChannelMutation, useFindChannelScript, useMyChannels, useMyChannelsListQuery, useMySubscribeScript, useSocialBotsScript, useSubscribeChannelMutation, useSubscribedChannels, useSubscribedChannelsListQuery, useTrendingChannels, useUnsubscribeChannelMutation, useUpdateBaseForm, useUpdateChannelMutation, useUpdateChannelSourcesMutation, useUpdateWalletsForm,
|
|
1288
|
+
export { ActivityFeedUI, type ActivityFeedUIProps, ActivityFeedWidget, type ActivityFeedWidgetProps, BaseFormUI, type BaseFormUIProps, type BaseFormValues, type BotConnectionStatus, Channel, ChannelAttributes, type ChannelAttributesProps, ChannelBaseInfo, type ChannelBaseInfoProps, ChannelBasicInfoUI, type ChannelBasicInfoUIProps, ChannelBasicInfoWidget, type ChannelBasicInfoWidgetProps, type ChannelCardData, type ChannelDetailData, ChannelDetailNewUI, type ChannelDetailNewUIProps, ChannelDetailNewWidget, type ChannelDetailNewWidgetProps, type ChannelDetailPageProps, type ChannelDetailStats, ChannelDetailUI, type ChannelDetailUIProps, ChannelDetailWidget, type ChannelDetailWidgetProps, ChannelEditButton, type ChannelEditButtonProps, ChannelEvent, type ChannelEventRowProps, ChannelEventsList, type ChannelHomePageProps, ChannelSource, ChannelStats, type ChannelStatsProps, ChannelSubscribeButton, type ChannelSubscribeButtonProps, ChannelsContext, type ChannelsContextValue, ChannelsDetailPage, ChannelsEmptyUI, type ChannelsEmptyUIProps, ChannelsHomePage, ChannelsList, ChannelsProvider, type ChannelsProviderProps, ChannelsSkeletonUI, type ChannelsSkeletonUIProps, ChannelsUI, type ChannelsUIProps, CheckEligibilityUI, type CheckEligibilityUIProps, CheckEligibilityWidget, type CheckEligibilityWidgetProps, CreateChannelOptions, CreateChannelWidget, type CreateChannelWidgetProps, type EligibilityCheckItem, type EligibilityCheckStatus, FindChannelUI, type FindChannelUIProps, FindChannelWidget, type FindChannelWidgetProps, IChannelsClient, type KeyMetric, ListChannelEventsOptions, ListChannelsOptions, type MonitoredWallet, MyChannelsWidget, type MyChannelsWidgetProps, MySubscribeUI, type MySubscribeUIProps, MySubscribeWidget, type MySubscribeWidgetProps, type PresetAvatar, SocialBotsUI, type SocialBotsUIProps, SocialBotsWidget, type SocialBotsWidgetProps, SocialsFormUI, type SocialsFormUIProps, type SortDirection, type SortField, type Step, type StepStatus, StepperUI, type StepperUIProps, type SubscribedChannelData, SubscribedChannelsWidget, type SubscribedChannelsWidgetProps, TabContainerUI, type TabContainerUIProps, TabContainerWidget, type TabContainerWidgetProps, type TabType, type TimeFilter, type Token, TokensListUI, type TokensListUIProps, TokensListWidget, type TokensListWidgetProps, type TradeEvent, type Trader, TradersTableUI, type TradersTableUIProps, TradersTableWidget, type TradersTableWidgetProps, TrendingChannelsWidget, type TrendingChannelsWidgetProps, type UpdateChannelFormType, UpdateChannelFormUI, type UpdateChannelFormUIProps, UpdateChannelOptions, UpdateChannelSourcesOptions, UpdateChannelWidget, type UpdateChannelWidgetProps, type UseChannelBasicInfoScriptParams, type UseChannelBasicInfoScriptResult, type UseChannelEventsQueryParams, type UseChannelsListQueryParams, type UseCheckEligibilityScriptParams, type UseCheckEligibilityScriptResult, type UseCreateChannelMutationParams, type UseFindChannelScriptParams, type UseMyChannelsListQueryParams, type UseMySubscribeScriptParams, type UseSocialBotsScriptParams, type UseSocialBotsScriptResult, type UseSubscribedChannelsListQueryParams, type UseUpdateChannelMutationParams, type UseUpdateChannelSourcesMutationParams, type UseWalletImportScriptParams, type UseWalletImportScriptResult, WalletImportUI, type WalletImportUIProps, WalletImportWidget, type WalletImportWidgetProps, type WalletValues, WalletsFormUI, type WalletsFormUIProps, type WalletsFormValues, WalletsListUI, type WalletsListUIProps, type XAccountInfo, XEligibilityInfo, baseFormSchema, channelEventsInfiniteQueryKey, channelEventsQueryKey, channelQueryKey, channelSourcesQueryKey, channelsListQueryKey, createChannel, fetchChannel, fetchChannelEvents, fetchChannelSources, fetchChannelsList, fetchMyChannelsList, fetchSubscribedChannelsList, fetchXAuthorizeUrl, fetchXEligibility, myChannelsListQueryKey, parseWalletsText, subscribeChannel, subscribedChannelsListQueryKey, unsubscribeChannel, updateChannel, updateChannelSources, useChannelBasicInfoScript, useChannelDetail, useChannelEventsInfiniteQuery, useChannelEventsQuery, useChannelQuery, useChannelSourcesQuery, useChannelsClient, useChannelsContext, useChannelsListQuery, useCheckEligibilityScript, useCreateChannelMutation, useFindChannelScript, useMyChannels, useMyChannelsListQuery, useMySubscribeScript, useSocialBotsScript, useSubscribeChannelMutation, useSubscribedChannels, useSubscribedChannelsListQuery, useTrendingChannels, useUnsubscribeChannelMutation, useUpdateBaseForm, useUpdateChannelMutation, useUpdateChannelSourcesMutation, useUpdateWalletsForm, useWalletImportScript, useXAuthorizeUrlQuery, useXEligibilityQuery, _default as version, walletSchema, walletsFormSchema, xAuthorizeUrlQueryKey, xEligibilityQueryKey };
|