node-karin 1.14.3 → 1.15.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.
Files changed (34) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/cli/index.cjs +1 -1
  3. package/dist/cli/index.mjs +9 -1
  4. package/dist/index.d.ts +125 -9
  5. package/dist/index.mjs +258 -3923
  6. package/dist/web/assets/css/index-Dadvd9mn.css.br +0 -0
  7. package/dist/web/assets/js/components-CU2xw4lY.js.br +0 -0
  8. package/dist/web/assets/js/entry-Dvb7eYLE.js.br +0 -0
  9. package/dist/web/assets/js/hooks-CRfhs4ON.js.br +0 -0
  10. package/dist/web/assets/js/page-404.tsx-DYMd_RI_.js +1 -0
  11. package/dist/web/assets/js/page-dashboard-CG60V_Z-.js.br +0 -0
  12. package/dist/web/assets/js/page-loading.tsx-wY8a9me3.js.br +0 -0
  13. package/dist/web/assets/js/page-login.tsx-B54ZOEZB.js.br +0 -0
  14. package/dist/web/assets/js/{utils-CdCxw2wv.js → utils-C9nWTSuo.js} +1 -1
  15. package/dist/web/assets/js/vendor-heroui-ClBCy2zk.js.br +0 -0
  16. package/dist/web/assets/js/vendor-others-6GiMrjd4.js.br +0 -0
  17. package/dist/web/assets/js/vendor-react-Dc9jdQiK.js.br +0 -0
  18. package/dist/web/assets/js/vendor-ui-utils-D0xkboLL.js.br +0 -0
  19. package/dist/web/assets/js/vendor-visual-saF8KLH_.js.br +0 -0
  20. package/dist/web/index.html +11 -11
  21. package/package.json +4 -3
  22. package/dist/web/assets/css/index-D5pQKIVM.css.br +0 -0
  23. package/dist/web/assets/js/components-CwlslQJu.js.br +0 -0
  24. package/dist/web/assets/js/entry-DrYZaT06.js.br +0 -0
  25. package/dist/web/assets/js/hooks-DOCEaajn.js.br +0 -0
  26. package/dist/web/assets/js/page-404.tsx-B4wXUCIO.js +0 -1
  27. package/dist/web/assets/js/page-dashboard-73HWPjdB.js.br +0 -0
  28. package/dist/web/assets/js/page-loading.tsx-DB7jBMJB.js.br +0 -0
  29. package/dist/web/assets/js/page-login.tsx-B2g16ZJ3.js.br +0 -0
  30. package/dist/web/assets/js/vendor-heroui-CwZGOEUx.js.br +0 -0
  31. package/dist/web/assets/js/vendor-others-Cl_zvxuq.js.br +0 -0
  32. package/dist/web/assets/js/vendor-react-CJ9HRX7N.js.br +0 -0
  33. package/dist/web/assets/js/vendor-ui-utils-Bb93SeY3.js.br +0 -0
  34. package/dist/web/assets/js/vendor-visual-DQlEygND.js.br +0 -0
@@ -6899,7 +6899,15 @@ const createConfigFile = (dir) => {
6899
6899
  }
6900
6900
  const defData = fs.readFileSync(filePath, "utf-8");
6901
6901
  const targetData = fs.readFileSync(targetFile, "utf-8");
6902
- const mergedData = { ...JSON.parse(defData), ...JSON.parse(targetData) };
6902
+ const defParsed = JSON.parse(defData);
6903
+ const targetParsed = JSON.parse(targetData);
6904
+ if (Array.isArray(defParsed)) {
6905
+ if (!Array.isArray(targetParsed)) {
6906
+ fs.writeFileSync(targetFile, JSON.stringify(defParsed, null, 2));
6907
+ }
6908
+ return;
6909
+ }
6910
+ const mergedData = { ...defParsed, ...targetParsed };
6903
6911
  if (file.includes("pm2.json")) {
6904
6912
  mergedData.apps[0].script = "index.mjs";
6905
6913
  }
package/dist/index.d.ts CHANGED
@@ -1784,6 +1784,13 @@ interface GroupHonorChangedType {
1784
1784
  /** 荣誉类型,分别表示龙王、群聊之火、快乐源泉 */
1785
1785
  honorType: 'talkative' | 'performer' | 'emotion';
1786
1786
  }
1787
+ /** 通知事件: Bot下线 */
1788
+ interface BotOfflineType {
1789
+ /** 下线标签(原因) */
1790
+ tag: string;
1791
+ /** 下线消息 */
1792
+ message: string;
1793
+ }
1787
1794
  /** 请求事件: 好友申请 */
1788
1795
  interface PrivateApplyType {
1789
1796
  /** 申请者id */
@@ -1838,6 +1845,7 @@ type MessageEventSub = 'group' | 'friend' | 'guild' | 'direct' | 'groupTemp';
1838
1845
  * - `privateFileUploaded`: 好友发送文件
1839
1846
  * - `friendIncrease`: 好友增加
1840
1847
  * - `friendDecrease`: 好友减少
1848
+ * - `botOffline`: Bot下线
1841
1849
  *
1842
1850
  * - `groupPoke`: 群聊戳一戳
1843
1851
  * - `groupCardChanged`: 群聊名片变动
@@ -1897,7 +1905,9 @@ type NoticeEventSub =
1897
1905
  /** 群聊运气王事件 */
1898
1906
  | 'groupLuckyKing'
1899
1907
  /** 群聊荣誉变更事件 */
1900
- | 'groupHonorChange';
1908
+ | 'groupHonorChange'
1909
+ /** Bot下线 */
1910
+ | 'botOffline';
1901
1911
  /**
1902
1912
  * `请求`事件子类型
1903
1913
  * - `friendApply`: 收到添加Bot为好友请求
@@ -2182,6 +2192,15 @@ type GroupHonorChangedOptions = Omit<NoticeOptions, 'subEvent'> & {
2182
2192
  /** 请求内容 */
2183
2193
  content: GroupHonorChangedType;
2184
2194
  };
2195
+ /** 创建Bot下线通知事件 */
2196
+ type BotOfflineOptions = Omit<NoticeOptions, 'subEvent'> & {
2197
+ /** 事件来源信息 */
2198
+ contact: Contact<'friend'>;
2199
+ /** 事件创建者信息 */
2200
+ sender: Sender<'friend'>;
2201
+ /** 请求内容 */
2202
+ content: BotOfflineType;
2203
+ };
2185
2204
  /** 创建请求事件类所需参数类型 */
