@quilltap/plugin-types 1.0.2 → 1.1.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/CHANGELOG.md CHANGED
@@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.1.0] - 2025-12-31
9
+
10
+ ### Added
11
+
12
+ - Theme plugin types for self-contained theme plugins:
13
+ - `ThemePlugin` main interface for theme plugins
14
+ - `ThemeMetadata` for theme identification and display
15
+ - `ThemeTokens` complete theme token structure
16
+ - `ColorPalette` for light and dark mode colors
17
+ - `Typography`, `Spacing`, `Effects` for design tokens
18
+ - `FontDefinition` for font loading configuration
19
+ - `EmbeddedFont` for self-contained font embedding
20
+ - `ThemePluginExport` standard export type
21
+ - Exported theme types via `@quilltap/plugin-types/plugins`
22
+
23
+ ## [1.0.3] - 2025-12-30
24
+
25
+ ### Added
26
+
27
+ - New runtime configuration types for `LLMProviderPlugin`:
28
+ - `MessageFormatSupport` - configures name field support for multi-character chats
29
+ - `CheapModelConfig` - specifies recommended cheap models for background tasks
30
+ - `ToolFormatType` - declares which tool format the provider uses ('openai' | 'anthropic' | 'google')
31
+ - New optional properties on `LLMProviderPlugin`:
32
+ - `messageFormat?: MessageFormatSupport`
33
+ - `charsPerToken?: number` - token estimation multiplier (default: 3.5)
34
+ - `toolFormat?: ToolFormatType` - tool format type
35
+ - `cheapModels?: CheapModelConfig` - cheap model configuration
36
+ - `defaultContextWindow?: number` - fallback context window (default: 8192)
37
+ - Added `pricing?: { input: number; output: number }` to `ModelInfo` interface
38
+
8
39
  ## [1.0.2] - 2025-12-30
9
40
 
10
41
  ### Fixed