@quilltap/plugin-types 1.3.0 → 1.5.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,35 @@ 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.0] - 2026-01-02
9
+
10
+ ### Added
11
+
12
+ - Added `RenderingPattern` interface for configurable message content styling:
13
+ - `pattern: string` - Regex pattern as a string (converted to RegExp at runtime)
14
+ - `className: string` - CSS class to apply to matched text
15
+ - `flags?: string` - Optional regex flags (e.g., 'm' for multiline)
16
+ - Added `DialogueDetection` interface for paragraph-level dialogue detection:
17
+ - `openingChars: string[]` - Opening quote characters to detect
18
+ - `closingChars: string[]` - Closing quote characters to detect
19
+ - `className: string` - CSS class to apply to dialogue paragraphs
20
+ - Added `renderingPatterns?: RenderingPattern[]` field to `RoleplayTemplateConfig`
21
+ - Added `dialogueDetection?: DialogueDetection` field to `RoleplayTemplateConfig`
22
+ - Exported `AnnotationButton`, `RenderingPattern`, `DialogueDetection` from `@quilltap/plugin-types/plugins`
23
+
24
+ ## [1.4.0] - 2026-01-02
25
+
26
+ ### Added
27
+
28
+ - Added `AnnotationButton` interface for roleplay template annotation buttons:
29
+ - `label: string` - Full name for tooltip (e.g., "Narration", "Internal Monologue")
30
+ - `abbrev: string` - Abbreviated label for button display (e.g., "Nar", "Int", "OOC")
31
+ - `prefix: string` - Opening delimiter (e.g., "[", "{", "// ")
32
+ - `suffix: string` - Closing delimiter (e.g., "]", "}", "")
33
+ - Added `annotationButtons?: AnnotationButton[]` field to `RoleplayTemplateConfig` interface
34
+ - Enables roleplay template plugins to define custom annotation formatting buttons
35
+ - Used by the Document Editing Mode formatting toolbar
36
+
8
37
  ## [1.3.0] - 2026-01-02
9
38
 
10
39
  ### Added
