@infersec/conduit 1.57.0 → 1.58.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 +4 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -19670,7 +19670,8 @@ object({
19670
19670
  password: RawPasswordForLoginSchema
19671
19671
  });
19672
19672
  object({
19673
- ok: literal(true)
19673
+ ok: literal(true),
19674
+ redirectUrl: string$1()
19674
19675
  })
19675
19676
  .or(object({
19676
19677
  ok: literal(false),
@@ -19696,7 +19697,8 @@ object({
19696
19697
  path: ["newPassword"]
19697
19698
  });
19698
19699
  object({
19699
- ok: literal(true)
19700
+ ok: literal(true),
19701
+ redirectUrl: string$1()
19700
19702
  })
19701
19703
  .or(object({
19702
19704
  ok: literal(false)
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.57.0",
4
+ "version": "1.58.0",
5
5
  "bin": {
6
6
  "infersec-conduit": "./dist/cli.js"
7
7
  },