@quilltap/plugin-types 1.4.0 → 1.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/CHANGELOG.md CHANGED
@@ -5,6 +5,31 @@ 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.5.1] - 2026-01-05
9
+
10
+ ### Added
11
+
12
+ - Added `maxBase64Size?: number` field to `AttachmentSupport` interface
13
+ - Allows provider plugins to specify their maximum base64-encoded file size limit
14
+ - Used by core to automatically resize images that exceed provider limits
15
+ - Anthropic sets 5MB, OpenAI/Google/Grok set 20MB
16
+
17
+ ## [1.5.0] - 2026-01-02
18
+
19
+ ### Added
20
+
21
+ - Added `RenderingPattern` interface for configurable message content styling:
22
+ - `pattern: string` - Regex pattern as a string (converted to RegExp at runtime)
23
+ - `className: string` - CSS class to apply to matched text
24
+ - `flags?: string` - Optional regex flags (e.g., 'm' for multiline)
25
+ - Added `DialogueDetection` interface for paragraph-level dialogue detection:
26
+ - `openingChars: string[]` - Opening quote characters to detect
27
+ - `closingChars: string[]` - Closing quote characters to detect
28
+ - `className: string` - CSS class to apply to dialogue paragraphs
29
+ - Added `renderingPatterns?: RenderingPattern[]` field to `RoleplayTemplateConfig`
30
+ - Added `dialogueDetection?: DialogueDetection` field to `RoleplayTemplateConfig`
31
+ - Exported `AnnotationButton`, `RenderingPattern`, `DialogueDetection` from `@quilltap/plugin-types/plugins`
32
+
8
33
  ## [1.4.0] - 2026-01-02
9
34
 
10
35
  ### Added
@@ -73,8 +73,10 @@ interface AttachmentSupport {
73
73
  description: string;
74
74
  /** Additional notes about attachment support or limitations */
75
75
  notes?: string;
76
- /** Maximum file size in bytes */
76
+ /** Maximum file size in bytes (raw, before encoding) */
77
77
  maxFileSize?: number;
78
+ /** Maximum base64-encoded size in bytes (for API limits like Anthropic's 5MB) */
79
+ maxBase64Size?: number;
78
80
  /** Maximum number of files per request */
79
81
  maxFiles?: number;
80
82
  }
@@ -861,6 +863,60 @@ interface AnnotationButton {
861
863
  /** Closing delimiter (e.g., "]", "*", "}}") - empty string for line-end delimiters */
862
864
  suffix: string;
863
865
  }
866
+ /**
867
+ * A pattern for styling roleplay text in message content.
868
+ *
869
+ * Rendering patterns define how to match and style specific text patterns
870
+ * in AI responses (e.g., narration, OOC comments, internal monologue).
871
+ *
872
+ * @example
873
+ * ```typescript
874
+ * // Match *narration* with single asterisks
875
+ * { pattern: '(?<!\\*)\\*[^*]+\\*(?!\\*)', className: 'qt-chat-narration' }
876
+ *
877
+ * // Match ((OOC comments)) with double parentheses
878
+ * { pattern: '\\(\\([^)]+\\)\\)', className: 'qt-chat-ooc' }
879
+ *
880
+ * // Match // OOC at start of line (multiline mode)
881
+ * { pattern: '^// .+$', className: 'qt-chat-ooc', flags: 'm' }
882
+ * ```
883
+ */
884
+ interface RenderingPattern {
885
+ /** Regex pattern as a string (converted to RegExp at runtime) */
886
+ pattern: string;
887
+ /**
888
+ * CSS class to apply to matched text.
889
+ * Standard classes: qt-chat-dialogue, qt-chat-narration, qt-chat-ooc, qt-chat-inner-monologue
890
+ */
891
+ className: string;
892
+ /** Optional regex flags (e.g., 'm' for multiline). Default: none */
893
+ flags?: string;
894
+ }
895
+ /**
896
+ * Configuration for detecting dialogue at the paragraph level.
897
+ *
898
+ * When dialogue contains markdown formatting (like **bold**), the text gets split
899
+ * into multiple children and inline regex patterns can't match. Paragraph-level
900
+ * detection checks if the entire paragraph starts and ends with quote characters.
901
+ *
902
+ * @example
903
+ * ```typescript
904
+ * // Standard dialogue with straight and curly quotes
905
+ * {
906
+ * openingChars: ['"', '"'],
907
+ * closingChars: ['"', '"'],
908
+ * className: 'qt-chat-dialogue'
909
+ * }
910
+ * ```
911
+ */
912
+ interface DialogueDetection {
913
+ /** Opening quote characters to detect (e.g., ['"', '"']) */
914
+ openingChars: string[];
915
+ /** Closing quote characters to detect (e.g., ['"', '"']) */
916
+ closingChars: string[];
917
+ /** CSS class to apply to dialogue paragraphs */
918
+ className: string;
919
+ }
864
920
  /**
865
921
  * Configuration for a single roleplay template
866
922
  *
@@ -893,6 +949,36 @@ interface RoleplayTemplateConfig {
893
949
  * ```
894
950
  */