@@ -845,6 +845,76 @@ interface ThemePluginExport {
845
845
  *
846
846
  * @module @quilltap/plugin-types/plugins/roleplay-template
847
847
  */
848
+ /**
849
+ * Configuration for an annotation button in the formatting toolbar.
850
+ *
851
+ * Annotation buttons allow users to insert roleplay formatting
852
+ * (e.g., narration brackets, OOC markers) with a single click.
853
+ */
854
+ interface AnnotationButton {
855
+ /** Full name displayed in tooltip (e.g., "Narration", "Internal Monologue") */
856
+ label: string;
857
+ /** Abbreviated label displayed on button (e.g., "Nar", "Int", "OOC") */
858
+ abbrev: string;
859
+ /** Opening delimiter (e.g., "[", "*", "{{") */
860
+ prefix: string;
861
+ /** Closing delimiter (e.g., "]", "*", "}}") - empty string for line-end delimiters */
862
+ suffix: string;
863
+ }
864
+ /**
865
+ * A pattern for styling roleplay text in message content.
866
+ *
867
+ * Rendering patterns define how to match and style specific text patterns
868
+ * in AI responses (e.g., narration, OOC comments, internal monologue).
869
+ *
870
+ * @example
871
+ * ```typescript
872
+ * // Match *narration* with single asterisks
873
+ * { pattern: '(?<!\\*)\\*[^*]+\\*(?!\\*)', className: 'qt-chat-narration' }
874
+ *
875
+ * // Match ((OOC comments)) with double parentheses
876
+ * { pattern: '\\(\\([^)]+\\)\\)', className: 'qt-chat-ooc' }
877
+ *
878
+ * // Match // OOC at start of line (multiline mode)
879
+ * { pattern: '^// .+$', className: 'qt-chat-ooc', flags: 'm' }
880
+ * ```
881
+ */
882
+ interface RenderingPattern {
883
+ /** Regex pattern as a string (converted to RegExp at runtime) */
884
+ pattern: string;
885
+ /**
886
+ * CSS class to apply to matched text.
887
+ * Standard classes: qt-chat-dialogue, qt-chat-narration, qt-chat-ooc, qt-chat-inner-monologue
888
+ */
889
+ className: string;
890
+ /** Optional regex flags (e.g., 'm' for multiline). Default: none */
891
+ flags?: string;
892
+ }
893
+ /**
894
+ * Configuration for detecting dialogue at the paragraph level.
895
+ *
896
+ * When dialogue contains markdown formatting (like **bold**), the text gets split
897
+ * into multiple children and inline regex patterns can't match. Paragraph-level
898
+ * detection checks if the entire paragraph starts and ends with quote characters.
899
+ *
900
+ * @example
901
+ * ```typescript
902
+ * // Standard dialogue with straight and curly quotes
903
+ * {
904
+ * openingChars: ['"', '"'],
905
+ * closingChars: ['"', '"'],
906
+ * className: 'qt-chat-dialogue'
907
+ * }
908
+ * ```
909
+ */
910
+ interface DialogueDetection {
911
+ /** Opening quote characters to detect (e.g., ['"', '"']) */
912
+ openingChars: string[];
913
+ /** Closing quote characters to detect (e.g., ['"', '"']) */
914
+ closingChars: string[];
915
+ /** CSS class to apply to dialogue paragraphs */
916
+ className: string;
917
+ }
848
918
  /**
849
919
  * Configuration for a single roleplay template
850
920
  *
@@ -863,6 +933,50 @@ interface RoleplayTemplateConfig {
863
933
  systemPrompt: string;
864
934
  /** Tags for categorization and searchability */
865
935
  tags?: string[];
936
+ /**
937
+ * Annotation buttons for the formatting toolbar.
938
+ * Defines which formatting options are available when document editing mode is enabled.
939
+ *
940
+ * @example
941
+ * ```typescript
942
+ * annotationButtons: [
943
+ * { label: 'Narration', abbrev: 'Nar', prefix: '[', suffix: ']' },
944
+ * { label: 'Internal Monologue', abbrev: 'Int', prefix: '{', suffix: '}' },
945
+ * { label: 'Out of Character', abbrev: 'OOC', prefix: '// ', suffix: '' },
946
+ * ]
947
+ * ```
948
+ */
949
+ annotationButtons?: AnnotationButton[];
950
+ /**
951
+ * Patterns for styling roleplay text in message content.
952
+ * These patterns are matched against text nodes and wrapped in styled spans.
953
+ *
954
+ * @example
955
+ * ```typescript
956
+ * renderingPatterns: [
957
+ * // Match *narration* with single asterisks
958
+ * { pattern: '(?<!\\*)\\*[^*]+\\*(?!\\*)', className: 'qt-chat-narration' },
959
+ * // Match ((OOC)) with double parentheses
960
+ * { pattern: '\\(\\([^)]+\\)\\)', className: 'qt-chat-ooc' },
961
+ * ]
962
+ * ```
963
+ */
964
+ renderingPatterns?: RenderingPattern[];
965
+ /**
966
+ * Optional dialogue detection for paragraph-level styling.
967
+ * When dialogue contains markdown formatting, inline patterns can't match.
968
+ * This detects paragraphs that start/end with quote characters.
969
+ *
970
+ * @example
971
+ * ```typescript
972
+ * dialogueDetection: {
973
+ * openingChars: ['"', '"'],
974
+ * closingChars: ['"', '"'],
975
+ * className: 'qt-chat-dialogue'
976
+ * }
977
+ * ```
978
+ */
979
+ dialogueDetection?: DialogueDetection;
866
980
  }
867
981
  /**
868
982
  * Metadata for a roleplay template plugin
@@ -968,4 +1082,4 @@ interface RoleplayTemplatePluginExport {
968
1082
  plugin: RoleplayTemplatePlugin;
969
1083
  }
970
1084
 
971
- 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 };
1085
+ 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 };
@@ -845,6 +845,76 @@ interface ThemePluginExport {
845
845
  *
846
846
  * @module @quilltap/plugin-types/plugins/roleplay-template
847
847
  */
