@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.
- package/dist/cli.js +7 -0
- 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",
|