eddyter 1.3.59 → 1.3.60

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.
@@ -1,5 +1,5 @@
1
+ import { AIProvider } from '../api/ai/aiAgentService';
1
2
  import { LexicalCommand } from '../../node_modules/lexical';
2
- type AIProvider = 'chatgpt' | 'claude' | 'grok' | 'gemini';
3
3
  export declare const TOGGLE_AI_CHAT_COMMAND: LexicalCommand<string | undefined>;
4
4
  export declare const SHOW_INLINE_AI_PROMPT_COMMAND: LexicalCommand<{
5
5
  provider?: AIProvider;
@@ -8,4 +8,3 @@ export declare const SHOW_INLINE_AI_PROMPT_COMMAND: LexicalCommand<{
8
8
  export default function AIChatPlugin({ apiKey, }: {
9
9
  apiKey?: string;
10
10
  }): JSX.Element | null;
11
- export {};