@openacp/plugin-sdk 2026.404.2 → 2026.405.2

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
@@ -1,5 +1,6 @@
1
1
  export type { OpenACPPlugin, PluginContext, PluginPermission, PluginStorage, InstallContext, MigrateContext, TerminalIO, SettingsAPI, } from '@openacp/cli';
2
2
  export type { CommandDef, CommandArgs, CommandResponse, MenuOption, ListItem, } from '@openacp/cli';
3
+ export type { FieldDef } from '@openacp/cli';
3
4
  export type { SecurityService, FileServiceInterface, NotificationService, UsageService, TunnelServiceInterface, ContextService, } from '@openacp/cli';
4
5
  export type { TTSProvider, TTSOptions, TTSResult, STTProvider, STTOptions, STTResult, SpeechServiceInterface, } from './speech-types.js';
5
6
  export type { IChannelAdapter, AdapterCapabilities, OutgoingMessage, PermissionRequest, PermissionOption, NotificationMessage, AgentCommand, MessagingAdapterConfig, IRenderer, RenderedMessage, } from '@openacp/cli';
@@ -82,6 +82,7 @@ export function createTestContext(opts) {
82
82
  unregisterMenuItem(_id) { },
83
83
  registerAssistantSection(_section) { },
84
84
  unregisterAssistantSection(_id) { },
85
+ registerEditableFields(_fields) { },
85
86
  storage,
86
87
  log: silentLog,
87
88
  async sendMessage(sessionId, content) {
@@ -1,7 +1,6 @@
1
1
  import type { InstallContext } from '@openacp/cli';
2
2
  export interface TestInstallContextOpts {
3
3
  pluginName: string;
4
- legacyConfig?: Record<string, unknown>;
5
4
  terminalResponses?: Record<string, unknown[]>;
6
5
  }
7
6
  interface TerminalCall {
@@ -101,7 +101,6 @@ export function createTestInstallContext(opts) {
101
101
  pluginName: opts.pluginName,
102
102
  terminal,
103
103
  settings,
104
- legacyConfig: opts.legacyConfig,
105
104
  dataDir: '/tmp/openacp-test-data',
106
105
  log: silentLog,
107
106
  // Test-specific
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openacp/plugin-sdk",
3
- "version": "2026.404.2",
3
+ "version": "2026.405.2",
4
4
  "description": "SDK for building OpenACP plugins — types, base classes, and testing utilities",
5
5
  "type": "module",
6
6
  "exports": {