@opencow-ai/opencow-agent-sdk 0.4.15 → 0.4.17
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/capabilities/tools/BashTool/prompt.d.ts +1 -0
- package/dist/capabilities/tools/NotebookEditTool/NotebookEditTool.d.ts +0 -8
- package/dist/cli.mjs +1101 -2057
- package/dist/client.js +56 -417
- package/dist/constants/envVars.d.ts +0 -1
- package/dist/providers/shared/model/model.d.ts +0 -9
- package/dist/sdk.js +56 -417
- package/dist/session/sessionStorage.d.ts +0 -4
- package/dist/session/settings/types.d.ts +0 -5
- package/dist/state/AppStateStore.d.ts +0 -2
- package/dist/types/hooks.d.ts +0 -2
- package/dist/types/logs.d.ts +1 -26
- package/dist/types/toolRuntime.d.ts +0 -2
- package/package.json +1 -1
- package/dist/capabilities/generatedFiles.d.ts +0 -14
- package/dist/capabilities/tools/shared/teamMemorySync/index.d.ts +0 -121
- package/dist/capabilities/tools/shared/teamMemorySync/types.d.ts +0 -132
- package/dist/capabilities/tools/shared/teamMemorySync/watcher.d.ts +0 -78
- package/dist/lib/sequential.d.ts +0 -12
- package/dist/session/attribution.d.ts +0 -40
- package/dist/session/commitAttribution.d.ts +0 -193
- package/dist/session/sessionFileAccessHooks.d.ts +0 -11
|
@@ -27,8 +27,6 @@ export declare const outputSchema: () => z.ZodObject<{
|
|
|
27
27
|
edit_mode: z.ZodString;
|
|
28
28
|
error: z.ZodOptional<z.ZodString>;
|
|
29
29
|
notebook_path: z.ZodString;
|
|
30
|
-
original_file: z.ZodString;
|
|
31
|
-
updated_file: z.ZodString;
|
|
32
30
|
}, z.core.$strip>;
|
|
33
31
|
type OutputSchema = ReturnType<typeof outputSchema>;
|
|
34
32
|
export type Output = z.infer<OutputSchema>;
|
|
@@ -71,8 +69,6 @@ export declare const NotebookEditTool: Omit<{
|
|
|
71
69
|
language: string;
|
|
72
70
|
edit_mode: string;
|
|
73
71
|
notebook_path: string;
|
|
74
|
-
original_file: string;
|
|
75
|
-
updated_file: string;
|
|
76
72
|
cell_id?: string;
|
|
77
73
|
error?: string;
|
|
78
74
|
}, toolUseID: string): {
|
|
@@ -120,8 +116,6 @@ export declare const NotebookEditTool: Omit<{
|
|
|
120
116
|
error: string;
|
|
121
117
|
cell_id: string;
|
|
122
118
|
notebook_path: string;
|
|
123
|
-
original_file: string;
|
|
124
|
-
updated_file: string;
|
|
125
119
|
};
|
|
126
120
|
} | {
|
|
127
121
|
data: {
|
|
@@ -132,8 +126,6 @@ export declare const NotebookEditTool: Omit<{
|
|
|
132
126
|
cell_id: any;
|
|
133
127
|
error: string;
|
|
134
128
|
notebook_path: string;
|
|
135
|
-
original_file: string;
|
|
136
|
-
updated_file: string;
|
|
137
129
|
};
|
|
138
130
|
}>;
|
|
139
131
|
}, "isEnabled" | "isConcurrencySafe" | "isReadOnly" | "isDestructive" | "checkPermissions" | "toAutoClassifierInput" | "userFacingName"> & {
|