New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

koishi-plugin-teach

Package Overview
Dependencies
Maintainers
1
Versions
145
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

koishi-plugin-teach - npm Package Compare versions

Comparing version 2.3.0 to 2.3.1

13

lib/index.d.ts
import { Session, App, Context, User, NextFunction, Argv } from 'koishi-core';
import { Observed } from 'koishi-utils';
import { Observed, Awaitable } from 'koishi-utils';
declare module 'koishi-core' {

@@ -118,3 +118,3 @@ interface App {

'dialogue/attach-user'(state: SessionState): void | boolean;
'dialogue/before-send'(state: SessionState): void | boolean | Promise<void | boolean>;
'dialogue/before-send'(state: SessionState): Awaitable<void | boolean>;
'dialogue/send'(state: SessionState): void;

@@ -182,3 +182,2 @@ }

interface EventMap {
'dialogue/status'(): Promise<string>;
'dialogue/list'(dialogue: Dialogue, output: string[], prefix: string, argv: Dialogue.Argv): void;

@@ -210,7 +209,7 @@ 'dialogue/detail-short'(dialogue: Dialogue, output: SearchDetails, argv: Dialogue.Argv): void;

interface EventMap {
'dialogue/before-modify'(argv: Dialogue.Argv): void | string | Promise<void | string>;
'dialogue/before-modify'(argv: Dialogue.Argv): Awaitable<void | string>;
'dialogue/modify'(argv: Dialogue.Argv, dialogue: Dialogue): void;
'dialogue/after-modify'(argv: Dialogue.Argv): void | Promise<void>;
'dialogue/before-detail'(argv: Dialogue.Argv): void | Promise<void>;
'dialogue/detail'(dialogue: Dialogue, output: string[], argv: Dialogue.Argv): void | Promise<void>;
'dialogue/after-modify'(argv: Dialogue.Argv): Awaitable<void>;
'dialogue/before-detail'(argv: Dialogue.Argv): Awaitable<void>;
'dialogue/detail'(dialogue: Dialogue, output: string[], argv: Dialogue.Argv): Awaitable<void>;
}

@@ -217,0 +216,0 @@ }

{
"name": "koishi-plugin-teach",
"description": "Teach plugin for Koishi",
"version": "2.3.0",
"version": "2.3.1",
"main": "lib/index.js",

@@ -37,14 +37,12 @@ "typings": "lib/index.d.ts",

"peerDependencies": {
"koishi-core": "^3.14.1"
"koishi-core": "^3.14.2"
},
"devDependencies": {
"koishi-plugin-mongo": "^2.5.1",
"koishi-plugin-mysql": "^3.6.1",
"koishi-plugin-webui": "^4.7.0",
"koishi-test-utils": "^7.0.1"
"koishi-plugin-webui": "^4.7.1",
"koishi-test-utils": "^7.0.2"
},
"dependencies": {
"axios": "^0.21.1",
"axios": "^0.21.4",
"fastest-levenshtein": "^1.0.12"
}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc