bopodev-agent-sdk 0.1.27 → 0.1.28

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-agent-sdk@0.1.27 build /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/agent-sdk
3
+ > bopodev-agent-sdk@0.1.28 build /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopodev/packages/agent-sdk
4
4
  > tsc -p tsconfig.json --emitDeclarationOnly
5
5
 
@@ -1,4 +1,4 @@
1
1
 
2
- > bopodev-agent-sdk@0.1.26 typecheck /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/agent-sdk
2
+ > bopodev-agent-sdk@0.1.20 typecheck /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopodev/packages/agent-sdk
3
3
  > tsc -p tsconfig.json --noEmit
4
4
 
@@ -4422,6 +4422,15 @@ export declare const AuditEventSchema: z.ZodObject<{
4422
4422
  payload: z.ZodRecord<z.ZodString, z.ZodUnknown>;
4423
4423
  createdAt: z.ZodString;
4424
4424
  }, z.core.$strip>;
4425
+ export declare const HeartbeatRunTypeSchema: z.ZodEnum<{
4426
+ failed: "failed";
4427
+ running: "running";
4428
+ no_assigned_work: "no_assigned_work";
4429
+ work: "work";
4430
+ budget_skip: "budget_skip";
4431
+ overlap_skip: "overlap_skip";
4432
+ other_skip: "other_skip";
4433
+ }>;
4425
4434
  export declare const HeartbeatRunSchema: z.ZodObject<{
4426
4435
  id: z.ZodString;
4427
4436
  companyId: z.ZodString;
@@ -4440,6 +4449,15 @@ export declare const HeartbeatRunSchema: z.ZodObject<{
4440
4449
  startedAt: z.ZodString;
4441
4450
  finishedAt: z.ZodNullable<z.ZodString>;
4442
4451
  message: z.ZodOptional<z.ZodString>;
4452
+ runType: z.ZodOptional<z.ZodEnum<{
4453
+ failed: "failed";
4454
+ running: "running";
4455
+ no_assigned_work: "no_assigned_work";
4456
+ work: "work";
4457
+ budget_skip: "budget_skip";
4458
+ overlap_skip: "overlap_skip";
4459
+ other_skip: "other_skip";
4460
+ }>>;
4443
4461
  }, z.core.$strip>;
4444
4462
  export declare const HeartbeatRunMessageSchema: z.ZodObject<{
4445
4463
  id: z.ZodString;
@@ -4528,6 +4546,15 @@ export declare const HeartbeatRunDetailSchema: z.ZodObject<{
4528
4546
  startedAt: z.ZodString;
4529
4547
  finishedAt: z.ZodNullable<z.ZodString>;
4530
4548
  message: z.ZodOptional<z.ZodString>;
4549
+ runType: z.ZodOptional<z.ZodEnum<{
4550
+ failed: "failed";
4551
+ running: "running";
4552
+ no_assigned_work: "no_assigned_work";
4553
+ work: "work";
4554
+ budget_skip: "budget_skip";
4555
+ overlap_skip: "overlap_skip";
4556
+ other_skip: "other_skip";
4557
+ }>>;
4531
4558
  }, z.core.$strip>;
4532
4559
  details: z.ZodNullable<z.ZodObject<{
4533
4560
  status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "bopodev-agent-sdk",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
7
7
  "types": "src/index.ts",
8
8
  "dependencies": {
9
- "bopodev-contracts": "0.1.27"
9
+ "bopodev-contracts": "0.1.28"
10
10
  },
11
11
  "scripts": {
12
12
  "build": "tsc -p tsconfig.json --emitDeclarationOnly",
@@ -1,4 +0,0 @@
1
-
2
- > bopodev-agent-sdk@0.1.15 lint /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/agent-sdk
3
- > tsc -p tsconfig.json --noEmit
4
-
@@ -1,2 +0,0 @@
1
- import type { AgentRuntimeConfig, AdapterQuotaProbeResult } from "../../../../agent-sdk/src/types";
2
- export declare function probeQuota(runtime?: AgentRuntimeConfig): Promise<AdapterQuotaProbeResult>;
@@ -1,4 +0,0 @@
1
- import type { AgentProviderType, AdapterQuotaProbeResult, AgentRuntimeConfig } from "./types";
2
- export declare function createUnsupportedQuotaProbeResult(providerType: AgentProviderType, message: string): AdapterQuotaProbeResult;
3
- export declare function createAuthRequiredQuotaProbeResult(providerType: AgentProviderType, message: string): AdapterQuotaProbeResult;
4
- export declare function resolveMergedEnv(runtime?: AgentRuntimeConfig): NodeJS.ProcessEnv;