2186
2205
  type RequestOptions = Omit<BaseEventOptions<'request'>, 'event'> & {
2187
2206
  /** 请求内容 */
@@ -2859,6 +2878,24 @@ declare class GroupHonorChangedNotice extends GroupNotice {
2859
2878
  get isDirect(): false;
2860
2879
  get isGroupTemp(): false;
2861
2880
  }
2881
+ /**
2882
+ * @description Bot下线事件
2883
+ * @class BotOfflineNotice
2884
+ */
2885
+ declare class BotOfflineNotice extends NoticeBase {
2886
+ #private;
2887
+ content: BotOfflineOptions['content'];
2888
+ constructor(options: BotOfflineOptions);
2889
+ get subEvent(): "botOffline";
2890
+ get contact(): FriendContact;
2891
+ get sender(): Sender & SenderBase;
2892
+ get isPrivate(): true;
2893
+ get isFriend(): true;
2894
+ get isGroup(): false;
2895
+ get isGuild(): false;
2896
+ get isDirect(): false;
2897
+ get isGroupTemp(): false;
2898
+ }
2862
2899
 
2863
2900
  /**
2864
2901
  * @description 请求事件基类
@@ -2956,6 +2993,7 @@ interface FriendNoticeEventMap {
2956
2993
  'notice.privatePoke': PrivatePokeNotice;
2957
2994
  'notice.privateRecall': PrivateRecallNotice;
2958
2995
  'notice.privateFileUploaded': PrivateFileUploadedNotice;
2996
+ 'notice.botOffline': BotOfflineNotice;
2959
2997
  }
2960
2998
  /** 群聊通知事件对应的对象类型 */
2961
2999
  interface GroupNoticeEventMap {
@@ -2995,7 +3033,7 @@ interface RequestEventMap extends FriendRequestEventMap, GroupRequestEventMap {
2995
3033
  /**
2996
3034
  * @description 通知事件类型
2997
3035
  */
2998
- type Notice = ReceiveLikeNotice | FriendDecreaseNotice | FriendIncreaseNotice | PrivatePokeNotice | PrivateRecallNotice | PrivateFileUploadedNotice | GroupPokeNotice | GroupRecallNotice | GroupFileUploadedNotice | GroupCardChangedNotice | GroupMemberTitleUpdatedNotice | GroupHlightsChangedNotice | GroupMemberIncreaseNotice | GroupMemberDecreaseNotice | GroupAdminChangedNotice | GroupSignInNotice | GroupMemberBanNotice | GroupWholeBanNotice | GroupMessageReactionNotice | GroupLuckKingNotice | GroupHonorChangedNotice;
3036
+ type Notice = ReceiveLikeNotice | FriendDecreaseNotice | FriendIncreaseNotice | PrivatePokeNotice | PrivateRecallNotice | PrivateFileUploadedNotice | GroupPokeNotice | GroupRecallNotice | GroupFileUploadedNotice | GroupCardChangedNotice | GroupMemberTitleUpdatedNotice | GroupHlightsChangedNotice | GroupMemberIncreaseNotice | GroupMemberDecreaseNotice | GroupAdminChangedNotice | GroupSignInNotice | GroupMemberBanNotice | GroupWholeBanNotice | GroupMessageReactionNotice | GroupLuckKingNotice | GroupHonorChangedNotice | BotOfflineNotice;
2999
3037
  /**
3000
3038
  * @description 消息事件类型
3001
3039
  */
@@ -4200,7 +4238,7 @@ interface InputProps extends ComponentProps {
4200
4238
  /** 结束内容 */
4201
4239
  endContent?: string;
4202
4240
  /** 标签位置 */
4203
- labelPlacement?: 'inside' | 'outside' | 'outside-left';
4241
+ labelPlacement?: 'inside' | 'outside' | 'outside-left' | 'outside-top';
4204
4242
  /** 是否全宽 */
4205
4243
  fullWidth?: boolean;
4206
4244
  /** 是否可清除 */
@@ -5968,6 +6006,11 @@ declare const createGroupLuckKingNotice: (options: GroupLuckKingOptions) => Grou
5968
6006
  * @param options 群成员荣誉变更通知事件所需参数
5969
6007
  */
5970
6008
  declare const createGroupHonorChangedNotice: (options: GroupHonorChangedOptions) => GroupHonorChangedNotice;
6009
+ /**
6010
+ * @description 创建Bot下线通知事件
6011
+ * @param options Bot下线通知事件所需参数
6012
+ */
6013
+ declare const createBotOfflineNotice: (options: BotOfflineOptions) => BotOfflineNotice;
5971
6014
  /**
5972
6015
  * @description 创建群成员申请入群请求事件
5973
6016
  * @param options 群成员申请入群请求事件所需参数
@@ -10977,6 +11020,10 @@ interface NodeCustomMessage extends MessageBase {
10977
11020
  user_id: string;
10978
11021
  nickname: string;
10979
11022
  content: OneBotMessage[];
11023
+ /** napcat拓展: 小卡片中间的外显 */
11024
+ news?: Array<{
11025
+ text: string;
11026
+ }>;
10980
11027
  /** napcat拓展: 消息列表的外显 */
10981
11028
  prompt?: string;
10982
11029
  /** napcat拓展: 小卡片底下文本: 查看1条转发消息 */
@@ -11228,7 +11275,9 @@ declare enum NoticeType {
11228
11275
  /** 群成员名片更新 */
11229
11276
  GroupCard = "group_card",
11230
11277
  /** 好友离线文件 Lagrange.OneBot */
11231
- Lgl_FriendOfflineFile = "offline_file"
11278
+ Lgl_FriendOfflineFile = "offline_file",
11279
+ /** Bot下线 */
11280
+ BotOffline = "bot_offline"
11232
11281
  }
11233
11282
  /**
11234
11283
  * 群管理员变动子类型枚举
@@ -11584,8 +11633,21 @@ interface LglFriendOfflineFileNoticeEvent extends EventBase {
11584
11633
  url: string;
11585
11634
  };
11586
11635
  }
11636
+ /**
11637
+ * Bot下线通知事件
11638
+ */
11639
+ interface BotOfflineNoticeEvent extends EventBase {
11640
+ /** 通知事件 */
11641
+ post_type: EventPostType.Notice;
11642
+ /** 通知类型 */
11643
+ notice_type: NoticeType.BotOffline;
11644
+ /** 下线标签(原因) */
11645
+ tag: string;
11646
+ /** 下线消息 */
11647
+ message: string;
11648
+ }
11587
11649
  /** OneBot 通知事件类型 */
11588
- type OneBotNoticeEvent = GroupUploadNoticeEvent | GroupAdminNoticeEvent | GroupDecreaseNoticeEvent | GroupIncreaseNoticeEvent | GroupBanNoticeEvent | FriendAddNoticeEvent | GroupRecallNoticeEvent | FriendRecallNoticeEvent | PokeNotifyEvent | LuckyKingNotifyEvent | HonorNotifyEvent | NcGroupEmojiLikeNoticeEvent | LglEmojiLikeNoticeEvent | GroupEssenceNoticeEvent | GroupCardNoticeEvent | LglFriendOfflineFileNoticeEvent;
11650
+ type OneBotNoticeEvent = GroupUploadNoticeEvent | GroupAdminNoticeEvent | GroupDecreaseNoticeEvent | GroupIncreaseNoticeEvent | GroupBanNoticeEvent | FriendAddNoticeEvent | GroupRecallNoticeEvent | FriendRecallNoticeEvent | PokeNotifyEvent | LuckyKingNotifyEvent | HonorNotifyEvent | NcGroupEmojiLikeNoticeEvent | LglEmojiLikeNoticeEvent | GroupEssenceNoticeEvent | GroupCardNoticeEvent | LglFriendOfflineFileNoticeEvent | BotOfflineNoticeEvent;
11589
11651
 
11590
11652
  /**
11591
11653
  * 请求类型枚举
@@ -12003,6 +12065,16 @@ interface OneBotMessageApi {
12003
12065
  action: 'send_forward_msg';
12004
12066
  params: {
12005
12067
  messages: NodeMessage[];
12068
+ /** napcat拓展: 小卡片中间的外显 */
12069
+ news?: Array<{
12070
+ text: string;
12071
+ }>;
12072
+ /** napcat拓展: 消息列表的外显 */
12073
+ prompt?: string;
12074
+ /** napcat拓展: 小卡片底下文本: 查看1条转发消息 */
12075
+ summary?: string;
12076
+ /** napcat拓展: 小卡片标题 */
12077
+ source?: string;
12006
12078
  };
12007
12079
  response: {
12008
12080
  message_id: string;
@@ -12017,6 +12089,16 @@ interface OneBotMessageApi {
12017
12089
  params: {
12018
12090
  group_id: number;
12019
12091
  messages: NodeMessage[];
12092
+ /** napcat拓展: 小卡片中间的外显 */
12093
+ news?: Array<{
12094
+ text: string;
12095
+ }>;
12096
+ /** napcat拓展: 消息列表的外显 */
12097
+ prompt?: string;
12098
+ /** napcat拓展: 小卡片底下文本: 查看1条转发消息 */
12099
+ summary?: string;
12100
+ /** napcat拓展: 小卡片标题 */
12101
+ source?: string;
12020
12102
  };
12021
12103
  response: {
12022
12104
  message_id: string;
@@ -12031,6 +12113,16 @@ interface OneBotMessageApi {
12031
12113
  params: {
12032
12114
  user_id: number;
12033
12115
  messages: NodeMessage[];
12116
+ /** napcat拓展: 小卡片中间的外显 */
12117
+ news?: Array<{
12118
+ text: string;
12119
+ }>;
12120
+ /** napcat拓展: 消息列表的外显 */
12121
+ prompt?: string;
12122
+ /** napcat拓展: 小卡片底下文本: 查看1条转发消息 */
12123
+ summary?: string;
12124
+ /** napcat拓展: 小卡片标题 */
12125
+ source?: string;
12034
12126
  };
12035
12127
  response: {
12036
12128
  message_id: string;
@@ -14410,9 +14502,17 @@ declare abstract class OneBotCore extends EventEmitter$1 {
14410
14502
  /**
14411
14503
  * GoCQ扩展: 发送合并转发消息
14412
14504
  * @param messages - 消息节点列表
14505
+ * @param options - 外显参数
14413
14506
  * @returns 消息ID
14414
14507
  */
14415
- sendForwardMsg(messages: NodeMessage[]): Promise<{
14508
+ sendForwardMsg(messages: NodeMessage[], options?: {
14509
+ news?: Array<{
14510
+ text: string;
14511
+ }>;
14512
+ prompt?: string;
14513
+ summary?: string;
14514
+ source?: string;
14515
+ }): Promise<{
14416
14516
  message_id: string;
14417
14517
  forward_id: string;
14418
14518
  res_id?: string;
@@ -14421,9 +14521,17 @@ declare abstract class OneBotCore extends EventEmitter$1 {
14421
14521
  * GoCQ扩展: 发送合并转发(群聊)
14422
14522
  * @param group_id - 群ID
14423
14523
  * @param messages - 消息节点列表
14524
+ * @param options - 外显参数
14424
14525
  * @returns 消息ID
14425
14526
  */
14426
- sendGroupForwardMsg(group_id: number, messages: NodeMessage[]): Promise<{
14527
+ sendGroupForwardMsg(group_id: number, messages: NodeMessage[], options?: {
14528
+ news?: Array<{
14529
+ text: string;
14530
+ }>;
14531
+ prompt?: string;
14532
+ summary?: string;
14533
+ source?: string;
14534
+ }): Promise<{
14427
14535
  message_id: string;
14428
14536
  forward_id: string;
14429
14537
  res_id?: string;
@@ -14432,9 +14540,17 @@ declare abstract class OneBotCore extends EventEmitter$1 {
14432
14540
  * GoCQ扩展: 发送合并转发(好友)
14433
14541
  * @param user_id - 用户ID
14434
14542
  * @param messages - 消息节点列表
14543
+ * @param options - 外显参数
14435
14544
  * @returns 消息ID
14436
14545
  */
14437
- sendPrivateForwardMsg(user_id: number, messages: NodeMessage[]): Promise<{
14546
+ sendPrivateForwardMsg(user_id: number, messages: NodeMessage[], options?: {
14547
+ news?: Array<{
14548
+ text: string;
14549
+ }>;
14550
+ prompt?: string;
14551
+ summary?: string;
14552
+ source?: string;
14553
+ }): Promise<{
14438
14554
  message_id: string;
14439
14555
  forward_id: string;
14440
14556
  res_id?: string;
@@ -17854,4 +17970,4 @@ type Client = RedisClientType & {
17854
17970
  */
17855
17971
  declare const start: () => Promise<void>;
17856
17972
 
17857
- export { type Accept, type AccordionItemProps, type AccordionKV, type AccordionProProps, type AccordionProResult, type AccordionProps, type AccordionResult, type AccountInfo, type Adapter, AdapterBase, type AdapterCommunication, AdapterConvertKarin, type AdapterInfo, AdapterOneBot, type AdapterOptions, type AdapterPlatform, type AdapterProtocol, type AdapterStandard, type AdapterType, type Adapters, type AddDependenciesParams, type AddTaskResult, type AfterForwardMessageCallback, type AfterMessageCallback, type AllPluginMethods, type Apps, type ArrayField, type AtElement, type Author, BASE_ROUTER, BATCH_UPDATE_PLUGINS_ROUTER, BOT_CONNECT, BOT_DISCONNECT, type BaseContact, BaseEvent, type BaseEventOptions, type BaseEventType, type BaseForwardCallback, type BaseMessageCallback, type BasketballElement, Bot, type BoundingBox, type BubbleFaceElement, type Button, type ButtonElement, CHECK_PLUGIN_ROUTER, CLOSE_TERMINAL_ROUTER, CONSOLE_ROUTER, CREATE_TERMINAL_ROUTER, type Cache, type CacheEntry, type CheckboxField, type CheckboxGroupProps, type CheckboxProps, type CheckboxResult, type Children, type CmdFnc, type Command, type CommandClass, type CompareMode, type ComponentConfig, type ComponentProps, type ComponentType, type Components, type ComponentsClass, type Config, type Contact, type ContactElement, type Count, type CreateGroupFolderResponse, type CreatePty, type CreateTask, type CreateTaskParams, type CreateTaskResult, type CronProps, type CustomMusicElement, type CustomNodeElement, type DbStreamStatus, type DbStreams, type DefineConfig, type DependenciesManage, type DependenciesManageBase, type Dependency, type DiceElement, type DirectContact, DirectMessage, type DirectMessageOptions, type DirectNodeElement, type DirectSender, type DividerField, type DividerProps, type DownloadFileErrorResult, type DownloadFileOptions, type DownloadFileResponse, type DownloadFileResult, type DownloadFileSuccessResult, type DownloadFilesOptions, EVENT_COUNT, EXIT_ROUTER, type ElementTypes, type Elements, type Env, type Event, type EventCallCallback, type EventCallHookItem, type EventParent, type EventToSubEvent, type ExecOptions$1 as ExecOptions, type ExecReturn, type ExecType, type ExtendedAxiosRequestConfig, FILE_CHANGE, type FaceElement, type FieldType, type FileElement, type FileList, type FileListMap, type FileToUrlHandler, type FileToUrlResult, type FormField, type ForwardMessageCallback, type ForwardOptions, type FriendContact, type FriendData, FriendDecreaseNotice, type FriendDecreaseOptions, FriendIncreaseNotice, type FriendIncreaseOptions, FriendMessage, type FriendMessageOptions, type FriendNoticeEventMap, type FriendRequestEventMap, type FriendRequestOptions, type FriendSender, type FrontendInstalledPluginListResponse, GET_BOTS_ROUTER, GET_CONFIG_ROUTER, GET_DEPENDENCIES_LIST_ROUTER, GET_LOADED_COMMAND_PLUGIN_CACHE_LIST_ROUTER, GET_LOCAL_PLUGIN_FRONTEND_LIST_ROUTER, GET_LOCAL_PLUGIN_LIST_ROUTER, GET_LOG_FILE_LIST_ROUTER, GET_LOG_FILE_ROUTER, GET_LOG_ROUTER, GET_NETWORK_STATUS_ROUTER, GET_NPMRC_LIST_ROUTER, GET_NPM_BASE_CONFIG_ROUTER, GET_NPM_CONFIG_ROUTER, GET_ONLINE_PLUGIN_LIST_ROUTER, GET_PLUGIN_APPS_ROUTER, GET_PLUGIN_CONFIG_ROUTER, GET_PLUGIN_FILE_ROUTER, GET_PLUGIN_LIST_PLUGIN_ADMIN_ROUTER, GET_PLUGIN_LIST_ROUTER, GET_PLUGIN_MARKET_LIST_ROUTER, GET_TASK_LIST_ROUTER, GET_TASK_STATUS_ROUTER, GET_TERMINAL_LIST_ROUTER, GET_UPDATABLE_PLUGINS_ROUTER, GET_WEBUI_PLUGIN_LIST_ROUTER, GET_WEBUI_PLUGIN_VERSIONS_ROUTER, type GeneralHookCallback, type GeneralHookItem, type GetAiCharactersResponse, type GetAtAllCountResponse, type GetBot, type GetCommitHashOptions, type GetConfigRequest, type GetConfigResponse, type GetGroupFileListResponse, type GetGroupFileSystemInfoResponse, type GetGroupHighlightsResponse, type GetGroupMuteListResponse, type GetPluginLocalOptions, type GetPluginLocalReturn, type GetPluginReturn, type GetPluginType, type GetRkeyResponse, type GiftElement, type GitLocalBranches, type GitPullOptions, type GitPullResult, type GitRemoteBranches, type GithubConfig, type GoToOptions, GroupAdminChangedNotice, type GroupAdminChangedOptions, GroupApplyRequest, type GroupApplyRequestOptions, GroupCardChangedNotice, type GroupCardChangedOptions, type GroupContact, type GroupData, GroupFileUploadedNotice, type GroupFileUploadedOptions, GroupHlightsChangedNotice, type GroupHlightsChangedOptions, GroupHonorChangedNotice, type GroupHonorChangedOptions, type GroupInfo, GroupInviteRequest, type GroupInviteRequestOptions, GroupLuckKingNotice, type GroupLuckKingOptions, GroupMemberBanNotice, type GroupMemberBanOptions, type GroupMemberData, GroupMemberDecreaseNotice, type GroupMemberDecreaseOptions, GroupMemberIncreaseNotice, type GroupMemberIncreaseOptions, type GroupMemberInfo, GroupMemberTitleUpdatedNotice, type GroupMemberUniqueTitleChangedOptions, GroupMessage, type GroupMessageOptions, GroupMessageReactionNotice, type GroupMessageReactionOptions, GroupNotice, type GroupNoticeEventMap, GroupPokeNotice, type GroupPokeOptions, GroupRecallNotice, type GroupRecallOptions, type GroupRequestEventMap, type GroupSender, GroupSignInNotice, type GroupSignInOptions, type GroupTempContact, GroupTempMessage, type GroupTempMessageOptions, type GroupTempSender, GroupWholeBanNotice, type GroupWholeBanOptions, type Groups, type GroupsObjectValue, type GuildContact, GuildMessage, type GuildMessageOptions, type GuildSender, HTTPStatusCode, type Handler, type HandlerType, type HookCache, type HookCallback, type HookEmitForward, type HookEmitMessage, type HookNext, type HookOptions, type HooksType, INSTALL_PLUGIN_ROUTER, INSTALL_WEBUI_PLUGIN_ROUTER, IS_PLUGIN_CONFIG_EXIST_ROUTER, type Icon, type ImageElement, type ImportModuleResult, type InputGroupProps, type InputProps, type InputResult, type JsonElement, type JwtVerifyBase, type JwtVerifyError, type JwtVerifyExpired, type JwtVerifyResult, type JwtVerifySuccess, type JwtVerifyUnauthorized, type KarinButton, KarinConvertAdapter, type KarinPluginAppsType, type KeyboardElement, LOGIN_ROUTER, type LoadPluginResult, type LoadedPluginCacheList, type LocalApiResponse, type LocationElement, type Log, LogMethodNames, Logger, LoggerLevel, type LongMsgElement, MANAGE_DEPENDENCIES_ROUTER, type MarkdownElement, type MarkdownTplElement, type MarketFaceElement, type Message, MessageBase$1 as MessageBase, type MessageEventMap, type MessageEventSub, type MessageHookItem, type MessageOptions, type MessageResponse, type MusicElement, type MusicPlatform, type NetworkStatus, type NodeElement, type NormalMessageCallback, type Notice, type NoticeAndRequest, NoticeBase, type NoticeEventMap, type NoticeEventSub, type NoticeOptions, type NpmBaseConfigResponse, type NpmRegistryResponse, type NpmrcFileResponse, type NumberField, type ObjectArrayField, type ObjectField, createMessage as OneBotCreateMessage, createNotice as OneBotCreateNotice, createRequest as OneBotCreateRequest, type Option, type Options, PING_ROUTER, PLUGIN_ADMIN_ROUTER, type PM2, type Package, type Parser, type PasmsgElement, type Permission, type PingRequestResult, type PkgData, type PkgEnv, type PkgInfo, Plugin$1 as Plugin, type PluginAdminCustomInstall, type PluginAdminCustomInstallApp, type PluginAdminInstall, type PluginAdminListResponse, type PluginAdminMarketInstall, type PluginAdminMarketInstallApp, type PluginAdminParams, type PluginAdminResult, type PluginAdminUninstall, type PluginAdminUpdate, type PluginFile, type PluginFncTypes, type PluginLists, type PluginMarketAuthor, type PluginMarketLocalBase, type PluginMarketLocalOptions, type PluginMarketOptions, type PluginMarketRequest, type PluginMarketResponse, type PluginOptions, type PluginRule, type PluginUpdateInfo, type PnpmDependencies, type PnpmDependency, type Point, PrivateApplyRequest, type PrivateApplyRequestOptions, PrivateFileUploadedNotice, type PrivateFileUploadedOptions, PrivatePokeNotice, type PrivatePokeOptions, PrivateRecallNotice, type PrivateRecallOptions, type Privates, type PrivatesObjectValue, type PuppeteerLifeCycleEvent, type QQBotButton, type QQButtonTextType, type QQGroupFileInfo, type QQGroupFolderInfo, type QQGroupHonorInfo, RECV_MSG, REFRESH_ROUTER, RESTART_ROUTER, type RaceResult, type Radio, type RadioField, type RadioGroupProps, type RadioResult, type RawElement, type ReadyMusicElement, ReceiveLikeNotice, type ReceiveLikeOptions, type RecordElement, type Redis, type RemoveDependenciesParams, type Render, type RenderResult, Renderer, type Renders$1 as Renders, type Reply, type ReplyElement, type Request, RequestBase, type RequestEventMap, type RequestEventSub, type RequestOptions, type RequireFunction, type RequireFunctionSync, type RequireOptions, type Role, type RpsElement, SAVE_CONFIG_ROUTER, SAVE_NPMRC_ROUTER, SAVE_PLUGIN_CONFIG_ROUTER, SEND_MSG, SET_LOG_LEVEL_ROUTER, SYSTEM_INFO_ROUTER, SYSTEM_STATUS_KARIN_ROUTER, SYSTEM_STATUS_ROUTER, SYSTEM_STATUS_WS_ROUTER, type SandBoxAccountInfo, type SandboxMsgRecord, type SandboxSendApi, type SandboxSendSendFriendMsg, type SandboxSendSendGroupMsg, type SandboxSendSendMsg, type SaveConfigResponse, type SaveResult, type Scene, type ScreenshotClip, type ScreenshotOptions, type SectionField, type SelectField, type SelectItem, type SelectProps, type SendElement, type SendForwardMessageResponse, type SendMessage, type SendMsgHookItem, type SendMsgResults, type Sender, type SenderBase, type SenderGroup$1 as SenderGroup, type Sex$1 as Sex, type ShareElement, type Snapka, type SnapkaResult, type SrcReply, type StandardResult, type SwitchField, type SwitchProps, type SwitchResult, TASK_DELETE_ROUTER, TASK_LIST_ROUTER, TASK_LOGS_ROUTER, TASK_RUN_ROUTER, type Task, type TaskCallbacks, type TaskEntity, TaskExecutionType, type TaskExecutor, type TaskFilter, type TaskStatus, type TaskType, type TerminalInstance, type TerminalShell, type TestNetworkRequestDetail, type TextElement, type TextField, type TitleField, UNINSTALL_PLUGIN_ROUTER, UNINSTALL_WEBUI_PLUGIN_ROUTER, UPDATE_CORE_ROUTER, UPDATE_PLUGIN_ROUTER, UPDATE_TASK_STATUS_ROUTER, UPDATE_WEBUI_PLUGIN_VERSION_ROUTER, type UnionMessage, type UnregisterBot, type UpgradeDependenciesParams, type UserInfo, type ValidationRule, type ValueType, type VideoElement, WS_CLOSE, WS_CLOSE_ONEBOT, WS_CLOSE_PUPPETEER, WS_CLOSE_SANDBOX, WS_CONNECTION, WS_CONNECTION_ONEBOT, WS_CONNECTION_PUPPETEER, WS_CONNECTION_SANDBOX, WS_CONNECTION_TERMINAL, WS_SNAPKA, type WaitForOptions, Watch, Watcher, type WeatherElement, type XmlElement, type YamlComment, YamlEditor, type YamlValue, absPath, accordion, accordionItem, accordionPro, app, applyComments, authMiddleware, base64, buffer, buildError, buildGithub, buttonHandle, cacheMap, callRender, changelog, checkGitPluginUpdate, checkPkgUpdate, checkPort, clearRequire, clearRequireFile, comment, index$1 as common, components, index as config, contact$1 as contact, contactDirect, contactFriend, contactGroup, contactGroupTemp, contactGuild, convertOneBotMessageToKarin, copyConfig, copyConfigSync, copyFiles, copyFilesSync, createAccessTokenExpiredResponse, createBadRequestResponse, createDirectMessage, createForbiddenResponse, createFriendDecreaseNotice, createFriendIncreaseNotice, createFriendMessage, createGroupAdminChangedNotice, createGroupApplyRequest, createGroupCardChangedNotice, createGroupFileUploadedNotice, createGroupHlightsChangedNotice, createGroupHonorChangedNotice, createGroupInviteRequest, createGroupLuckKingNotice, createGroupMemberAddNotice, createGroupMemberBanNotice, createGroupMemberDelNotice, createGroupMemberTitleUpdatedNotice, createGroupMessage, createGroupMessageReactionNotice, createGroupPokeNotice, createGroupRecallNotice, createGroupSignInNotice, createGroupTempMessage, createGroupWholeBanNotice, createGuildMessage, createINIParser, createMethodNotAllowedResponse, createNotFoundResponse, createOneBotClient, createOneBotHttp, createOneBotWsServer, createPayloadTooLargeResponse, createPluginDir, createPrivateApplyRequest, createPrivateFileUploadedNotice, createPrivatePokeNotice, createPrivateRecallNotice, createRawMessage, createReceiveLikeNotice, createRefreshTokenExpiredResponse, createResponse, createServerErrorResponse, createSuccessResponse, createTaskDatabase, createUnauthorizedResponse, cron, db, debug, karin as default, defineConfig, disconnectAllOneBotServer, divider, downFile, downloadFile, errorToString, exec, executeTask, existToMkdir, existToMkdirSync, exists, existsSync, ffmpeg, ffplay, ffprobe, fs as file, fileToBase64, fileToUrl, fileToUrlHandlerKey, filesByExt, formatLogString, formatPath, formatTime$1 as formatTime, index$3 as fs, getAllBot, getAllBotID, getAllBotList, getAllFiles, getAllFilesSync, getBot, getBotCount, getCommit, getDefaultBranch, getFastGithub, getFastRegistry, getFileMessage, getFiles, getHash, getLocalBranches, getLocalCommitHash, getMimeType, getPackageJson, getPid, getPkgVersion, getPluginInfo, getPlugins, getRelPath, getRemoteBranches, getRemoteCommitHash, getRemotePkgVersion, getRender, getRenderCount, getRenderList, getRequestIp, getTaskCallback, getTaskDatabase, getTime, gitPull, handler$1 as handler, hooks, importModule, imports, ini, initOneBotAdapter, initTaskSystem, input, isClass, isDir, isDirSync, isDocker, isFile, isFileSync, isIPv4Loop, isIPv6Loop, isLinux, isLocalRequest, isLoopback, isMac, isPathEqual, isPlugin, isPublic, isRoot, isSubPath, isWin, json$1 as json, karin, karinToQQBot, key, killApp, lock, lockMethod, lockProp, log, logger, logs, makeForward, makeMessage, type messageType, mkdir, mkdirSync, parseChangelog, parseGithubUrl, pingRequest, pkgRoot, qqbotToKarin, raceRequest, randomStr, range, read, readFile, readJson, readJsonSync, redis, registerBot, registerRender, removeTaskCallback, render, renderHtml, renderMultiHtml, renderTpl, requireFile, requireFileSync, restart, restartDirect, rmSync, router, satisfies, save, type screenshot, segment, select, sendMsg$1 as sendMsg, sender, senderDirect, senderFriend, senderGroup, senderGroupTemp, senderGuild, sep, server, setTaskCallback, setTaskDatabase, splitPath, start, stream, stringifyError, switchComponent, index$2 as system, taskAdd, taskExists, taskGet, taskList, taskSystem, taskUpdateLogs, taskUpdateStatus, unregisterBot, unregisterRender, updateAllGitPlugin, updateAllPkg, updateGitPlugin, updatePkg, updateTaskLogs, updateTaskStatus, uptime$1 as uptime, urlToPath, waitPort, watch, watchAndMerge, write, writeJson, writeJsonSync, yaml };
17973
+ export { type Accept, type AccordionItemProps, type AccordionKV, type AccordionProProps, type AccordionProResult, type AccordionProps, type AccordionResult, type AccountInfo, type Adapter, AdapterBase, type AdapterCommunication, AdapterConvertKarin, type AdapterInfo, AdapterOneBot, type AdapterOptions, type AdapterPlatform, type AdapterProtocol, type AdapterStandard, type AdapterType, type Adapters, type AddDependenciesParams, type AddTaskResult, type AfterForwardMessageCallback, type AfterMessageCallback, type AllPluginMethods, type Apps, type ArrayField, type AtElement, type Author, BASE_ROUTER, BATCH_UPDATE_PLUGINS_ROUTER, BOT_CONNECT, BOT_DISCONNECT, type BaseContact, BaseEvent, type BaseEventOptions, type BaseEventType, type BaseForwardCallback, type BaseMessageCallback, type BasketballElement, Bot, BotOfflineNotice, type BotOfflineOptions, type BoundingBox, type BubbleFaceElement, type Button, type ButtonElement, CHECK_PLUGIN_ROUTER, CLOSE_TERMINAL_ROUTER, CONSOLE_ROUTER, CREATE_TERMINAL_ROUTER, type Cache, type CacheEntry, type CheckboxField, type CheckboxGroupProps, type CheckboxProps, type CheckboxResult, type Children, type CmdFnc, type Command, type CommandClass, type CompareMode, type ComponentConfig, type ComponentProps, type ComponentType, type Components, type ComponentsClass, type Config, type Contact, type ContactElement, type Count, type CreateGroupFolderResponse, type CreatePty, type CreateTask, type CreateTaskParams, type CreateTaskResult, type CronProps, type CustomMusicElement, type CustomNodeElement, type DbStreamStatus, type DbStreams, type DefineConfig, type DependenciesManage, type DependenciesManageBase, type Dependency, type DiceElement, type DirectContact, DirectMessage, type DirectMessageOptions, type DirectNodeElement, type DirectSender, type DividerField, type DividerProps, type DownloadFileErrorResult, type DownloadFileOptions, type DownloadFileResponse, type DownloadFileResult, type DownloadFileSuccessResult, type DownloadFilesOptions, EVENT_COUNT, EXIT_ROUTER, type ElementTypes, type Elements, type Env, type Event, type EventCallCallback, type EventCallHookItem, type EventParent, type EventToSubEvent, type ExecOptions$1 as ExecOptions, type ExecReturn, type ExecType, type ExtendedAxiosRequestConfig, FILE_CHANGE, type FaceElement, type FieldType, type FileElement, type FileList, type FileListMap, type FileToUrlHandler, type FileToUrlResult, type FormField, type ForwardMessageCallback, type ForwardOptions, type FriendContact, type FriendData, FriendDecreaseNotice, type FriendDecreaseOptions, FriendIncreaseNotice, type FriendIncreaseOptions, FriendMessage, type FriendMessageOptions, type FriendNoticeEventMap, type FriendRequestEventMap, type FriendRequestOptions, type FriendSender, type FrontendInstalledPluginListResponse, GET_BOTS_ROUTER, GET_CONFIG_ROUTER, GET_DEPENDENCIES_LIST_ROUTER, GET_LOADED_COMMAND_PLUGIN_CACHE_LIST_ROUTER, GET_LOCAL_PLUGIN_FRONTEND_LIST_ROUTER, GET_LOCAL_PLUGIN_LIST_ROUTER, GET_LOG_FILE_LIST_ROUTER, GET_LOG_FILE_ROUTER, GET_LOG_ROUTER, GET_NETWORK_STATUS_ROUTER, GET_NPMRC_LIST_ROUTER, GET_NPM_BASE_CONFIG_ROUTER, GET_NPM_CONFIG_ROUTER, GET_ONLINE_PLUGIN_LIST_ROUTER, GET_PLUGIN_APPS_ROUTER, GET_PLUGIN_CONFIG_ROUTER, GET_PLUGIN_FILE_ROUTER, GET_PLUGIN_LIST_PLUGIN_ADMIN_ROUTER, GET_PLUGIN_LIST_ROUTER, GET_PLUGIN_MARKET_LIST_ROUTER, GET_TASK_LIST_ROUTER, GET_TASK_STATUS_ROUTER, GET_TERMINAL_LIST_ROUTER, GET_UPDATABLE_PLUGINS_ROUTER, GET_WEBUI_PLUGIN_LIST_ROUTER, GET_WEBUI_PLUGIN_VERSIONS_ROUTER, type GeneralHookCallback, type GeneralHookItem, type GetAiCharactersResponse, type GetAtAllCountResponse, type GetBot, type GetCommitHashOptions, type GetConfigRequest, type GetConfigResponse, type GetGroupFileListResponse, type GetGroupFileSystemInfoResponse, type GetGroupHighlightsResponse, type GetGroupMuteListResponse, type GetPluginLocalOptions, type GetPluginLocalReturn, type GetPluginReturn, type GetPluginType, type GetRkeyResponse, type GiftElement, type GitLocalBranches, type GitPullOptions, type GitPullResult, type GitRemoteBranches, type GithubConfig, type GoToOptions, GroupAdminChangedNotice, type GroupAdminChangedOptions, GroupApplyRequest, type GroupApplyRequestOptions, GroupCardChangedNotice, type GroupCardChangedOptions, type GroupContact, type GroupData, GroupFileUploadedNotice, type GroupFileUploadedOptions, GroupHlightsChangedNotice, type GroupHlightsChangedOptions, GroupHonorChangedNotice, type GroupHonorChangedOptions, type GroupInfo, GroupInviteRequest, type GroupInviteRequestOptions, GroupLuckKingNotice, type GroupLuckKingOptions, GroupMemberBanNotice, type GroupMemberBanOptions, type GroupMemberData, GroupMemberDecreaseNotice, type GroupMemberDecreaseOptions, GroupMemberIncreaseNotice, type GroupMemberIncreaseOptions, type GroupMemberInfo, GroupMemberTitleUpdatedNotice, type GroupMemberUniqueTitleChangedOptions, GroupMessage, type GroupMessageOptions, GroupMessageReactionNotice, type GroupMessageReactionOptions, GroupNotice, type GroupNoticeEventMap, GroupPokeNotice, type GroupPokeOptions, GroupRecallNotice, type GroupRecallOptions, type GroupRequestEventMap, type GroupSender, GroupSignInNotice, type GroupSignInOptions, type GroupTempContact, GroupTempMessage, type GroupTempMessageOptions, type GroupTempSender, GroupWholeBanNotice, type GroupWholeBanOptions, type Groups, type GroupsObjectValue, type GuildContact, GuildMessage, type GuildMessageOptions, type GuildSender, HTTPStatusCode, type Handler, type HandlerType, type HookCache, type HookCallback, type HookEmitForward, type HookEmitMessage, type HookNext, type HookOptions, type HooksType, INSTALL_PLUGIN_ROUTER, INSTALL_WEBUI_PLUGIN_ROUTER, IS_PLUGIN_CONFIG_EXIST_ROUTER, type Icon, type ImageElement, type ImportModuleResult, type InputGroupProps, type InputProps, type InputResult, type JsonElement, type JwtVerifyBase, type JwtVerifyError, type JwtVerifyExpired, type JwtVerifyResult, type JwtVerifySuccess, type JwtVerifyUnauthorized, type KarinButton, KarinConvertAdapter, type KarinPluginAppsType, type KeyboardElement, LOGIN_ROUTER, type LoadPluginResult, type LoadedPluginCacheList, type LocalApiResponse, type LocationElement, type Log, LogMethodNames, Logger, LoggerLevel, type LongMsgElement, MANAGE_DEPENDENCIES_ROUTER, type MarkdownElement, type MarkdownTplElement, type MarketFaceElement, type Message, MessageBase$1 as MessageBase, type MessageEventMap, type MessageEventSub, type MessageHookItem, type MessageOptions, type MessageResponse, type MusicElement, type MusicPlatform, type NetworkStatus, type NodeElement, type NormalMessageCallback, type Notice, type NoticeAndRequest, NoticeBase, type NoticeEventMap, type NoticeEventSub, type NoticeOptions, type NpmBaseConfigResponse, type NpmRegistryResponse, type NpmrcFileResponse, type NumberField, type ObjectArrayField, type ObjectField, createMessage as OneBotCreateMessage, createNotice as OneBotCreateNotice, createRequest as OneBotCreateRequest, type Option, type Options, PING_ROUTER, PLUGIN_ADMIN_ROUTER, type PM2, type Package, type Parser, type PasmsgElement, type Permission, type PingRequestResult, type PkgData, type PkgEnv, type PkgInfo, Plugin$1 as Plugin, type PluginAdminCustomInstall, type PluginAdminCustomInstallApp, type PluginAdminInstall, type PluginAdminListResponse, type PluginAdminMarketInstall, type PluginAdminMarketInstallApp, type PluginAdminParams, type PluginAdminResult, type PluginAdminUninstall, type PluginAdminUpdate, type PluginFile, type PluginFncTypes, type PluginLists, type PluginMarketAuthor, type PluginMarketLocalBase, type PluginMarketLocalOptions, type PluginMarketOptions, type PluginMarketRequest, type PluginMarketResponse, type PluginOptions, type PluginRule, type PluginUpdateInfo, type PnpmDependencies, type PnpmDependency, type Point, PrivateApplyRequest, type PrivateApplyRequestOptions, PrivateFileUploadedNotice, type PrivateFileUploadedOptions, PrivatePokeNotice, type PrivatePokeOptions, PrivateRecallNotice, type PrivateRecallOptions, type Privates, type PrivatesObjectValue, type PuppeteerLifeCycleEvent, type QQBotButton, type QQButtonTextType, type QQGroupFileInfo, type QQGroupFolderInfo, type QQGroupHonorInfo, RECV_MSG, REFRESH_ROUTER, RESTART_ROUTER, type RaceResult, type Radio, type RadioField, type RadioGroupProps, type RadioResult, type RawElement, type ReadyMusicElement, ReceiveLikeNotice, type ReceiveLikeOptions, type RecordElement, type Redis, type RemoveDependenciesParams, type Render, type RenderResult, Renderer, type Renders$1 as Renders, type Reply, type ReplyElement, type Request, RequestBase, type RequestEventMap, type RequestEventSub, type RequestOptions, type RequireFunction, type RequireFunctionSync, type RequireOptions, type Role, type RpsElement, SAVE_CONFIG_ROUTER, SAVE_NPMRC_ROUTER, SAVE_PLUGIN_CONFIG_ROUTER, SEND_MSG, SET_LOG_LEVEL_ROUTER, SYSTEM_INFO_ROUTER, SYSTEM_STATUS_KARIN_ROUTER, SYSTEM_STATUS_ROUTER, SYSTEM_STATUS_WS_ROUTER, type SandBoxAccountInfo, type SandboxMsgRecord, type SandboxSendApi, type SandboxSendSendFriendMsg, type SandboxSendSendGroupMsg, type SandboxSendSendMsg, type SaveConfigResponse, type SaveResult, type Scene, type ScreenshotClip, type ScreenshotOptions, type SectionField, type SelectField, type SelectItem, type SelectProps, type SendElement, type SendForwardMessageResponse, type SendMessage, type SendMsgHookItem, type SendMsgResults, type Sender, type SenderBase, type SenderGroup$1 as SenderGroup, type Sex$1 as Sex, type ShareElement, type Snapka, type SnapkaResult, type SrcReply, type StandardResult, type SwitchField, type SwitchProps, type SwitchResult, TASK_DELETE_ROUTER, TASK_LIST_ROUTER, TASK_LOGS_ROUTER, TASK_RUN_ROUTER, type Task, type TaskCallbacks, type TaskEntity, TaskExecutionType, type TaskExecutor, type TaskFilter, type TaskStatus, type TaskType, type TerminalInstance, type TerminalShell, type TestNetworkRequestDetail, type TextElement, type TextField, type TitleField, UNINSTALL_PLUGIN_ROUTER, UNINSTALL_WEBUI_PLUGIN_ROUTER, UPDATE_CORE_ROUTER, UPDATE_PLUGIN_ROUTER, UPDATE_TASK_STATUS_ROUTER, UPDATE_WEBUI_PLUGIN_VERSION_ROUTER, type UnionMessage, type UnregisterBot, type UpgradeDependenciesParams, type UserInfo, type ValidationRule, type ValueType, type VideoElement, WS_CLOSE, WS_CLOSE_ONEBOT, WS_CLOSE_PUPPETEER, WS_CLOSE_SANDBOX, WS_CONNECTION, WS_CONNECTION_ONEBOT, WS_CONNECTION_PUPPETEER, WS_CONNECTION_SANDBOX, WS_CONNECTION_TERMINAL, WS_SNAPKA, type WaitForOptions, Watch, Watcher, type WeatherElement, type XmlElement, type YamlComment, YamlEditor, type YamlValue, absPath, accordion, accordionItem, accordionPro, app, applyComments, authMiddleware, base64, buffer, buildError, buildGithub, buttonHandle, cacheMap, callRender, changelog, checkGitPluginUpdate, checkPkgUpdate, checkPort, clearRequire, clearRequireFile, comment, index$1 as common, components, index as config, contact$1 as contact, contactDirect, contactFriend, contactGroup, contactGroupTemp, contactGuild, convertOneBotMessageToKarin, copyConfig, copyConfigSync, copyFiles, copyFilesSync, createAccessTokenExpiredResponse, createBadRequestResponse, createBotOfflineNotice, createDirectMessage, createForbiddenResponse, createFriendDecreaseNotice, createFriendIncreaseNotice, createFriendMessage, createGroupAdminChangedNotice, createGroupApplyRequest, createGroupCardChangedNotice, createGroupFileUploadedNotice, createGroupHlightsChangedNotice, createGroupHonorChangedNotice, createGroupInviteRequest, createGroupLuckKingNotice, createGroupMemberAddNotice, createGroupMemberBanNotice, createGroupMemberDelNotice, createGroupMemberTitleUpdatedNotice, createGroupMessage, createGroupMessageReactionNotice, createGroupPokeNotice, createGroupRecallNotice, createGroupSignInNotice, createGroupTempMessage, createGroupWholeBanNotice, createGuildMessage, createINIParser, createMethodNotAllowedResponse, createNotFoundResponse, createOneBotClient, createOneBotHttp, createOneBotWsServer, createPayloadTooLargeResponse, createPluginDir, createPrivateApplyRequest, createPrivateFileUploadedNotice, createPrivatePokeNotice, createPrivateRecallNotice, createRawMessage, createReceiveLikeNotice, createRefreshTokenExpiredResponse, createResponse, createServerErrorResponse, createSuccessResponse, createTaskDatabase, createUnauthorizedResponse, cron, db, debug, karin as default, defineConfig, disconnectAllOneBotServer, divider, downFile, downloadFile, errorToString, exec, executeTask, existToMkdir, existToMkdirSync, exists, existsSync, ffmpeg, ffplay, ffprobe, fs as file, fileToBase64, fileToUrl, fileToUrlHandlerKey, filesByExt, formatLogString, formatPath, formatTime$1 as formatTime, index$3 as fs, getAllBot, getAllBotID, getAllBotList, getAllFiles, getAllFilesSync, getBot, getBotCount, getCommit, getDefaultBranch, getFastGithub, getFastRegistry, getFileMessage, getFiles, getHash, getLocalBranches, getLocalCommitHash, getMimeType, getPackageJson, getPid, getPkgVersion, getPluginInfo, getPlugins, getRelPath, getRemoteBranches, getRemoteCommitHash, getRemotePkgVersion, getRender, getRenderCount, getRenderList, getRequestIp, getTaskCallback, getTaskDatabase, getTime, gitPull, handler$1 as handler, hooks, importModule, imports, ini, initOneBotAdapter, initTaskSystem, input, isClass, isDir, isDirSync, isDocker, isFile, isFileSync, isIPv4Loop, isIPv6Loop, isLinux, isLocalRequest, isLoopback, isMac, isPathEqual, isPlugin, isPublic, isRoot, isSubPath, isWin, json$1 as json, karin, karinToQQBot, key, killApp, lock, lockMethod, lockProp, log, logger, logs, makeForward, makeMessage, type messageType, mkdir, mkdirSync, parseChangelog, parseGithubUrl, pingRequest, pkgRoot, qqbotToKarin, raceRequest, randomStr, range, read, readFile, readJson, readJsonSync, redis, registerBot, registerRender, removeTaskCallback, render, renderHtml, renderMultiHtml, renderTpl, requireFile, requireFileSync, restart, restartDirect, rmSync, router, satisfies, save, type screenshot, segment, select, sendMsg$1 as sendMsg, sender, senderDirect, senderFriend, senderGroup, senderGroupTemp, senderGuild, sep, server, setTaskCallback, setTaskDatabase, splitPath, start, stream, stringifyError, switchComponent, index$2 as system, taskAdd, taskExists, taskGet, taskList, taskSystem, taskUpdateLogs, taskUpdateStatus, unregisterBot, unregisterRender, updateAllGitPlugin, updateAllPkg, updateGitPlugin, updatePkg, updateTaskLogs, updateTaskStatus, uptime$1 as uptime, urlToPath, waitPort, watch, watchAndMerge, write, writeJson, writeJsonSync, yaml };