@daemux/plugin-sdk 0.5.0 → 0.5.1

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 CHANGED
@@ -3,9 +3,9 @@
3
3
  * Shared type definitions for all daemux plugins.
4
4
  * This package is dependency-free (pure TypeScript interfaces).
5
5
  */
6
- export type { ToolInputSchema, ToolDefinition, LLMProviderCapabilities, LLMModel, LLMCredentials, LLMChatOptions, LLMChatChunk, LLMChatResponse, LLMProvider, } from './types/llm';
7
- export type { ChannelMessageType, ChannelAttachment, RichChannelMessage, ChannelSendOptions, ChannelEventHandler, ChannelEventType, ChannelFormatter, } from './types/channel';
8
- export type { TranscriptionOptions, TranscriptionResult, TranscriptionProvider, } from './types/transcription';
6
+ export type { ToolInputSchema, ToolDefinition, LLMProviderCapabilities, LLMModel, LLMCredentials, LLMChatOptions, LLMChatChunk, LLMChatResponse, LLMProvider, } from './types/llm.js';
7
+ export type { ChannelMessageType, ChannelAttachment, RichChannelMessage, ChannelSendOptions, ChannelEventHandler, ChannelEventType, ChannelFormatter, } from './types/channel.js';
8
+ export type { TranscriptionOptions, TranscriptionResult, TranscriptionProvider, } from './types/transcription.js';
9
9
  /** Log severity levels used by plugin loggers. */
10
10
  export type LogLevel = 'debug' | 'info' | 'warn' | 'error';
11
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,YAAY,EACV,eAAe,EACf,cAAc,EACd,uBAAuB,EACvB,QAAQ,EACR,cAAc,EACd,cAAc,EACd,YAAY,EACZ,eAAe,EACf,WAAW,GACZ,MAAM,aAAa,CAAC;AAGrB,YAAY,EACV,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,GACjB,MAAM,iBAAiB,CAAC;AAGzB,YAAY,EACV,oBAAoB,EACpB,mBAAmB,EACnB,qBAAqB,GACtB,MAAM,uBAAuB,CAAC;AAG/B,kDAAkD;AAClD,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,YAAY,EACV,eAAe,EACf,cAAc,EACd,uBAAuB,EACvB,QAAQ,EACR,cAAc,EACd,cAAc,EACd,YAAY,EACZ,eAAe,EACf,WAAW,GACZ,MAAM,gBAAgB,CAAC;AAGxB,YAAY,EACV,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,GACjB,MAAM,oBAAoB,CAAC;AAG5B,YAAY,EACV,oBAAoB,EACpB,mBAAmB,EACnB,qBAAqB,GACtB,MAAM,0BAA0B,CAAC;AAGlC,kDAAkD;AAClD,MAAM,MAAM,QAAQ,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC"}
package/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "@daemux/plugin-sdk",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Plugin SDK for building daemux plugins",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
- "files": ["dist"],
8
+ "files": [
9
+ "dist"
10
+ ],
9
11
  "scripts": {
10
12
  "build": "tsc",
11
13
  "clean": "rm -rf dist",
@@ -24,6 +26,10 @@
24
26
  "url": "https://github.com/daemux/daemux-plugins.git",
25
27
  "directory": "packages/plugin-sdk"
26
28
  },
27
- "keywords": ["daemux", "plugin", "sdk"],
29
+ "keywords": [
30
+ "daemux",
31
+ "plugin",
32
+ "sdk"
33
+ ],
28
34
  "license": "MIT"
29
35
  }