895
951
  annotationButtons?: AnnotationButton[];
952
+ /**
953
+ * Patterns for styling roleplay text in message content.
954
+ * These patterns are matched against text nodes and wrapped in styled spans.
955
+ *
956
+ * @example
957
+ * ```typescript
958
+ * renderingPatterns: [
959
+ * // Match *narration* with single asterisks
960
+ * { pattern: '(?<!\\*)\\*[^*]+\\*(?!\\*)', className: 'qt-chat-narration' },
961
+ * // Match ((OOC)) with double parentheses
962
+ * { pattern: '\\(\\([^)]+\\)\\)', className: 'qt-chat-ooc' },
963
+ * ]
964
+ * ```
965
+ */
966
+ renderingPatterns?: RenderingPattern[];
967
+ /**
968
+ * Optional dialogue detection for paragraph-level styling.
969
+ * When dialogue contains markdown formatting, inline patterns can't match.
970
+ * This detects paragraphs that start/end with quote characters.
971
+ *
972
+ * @example
973
+ * ```typescript
974
+ * dialogueDetection: {
975
+ * openingChars: ['"', '"'],
976
+ * closingChars: ['"', '"'],
977
+ * className: 'qt-chat-dialogue'
978
+ * }
979
+ * ```
980
+ */
981
+ dialogueDetection?: DialogueDetection;
896
982
  }
897
983
  /**
898
984
  * Metadata for a roleplay template plugin
@@ -998,4 +1084,4 @@ interface RoleplayTemplatePluginExport {
998
1084
  plugin: RoleplayTemplatePlugin;
999
1085
  }
1000
1086
 
1001
- export type { AttachmentSupport as A, CheapModelConfig as C, EmbeddingModelInfo as E, FontDefinition as F, ImageGenerationModelInfo as I, LLMProviderPlugin as L, ModelInfo as M, ProviderMetadata as P, RoleplayTemplateConfig as R, Spacing as S, ToolFormatType as T, ProviderConfigRequirements as a, ProviderCapabilities as b, ImageProviderConstraints as c, IconProps as d, ProviderPluginExport as e, MessageFormatSupport as f, PluginCapability as g, PluginCategory as h, PluginStatus as i, PluginAuthor as j, PluginCompatibility as k, ProviderConfig as l, PluginPermissions as m, PluginManifest as n, InstalledPluginInfo as o, ColorPalette as p, Typography as q, Effects as r, ThemeTokens as s, EmbeddedFont as t, ThemeMetadata as u, ThemePlugin as v, ThemePluginExport as w, RoleplayTemplateMetadata as x, RoleplayTemplatePlugin as y, RoleplayTemplatePluginExport as z };
1087
+ export type { AttachmentSupport as A, AnnotationButton as B, CheapModelConfig as C, RenderingPattern as D, EmbeddingModelInfo as E, FontDefinition as F, DialogueDetection as G, ImageGenerationModelInfo as I, LLMProviderPlugin as L, ModelInfo as M, ProviderMetadata as P, RoleplayTemplateConfig as R, Spacing as S, ToolFormatType as T, ProviderConfigRequirements as a, ProviderCapabilities as b, ImageProviderConstraints as c, IconProps as d, ProviderPluginExport as e, MessageFormatSupport as f, PluginCapability as g, PluginCategory as h, PluginStatus as i, PluginAuthor as j, PluginCompatibility as k, ProviderConfig as l, PluginPermissions as m, PluginManifest as n, InstalledPluginInfo as o, ColorPalette as p, Typography as q, Effects as r, ThemeTokens as s, EmbeddedFont as t, ThemeMetadata as u, ThemePlugin as v, ThemePluginExport as w, RoleplayTemplateMetadata as x, RoleplayTemplatePlugin as y, RoleplayTemplatePluginExport as z };
@@ -73,8 +73,10 @@ interface AttachmentSupport {
73
73
  description: string;
74
74
  /** Additional notes about attachment support or limitations */
75
75
  notes?: string;
76
- /** Maximum file size in bytes */
76
+ /** Maximum file size in bytes (raw, before encoding) */
77
77
  maxFileSize?: number;
78
+ /** Maximum base64-encoded size in bytes (for API limits like Anthropic's 5MB) */
79
+ maxBase64Size?: number;
78
80
  /** Maximum number of files per request */
79
81
  maxFiles?: number;
80
82
  }
@@ -861,6 +863,60 @@ interface AnnotationButton {
861
863
  /** Closing delimiter (e.g., "]", "*", "}}") - empty string for line-end delimiters */
862
864
  suffix: string;
863
865
  }
866
+ /**
867
+ * A pattern for styling roleplay text in message content.
868
+ *
869
+ * Rendering patterns define how to match and style specific text patterns
870
+ * in AI responses (e.g., narration, OOC comments, internal monologue).
871
+ *
872
+ * @example
873
+ * ```typescript
874
+ * // Match *narration* with single asterisks
875
+ * { pattern: '(?<!\\*)\\*[^*]+\\*(?!\\*)', className: 'qt-chat-narration' }
876
+ *
877
+ * // Match ((OOC comments)) with double parentheses
878
+ * { pattern: '\\(\\([^)]+\\)\\)', className: 'qt-chat-ooc' }
879
+ *
880
+ * // Match // OOC at start of line (multiline mode)
881
+ * { pattern: '^// .+$', className: 'qt-chat-ooc', flags: 'm' }
882
+ * ```
883
+ */
884
+ interface RenderingPattern {
885
+ /** Regex pattern as a string (converted to RegExp at runtime) */
886
+ pattern: string;
887
+ /**
888
+ * CSS class to apply to matched text.
889
+ * Standard classes: qt-chat-dialogue, qt-chat-narration, qt-chat-ooc, qt-chat-inner-monologue
890
+ */
891
+ className: string;
892
+ /** Optional regex flags (e.g., 'm' for multiline). Default: none */
893
+ flags?: string;
894
+ }
895
+ /**
896
+ * Configuration for detecting dialogue at the paragraph level.
897
+ *
898
+ * When dialogue contains markdown formatting (like **bold**), the text gets split
899
+ * into multiple children and inline regex patterns can't match. Paragraph-level
900
+ * detection checks if the entire paragraph starts and ends with quote characters.
901
+ *
902
+ * @example
903
+ * ```typescript
904
+ * // Standard dialogue with straight and curly quotes
905
+ * {
906
+ * openingChars: ['"', '"'],
907
+ * closingChars: ['"', '"'],
908
+ * className: 'qt-chat-dialogue'
909
+ * }
910
+ * ```
911
+ */
912
+ interface DialogueDetection {
913
+ /** Opening quote characters to detect (e.g., ['"', '"']) */
914
+ openingChars: string[];
915
+ /** Closing quote characters to detect (e.g., ['"', '"']) */
916
+ closingChars: string[];
917
+ /** CSS class to apply to dialogue paragraphs */
918
+ className: string;
919
+ }
864
920
  /**
865
921
  * Configuration for a single roleplay template
866
922
  *
@@ -893,6 +949,36 @@ interface RoleplayTemplateConfig {
893
949
  * ```
894
950
  */
895
951
  annotationButtons?: AnnotationButton[];
952
+ /**
953
+ * Patterns for styling roleplay text in message content.
954
+ * These patterns are matched against text nodes and wrapped in styled spans.
955
+ *
956
+ * @example
957
+ * ```typescript
958
+ * renderingPatterns: [
959
+ * // Match *narration* with single asterisks
960
+ * { pattern: '(?<!\\*)\\*[^*]+\\*(?!\\*)', className: 'qt-chat-narration' },
961
+ * // Match ((OOC)) with double parentheses
962
+ * { pattern: '\\(\\([^)]+\\)\\)', className: 'qt-chat-ooc' },
963
+ * ]
964
+ * ```
965
+ */
966
+ renderingPatterns?: RenderingPattern[];
967
+ /**
968
+ * Optional dialogue detection for paragraph-level styling.
969
+ * When dialogue contains markdown formatting, inline patterns can't match.
970
+ * This detects paragraphs that start/end with quote characters.
971
+ *
972
+ * @example
973
+ * ```typescript
974
+ * dialogueDetection: {
975
+ * openingChars: ['"', '"'],
976
+ * closingChars: ['"', '"'],
977
+ * className: 'qt-chat-dialogue'
978
+ * }
979
+ * ```
980
+ */
981
+ dialogueDetection?: DialogueDetection;
896
982
  }
