bopodev-db 0.1.10 → 0.1.12
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-typecheck.log +1 -1
- package/LICENSE +1 -1
- package/dist/repositories.d.ts +3 -3
- package/package.json +1 -1
- package/src/repositories.ts +2 -2
package/.turbo/turbo-build.log
CHANGED
package/LICENSE
CHANGED
package/dist/repositories.d.ts
CHANGED
|
@@ -255,7 +255,7 @@ export declare function createAgent(db: BopoDb, input: {
|
|
|
255
255
|
managerAgentId?: string | null;
|
|
256
256
|
role: string;
|
|
257
257
|
name: string;
|
|
258
|
-
providerType: "claude_code" | "codex" | "http" | "shell";
|
|
258
|
+
providerType: "claude_code" | "codex" | "cursor" | "opencode" | "http" | "shell";
|
|
259
259
|
heartbeatCron: string;
|
|
260
260
|
monthlyBudgetUsd: string;
|
|
261
261
|
canHireAgents?: boolean;
|
|
@@ -277,7 +277,7 @@ export declare function createAgent(db: BopoDb, input: {
|
|
|
277
277
|
managerAgentId?: string | null;
|
|
278
278
|
role: string;
|
|
279
279
|
name: string;
|
|
280
|
-
providerType: "claude_code" | "codex" | "http" | "shell";
|
|
280
|
+
providerType: "claude_code" | "codex" | "cursor" | "opencode" | "http" | "shell";
|
|
281
281
|
heartbeatCron: string;
|
|
282
282
|
monthlyBudgetUsd: string;
|
|
283
283
|
canHireAgents?: boolean;
|
|
@@ -328,7 +328,7 @@ export declare function updateAgent(db: BopoDb, input: {
|
|
|
328
328
|
managerAgentId?: string | null;
|
|
329
329
|
role?: string;
|
|
330
330
|
name?: string;
|
|
331
|
-
providerType?: "claude_code" | "codex" | "http" | "shell";
|
|
331
|
+
providerType?: "claude_code" | "codex" | "cursor" | "opencode" | "http" | "shell";
|
|
332
332
|
status?: string;
|
|
333
333
|
heartbeatCron?: string;
|
|
334
334
|
monthlyBudgetUsd?: string;
|
package/package.json
CHANGED
package/src/repositories.ts
CHANGED
|
@@ -461,7 +461,7 @@ export async function createAgent(
|
|
|
461
461
|
managerAgentId?: string | null;
|
|
462
462
|
role: string;
|
|
463
463
|
name: string;
|
|
464
|
-
providerType: "claude_code" | "codex" | "http" | "shell";
|
|
464
|
+
providerType: "claude_code" | "codex" | "cursor" | "opencode" | "http" | "shell";
|
|
465
465
|
heartbeatCron: string;
|
|
466
466
|
monthlyBudgetUsd: string;
|
|
467
467
|
canHireAgents?: boolean;
|
|
@@ -523,7 +523,7 @@ export async function updateAgent(
|
|
|
523
523
|
managerAgentId?: string | null;
|
|
524
524
|
role?: string;
|
|
525
525
|
name?: string;
|
|
526
|
-
providerType?: "claude_code" | "codex" | "http" | "shell";
|
|
526
|
+
providerType?: "claude_code" | "codex" | "cursor" | "opencode" | "http" | "shell";
|
|
527
527
|
status?: string;
|
|
528
528
|
heartbeatCron?: string;
|
|
529
529
|
monthlyBudgetUsd?: string;
|