@infersec/conduit 1.68.0 → 1.69.1

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
- import { ULID } from "@infersec/definitions";
2
1
  import { z } from "zod";
2
+ import { ULID } from "@infersec/definitions";
3
3
  declare const StartModeSchema: z.ZodEnum<{
4
4
  idle: "idle";
5
5
  auto: "auto";
@@ -25,5 +25,5 @@ export interface ConfigurationOverrides {
25
25
  }
26
26
  export declare function getConfiguration({ overrides }?: {
27
27
  overrides?: ConfigurationOverrides;
28
- }): Configuration;
28
+ }): Promise<Configuration>;
29
29
  export {};
@@ -0,0 +1 @@
1
+ export declare function allocatePort(startFrom: number, maxTries?: number): Promise<number>;
@@ -0,0 +1 @@
1
+ export declare function stripImagesFromBody(body: unknown): unknown;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@infersec/conduit",
3
3
  "description": "End user conduit agent for connecting local LLMs to the cloud.",
4
- "version": "1.68.0",
4
+ "version": "1.69.1",
5
5
  "bin": {
6
6
  "infersec-conduit": "./dist/cli.js"
7
7
  },