@infersec/conduit 1.43.0 → 1.44.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 +10 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -19695,6 +19695,16 @@ object({
19695
19695
  .or(object({
19696
19696
  ok: literal(false)
19697
19697
  }));
19698
+ object({
19699
+ token: string$1().min(1)
19700
+ });
19701
+ object({
19702
+ ok: literal(true)
19703
+ })
19704
+ .or(object({
19705
+ error: string$1(),
19706
+ ok: literal(false)
19707
+ }));
19698
19708
  object({
19699
19709
  accountId: ULIDSchema,
19700
19710
  userId: ULIDSchema
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.43.0",
4
+ "version": "1.44.0",
5
5
  "bin": {
6
6
  "infersec-conduit": "./dist/cli.js"
7
7
  },