848
+ /**
849
+ * Configuration for an annotation button in the formatting toolbar.
850
+ *
851
+ * Annotation buttons allow users to insert roleplay formatting
852
+ * (e.g., narration brackets, OOC markers) with a single click.
853
+ */
854
+ interface AnnotationButton {
855
+ /** Full name displayed in tooltip (e.g., "Narration", "Internal Monologue") */
856
+ label: string;
857
+ /** Abbreviated label displayed on button (e.g., "Nar", "Int", "OOC") */
858
+ abbrev: string;
859
+ /** Opening delimiter (e.g., "[", "*", "{{") */
860
+ prefix: string;
861
+ /** Closing delimiter (e.g., "]", "*", "}}") - empty string for line-end delimiters */
862
+ suffix: string;
863
+ }
864
+ /**
865
+ * A pattern for styling roleplay text in message content.
866
+ *
867
+ * Rendering patterns define how to match and style specific text patterns
868
+ * in AI responses (e.g., narration, OOC comments, internal monologue).
869
+ *
870
+ * @example
871
+ * ```typescript
872
+ * // Match *narration* with single asterisks
873
+ * { pattern: '(?<!\\*)\\*[^*]+\\*(?!\\*)', className: 'qt-chat-narration' }
874
+ *
875
+ * // Match ((OOC comments)) with double parentheses
876
+ * { pattern: '\\(\\([^)]+\\)\\)', className: 'qt-chat-ooc' }
877
+ *
878
+ * // Match // OOC at start of line (multiline mode)
879
+ * { pattern: '^// .+$', className: 'qt-chat-ooc', flags: 'm' }
880
+ * ```
881
+ */
882
+ interface RenderingPattern {
883
+ /** Regex pattern as a string (converted to RegExp at runtime) */
884
+ pattern: string;
885
+ /**
886
+ * CSS class to apply to matched text.
887
+ * Standard classes: qt-chat-dialogue, qt-chat-narration, qt-chat-ooc, qt-chat-inner-monologue
888
+ */
889
+ className: string;
890
+ /** Optional regex flags (e.g., 'm' for multiline). Default: none */
891
+ flags?: string;
892
+ }
893
+ /**
894
+ * Configuration for detecting dialogue at the paragraph level.
895
+ *
896
+ * When dialogue contains markdown formatting (like **bold**), the text gets split
897
+ * into multiple children and inline regex patterns can't match. Paragraph-level
898
+ * detection checks if the entire paragraph starts and ends with quote characters.
899
+ *
900
+ * @example
901
+ * ```typescript
902
+ * // Standard dialogue with straight and curly quotes
903
+ * {
904
+ * openingChars: ['"', '"'],
905
+ * closingChars: ['"', '"'],
906
+ * className: 'qt-chat-dialogue'
907
+ * }
908
+ * ```
909
+ */
910
+ interface DialogueDetection {
911
+ /** Opening quote characters to detect (e.g., ['"', '"']) */
912
+ openingChars: string[];
913
+ /** Closing quote characters to detect (e.g., ['"', '"']) */
914
+ closingChars: string[];
915
+ /** CSS class to apply to dialogue paragraphs */
916
+ className: string;
917
+ }
848
918
  /**
849
919
  * Configuration for a single roleplay template
850
920
  *
@@ -863,6 +933,50 @@ interface RoleplayTemplateConfig {
863
933
  systemPrompt: string;
864
934
  /** Tags for categorization and searchability */
865
935
  tags?: string[];
936
+ /**
937
+ * Annotation buttons for the formatting toolbar.
938
+ * Defines which formatting options are available when document editing mode is enabled.
939
+ *
940
+ * @example
941
+ * ```typescript
942
+ * annotationButtons: [
943
+ * { label: 'Narration', abbrev: 'Nar', prefix: '[', suffix: ']' },
944
+ * { label: 'Internal Monologue', abbrev: 'Int', prefix: '{', suffix: '}' },
945
+ * { label: 'Out of Character', abbrev: 'OOC', prefix: '// ', suffix: '' },
946
+ * ]
947
+ * ```
948
+ */
949
+ annotationButtons?: AnnotationButton[];
950
+ /**
951
+ * Patterns for styling roleplay text in message content.
952
+ * These patterns are matched against text nodes and wrapped in styled spans.
953
+ *
954
+ * @example
955
+ * ```typescript
956
+ * renderingPatterns: [
957
+ * // Match *narration* with single asterisks
958
+ * { pattern: '(?<!\\*)\\*[^*]+\\*(?!\\*)', className: 'qt-chat-narration' },
959
+ * // Match ((OOC)) with double parentheses
960
+ * { pattern: '\\(\\([^)]+\\)\\)', className: 'qt-chat-ooc' },
961
+ * ]
962
+ * ```
963
+ */
964
+ renderingPatterns?: RenderingPattern[];
965
+ /**
966
+ * Optional dialogue detection for paragraph-level styling.
967
+ * When dialogue contains markdown formatting, inline patterns can't match.
968
+ * This detects paragraphs that start/end with quote characters.
969
+ *
970
+ * @example
971
+ * ```typescript
972
+ * dialogueDetection: {
973
+ * openingChars: ['"', '"'],
974
+ * closingChars: ['"', '"'],
975
+ * className: 'qt-chat-dialogue'
976
+ * }
977
+ * ```
978
+ */
979
+ dialogueDetection?: DialogueDetection;
866
980
  }
867
981
  /**
868
982
  * Metadata for a roleplay template plugin
@@ -968,4 +1082,4 @@ interface RoleplayTemplatePluginExport {
968
1082
  plugin: RoleplayTemplatePlugin;
969
1083
  }
970
1084
 
971
- 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 };
1085
+ 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-cJ39N11H.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-CRkRb81P.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-CKZPUEkh.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-Cp1fIE0T.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-cJ39N11H.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-CRkRb81P.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-CKZPUEkh.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-Cp1fIE0T.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.3.0",
3
+ "version": "1.5.0",
4
4
  "description": "Type definitions for Quilltap plugin development",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",