@deepbounty/sdk 1.0.5 → 1.0.6

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,7 +1,7 @@
1
1
  import { Tool } from "./tools";
2
2
  export interface TaskContent {
3
3
  commands: string[];
4
- requiredTools?: Tool[];
4
+ requiredTools?: (Tool | string)[];
5
5
  }
6
6
  export interface Task extends TaskContent {
7
7
  id: number;
@@ -10,6 +10,7 @@ export interface ServerTask extends Task {
10
10
  workerId?: number;
11
11
  status: "pending" | "running" | "completed" | "failed";
12
12
  createdAt: Date;
13
+ requiredTools?: Tool[];
13
14
  }
14
15
  export interface TaskResult {
15
16
  taskId: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deepbounty/sdk",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "DeepBounty SDK for module development",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",