@ampcode/plugin 0.0.0-20260425184610-g2a0cd88 → 0.0.0-20260426002548-gff4795b

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.
Files changed (2) hide show
  1. package/index.d.ts +3 -3
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -529,17 +529,17 @@ declare module '@ampcode/plugin' {
529
529
  export type ToolResultResult =
530
530
  | {
531
531
  status: 'done'
532
- output?: PluginToolResult
532
+ output?: unknown
533
533
  }
534
534
  | {
535
535
  status: 'error'
536
536
  error?: string
537
- output?: PluginToolResult
537
+ output?: unknown
538
538
  }
539
539
  | {
540
540
  status: 'cancelled'
541
541
  error?: string
542
- output?: PluginToolResult
542
+ output?: unknown
543
543
  }
544
544
  | undefined
545
545
  | void
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampcode/plugin",
3
- "version": "0.0.0-20260425184610-g2a0cd88",
3
+ "version": "0.0.0-20260426002548-gff4795b",
4
4
  "description": "Amp Plugin API",
5
5
  "homepage": "https://ampcode.com/manual/plugin-api",
6
6
  "author": {