897
983
  /**
898
984
  * Metadata for a roleplay template plugin
@@ -998,4 +1084,4 @@ interface RoleplayTemplatePluginExport {
998
1084
  plugin: RoleplayTemplatePlugin;
999
1085
  }
1000
1086
 
1001
- export type { AttachmentSupport as A, CheapModelConfig as C, EmbeddingModelInfo as E, FontDefinition as F, ImageGenerationModelInfo as I, LLMProviderPlugin as L, ModelInfo as M, ProviderMetadata as P, RoleplayTemplateConfig as R, Spacing as S, ToolFormatType as T, ProviderConfigRequirements as a, ProviderCapabilities as b, ImageProviderConstraints as c, IconProps as d, ProviderPluginExport as e, MessageFormatSupport as f, PluginCapability as g, PluginCategory as h, PluginStatus as i, PluginAuthor as j, PluginCompatibility as k, ProviderConfig as l, PluginPermissions as m, PluginManifest as n, InstalledPluginInfo as o, ColorPalette as p, Typography as q, Effects as r, ThemeTokens as s, EmbeddedFont as t, ThemeMetadata as u, ThemePlugin as v, ThemePluginExport as w, RoleplayTemplateMetadata as x, RoleplayTemplatePlugin as y, RoleplayTemplatePluginExport as z };
1087
+ export type { AttachmentSupport as A, AnnotationButton as B, CheapModelConfig as C, RenderingPattern as D, EmbeddingModelInfo as E, FontDefinition as F, DialogueDetection as G, ImageGenerationModelInfo as I, LLMProviderPlugin as L, ModelInfo as M, ProviderMetadata as P, RoleplayTemplateConfig as R, Spacing as S, ToolFormatType as T, ProviderConfigRequirements as a, ProviderCapabilities as b, ImageProviderConstraints as c, IconProps as d, ProviderPluginExport as e, MessageFormatSupport as f, PluginCapability as g, PluginCategory as h, PluginStatus as i, PluginAuthor as j, PluginCompatibility as k, ProviderConfig as l, PluginPermissions as m, PluginManifest as n, InstalledPluginInfo as o, ColorPalette as p, Typography as q, Effects as r, ThemeTokens as s, EmbeddedFont as t, ThemeMetadata as u, ThemePlugin as v, ThemePluginExport as w, RoleplayTemplateMetadata as x, RoleplayTemplatePlugin as y, RoleplayTemplatePluginExport as z };
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { AnthropicToolDefinition, AttachmentResults, CacheUsage, FileAttachment, GeneratedImage, GoogleToolDefinition, ImageGenParams, ImageGenProvider, ImageGenResponse, JSONSchemaDefinition, LLMMessage, LLMParams, LLMProvider, LLMResponse, ModelMetadata, ModelWarning, ModelWarningLevel, OpenAIToolDefinition, ResponseFormat, StreamChunk, TokenUsage, ToolCall, ToolCallRequest, ToolFormatOptions, ToolResult, UniversalTool } from './llm/index.mjs';
2
- export { A as AttachmentSupport, C as CheapModelConfig, p as ColorPalette, r as Effects, t as EmbeddedFont, E as EmbeddingModelInfo, F as FontDefinition, d as IconProps, I as ImageGenerationModelInfo, c as ImageProviderConstraints, o as InstalledPluginInfo, L as LLMProviderPlugin, f as MessageFormatSupport, M as ModelInfo, j as PluginAuthor, g as PluginCapability, h as PluginCategory, k as PluginCompatibility, n as PluginManifest, m as PluginPermissions, i as PluginStatus, b as ProviderCapabilities, l as ProviderConfig, a as ProviderConfigRequirements, P as ProviderMetadata, e as ProviderPluginExport, R as RoleplayTemplateConfig, x as RoleplayTemplateMetadata, y as RoleplayTemplatePlugin, z as RoleplayTemplatePluginExport, S as Spacing, u as ThemeMetadata, v as ThemePlugin, w as ThemePluginExport, s as ThemeTokens, T as ToolFormatType, q as Typography } from './index-BH5jVqB9.mjs';
2
+ export { A as AttachmentSupport, C as CheapModelConfig, p as ColorPalette, r as Effects, t as EmbeddedFont, E as EmbeddingModelInfo, F as FontDefinition, d as IconProps, I as ImageGenerationModelInfo, c as ImageProviderConstraints, o as InstalledPluginInfo, L as LLMProviderPlugin, f as MessageFormatSupport, M as ModelInfo, j as PluginAuthor, g as PluginCapability, h as PluginCategory, k as PluginCompatibility, n as PluginManifest, m as PluginPermissions, i as PluginStatus, b as ProviderCapabilities, l as ProviderConfig, a as ProviderConfigRequirements, P as ProviderMetadata, e as ProviderPluginExport, R as RoleplayTemplateConfig, x as RoleplayTemplateMetadata, y as RoleplayTemplatePlugin, z as RoleplayTemplatePluginExport, S as Spacing, u as ThemeMetadata, v as ThemePlugin, w as ThemePluginExport, s as ThemeTokens, T as ToolFormatType, q as Typography } from './index-esRx5dOb.mjs';
3
3
  export { ApiKeyError, AttachmentError, ConfigurationError, LogContext, LogLevel, ModelNotFoundError, PluginError, PluginLogger, ProviderApiError, RateLimitError, ToolExecutionError, createConsoleLogger, createNoopLogger } from './common/index.mjs';
4
4
  import 'react';
5
5
 
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { AnthropicToolDefinition, AttachmentResults, CacheUsage, FileAttachment, GeneratedImage, GoogleToolDefinition, ImageGenParams, ImageGenProvider, ImageGenResponse, JSONSchemaDefinition, LLMMessage, LLMParams, LLMProvider, LLMResponse, ModelMetadata, ModelWarning, ModelWarningLevel, OpenAIToolDefinition, ResponseFormat, StreamChunk, TokenUsage, ToolCall, ToolCallRequest, ToolFormatOptions, ToolResult, UniversalTool } from './llm/index.js';
2
- export { A as AttachmentSupport, C as CheapModelConfig, p as ColorPalette, r as Effects, t as EmbeddedFont, E as EmbeddingModelInfo, F as FontDefinition, d as IconProps, I as ImageGenerationModelInfo, c as ImageProviderConstraints, o as InstalledPluginInfo, L as LLMProviderPlugin, f as MessageFormatSupport, M as ModelInfo, j as PluginAuthor, g as PluginCapability, h as PluginCategory, k as PluginCompatibility, n as PluginManifest, m as PluginPermissions, i as PluginStatus, b as ProviderCapabilities, l as ProviderConfig, a as ProviderConfigRequirements, P as ProviderMetadata, e as ProviderPluginExport, R as RoleplayTemplateConfig, x as RoleplayTemplateMetadata, y as RoleplayTemplatePlugin, z as RoleplayTemplatePluginExport, S as Spacing, u as ThemeMetadata, v as ThemePlugin, w as ThemePluginExport, s as ThemeTokens, T as ToolFormatType, q as Typography } from './index-C0tKQeeQ.js';
2
+ export { A as AttachmentSupport, C as CheapModelConfig, p as ColorPalette, r as Effects, t as EmbeddedFont, E as EmbeddingModelInfo, F as FontDefinition, d as IconProps, I as ImageGenerationModelInfo, c as ImageProviderConstraints, o as InstalledPluginInfo, L as LLMProviderPlugin, f as MessageFormatSupport, M as ModelInfo, j as PluginAuthor, g as PluginCapability, h as PluginCategory, k as PluginCompatibility, n as PluginManifest, m as PluginPermissions, i as PluginStatus, b as ProviderCapabilities, l as ProviderConfig, a as ProviderConfigRequirements, P as ProviderMetadata, e as ProviderPluginExport, R as RoleplayTemplateConfig, x as RoleplayTemplateMetadata, y as RoleplayTemplatePlugin, z as RoleplayTemplatePluginExport, S as Spacing, u as ThemeMetadata, v as ThemePlugin, w as ThemePluginExport, s as ThemeTokens, T as ToolFormatType, q as Typography } from './index-fPQMtntn.js';
3
3
  export { ApiKeyError, AttachmentError, ConfigurationError, LogContext, LogLevel, ModelNotFoundError, PluginError, PluginLogger, ProviderApiError, RateLimitError, ToolExecutionError, createConsoleLogger, createNoopLogger } from './common/index.js';
4
4
  import 'react';
5
5
 
@@ -1,3 +1,3 @@
1
- export { A as AttachmentSupport, p as ColorPalette, r as Effects, t as EmbeddedFont, E as EmbeddingModelInfo, F as FontDefinition, d as IconProps, I as ImageGenerationModelInfo, c as ImageProviderConstraints, o as InstalledPluginInfo, L as LLMProviderPlugin, M as ModelInfo, j as PluginAuthor, g as PluginCapability, h as PluginCategory, k as PluginCompatibility, n as PluginManifest, m as PluginPermissions, i as PluginStatus, b as ProviderCapabilities, l as ProviderConfig, a as ProviderConfigRequirements, P as ProviderMetadata, e as ProviderPluginExport, R as RoleplayTemplateConfig, x as RoleplayTemplateMetadata, y as RoleplayTemplatePlugin, z as RoleplayTemplatePluginExport, S as Spacing, u as ThemeMetadata, v as ThemePlugin, w as ThemePluginExport, s as ThemeTokens, q as Typography } from '../index-BH5jVqB9.mjs';
1
+ export { B as AnnotationButton, A as AttachmentSupport, p as ColorPalette, G as DialogueDetection, r as Effects, t as EmbeddedFont, E as EmbeddingModelInfo, F as FontDefinition, d as IconProps, I as ImageGenerationModelInfo, c as ImageProviderConstraints, o as InstalledPluginInfo, L as LLMProviderPlugin, M as ModelInfo, j as PluginAuthor, g as PluginCapability, h as PluginCategory, k as PluginCompatibility, n as PluginManifest, m as PluginPermissions, i as PluginStatus, b as ProviderCapabilities, l as ProviderConfig, a as ProviderConfigRequirements, P as ProviderMetadata, e as ProviderPluginExport, D as RenderingPattern, R as RoleplayTemplateConfig, x as RoleplayTemplateMetadata, y as RoleplayTemplatePlugin, z as RoleplayTemplatePluginExport, S as Spacing, u as ThemeMetadata, v as ThemePlugin, w as ThemePluginExport, s as ThemeTokens, q as Typography } from '../index-esRx5dOb.mjs';
2
2
  import 'react';
3
3
  import '../llm/index.mjs';
@@ -1,3 +1,3 @@
1
- export { A as AttachmentSupport, p as ColorPalette, r as Effects, t as EmbeddedFont, E as EmbeddingModelInfo, F as FontDefinition, d as IconProps, I as ImageGenerationModelInfo, c as ImageProviderConstraints, o as InstalledPluginInfo, L as LLMProviderPlugin, M as ModelInfo, j as PluginAuthor, g as PluginCapability, h as PluginCategory, k as PluginCompatibility, n as PluginManifest, m as PluginPermissions, i as PluginStatus, b as ProviderCapabilities, l as ProviderConfig, a as ProviderConfigRequirements, P as ProviderMetadata, e as ProviderPluginExport, R as RoleplayTemplateConfig, x as RoleplayTemplateMetadata, y as RoleplayTemplatePlugin, z as RoleplayTemplatePluginExport, S as Spacing, u as ThemeMetadata, v as ThemePlugin, w as ThemePluginExport, s as ThemeTokens, q as Typography } from '../index-C0tKQeeQ.js';
1
+ export { B as AnnotationButton, A as AttachmentSupport, p as ColorPalette, G as DialogueDetection, r as Effects, t as EmbeddedFont, E as EmbeddingModelInfo, F as FontDefinition, d as IconProps, I as ImageGenerationModelInfo, c as ImageProviderConstraints, o as InstalledPluginInfo, L as LLMProviderPlugin, M as ModelInfo, j as PluginAuthor, g as PluginCapability, h as PluginCategory, k as PluginCompatibility, n as PluginManifest, m as PluginPermissions, i as PluginStatus, b as ProviderCapabilities, l as ProviderConfig, a as ProviderConfigRequirements, P as ProviderMetadata, e as ProviderPluginExport, D as RenderingPattern, R as RoleplayTemplateConfig, x as RoleplayTemplateMetadata, y as RoleplayTemplatePlugin, z as RoleplayTemplatePluginExport, S as Spacing, u as ThemeMetadata, v as ThemePlugin, w as ThemePluginExport, s as ThemeTokens, q as Typography } from '../index-fPQMtntn.js';
2
2
  import 'react';
3
3
  import '../llm/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/plugin-types",
3
- "version": "1.4.0",
3
+ "version": "1.5.1",
4
4
  "description": "Type definitions for Quilltap plugin development",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",