@infersec/conduit 1.43.0 → 1.45.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 +10 -0
- 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
|