@opencode-ai/schema 0.0.0-dev-18786 → 0.0.0-dev-18789
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/tool.d.ts +4 -0
- package/package.json +1 -1
package/dist/tool.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ export interface Context {
|
|
|
14
14
|
readonly id: CallID;
|
|
15
15
|
readonly progress: (update: Metadata) => Effect.Effect<void>;
|
|
16
16
|
}
|
|
17
|
+
export interface Namespace {
|
|
18
|
+
readonly name: string;
|
|
19
|
+
readonly description: string;
|
|
20
|
+
}
|
|
17
21
|
interface BaseOptions {
|
|
18
22
|
readonly namespace?: string;
|
|
19
23
|
readonly permission?: string;
|