flakelab 0.1.0 → 0.1.2
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/README.md +225 -38
- package/dist/analysis/blob-report.d.ts +15 -0
- package/dist/analysis/blob-report.js +137 -0
- package/dist/analysis/blob-report.js.map +1 -0
- package/dist/analysis/cli.d.ts +7 -0
- package/dist/analysis/cli.js +28 -0
- package/dist/analysis/cli.js.map +1 -0
- package/dist/analysis/schema.d.ts +175 -0
- package/dist/analysis/schema.js +34 -0
- package/dist/analysis/schema.js.map +1 -0
- package/dist/analysis/zip-archive.d.ts +6 -0
- package/dist/analysis/zip-archive.js +193 -0
- package/dist/analysis/zip-archive.js.map +1 -0
- package/dist/artifacts/paths.d.ts +3 -0
- package/dist/artifacts/paths.js +34 -0
- package/dist/artifacts/paths.js.map +1 -0
- package/dist/artifacts/retention.d.ts +1 -0
- package/dist/artifacts/retention.js +80 -0
- package/dist/artifacts/retention.js.map +1 -0
- package/dist/bisect/engine.js +0 -1
- package/dist/bisect/engine.js.map +1 -1
- package/dist/bisect/schema.d.ts +5 -6
- package/dist/bisect/schema.js +1 -2
- package/dist/bisect/schema.js.map +1 -1
- package/dist/bisect/solari-evaluator.js +9 -1
- package/dist/bisect/solari-evaluator.js.map +1 -1
- package/dist/ci/job-summary.d.ts +2 -0
- package/dist/ci/job-summary.js +120 -2
- package/dist/ci/job-summary.js.map +1 -1
- package/dist/ci/select-command.js +1 -1
- package/dist/ci/select-command.js.map +1 -1
- package/dist/ci/summary-command.js +12 -7
- package/dist/ci/summary-command.js.map +1 -1
- package/dist/cli-arguments.d.ts +44 -0
- package/dist/cli-arguments.js +356 -0
- package/dist/cli-arguments.js.map +1 -0
- package/dist/cli-command-help.d.ts +11 -0
- package/dist/cli-command-help.js +211 -0
- package/dist/cli-command-help.js.map +1 -0
- package/dist/cli-help.d.ts +5 -2
- package/dist/cli-help.js +122 -45
- package/dist/cli-help.js.map +1 -1
- package/dist/cli-option-definitions.d.ts +202 -0
- package/dist/cli-option-definitions.js +59 -0
- package/dist/cli-option-definitions.js.map +1 -0
- package/dist/cli.js +100 -100
- package/dist/cli.js.map +1 -1
- package/dist/commands/analyze-summary.d.ts +5 -0
- package/dist/commands/analyze-summary.js +89 -0
- package/dist/commands/analyze-summary.js.map +1 -0
- package/dist/commands/analyze.d.ts +6 -0
- package/dist/commands/analyze.js +128 -0
- package/dist/commands/analyze.js.map +1 -0
- package/dist/commands/bisect.d.ts +2 -2
- package/dist/commands/bisect.js +32 -3
- package/dist/commands/bisect.js.map +1 -1
- package/dist/commands/diagnose.d.ts +3 -2
- package/dist/commands/diagnose.js +355 -23
- package/dist/commands/diagnose.js.map +1 -1
- package/dist/commands/discover.d.ts +18 -2
- package/dist/commands/discover.js +215 -25
- package/dist/commands/discover.js.map +1 -1
- package/dist/commands/doctor.d.ts +2 -0
- package/dist/commands/doctor.js +66 -25
- package/dist/commands/doctor.js.map +1 -1
- package/dist/commands/investigate.d.ts +3 -2
- package/dist/commands/investigate.js +22 -3
- package/dist/commands/investigate.js.map +1 -1
- package/dist/commands/options.d.ts +123 -16
- package/dist/commands/options.js +24 -2
- package/dist/commands/options.js.map +1 -1
- package/dist/commands/prove.d.ts +2 -2
- package/dist/commands/prove.js +38 -1
- package/dist/commands/prove.js.map +1 -1
- package/dist/commands/repair.d.ts +8 -2
- package/dist/commands/repair.js +32 -9
- package/dist/commands/repair.js.map +1 -1
- package/dist/commands/replay.d.ts +2 -2
- package/dist/commands/replay.js +15 -2
- package/dist/commands/replay.js.map +1 -1
- package/dist/commands/report.d.ts +2 -2
- package/dist/commands/report.js +35 -10
- package/dist/commands/report.js.map +1 -1
- package/dist/commands/scan-summary.d.ts +7 -0
- package/dist/commands/scan-summary.js +175 -0
- package/dist/commands/scan-summary.js.map +1 -0
- package/dist/commands/scan.d.ts +9 -12
- package/dist/commands/scan.js +66 -62
- package/dist/commands/scan.js.map +1 -1
- package/dist/core/plan.js +1 -1
- package/dist/core/plan.js.map +1 -1
- package/dist/diagnosis/checkpoint.d.ts +6 -0
- package/dist/diagnosis/checkpoint.js +46 -0
- package/dist/diagnosis/checkpoint.js.map +1 -0
- package/dist/diagnosis/cli.d.ts +7 -0
- package/dist/diagnosis/cli.js +84 -0
- package/dist/diagnosis/cli.js.map +1 -0
- package/dist/diagnosis/recommendation.d.ts +13 -0
- package/dist/diagnosis/recommendation.js +95 -0
- package/dist/diagnosis/recommendation.js.map +1 -0
- package/dist/diagnosis/run-state.d.ts +52 -0
- package/dist/diagnosis/run-state.js +173 -0
- package/dist/diagnosis/run-state.js.map +1 -0
- package/dist/diagnosis/schema.d.ts +207 -0
- package/dist/diagnosis/schema.js +108 -0
- package/dist/diagnosis/schema.js.map +1 -0
- package/dist/diagnosis/solari-handoff.d.ts +9 -0
- package/dist/diagnosis/solari-handoff.js +40 -0
- package/dist/diagnosis/solari-handoff.js.map +1 -0
- package/dist/diagnosis/summary.d.ts +3 -0
- package/dist/diagnosis/summary.js +115 -0
- package/dist/diagnosis/summary.js.map +1 -0
- package/dist/discovery/auth-cookie.d.ts +19 -0
- package/dist/discovery/auth-cookie.js +26 -0
- package/dist/discovery/auth-cookie.js.map +1 -0
- package/dist/discovery/evaluate.d.ts +35 -2
- package/dist/discovery/evaluate.js +136 -30
- package/dist/discovery/evaluate.js.map +1 -1
- package/dist/discovery/event-loop.d.ts +25 -0
- package/dist/discovery/event-loop.js +84 -0
- package/dist/discovery/event-loop.js.map +1 -0
- package/dist/discovery/minimize.d.ts +61 -1
- package/dist/discovery/minimize.js +179 -7
- package/dist/discovery/minimize.js.map +1 -1
- package/dist/discovery/resource-loading.d.ts +25 -0
- package/dist/discovery/resource-loading.js +84 -0
- package/dist/discovery/resource-loading.js.map +1 -0
- package/dist/discovery/runner-environment.d.ts +26 -0
- package/dist/discovery/runner-environment.js +68 -0
- package/dist/discovery/runner-environment.js.map +1 -0
- package/dist/discovery/startup-event.d.ts +25 -0
- package/dist/discovery/startup-event.js +84 -0
- package/dist/discovery/startup-event.js.map +1 -0
- package/dist/discovery/storage-state.d.ts +26 -0
- package/dist/discovery/storage-state.js +86 -0
- package/dist/discovery/storage-state.js.map +1 -0
- package/dist/discovery/temporal-environment.d.ts +31 -0
- package/dist/discovery/temporal-environment.js +43 -0
- package/dist/discovery/temporal-environment.js.map +1 -0
- package/dist/discovery/visual-environment.d.ts +28 -0
- package/dist/discovery/visual-environment.js +42 -0
- package/dist/discovery/visual-environment.js.map +1 -0
- package/dist/domain/schema.d.ts +840 -20
- package/dist/domain/schema.js +216 -6
- package/dist/domain/schema.js.map +1 -1
- package/dist/faults/browser-context.d.ts +16 -0
- package/dist/faults/browser-context.js +60 -0
- package/dist/faults/browser-context.js.map +1 -0
- package/dist/faults/cookie-header.d.ts +5 -0
- package/dist/faults/cookie-header.js +25 -0
- package/dist/faults/cookie-header.js.map +1 -0
- package/dist/faults/document-bootstrap.d.ts +5 -0
- package/dist/faults/document-bootstrap.js +141 -0
- package/dist/faults/document-bootstrap.js.map +1 -0
- package/dist/faults/install.d.ts +1 -1
- package/dist/faults/install.js +199 -6
- package/dist/faults/install.js.map +1 -1
- package/dist/faults/pattern.d.ts +1 -0
- package/dist/faults/pattern.js +24 -0
- package/dist/faults/pattern.js.map +1 -0
- package/dist/investigator/agent.js +39 -17
- package/dist/investigator/agent.js.map +1 -1
- package/dist/investigator/ledger.d.ts +1 -1
- package/dist/investigator/ledger.js +2 -2
- package/dist/investigator/ledger.js.map +1 -1
- package/dist/investigator/safe-source.d.ts +1 -0
- package/dist/investigator/safe-source.js +12 -3
- package/dist/investigator/safe-source.js.map +1 -1
- package/dist/investigator/schema.d.ts +293 -2
- package/dist/investigator/schema.js +100 -2
- package/dist/investigator/schema.js.map +1 -1
- package/dist/proof/cli.d.ts +7 -0
- package/dist/proof/cli.js +108 -0
- package/dist/proof/cli.js.map +1 -0
- package/dist/proof/preflight.d.ts +4 -0
- package/dist/proof/preflight.js +9 -0
- package/dist/proof/preflight.js.map +1 -0
- package/dist/repair/generator.d.ts +12 -1
- package/dist/repair/generator.js +30 -6
- package/dist/repair/generator.js.map +1 -1
- package/dist/repair/remote-proof-runner.js +6 -10
- package/dist/repair/remote-proof-runner.js.map +1 -1
- package/dist/repair/schema.d.ts +77 -2
- package/dist/repair/schema.js +23 -2
- package/dist/repair/schema.js.map +1 -1
- package/dist/repair/solari-validator.d.ts +2 -0
- package/dist/repair/solari-validator.js +4 -6
- package/dist/repair/solari-validator.js.map +1 -1
- package/dist/repair/summary.d.ts +10 -0
- package/dist/repair/summary.js +58 -0
- package/dist/repair/summary.js.map +1 -0
- package/dist/repair/validator.d.ts +1 -0
- package/dist/repair/validator.js +53 -12
- package/dist/repair/validator.js.map +1 -1
- package/dist/report/bundle.js +16 -37
- package/dist/report/bundle.js.map +1 -1
- package/dist/report/model.js +131 -12
- package/dist/report/model.js.map +1 -1
- package/dist/report/open.d.ts +9 -0
- package/dist/report/open.js +23 -0
- package/dist/report/open.js.map +1 -1
- package/dist/report/report-client.css +2 -0
- package/dist/report/report-client.js +58 -0
- package/dist/report/schema.d.ts +115 -5
- package/dist/report/schema.js +24 -5
- package/dist/report/schema.js.map +1 -1
- package/dist/reproducer/schema.d.ts +89 -4
- package/dist/reproducer/schema.js +3 -4
- package/dist/reproducer/schema.js.map +1 -1
- package/dist/runner/execution-fault.d.ts +10 -0
- package/dist/runner/execution-fault.js +24 -0
- package/dist/runner/execution-fault.js.map +1 -0
- package/dist/runner/fault-proxy.d.ts +7 -0
- package/dist/runner/fault-proxy.js +366 -0
- package/dist/runner/fault-proxy.js.map +1 -0
- package/dist/runner/local.js +2 -2
- package/dist/runner/local.js.map +1 -1
- package/dist/runner/native-scan.d.ts +25 -0
- package/dist/runner/native-scan.js +306 -0
- package/dist/runner/native-scan.js.map +1 -0
- package/dist/runner/playwright-executor.d.ts +3 -0
- package/dist/runner/playwright-executor.js +125 -66
- package/dist/runner/playwright-executor.js.map +1 -1
- package/dist/runner/process-tree.d.ts +7 -0
- package/dist/runner/process-tree.js +62 -0
- package/dist/runner/process-tree.js.map +1 -0
- package/dist/runner/project-bridge.d.ts +7 -0
- package/dist/runner/project-bridge.js +83 -0
- package/dist/runner/project-bridge.js.map +1 -0
- package/dist/runner/trial-reporter.d.ts +7 -0
- package/dist/runner/trial-reporter.js +47 -0
- package/dist/runner/trial-reporter.js.map +1 -0
- package/dist/scan/failure-clusters.d.ts +24 -0
- package/dist/scan/failure-clusters.js +74 -0
- package/dist/scan/failure-clusters.js.map +1 -0
- package/dist/scan/schema.d.ts +170 -0
- package/dist/scan/schema.js +71 -0
- package/dist/scan/schema.js.map +1 -0
- package/dist/solari/executor.d.ts +5 -1
- package/dist/solari/executor.js +25 -17
- package/dist/solari/executor.js.map +1 -1
- package/dist/solari/run-demo.d.ts +13 -1
- package/dist/solari/run-demo.js +35 -16
- package/dist/solari/run-demo.js.map +1 -1
- package/dist/solari/usage.d.ts +8 -2
- package/dist/solari/usage.js +14 -4
- package/dist/solari/usage.js.map +1 -1
- package/dist/ui/boundary.d.ts +17 -0
- package/dist/ui/boundary.js +18 -0
- package/dist/ui/boundary.js.map +1 -0
- package/dist/ui/console.d.ts +4 -0
- package/dist/ui/console.js +11 -0
- package/dist/ui/console.js.map +1 -0
- package/dist/ui/document.d.ts +40 -0
- package/dist/ui/document.js +120 -0
- package/dist/ui/document.js.map +1 -0
- package/dist/ui/format.d.ts +8 -0
- package/dist/ui/format.js +32 -0
- package/dist/ui/format.js.map +1 -0
- package/dist/ui/progress.d.ts +17 -1
- package/dist/ui/progress.js +51 -8
- package/dist/ui/progress.js.map +1 -1
- package/dist/ui/status.d.ts +7 -0
- package/dist/ui/status.js +36 -0
- package/dist/ui/status.js.map +1 -0
- package/dist/ui/style.d.ts +8 -0
- package/dist/ui/style.js +22 -0
- package/dist/ui/style.js.map +1 -0
- package/dist/ui/text.d.ts +17 -0
- package/dist/ui/text.js +123 -0
- package/dist/ui/text.js.map +1 -0
- package/dist/ui/theme.d.ts +23 -0
- package/dist/ui/theme.js +77 -0
- package/dist/ui/theme.js.map +1 -0
- package/dist/ui/trial-progress.d.ts +13 -0
- package/dist/ui/trial-progress.js +42 -0
- package/dist/ui/trial-progress.js.map +1 -0
- package/package.json +14 -19
- package/dist/faults/network-delay.d.ts +0 -5
- package/dist/faults/network-delay.js +0 -34
- package/dist/faults/network-delay.js.map +0 -1
- package/dist/faults/request-failure.d.ts +0 -5
- package/dist/faults/request-failure.js +0 -24
- package/dist/faults/request-failure.js.map +0 -1
- package/dist/playwright.d.ts +0 -3
- package/dist/playwright.js +0 -21
- package/dist/playwright.js.map +0 -1
- package/dist/report/browser-entry.d.ts +0 -2
- package/dist/report/browser-entry.js +0 -15
- package/dist/report/browser-entry.js.map +0 -1
- package/dist/report/components/artifacts.d.ts +0 -4
- package/dist/report/components/artifacts.js +0 -6
- package/dist/report/components/artifacts.js.map +0 -1
- package/dist/report/components/experiments.d.ts +0 -4
- package/dist/report/components/experiments.js +0 -7
- package/dist/report/components/experiments.js.map +0 -1
- package/dist/report/components/hypotheses.d.ts +0 -4
- package/dist/report/components/hypotheses.js +0 -26
- package/dist/report/components/hypotheses.js.map +0 -1
- package/dist/report/components/indicators.d.ts +0 -32
- package/dist/report/components/indicators.js +0 -42
- package/dist/report/components/indicators.js.map +0 -1
- package/dist/report/components/layout.d.ts +0 -29
- package/dist/report/components/layout.js +0 -20
- package/dist/report/components/layout.js.map +0 -1
- package/dist/report/components/proof.d.ts +0 -4
- package/dist/report/components/proof.js +0 -34
- package/dist/report/components/proof.js.map +0 -1
- package/dist/report/components/reproduction.d.ts +0 -4
- package/dist/report/components/reproduction.js +0 -19
- package/dist/report/components/reproduction.js.map +0 -1
- package/dist/report/components/summary.d.ts +0 -4
- package/dist/report/components/summary.js +0 -12
- package/dist/report/components/summary.js.map +0 -1
- package/dist/report/components/verdict.d.ts +0 -4
- package/dist/report/components/verdict.js +0 -27
- package/dist/report/components/verdict.js.map +0 -1
- package/dist/report/report-app.d.ts +0 -6
- package/dist/report/report-app.js +0 -16
- package/dist/report/report-app.js.map +0 -1
- package/dist/report/report-details.css +0 -182
- package/dist/report/report.css +0 -404
package/dist/domain/schema.d.ts
CHANGED
|
@@ -1,53 +1,604 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
+
export declare const loadingResourceTypeSchema: z.ZodEnum<{
|
|
3
|
+
script: "script";
|
|
4
|
+
document: "document";
|
|
5
|
+
font: "font";
|
|
6
|
+
image: "image";
|
|
7
|
+
stylesheet: "stylesheet";
|
|
8
|
+
}>;
|
|
9
|
+
export declare const startupEventSchema: z.ZodEnum<{
|
|
10
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
11
|
+
load: "load";
|
|
12
|
+
}>;
|
|
13
|
+
export declare const browserStorageAreaSchema: z.ZodEnum<{
|
|
14
|
+
"local-storage": "local-storage";
|
|
15
|
+
"session-storage": "session-storage";
|
|
16
|
+
}>;
|
|
17
|
+
export declare const browserStorageKeySchema: z.ZodString;
|
|
18
|
+
export declare const cookieNameSchema: z.ZodString;
|
|
19
|
+
export declare const localeSchema: z.ZodString;
|
|
20
|
+
export declare const timeZoneSchema: z.ZodString;
|
|
21
|
+
export declare const authCookieExpiryFaultSchema: z.ZodObject<{
|
|
22
|
+
kind: z.ZodLiteral<"auth-cookie-expiry">;
|
|
23
|
+
pattern: z.ZodString;
|
|
24
|
+
cookieName: z.ZodString;
|
|
25
|
+
}, z.core.$strict>;
|
|
26
|
+
export declare const animationSpeedFaultSchema: z.ZodObject<{
|
|
27
|
+
kind: z.ZodLiteral<"animation-speed">;
|
|
28
|
+
pattern: z.ZodString;
|
|
29
|
+
rate: z.ZodNumber;
|
|
30
|
+
}, z.core.$strict>;
|
|
31
|
+
export declare const clockJumpFaultSchema: z.ZodObject<{
|
|
32
|
+
kind: z.ZodLiteral<"clock-jump">;
|
|
33
|
+
pattern: z.ZodString;
|
|
34
|
+
jumpAfterMs: z.ZodNumber;
|
|
35
|
+
offsetMs: z.ZodNumber;
|
|
36
|
+
}, z.core.$strict>;
|
|
37
|
+
export declare const localeFaultSchema: z.ZodObject<{
|
|
38
|
+
kind: z.ZodLiteral<"locale">;
|
|
39
|
+
pattern: z.ZodString;
|
|
40
|
+
locale: z.ZodString;
|
|
41
|
+
}, z.core.$strict>;
|
|
2
42
|
export declare const networkDelayFaultSchema: z.ZodObject<{
|
|
3
43
|
kind: z.ZodLiteral<"network-delay">;
|
|
4
44
|
pattern: z.ZodString;
|
|
5
45
|
delayMs: z.ZodNumber;
|
|
6
|
-
}, z.core.$
|
|
46
|
+
}, z.core.$strict>;
|
|
47
|
+
export declare const eventLoopStallFaultSchema: z.ZodObject<{
|
|
48
|
+
kind: z.ZodLiteral<"event-loop-stall">;
|
|
49
|
+
pattern: z.ZodString;
|
|
50
|
+
startAfterMs: z.ZodNumber;
|
|
51
|
+
durationMs: z.ZodNumber;
|
|
52
|
+
}, z.core.$strict>;
|
|
7
53
|
export declare const requestFailureFaultSchema: z.ZodObject<{
|
|
8
54
|
kind: z.ZodLiteral<"request-failure">;
|
|
9
55
|
pattern: z.ZodString;
|
|
10
56
|
statusCode: z.ZodNumber;
|
|
11
|
-
}, z.core.$
|
|
57
|
+
}, z.core.$strict>;
|
|
58
|
+
export declare const responseTruncationFaultSchema: z.ZodObject<{
|
|
59
|
+
kind: z.ZodLiteral<"response-truncation">;
|
|
60
|
+
pattern: z.ZodString;
|
|
61
|
+
removeBytes: z.ZodNumber;
|
|
62
|
+
}, z.core.$strict>;
|
|
63
|
+
export declare const responseDuplicationFaultSchema: z.ZodObject<{
|
|
64
|
+
kind: z.ZodLiteral<"response-duplication">;
|
|
65
|
+
pattern: z.ZodString;
|
|
66
|
+
duplicateBytes: z.ZodNumber;
|
|
67
|
+
}, z.core.$strict>;
|
|
68
|
+
export declare const responseReorderingFaultSchema: z.ZodObject<{
|
|
69
|
+
kind: z.ZodLiteral<"response-reordering">;
|
|
70
|
+
pattern: z.ZodString;
|
|
71
|
+
holdMs: z.ZodNumber;
|
|
72
|
+
}, z.core.$strict>;
|
|
73
|
+
export declare const resourceLoadingDelayFaultSchema: z.ZodObject<{
|
|
74
|
+
kind: z.ZodLiteral<"resource-loading-delay">;
|
|
75
|
+
pattern: z.ZodString;
|
|
76
|
+
resourceType: z.ZodEnum<{
|
|
77
|
+
script: "script";
|
|
78
|
+
document: "document";
|
|
79
|
+
font: "font";
|
|
80
|
+
image: "image";
|
|
81
|
+
stylesheet: "stylesheet";
|
|
82
|
+
}>;
|
|
83
|
+
delayMs: z.ZodNumber;
|
|
84
|
+
}, z.core.$strict>;
|
|
85
|
+
export declare const reducedMotionFaultSchema: z.ZodObject<{
|
|
86
|
+
kind: z.ZodLiteral<"reduced-motion">;
|
|
87
|
+
pattern: z.ZodString;
|
|
88
|
+
}, z.core.$strict>;
|
|
89
|
+
export declare const startupEventDelayFaultSchema: z.ZodObject<{
|
|
90
|
+
kind: z.ZodLiteral<"startup-event-delay">;
|
|
91
|
+
pattern: z.ZodString;
|
|
92
|
+
event: z.ZodEnum<{
|
|
93
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
94
|
+
load: "load";
|
|
95
|
+
}>;
|
|
96
|
+
delayMs: z.ZodNumber;
|
|
97
|
+
}, z.core.$strict>;
|
|
98
|
+
export declare const storageStateDelayFaultSchema: z.ZodObject<{
|
|
99
|
+
kind: z.ZodLiteral<"storage-state-delay">;
|
|
100
|
+
pattern: z.ZodString;
|
|
101
|
+
storage: z.ZodEnum<{
|
|
102
|
+
"local-storage": "local-storage";
|
|
103
|
+
"session-storage": "session-storage";
|
|
104
|
+
}>;
|
|
105
|
+
key: z.ZodString;
|
|
106
|
+
delayMs: z.ZodNumber;
|
|
107
|
+
}, z.core.$strict>;
|
|
108
|
+
export declare const timezoneFaultSchema: z.ZodObject<{
|
|
109
|
+
kind: z.ZodLiteral<"timezone">;
|
|
110
|
+
pattern: z.ZodString;
|
|
111
|
+
timezoneId: z.ZodString;
|
|
112
|
+
}, z.core.$strict>;
|
|
113
|
+
export declare const viewportFaultSchema: z.ZodObject<{
|
|
114
|
+
kind: z.ZodLiteral<"viewport">;
|
|
115
|
+
pattern: z.ZodString;
|
|
116
|
+
width: z.ZodNumber;
|
|
117
|
+
height: z.ZodNumber;
|
|
118
|
+
}, z.core.$strict>;
|
|
119
|
+
export declare const workerPressureFaultSchema: z.ZodObject<{
|
|
120
|
+
kind: z.ZodLiteral<"worker-pressure">;
|
|
121
|
+
pattern: z.ZodString;
|
|
122
|
+
workers: z.ZodNumber;
|
|
123
|
+
}, z.core.$strict>;
|
|
124
|
+
export declare const sharedStateInterferenceFaultSchema: z.ZodObject<{
|
|
125
|
+
kind: z.ZodLiteral<"shared-state-interference">;
|
|
126
|
+
pattern: z.ZodString;
|
|
127
|
+
copies: z.ZodNumber;
|
|
128
|
+
}, z.core.$strict>;
|
|
12
129
|
export declare const faultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
130
|
+
kind: z.ZodLiteral<"animation-speed">;
|
|
131
|
+
pattern: z.ZodString;
|
|
132
|
+
rate: z.ZodNumber;
|
|
133
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
134
|
+
kind: z.ZodLiteral<"auth-cookie-expiry">;
|
|
135
|
+
pattern: z.ZodString;
|
|
136
|
+
cookieName: z.ZodString;
|
|
137
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
138
|
+
kind: z.ZodLiteral<"clock-jump">;
|
|
139
|
+
pattern: z.ZodString;
|
|
140
|
+
jumpAfterMs: z.ZodNumber;
|
|
141
|
+
offsetMs: z.ZodNumber;
|
|
142
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
143
|
+
kind: z.ZodLiteral<"event-loop-stall">;
|
|
144
|
+
pattern: z.ZodString;
|
|
145
|
+
startAfterMs: z.ZodNumber;
|
|
146
|
+
durationMs: z.ZodNumber;
|
|
147
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
148
|
+
kind: z.ZodLiteral<"locale">;
|
|
149
|
+
pattern: z.ZodString;
|
|
150
|
+
locale: z.ZodString;
|
|
151
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13
152
|
kind: z.ZodLiteral<"network-delay">;
|
|
14
153
|
pattern: z.ZodString;
|
|
15
154
|
delayMs: z.ZodNumber;
|
|
16
|
-
}, z.core.$
|
|
155
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
156
|
+
kind: z.ZodLiteral<"request-failure">;
|
|
157
|
+
pattern: z.ZodString;
|
|
158
|
+
statusCode: z.ZodNumber;
|
|
159
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
160
|
+
kind: z.ZodLiteral<"reduced-motion">;
|
|
161
|
+
pattern: z.ZodString;
|
|
162
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
163
|
+
kind: z.ZodLiteral<"resource-loading-delay">;
|
|
164
|
+
pattern: z.ZodString;
|
|
165
|
+
resourceType: z.ZodEnum<{
|
|
166
|
+
script: "script";
|
|
167
|
+
document: "document";
|
|
168
|
+
font: "font";
|
|
169
|
+
image: "image";
|
|
170
|
+
stylesheet: "stylesheet";
|
|
171
|
+
}>;
|
|
172
|
+
delayMs: z.ZodNumber;
|
|
173
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
174
|
+
kind: z.ZodLiteral<"response-duplication">;
|
|
175
|
+
pattern: z.ZodString;
|
|
176
|
+
duplicateBytes: z.ZodNumber;
|
|
177
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
178
|
+
kind: z.ZodLiteral<"response-reordering">;
|
|
179
|
+
pattern: z.ZodString;
|
|
180
|
+
holdMs: z.ZodNumber;
|
|
181
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
182
|
+
kind: z.ZodLiteral<"response-truncation">;
|
|
183
|
+
pattern: z.ZodString;
|
|
184
|
+
removeBytes: z.ZodNumber;
|
|
185
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
186
|
+
kind: z.ZodLiteral<"shared-state-interference">;
|
|
187
|
+
pattern: z.ZodString;
|
|
188
|
+
copies: z.ZodNumber;
|
|
189
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
190
|
+
kind: z.ZodLiteral<"storage-state-delay">;
|
|
191
|
+
pattern: z.ZodString;
|
|
192
|
+
storage: z.ZodEnum<{
|
|
193
|
+
"local-storage": "local-storage";
|
|
194
|
+
"session-storage": "session-storage";
|
|
195
|
+
}>;
|
|
196
|
+
key: z.ZodString;
|
|
197
|
+
delayMs: z.ZodNumber;
|
|
198
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
199
|
+
kind: z.ZodLiteral<"startup-event-delay">;
|
|
200
|
+
pattern: z.ZodString;
|
|
201
|
+
event: z.ZodEnum<{
|
|
202
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
203
|
+
load: "load";
|
|
204
|
+
}>;
|
|
205
|
+
delayMs: z.ZodNumber;
|
|
206
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
207
|
+
kind: z.ZodLiteral<"timezone">;
|
|
208
|
+
pattern: z.ZodString;
|
|
209
|
+
timezoneId: z.ZodString;
|
|
210
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
211
|
+
kind: z.ZodLiteral<"viewport">;
|
|
212
|
+
pattern: z.ZodString;
|
|
213
|
+
width: z.ZodNumber;
|
|
214
|
+
height: z.ZodNumber;
|
|
215
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
216
|
+
kind: z.ZodLiteral<"worker-pressure">;
|
|
217
|
+
pattern: z.ZodString;
|
|
218
|
+
workers: z.ZodNumber;
|
|
219
|
+
}, z.core.$strict>], "kind">;
|
|
220
|
+
export type Fault = z.infer<typeof faultSchema>;
|
|
221
|
+
export declare const faultSetSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
222
|
+
kind: z.ZodLiteral<"animation-speed">;
|
|
223
|
+
pattern: z.ZodString;
|
|
224
|
+
rate: z.ZodNumber;
|
|
225
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
226
|
+
kind: z.ZodLiteral<"auth-cookie-expiry">;
|
|
227
|
+
pattern: z.ZodString;
|
|
228
|
+
cookieName: z.ZodString;
|
|
229
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
230
|
+
kind: z.ZodLiteral<"clock-jump">;
|
|
231
|
+
pattern: z.ZodString;
|
|
232
|
+
jumpAfterMs: z.ZodNumber;
|
|
233
|
+
offsetMs: z.ZodNumber;
|
|
234
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
235
|
+
kind: z.ZodLiteral<"event-loop-stall">;
|
|
236
|
+
pattern: z.ZodString;
|
|
237
|
+
startAfterMs: z.ZodNumber;
|
|
238
|
+
durationMs: z.ZodNumber;
|
|
239
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
240
|
+
kind: z.ZodLiteral<"locale">;
|
|
241
|
+
pattern: z.ZodString;
|
|
242
|
+
locale: z.ZodString;
|
|
243
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
244
|
+
kind: z.ZodLiteral<"network-delay">;
|
|
245
|
+
pattern: z.ZodString;
|
|
246
|
+
delayMs: z.ZodNumber;
|
|
247
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
17
248
|
kind: z.ZodLiteral<"request-failure">;
|
|
18
249
|
pattern: z.ZodString;
|
|
19
250
|
statusCode: z.ZodNumber;
|
|
20
|
-
}, z.core.$
|
|
251
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
252
|
+
kind: z.ZodLiteral<"reduced-motion">;
|
|
253
|
+
pattern: z.ZodString;
|
|
254
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
255
|
+
kind: z.ZodLiteral<"resource-loading-delay">;
|
|
256
|
+
pattern: z.ZodString;
|
|
257
|
+
resourceType: z.ZodEnum<{
|
|
258
|
+
script: "script";
|
|
259
|
+
document: "document";
|
|
260
|
+
font: "font";
|
|
261
|
+
image: "image";
|
|
262
|
+
stylesheet: "stylesheet";
|
|
263
|
+
}>;
|
|
264
|
+
delayMs: z.ZodNumber;
|
|
265
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
266
|
+
kind: z.ZodLiteral<"response-duplication">;
|
|
267
|
+
pattern: z.ZodString;
|
|
268
|
+
duplicateBytes: z.ZodNumber;
|
|
269
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
270
|
+
kind: z.ZodLiteral<"response-reordering">;
|
|
271
|
+
pattern: z.ZodString;
|
|
272
|
+
holdMs: z.ZodNumber;
|
|
273
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
274
|
+
kind: z.ZodLiteral<"response-truncation">;
|
|
275
|
+
pattern: z.ZodString;
|
|
276
|
+
removeBytes: z.ZodNumber;
|
|
277
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
278
|
+
kind: z.ZodLiteral<"shared-state-interference">;
|
|
279
|
+
pattern: z.ZodString;
|
|
280
|
+
copies: z.ZodNumber;
|
|
281
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
282
|
+
kind: z.ZodLiteral<"storage-state-delay">;
|
|
283
|
+
pattern: z.ZodString;
|
|
284
|
+
storage: z.ZodEnum<{
|
|
285
|
+
"local-storage": "local-storage";
|
|
286
|
+
"session-storage": "session-storage";
|
|
287
|
+
}>;
|
|
288
|
+
key: z.ZodString;
|
|
289
|
+
delayMs: z.ZodNumber;
|
|
290
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
291
|
+
kind: z.ZodLiteral<"startup-event-delay">;
|
|
292
|
+
pattern: z.ZodString;
|
|
293
|
+
event: z.ZodEnum<{
|
|
294
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
295
|
+
load: "load";
|
|
296
|
+
}>;
|
|
297
|
+
delayMs: z.ZodNumber;
|
|
298
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
299
|
+
kind: z.ZodLiteral<"timezone">;
|
|
300
|
+
pattern: z.ZodString;
|
|
301
|
+
timezoneId: z.ZodString;
|
|
302
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
303
|
+
kind: z.ZodLiteral<"viewport">;
|
|
304
|
+
pattern: z.ZodString;
|
|
305
|
+
width: z.ZodNumber;
|
|
306
|
+
height: z.ZodNumber;
|
|
307
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
308
|
+
kind: z.ZodLiteral<"worker-pressure">;
|
|
309
|
+
pattern: z.ZodString;
|
|
310
|
+
workers: z.ZodNumber;
|
|
311
|
+
}, z.core.$strict>], "kind">>;
|
|
312
|
+
export declare const trialFaultSetSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
313
|
+
kind: z.ZodLiteral<"animation-speed">;
|
|
314
|
+
pattern: z.ZodString;
|
|
315
|
+
rate: z.ZodNumber;
|
|
316
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
317
|
+
kind: z.ZodLiteral<"auth-cookie-expiry">;
|
|
318
|
+
pattern: z.ZodString;
|
|
319
|
+
cookieName: z.ZodString;
|
|
320
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
321
|
+
kind: z.ZodLiteral<"clock-jump">;
|
|
322
|
+
pattern: z.ZodString;
|
|
323
|
+
jumpAfterMs: z.ZodNumber;
|
|
324
|
+
offsetMs: z.ZodNumber;
|
|
325
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
326
|
+
kind: z.ZodLiteral<"event-loop-stall">;
|
|
327
|
+
pattern: z.ZodString;
|
|
328
|
+
startAfterMs: z.ZodNumber;
|
|
329
|
+
durationMs: z.ZodNumber;
|
|
330
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
331
|
+
kind: z.ZodLiteral<"locale">;
|
|
332
|
+
pattern: z.ZodString;
|
|
333
|
+
locale: z.ZodString;
|
|
334
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
335
|
+
kind: z.ZodLiteral<"network-delay">;
|
|
336
|
+
pattern: z.ZodString;
|
|
337
|
+
delayMs: z.ZodNumber;
|
|
338
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
339
|
+
kind: z.ZodLiteral<"request-failure">;
|
|
340
|
+
pattern: z.ZodString;
|
|
341
|
+
statusCode: z.ZodNumber;
|
|
342
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
343
|
+
kind: z.ZodLiteral<"reduced-motion">;
|
|
344
|
+
pattern: z.ZodString;
|
|
345
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
346
|
+
kind: z.ZodLiteral<"resource-loading-delay">;
|
|
347
|
+
pattern: z.ZodString;
|
|
348
|
+
resourceType: z.ZodEnum<{
|
|
349
|
+
script: "script";
|
|
350
|
+
document: "document";
|
|
351
|
+
font: "font";
|
|
352
|
+
image: "image";
|
|
353
|
+
stylesheet: "stylesheet";
|
|
354
|
+
}>;
|
|
355
|
+
delayMs: z.ZodNumber;
|
|
356
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
357
|
+
kind: z.ZodLiteral<"response-duplication">;
|
|
358
|
+
pattern: z.ZodString;
|
|
359
|
+
duplicateBytes: z.ZodNumber;
|
|
360
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
361
|
+
kind: z.ZodLiteral<"response-reordering">;
|
|
362
|
+
pattern: z.ZodString;
|
|
363
|
+
holdMs: z.ZodNumber;
|
|
364
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
365
|
+
kind: z.ZodLiteral<"response-truncation">;
|
|
366
|
+
pattern: z.ZodString;
|
|
367
|
+
removeBytes: z.ZodNumber;
|
|
368
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
369
|
+
kind: z.ZodLiteral<"shared-state-interference">;
|
|
370
|
+
pattern: z.ZodString;
|
|
371
|
+
copies: z.ZodNumber;
|
|
372
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
373
|
+
kind: z.ZodLiteral<"storage-state-delay">;
|
|
374
|
+
pattern: z.ZodString;
|
|
375
|
+
storage: z.ZodEnum<{
|
|
376
|
+
"local-storage": "local-storage";
|
|
377
|
+
"session-storage": "session-storage";
|
|
378
|
+
}>;
|
|
379
|
+
key: z.ZodString;
|
|
380
|
+
delayMs: z.ZodNumber;
|
|
381
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
382
|
+
kind: z.ZodLiteral<"startup-event-delay">;
|
|
383
|
+
pattern: z.ZodString;
|
|
384
|
+
event: z.ZodEnum<{
|
|
385
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
386
|
+
load: "load";
|
|
387
|
+
}>;
|
|
388
|
+
delayMs: z.ZodNumber;
|
|
389
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
390
|
+
kind: z.ZodLiteral<"timezone">;
|
|
391
|
+
pattern: z.ZodString;
|
|
392
|
+
timezoneId: z.ZodString;
|
|
393
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
394
|
+
kind: z.ZodLiteral<"viewport">;
|
|
395
|
+
pattern: z.ZodString;
|
|
396
|
+
width: z.ZodNumber;
|
|
397
|
+
height: z.ZodNumber;
|
|
398
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
399
|
+
kind: z.ZodLiteral<"worker-pressure">;
|
|
400
|
+
pattern: z.ZodString;
|
|
401
|
+
workers: z.ZodNumber;
|
|
402
|
+
}, z.core.$strict>], "kind">>;
|
|
21
403
|
export declare const runRequestSchema: z.ZodObject<{
|
|
22
404
|
selector: z.ZodString;
|
|
23
405
|
runs: z.ZodNumber;
|
|
24
406
|
seed: z.ZodNumber;
|
|
25
407
|
artifactDirectory: z.ZodString;
|
|
26
|
-
|
|
408
|
+
faults: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
409
|
+
kind: z.ZodLiteral<"animation-speed">;
|
|
410
|
+
pattern: z.ZodString;
|
|
411
|
+
rate: z.ZodNumber;
|
|
412
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
413
|
+
kind: z.ZodLiteral<"auth-cookie-expiry">;
|
|
414
|
+
pattern: z.ZodString;
|
|
415
|
+
cookieName: z.ZodString;
|
|
416
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
417
|
+
kind: z.ZodLiteral<"clock-jump">;
|
|
418
|
+
pattern: z.ZodString;
|
|
419
|
+
jumpAfterMs: z.ZodNumber;
|
|
420
|
+
offsetMs: z.ZodNumber;
|
|
421
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
422
|
+
kind: z.ZodLiteral<"event-loop-stall">;
|
|
423
|
+
pattern: z.ZodString;
|
|
424
|
+
startAfterMs: z.ZodNumber;
|
|
425
|
+
durationMs: z.ZodNumber;
|
|
426
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
427
|
+
kind: z.ZodLiteral<"locale">;
|
|
428
|
+
pattern: z.ZodString;
|
|
429
|
+
locale: z.ZodString;
|
|
430
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
27
431
|
kind: z.ZodLiteral<"network-delay">;
|
|
28
432
|
pattern: z.ZodString;
|
|
29
433
|
delayMs: z.ZodNumber;
|
|
30
|
-
}, z.core.$
|
|
434
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
31
435
|
kind: z.ZodLiteral<"request-failure">;
|
|
32
436
|
pattern: z.ZodString;
|
|
33
437
|
statusCode: z.ZodNumber;
|
|
34
|
-
}, z.core.$
|
|
438
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
439
|
+
kind: z.ZodLiteral<"reduced-motion">;
|
|
440
|
+
pattern: z.ZodString;
|
|
441
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
442
|
+
kind: z.ZodLiteral<"resource-loading-delay">;
|
|
443
|
+
pattern: z.ZodString;
|
|
444
|
+
resourceType: z.ZodEnum<{
|
|
445
|
+
script: "script";
|
|
446
|
+
document: "document";
|
|
447
|
+
font: "font";
|
|
448
|
+
image: "image";
|
|
449
|
+
stylesheet: "stylesheet";
|
|
450
|
+
}>;
|
|
451
|
+
delayMs: z.ZodNumber;
|
|
452
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
453
|
+
kind: z.ZodLiteral<"response-duplication">;
|
|
454
|
+
pattern: z.ZodString;
|
|
455
|
+
duplicateBytes: z.ZodNumber;
|
|
456
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
457
|
+
kind: z.ZodLiteral<"response-reordering">;
|
|
458
|
+
pattern: z.ZodString;
|
|
459
|
+
holdMs: z.ZodNumber;
|
|
460
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
461
|
+
kind: z.ZodLiteral<"response-truncation">;
|
|
462
|
+
pattern: z.ZodString;
|
|
463
|
+
removeBytes: z.ZodNumber;
|
|
464
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
465
|
+
kind: z.ZodLiteral<"shared-state-interference">;
|
|
466
|
+
pattern: z.ZodString;
|
|
467
|
+
copies: z.ZodNumber;
|
|
468
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
469
|
+
kind: z.ZodLiteral<"storage-state-delay">;
|
|
470
|
+
pattern: z.ZodString;
|
|
471
|
+
storage: z.ZodEnum<{
|
|
472
|
+
"local-storage": "local-storage";
|
|
473
|
+
"session-storage": "session-storage";
|
|
474
|
+
}>;
|
|
475
|
+
key: z.ZodString;
|
|
476
|
+
delayMs: z.ZodNumber;
|
|
477
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
478
|
+
kind: z.ZodLiteral<"startup-event-delay">;
|
|
479
|
+
pattern: z.ZodString;
|
|
480
|
+
event: z.ZodEnum<{
|
|
481
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
482
|
+
load: "load";
|
|
483
|
+
}>;
|
|
484
|
+
delayMs: z.ZodNumber;
|
|
485
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
486
|
+
kind: z.ZodLiteral<"timezone">;
|
|
487
|
+
pattern: z.ZodString;
|
|
488
|
+
timezoneId: z.ZodString;
|
|
489
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
490
|
+
kind: z.ZodLiteral<"viewport">;
|
|
491
|
+
pattern: z.ZodString;
|
|
492
|
+
width: z.ZodNumber;
|
|
493
|
+
height: z.ZodNumber;
|
|
494
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
495
|
+
kind: z.ZodLiteral<"worker-pressure">;
|
|
496
|
+
pattern: z.ZodString;
|
|
497
|
+
workers: z.ZodNumber;
|
|
498
|
+
}, z.core.$strict>], "kind">>;
|
|
35
499
|
}, z.core.$strip>;
|
|
36
500
|
export declare const trialPlanSchema: z.ZodObject<{
|
|
37
501
|
trialId: z.ZodString;
|
|
38
502
|
index: z.ZodNumber;
|
|
39
503
|
seed: z.ZodNumber;
|
|
40
|
-
|
|
504
|
+
faults: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
505
|
+
kind: z.ZodLiteral<"animation-speed">;
|
|
506
|
+
pattern: z.ZodString;
|
|
507
|
+
rate: z.ZodNumber;
|
|
508
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
509
|
+
kind: z.ZodLiteral<"auth-cookie-expiry">;
|
|
510
|
+
pattern: z.ZodString;
|
|
511
|
+
cookieName: z.ZodString;
|
|
512
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
513
|
+
kind: z.ZodLiteral<"clock-jump">;
|
|
514
|
+
pattern: z.ZodString;
|
|
515
|
+
jumpAfterMs: z.ZodNumber;
|
|
516
|
+
offsetMs: z.ZodNumber;
|
|
517
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
518
|
+
kind: z.ZodLiteral<"event-loop-stall">;
|
|
519
|
+
pattern: z.ZodString;
|
|
520
|
+
startAfterMs: z.ZodNumber;
|
|
521
|
+
durationMs: z.ZodNumber;
|
|
522
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
523
|
+
kind: z.ZodLiteral<"locale">;
|
|
524
|
+
pattern: z.ZodString;
|
|
525
|
+
locale: z.ZodString;
|
|
526
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
41
527
|
kind: z.ZodLiteral<"network-delay">;
|
|
42
528
|
pattern: z.ZodString;
|
|
43
529
|
delayMs: z.ZodNumber;
|
|
44
|
-
}, z.core.$
|
|
530
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
45
531
|
kind: z.ZodLiteral<"request-failure">;
|
|
46
532
|
pattern: z.ZodString;
|
|
47
533
|
statusCode: z.ZodNumber;
|
|
48
|
-
}, z.core.$
|
|
534
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
535
|
+
kind: z.ZodLiteral<"reduced-motion">;
|
|
536
|
+
pattern: z.ZodString;
|
|
537
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
538
|
+
kind: z.ZodLiteral<"resource-loading-delay">;
|
|
539
|
+
pattern: z.ZodString;
|
|
540
|
+
resourceType: z.ZodEnum<{
|
|
541
|
+
script: "script";
|
|
542
|
+
document: "document";
|
|
543
|
+
font: "font";
|
|
544
|
+
image: "image";
|
|
545
|
+
stylesheet: "stylesheet";
|
|
546
|
+
}>;
|
|
547
|
+
delayMs: z.ZodNumber;
|
|
548
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
549
|
+
kind: z.ZodLiteral<"response-duplication">;
|
|
550
|
+
pattern: z.ZodString;
|
|
551
|
+
duplicateBytes: z.ZodNumber;
|
|
552
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
553
|
+
kind: z.ZodLiteral<"response-reordering">;
|
|
554
|
+
pattern: z.ZodString;
|
|
555
|
+
holdMs: z.ZodNumber;
|
|
556
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
557
|
+
kind: z.ZodLiteral<"response-truncation">;
|
|
558
|
+
pattern: z.ZodString;
|
|
559
|
+
removeBytes: z.ZodNumber;
|
|
560
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
561
|
+
kind: z.ZodLiteral<"shared-state-interference">;
|
|
562
|
+
pattern: z.ZodString;
|
|
563
|
+
copies: z.ZodNumber;
|
|
564
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
565
|
+
kind: z.ZodLiteral<"storage-state-delay">;
|
|
566
|
+
pattern: z.ZodString;
|
|
567
|
+
storage: z.ZodEnum<{
|
|
568
|
+
"local-storage": "local-storage";
|
|
569
|
+
"session-storage": "session-storage";
|
|
570
|
+
}>;
|
|
571
|
+
key: z.ZodString;
|
|
572
|
+
delayMs: z.ZodNumber;
|
|
573
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
574
|
+
kind: z.ZodLiteral<"startup-event-delay">;
|
|
575
|
+
pattern: z.ZodString;
|
|
576
|
+
event: z.ZodEnum<{
|
|
577
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
578
|
+
load: "load";
|
|
579
|
+
}>;
|
|
580
|
+
delayMs: z.ZodNumber;
|
|
581
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
582
|
+
kind: z.ZodLiteral<"timezone">;
|
|
583
|
+
pattern: z.ZodString;
|
|
584
|
+
timezoneId: z.ZodString;
|
|
585
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
586
|
+
kind: z.ZodLiteral<"viewport">;
|
|
587
|
+
pattern: z.ZodString;
|
|
588
|
+
width: z.ZodNumber;
|
|
589
|
+
height: z.ZodNumber;
|
|
590
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
591
|
+
kind: z.ZodLiteral<"worker-pressure">;
|
|
592
|
+
pattern: z.ZodString;
|
|
593
|
+
workers: z.ZodNumber;
|
|
594
|
+
}, z.core.$strict>], "kind">>;
|
|
49
595
|
}, z.core.$strip>;
|
|
50
596
|
export declare const trialOutcomeSchema: z.ZodObject<{
|
|
597
|
+
artifacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
598
|
+
contentType: z.ZodString;
|
|
599
|
+
name: z.ZodString;
|
|
600
|
+
path: z.ZodString;
|
|
601
|
+
}, z.core.$strip>>>;
|
|
51
602
|
status: z.ZodEnum<{
|
|
52
603
|
error: "error";
|
|
53
604
|
passed: "passed";
|
|
@@ -75,15 +626,97 @@ export declare const runEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
75
626
|
runs: z.ZodNumber;
|
|
76
627
|
seed: z.ZodNumber;
|
|
77
628
|
artifactDirectory: z.ZodString;
|
|
78
|
-
|
|
629
|
+
faults: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
630
|
+
kind: z.ZodLiteral<"animation-speed">;
|
|
631
|
+
pattern: z.ZodString;
|
|
632
|
+
rate: z.ZodNumber;
|
|
633
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
634
|
+
kind: z.ZodLiteral<"auth-cookie-expiry">;
|
|
635
|
+
pattern: z.ZodString;
|
|
636
|
+
cookieName: z.ZodString;
|
|
637
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
638
|
+
kind: z.ZodLiteral<"clock-jump">;
|
|
639
|
+
pattern: z.ZodString;
|
|
640
|
+
jumpAfterMs: z.ZodNumber;
|
|
641
|
+
offsetMs: z.ZodNumber;
|
|
642
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
643
|
+
kind: z.ZodLiteral<"event-loop-stall">;
|
|
644
|
+
pattern: z.ZodString;
|
|
645
|
+
startAfterMs: z.ZodNumber;
|
|
646
|
+
durationMs: z.ZodNumber;
|
|
647
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
648
|
+
kind: z.ZodLiteral<"locale">;
|
|
649
|
+
pattern: z.ZodString;
|
|
650
|
+
locale: z.ZodString;
|
|
651
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
79
652
|
kind: z.ZodLiteral<"network-delay">;
|
|
80
653
|
pattern: z.ZodString;
|
|
81
654
|
delayMs: z.ZodNumber;
|
|
82
|
-
}, z.core.$
|
|
655
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
83
656
|
kind: z.ZodLiteral<"request-failure">;
|
|
84
657
|
pattern: z.ZodString;
|
|
85
658
|
statusCode: z.ZodNumber;
|
|
86
|
-
}, z.core.$
|
|
659
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
660
|
+
kind: z.ZodLiteral<"reduced-motion">;
|
|
661
|
+
pattern: z.ZodString;
|
|
662
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
663
|
+
kind: z.ZodLiteral<"resource-loading-delay">;
|
|
664
|
+
pattern: z.ZodString;
|
|
665
|
+
resourceType: z.ZodEnum<{
|
|
666
|
+
script: "script";
|
|
667
|
+
document: "document";
|
|
668
|
+
font: "font";
|
|
669
|
+
image: "image";
|
|
670
|
+
stylesheet: "stylesheet";
|
|
671
|
+
}>;
|
|
672
|
+
delayMs: z.ZodNumber;
|
|
673
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
674
|
+
kind: z.ZodLiteral<"response-duplication">;
|
|
675
|
+
pattern: z.ZodString;
|
|
676
|
+
duplicateBytes: z.ZodNumber;
|
|
677
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
678
|
+
kind: z.ZodLiteral<"response-reordering">;
|
|
679
|
+
pattern: z.ZodString;
|
|
680
|
+
holdMs: z.ZodNumber;
|
|
681
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
682
|
+
kind: z.ZodLiteral<"response-truncation">;
|
|
683
|
+
pattern: z.ZodString;
|
|
684
|
+
removeBytes: z.ZodNumber;
|
|
685
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
686
|
+
kind: z.ZodLiteral<"shared-state-interference">;
|
|
687
|
+
pattern: z.ZodString;
|
|
688
|
+
copies: z.ZodNumber;
|
|
689
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
690
|
+
kind: z.ZodLiteral<"storage-state-delay">;
|
|
691
|
+
pattern: z.ZodString;
|
|
692
|
+
storage: z.ZodEnum<{
|
|
693
|
+
"local-storage": "local-storage";
|
|
694
|
+
"session-storage": "session-storage";
|
|
695
|
+
}>;
|
|
696
|
+
key: z.ZodString;
|
|
697
|
+
delayMs: z.ZodNumber;
|
|
698
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
699
|
+
kind: z.ZodLiteral<"startup-event-delay">;
|
|
700
|
+
pattern: z.ZodString;
|
|
701
|
+
event: z.ZodEnum<{
|
|
702
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
703
|
+
load: "load";
|
|
704
|
+
}>;
|
|
705
|
+
delayMs: z.ZodNumber;
|
|
706
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
707
|
+
kind: z.ZodLiteral<"timezone">;
|
|
708
|
+
pattern: z.ZodString;
|
|
709
|
+
timezoneId: z.ZodString;
|
|
710
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
711
|
+
kind: z.ZodLiteral<"viewport">;
|
|
712
|
+
pattern: z.ZodString;
|
|
713
|
+
width: z.ZodNumber;
|
|
714
|
+
height: z.ZodNumber;
|
|
715
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
716
|
+
kind: z.ZodLiteral<"worker-pressure">;
|
|
717
|
+
pattern: z.ZodString;
|
|
718
|
+
workers: z.ZodNumber;
|
|
719
|
+
}, z.core.$strict>], "kind">>;
|
|
87
720
|
}, z.core.$strip>;
|
|
88
721
|
}, z.core.$strip>, z.ZodObject<{
|
|
89
722
|
runId: z.ZodString;
|
|
@@ -93,15 +726,97 @@ export declare const runEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
93
726
|
trialId: z.ZodString;
|
|
94
727
|
index: z.ZodNumber;
|
|
95
728
|
seed: z.ZodNumber;
|
|
96
|
-
|
|
729
|
+
faults: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
730
|
+
kind: z.ZodLiteral<"animation-speed">;
|
|
731
|
+
pattern: z.ZodString;
|
|
732
|
+
rate: z.ZodNumber;
|
|
733
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
734
|
+
kind: z.ZodLiteral<"auth-cookie-expiry">;
|
|
735
|
+
pattern: z.ZodString;
|
|
736
|
+
cookieName: z.ZodString;
|
|
737
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
738
|
+
kind: z.ZodLiteral<"clock-jump">;
|
|
739
|
+
pattern: z.ZodString;
|
|
740
|
+
jumpAfterMs: z.ZodNumber;
|
|
741
|
+
offsetMs: z.ZodNumber;
|
|
742
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
743
|
+
kind: z.ZodLiteral<"event-loop-stall">;
|
|
744
|
+
pattern: z.ZodString;
|
|
745
|
+
startAfterMs: z.ZodNumber;
|
|
746
|
+
durationMs: z.ZodNumber;
|
|
747
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
748
|
+
kind: z.ZodLiteral<"locale">;
|
|
749
|
+
pattern: z.ZodString;
|
|
750
|
+
locale: z.ZodString;
|
|
751
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
97
752
|
kind: z.ZodLiteral<"network-delay">;
|
|
98
753
|
pattern: z.ZodString;
|
|
99
754
|
delayMs: z.ZodNumber;
|
|
100
|
-
}, z.core.$
|
|
755
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
101
756
|
kind: z.ZodLiteral<"request-failure">;
|
|
102
757
|
pattern: z.ZodString;
|
|
103
758
|
statusCode: z.ZodNumber;
|
|
104
|
-
}, z.core.$
|
|
759
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
760
|
+
kind: z.ZodLiteral<"reduced-motion">;
|
|
761
|
+
pattern: z.ZodString;
|
|
762
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
763
|
+
kind: z.ZodLiteral<"resource-loading-delay">;
|
|
764
|
+
pattern: z.ZodString;
|
|
765
|
+
resourceType: z.ZodEnum<{
|
|
766
|
+
script: "script";
|
|
767
|
+
document: "document";
|
|
768
|
+
font: "font";
|
|
769
|
+
image: "image";
|
|
770
|
+
stylesheet: "stylesheet";
|
|
771
|
+
}>;
|
|
772
|
+
delayMs: z.ZodNumber;
|
|
773
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
774
|
+
kind: z.ZodLiteral<"response-duplication">;
|
|
775
|
+
pattern: z.ZodString;
|
|
776
|
+
duplicateBytes: z.ZodNumber;
|
|
777
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
778
|
+
kind: z.ZodLiteral<"response-reordering">;
|
|
779
|
+
pattern: z.ZodString;
|
|
780
|
+
holdMs: z.ZodNumber;
|
|
781
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
782
|
+
kind: z.ZodLiteral<"response-truncation">;
|
|
783
|
+
pattern: z.ZodString;
|
|
784
|
+
removeBytes: z.ZodNumber;
|
|
785
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
786
|
+
kind: z.ZodLiteral<"shared-state-interference">;
|
|
787
|
+
pattern: z.ZodString;
|
|
788
|
+
copies: z.ZodNumber;
|
|
789
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
790
|
+
kind: z.ZodLiteral<"storage-state-delay">;
|
|
791
|
+
pattern: z.ZodString;
|
|
792
|
+
storage: z.ZodEnum<{
|
|
793
|
+
"local-storage": "local-storage";
|
|
794
|
+
"session-storage": "session-storage";
|
|
795
|
+
}>;
|
|
796
|
+
key: z.ZodString;
|
|
797
|
+
delayMs: z.ZodNumber;
|
|
798
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
799
|
+
kind: z.ZodLiteral<"startup-event-delay">;
|
|
800
|
+
pattern: z.ZodString;
|
|
801
|
+
event: z.ZodEnum<{
|
|
802
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
803
|
+
load: "load";
|
|
804
|
+
}>;
|
|
805
|
+
delayMs: z.ZodNumber;
|
|
806
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
807
|
+
kind: z.ZodLiteral<"timezone">;
|
|
808
|
+
pattern: z.ZodString;
|
|
809
|
+
timezoneId: z.ZodString;
|
|
810
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
811
|
+
kind: z.ZodLiteral<"viewport">;
|
|
812
|
+
pattern: z.ZodString;
|
|
813
|
+
width: z.ZodNumber;
|
|
814
|
+
height: z.ZodNumber;
|
|
815
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
816
|
+
kind: z.ZodLiteral<"worker-pressure">;
|
|
817
|
+
pattern: z.ZodString;
|
|
818
|
+
workers: z.ZodNumber;
|
|
819
|
+
}, z.core.$strict>], "kind">>;
|
|
105
820
|
}, z.core.$strip>;
|
|
106
821
|
}, z.core.$strip>, z.ZodObject<{
|
|
107
822
|
runId: z.ZodString;
|
|
@@ -111,17 +826,104 @@ export declare const runEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
111
826
|
trialId: z.ZodString;
|
|
112
827
|
index: z.ZodNumber;
|
|
113
828
|
seed: z.ZodNumber;
|
|
114
|
-
|
|
829
|
+
faults: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
830
|
+
kind: z.ZodLiteral<"animation-speed">;
|
|
831
|
+
pattern: z.ZodString;
|
|
832
|
+
rate: z.ZodNumber;
|
|
833
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
834
|
+
kind: z.ZodLiteral<"auth-cookie-expiry">;
|
|
835
|
+
pattern: z.ZodString;
|
|
836
|
+
cookieName: z.ZodString;
|
|
837
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
838
|
+
kind: z.ZodLiteral<"clock-jump">;
|
|
839
|
+
pattern: z.ZodString;
|
|
840
|
+
jumpAfterMs: z.ZodNumber;
|
|
841
|
+
offsetMs: z.ZodNumber;
|
|
842
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
843
|
+
kind: z.ZodLiteral<"event-loop-stall">;
|
|
844
|
+
pattern: z.ZodString;
|
|
845
|
+
startAfterMs: z.ZodNumber;
|
|
846
|
+
durationMs: z.ZodNumber;
|
|
847
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
848
|
+
kind: z.ZodLiteral<"locale">;
|
|
849
|
+
pattern: z.ZodString;
|
|
850
|
+
locale: z.ZodString;
|
|
851
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
115
852
|
kind: z.ZodLiteral<"network-delay">;
|
|
116
853
|
pattern: z.ZodString;
|
|
117
854
|
delayMs: z.ZodNumber;
|
|
118
|
-
}, z.core.$
|
|
855
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
119
856
|
kind: z.ZodLiteral<"request-failure">;
|
|
120
857
|
pattern: z.ZodString;
|
|
121
858
|
statusCode: z.ZodNumber;
|
|
122
|
-
}, z.core.$
|
|
859
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
860
|
+
kind: z.ZodLiteral<"reduced-motion">;
|
|
861
|
+
pattern: z.ZodString;
|
|
862
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
863
|
+
kind: z.ZodLiteral<"resource-loading-delay">;
|
|
864
|
+
pattern: z.ZodString;
|
|
865
|
+
resourceType: z.ZodEnum<{
|
|
866
|
+
script: "script";
|
|
867
|
+
document: "document";
|
|
868
|
+
font: "font";
|
|
869
|
+
image: "image";
|
|
870
|
+
stylesheet: "stylesheet";
|
|
871
|
+
}>;
|
|
872
|
+
delayMs: z.ZodNumber;
|
|
873
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
874
|
+
kind: z.ZodLiteral<"response-duplication">;
|
|
875
|
+
pattern: z.ZodString;
|
|
876
|
+
duplicateBytes: z.ZodNumber;
|
|
877
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
878
|
+
kind: z.ZodLiteral<"response-reordering">;
|
|
879
|
+
pattern: z.ZodString;
|
|
880
|
+
holdMs: z.ZodNumber;
|
|
881
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
882
|
+
kind: z.ZodLiteral<"response-truncation">;
|
|
883
|
+
pattern: z.ZodString;
|
|
884
|
+
removeBytes: z.ZodNumber;
|
|
885
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
886
|
+
kind: z.ZodLiteral<"shared-state-interference">;
|
|
887
|
+
pattern: z.ZodString;
|
|
888
|
+
copies: z.ZodNumber;
|
|
889
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
890
|
+
kind: z.ZodLiteral<"storage-state-delay">;
|
|
891
|
+
pattern: z.ZodString;
|
|
892
|
+
storage: z.ZodEnum<{
|
|
893
|
+
"local-storage": "local-storage";
|
|
894
|
+
"session-storage": "session-storage";
|
|
895
|
+
}>;
|
|
896
|
+
key: z.ZodString;
|
|
897
|
+
delayMs: z.ZodNumber;
|
|
898
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
899
|
+
kind: z.ZodLiteral<"startup-event-delay">;
|
|
900
|
+
pattern: z.ZodString;
|
|
901
|
+
event: z.ZodEnum<{
|
|
902
|
+
"dom-content-loaded": "dom-content-loaded";
|
|
903
|
+
load: "load";
|
|
904
|
+
}>;
|
|
905
|
+
delayMs: z.ZodNumber;
|
|
906
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
907
|
+
kind: z.ZodLiteral<"timezone">;
|
|
908
|
+
pattern: z.ZodString;
|
|
909
|
+
timezoneId: z.ZodString;
|
|
910
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
911
|
+
kind: z.ZodLiteral<"viewport">;
|
|
912
|
+
pattern: z.ZodString;
|
|
913
|
+
width: z.ZodNumber;
|
|
914
|
+
height: z.ZodNumber;
|
|
915
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
916
|
+
kind: z.ZodLiteral<"worker-pressure">;
|
|
917
|
+
pattern: z.ZodString;
|
|
918
|
+
workers: z.ZodNumber;
|
|
919
|
+
}, z.core.$strict>], "kind">>;
|
|
123
920
|
}, z.core.$strip>;
|
|
124
921
|
outcome: z.ZodObject<{
|
|
922
|
+
artifacts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
923
|
+
contentType: z.ZodString;
|
|
924
|
+
name: z.ZodString;
|
|
925
|
+
path: z.ZodString;
|
|
926
|
+
}, z.core.$strip>>>;
|
|
125
927
|
status: z.ZodEnum<{
|
|
126
928
|
error: "error";
|
|
127
929
|
passed: "passed";
|
|
@@ -145,11 +947,29 @@ export declare const runEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
145
947
|
faultFailureRate: z.ZodNumber;
|
|
146
948
|
}, z.core.$strip>;
|
|
147
949
|
}, z.core.$strip>], "type">;
|
|
148
|
-
export type Fault = z.infer<typeof faultSchema>;
|
|
149
950
|
export type NetworkDelayFault = z.infer<typeof networkDelayFaultSchema>;
|
|
951
|
+
export type AnimationSpeedFault = z.infer<typeof animationSpeedFaultSchema>;
|
|
952
|
+
export type AuthCookieExpiryFault = z.infer<typeof authCookieExpiryFaultSchema>;
|
|
953
|
+
export type BrowserStorageArea = z.infer<typeof browserStorageAreaSchema>;
|
|
954
|
+
export type ClockJumpFault = z.infer<typeof clockJumpFaultSchema>;
|
|
955
|
+
export type EventLoopStallFault = z.infer<typeof eventLoopStallFaultSchema>;
|
|
956
|
+
export type LoadingResourceType = z.infer<typeof loadingResourceTypeSchema>;
|
|
957
|
+
export type LocaleFault = z.infer<typeof localeFaultSchema>;
|
|
150
958
|
export type RequestFailureFault = z.infer<typeof requestFailureFaultSchema>;
|
|
959
|
+
export type ReducedMotionFault = z.infer<typeof reducedMotionFaultSchema>;
|
|
960
|
+
export type ResourceLoadingDelayFault = z.infer<typeof resourceLoadingDelayFaultSchema>;
|
|
961
|
+
export type ResponseDuplicationFault = z.infer<typeof responseDuplicationFaultSchema>;
|
|
962
|
+
export type ResponseReorderingFault = z.infer<typeof responseReorderingFaultSchema>;
|
|
963
|
+
export type ResponseTruncationFault = z.infer<typeof responseTruncationFaultSchema>;
|
|
964
|
+
export type SharedStateInterferenceFault = z.infer<typeof sharedStateInterferenceFaultSchema>;
|
|
965
|
+
export type StartupEvent = z.infer<typeof startupEventSchema>;
|
|
966
|
+
export type StartupEventDelayFault = z.infer<typeof startupEventDelayFaultSchema>;
|
|
967
|
+
export type StorageStateDelayFault = z.infer<typeof storageStateDelayFaultSchema>;
|
|
968
|
+
export type TimezoneFault = z.infer<typeof timezoneFaultSchema>;
|
|
151
969
|
export type RunEvent = z.infer<typeof runEventSchema>;
|
|
152
970
|
export type RunRequest = z.infer<typeof runRequestSchema>;
|
|
153
971
|
export type RunSummary = z.infer<typeof runSummarySchema>;
|
|
154
972
|
export type TrialOutcome = z.infer<typeof trialOutcomeSchema>;
|
|
155
973
|
export type TrialPlan = z.infer<typeof trialPlanSchema>;
|
|
974
|
+
export type ViewportFault = z.infer<typeof viewportFaultSchema>;
|
|
975
|
+
export type WorkerPressureFault = z.infer<typeof workerPressureFaultSchema>;
|