bopodev-db 0.1.9 → 0.1.11

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,5 +1,5 @@
1
1
 
2
2
  
3
- > bopodev-db@0.1.9 build /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/db
3
+ > bopodev-db@0.1.11 build /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/db
4
4
  > tsc -p tsconfig.json --emitDeclarationOnly
5
5
 
@@ -1,4 +1,4 @@
1
1
 
2
- > bopodev-db@0.1.8 typecheck /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/db
2
+ > bopodev-db@0.1.10 typecheck /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/db
3
3
  > tsc -p tsconfig.json --noEmit
4
4
 
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 BopoHQ contributors
3
+ Copyright (c) 2026 BopoDev contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bopodev-db",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -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;