bopodev-agent-sdk 0.1.31 → 0.1.32

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.31 build /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/agent-sdk
3
+ > bopodev-agent-sdk@0.1.32 build /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/agent-sdk
4
4
  > tsc -p tsconfig.json --emitDeclarationOnly
5
5
 
@@ -1,6 +1,7 @@
1
1
  export * from "./adapters";
2
2
  export * from "./registry";
3
3
  export * from "./runtime";
4
+ export * from "./runtime-http";
4
5
  export * from "./runtime-core";
5
6
  export * from "./runtime-parsers";
6
7
  export * from "./types";
@@ -4594,6 +4594,9 @@ export declare const CostLedgerEntrySchema: z.ZodObject<{
4594
4594
  id: z.ZodString;
4595
4595
  companyId: z.ZodString;
4596
4596
  runId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4597
+ costCategory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4598
+ assistantThreadId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4599
+ assistantMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4597
4600
  projectId: z.ZodNullable<z.ZodString>;
4598
4601
  issueId: z.ZodNullable<z.ZodString>;
4599
4602
  agentId: z.ZodNullable<z.ZodString>;
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "bopodev-agent-sdk",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
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.31"
9
+ "bopodev-contracts": "0.1.32"
10
10
  },
11
11
  "scripts": {
12
12
  "build": "tsc -p tsconfig.json --emitDeclarationOnly",
package/src/index.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./adapters";
2
2
  export * from "./registry";
3
3
  export * from "./runtime";
4
+ export * from "./runtime-http";
4
5
  export * from "./runtime-core";
5
6
  export * from "./runtime-parsers";
6
7
  export * from "./types";