fix: add scenario example to protocol-lab, sync EnvironmentPolicy types

This commit is contained in:
John Dvorak
2026-05-22 13:33:48 -07:00
parent 60e710370a
commit 04359613b5
3 changed files with 16 additions and 1 deletions
+7
View File
@@ -38,6 +38,13 @@ export interface EnvironmentPolicy {
allowedModes?: ('verify' | 'observe' | 'qualify')[];
blockQualify?: boolean;
allowChaosOnProtected?: boolean;
allowVerify?: boolean;
allowObserve?: boolean;
allowQualify?: boolean;
allowChaos?: boolean;
allowBlocking?: boolean;
requireSink?: boolean;
sinks?: Record<string, unknown>;
[key: string]: unknown;
}