@intuned/runtime-dev 1.1.6-fiber.0 → 1.1.6-fiber.1
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/bin/check-auth-session
CHANGED
|
File without changes
|
package/bin/cli-build
CHANGED
|
File without changes
|
package/bin/create-auth-session
CHANGED
|
File without changes
|
|
@@ -164,7 +164,7 @@ async function* runApiGenerator({
|
|
|
164
164
|
return (0, _neverthrow.err)(new _errors.AuthCheckFailedError());
|
|
165
165
|
}
|
|
166
166
|
} catch (error) {
|
|
167
|
-
return (0, _neverthrow.err)(new _errors.
|
|
167
|
+
return (0, _neverthrow.err)(new _errors.AuthCheckFailedError());
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
console.log("Running automation");
|
|
@@ -545,12 +545,12 @@ export declare const runApiParametersSchema: z.ZodObject<{
|
|
|
545
545
|
} | undefined;
|
|
546
546
|
}, {
|
|
547
547
|
environment: "standalone";
|
|
548
|
-
headless?: boolean | undefined;
|
|
549
548
|
proxy?: {
|
|
550
549
|
server: string;
|
|
551
550
|
username: string;
|
|
552
551
|
password: string;
|
|
553
552
|
} | undefined;
|
|
553
|
+
headless?: boolean | undefined;
|
|
554
554
|
}>, z.ZodObject<{
|
|
555
555
|
environment: z.ZodLiteral<"cdp">;
|
|
556
556
|
cdpAddress: z.ZodString;
|
|
@@ -673,12 +673,12 @@ export declare const runApiParametersSchema: z.ZodObject<{
|
|
|
673
673
|
} | undefined;
|
|
674
674
|
runOptions?: {
|
|
675
675
|
environment: "standalone";
|
|
676
|
-
headless?: boolean | undefined;
|
|
677
676
|
proxy?: {
|
|
678
677
|
server: string;
|
|
679
678
|
username: string;
|
|
680
679
|
password: string;
|
|
681
680
|
} | undefined;
|
|
681
|
+
headless?: boolean | undefined;
|
|
682
682
|
} | {
|
|
683
683
|
mode: "vanilla" | "playwright" | "playwright-standalone" | "playwright-headless";
|
|
684
684
|
environment: "cdp";
|