@infersec/conduit 1.45.1 → 1.46.0

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.
Files changed (2) hide show
  1. package/dist/cli.js +7 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -18458,6 +18458,13 @@ preprocess(value => {
18458
18458
  return value === 1;
18459
18459
  return value;
18460
18460
  }, boolean$1());
18461
+ preprocess(value => {
18462
+ if (typeof value === "number")
18463
+ return value;
18464
+ if (typeof value === "string" && /^-?\d+(\.\d+)?$/.test(value))
18465
+ return Number(value);
18466
+ return value;
18467
+ }, number$1());
18461
18468
  _enum([
18462
18469
  "DELETE",
18463
18470
  "GET",
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.45.1",
4
+ "version": "1.46.0",
5
5
  "bin": {
6
6
  "infersec-conduit": "./dist/cli.js"
7
7
  },