@holonograph/client 0.8.0 → 0.10.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/README.md +66 -1
- package/dist/index.d.ts +1854 -196
- package/dist/index.js +104 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1781,19 +1781,19 @@ declare const SubstrateSnapshotSchema: ZodObject<{
|
|
|
1781
1781
|
|
|
1782
1782
|
columns: ZodRecord<ZodString, ZodString>;
|
|
1783
1783
|
}, "strip", ZodTypeAny$1, {
|
|
1784
|
-
provenance: "
|
|
1784
|
+
provenance: "replay" | "local_dev" | "pre_deploy_gate" | "scheduled_production_eval" | "manual_production_run";
|
|
1785
1785
|
timestamp: string;
|
|
1786
1786
|
lensVersion: string;
|
|
1787
1787
|
lightSourceIdentifier: string;
|
|
1788
|
-
runMode: "
|
|
1788
|
+
runMode: "production" | "test" | "eval" | "replay" | "local_dev";
|
|
1789
1789
|
correlationId: string;
|
|
1790
1790
|
columns: Record<string, string>;
|
|
1791
1791
|
}, {
|
|
1792
|
-
provenance: "
|
|
1792
|
+
provenance: "replay" | "local_dev" | "pre_deploy_gate" | "scheduled_production_eval" | "manual_production_run";
|
|
1793
1793
|
timestamp: string;
|
|
1794
1794
|
lensVersion: string;
|
|
1795
1795
|
lightSourceIdentifier: string;
|
|
1796
|
-
runMode: "
|
|
1796
|
+
runMode: "production" | "test" | "eval" | "replay" | "local_dev";
|
|
1797
1797
|
correlationId: string;
|
|
1798
1798
|
columns: Record<string, string>;
|
|
1799
1799
|
}>;
|
|
@@ -1897,10 +1897,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
1897
1897
|
} | undefined;
|
|
1898
1898
|
}>>;
|
|
1899
1899
|
}, "strip", ZodTypeAny$1, {
|
|
1900
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
1900
1901
|
enabled: boolean;
|
|
1901
1902
|
passThreshold: number;
|
|
1902
1903
|
failureAction: "retry" | "flag" | "block";
|
|
1903
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
1904
1904
|
retry?: {
|
|
1905
1905
|
maxAttempts: number;
|
|
1906
1906
|
augmentPrompt?: string | undefined;
|
|
@@ -1922,6 +1922,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
1922
1922
|
}, {
|
|
1923
1923
|
passThreshold: number;
|
|
1924
1924
|
failureAction: "retry" | "flag" | "block";
|
|
1925
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
1925
1926
|
retry?: {
|
|
1926
1927
|
maxAttempts: number;
|
|
1927
1928
|
augmentPrompt?: string | undefined;
|
|
@@ -1941,12 +1942,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
1941
1942
|
} | undefined;
|
|
1942
1943
|
} | undefined;
|
|
1943
1944
|
enabled?: boolean | undefined;
|
|
1944
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
1945
1945
|
}>, {
|
|
1946
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
1946
1947
|
enabled: boolean;
|
|
1947
1948
|
passThreshold: number;
|
|
1948
1949
|
failureAction: "retry" | "flag" | "block";
|
|
1949
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
1950
1950
|
retry?: {
|
|
1951
1951
|
maxAttempts: number;
|
|
1952
1952
|
augmentPrompt?: string | undefined;
|
|
@@ -1968,6 +1968,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
1968
1968
|
}, {
|
|
1969
1969
|
passThreshold: number;
|
|
1970
1970
|
failureAction: "retry" | "flag" | "block";
|
|
1971
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
1971
1972
|
retry?: {
|
|
1972
1973
|
maxAttempts: number;
|
|
1973
1974
|
augmentPrompt?: string | undefined;
|
|
@@ -1987,12 +1988,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
1987
1988
|
} | undefined;
|
|
1988
1989
|
} | undefined;
|
|
1989
1990
|
enabled?: boolean | undefined;
|
|
1990
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
1991
1991
|
}>, {
|
|
1992
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
1992
1993
|
enabled: boolean;
|
|
1993
1994
|
passThreshold: number;
|
|
1994
1995
|
failureAction: "retry" | "flag" | "block";
|
|
1995
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
1996
1996
|
retry?: {
|
|
1997
1997
|
maxAttempts: number;
|
|
1998
1998
|
augmentPrompt?: string | undefined;
|
|
@@ -2014,6 +2014,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2014
2014
|
}, {
|
|
2015
2015
|
passThreshold: number;
|
|
2016
2016
|
failureAction: "retry" | "flag" | "block";
|
|
2017
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2017
2018
|
retry?: {
|
|
2018
2019
|
maxAttempts: number;
|
|
2019
2020
|
augmentPrompt?: string | undefined;
|
|
@@ -2033,7 +2034,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2033
2034
|
} | undefined;
|
|
2034
2035
|
} | undefined;
|
|
2035
2036
|
enabled?: boolean | undefined;
|
|
2036
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
2037
2037
|
}>>;
|
|
2038
2038
|
|
|
2039
2039
|
valueDomain: ZodOptional$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
@@ -2060,6 +2060,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2060
2060
|
refsFrom: string;
|
|
2061
2061
|
refs?: Record<string, string> | undefined;
|
|
2062
2062
|
}>>;
|
|
2063
|
+
|
|
2064
|
+
judgeClaimContract: ZodOptional$1<ZodObject<{
|
|
2065
|
+
assertionKinds: ZodArray$1<ZodEnum$1<["tool-not-invoked", "datum-absent"]>, "many">;
|
|
2066
|
+
}, "strict", ZodTypeAny$1, {
|
|
2067
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2068
|
+
}, {
|
|
2069
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2070
|
+
}>>;
|
|
2063
2071
|
}, "strip", ZodTypeAny$1, {
|
|
2064
2072
|
id: string;
|
|
2065
2073
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -2067,10 +2075,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2067
2075
|
passThreshold?: number | undefined;
|
|
2068
2076
|
rubricRef?: string | undefined;
|
|
2069
2077
|
gatePolicy?: {
|
|
2078
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
2070
2079
|
enabled: boolean;
|
|
2071
2080
|
passThreshold: number;
|
|
2072
2081
|
failureAction: "retry" | "flag" | "block";
|
|
2073
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
2074
2082
|
retry?: {
|
|
2075
2083
|
maxAttempts: number;
|
|
2076
2084
|
augmentPrompt?: string | undefined;
|
|
@@ -2099,6 +2107,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2099
2107
|
refsFrom: string;
|
|
2100
2108
|
refs?: Record<string, string> | undefined;
|
|
2101
2109
|
} | undefined;
|
|
2110
|
+
judgeClaimContract?: {
|
|
2111
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2112
|
+
} | undefined;
|
|
2102
2113
|
}, {
|
|
2103
2114
|
id: string;
|
|
2104
2115
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -2108,6 +2119,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2108
2119
|
gatePolicy?: {
|
|
2109
2120
|
passThreshold: number;
|
|
2110
2121
|
failureAction: "retry" | "flag" | "block";
|
|
2122
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2111
2123
|
retry?: {
|
|
2112
2124
|
maxAttempts: number;
|
|
2113
2125
|
augmentPrompt?: string | undefined;
|
|
@@ -2127,7 +2139,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2127
2139
|
} | undefined;
|
|
2128
2140
|
} | undefined;
|
|
2129
2141
|
enabled?: boolean | undefined;
|
|
2130
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
2131
2142
|
} | undefined;
|
|
2132
2143
|
valueDomain?: {
|
|
2133
2144
|
values: string[];
|
|
@@ -2138,6 +2149,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2138
2149
|
refsFrom: string;
|
|
2139
2150
|
refs?: Record<string, string> | undefined;
|
|
2140
2151
|
} | undefined;
|
|
2152
|
+
judgeClaimContract?: {
|
|
2153
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2154
|
+
} | undefined;
|
|
2141
2155
|
}>, {
|
|
2142
2156
|
id: string;
|
|
2143
2157
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -2145,10 +2159,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2145
2159
|
passThreshold?: number | undefined;
|
|
2146
2160
|
rubricRef?: string | undefined;
|
|
2147
2161
|
gatePolicy?: {
|
|
2162
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
2148
2163
|
enabled: boolean;
|
|
2149
2164
|
passThreshold: number;
|
|
2150
2165
|
failureAction: "retry" | "flag" | "block";
|
|
2151
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
2152
2166
|
retry?: {
|
|
2153
2167
|
maxAttempts: number;
|
|
2154
2168
|
augmentPrompt?: string | undefined;
|
|
@@ -2177,6 +2191,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2177
2191
|
refsFrom: string;
|
|
2178
2192
|
refs?: Record<string, string> | undefined;
|
|
2179
2193
|
} | undefined;
|
|
2194
|
+
judgeClaimContract?: {
|
|
2195
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2196
|
+
} | undefined;
|
|
2180
2197
|
}, {
|
|
2181
2198
|
id: string;
|
|
2182
2199
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -2186,6 +2203,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2186
2203
|
gatePolicy?: {
|
|
2187
2204
|
passThreshold: number;
|
|
2188
2205
|
failureAction: "retry" | "flag" | "block";
|
|
2206
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2189
2207
|
retry?: {
|
|
2190
2208
|
maxAttempts: number;
|
|
2191
2209
|
augmentPrompt?: string | undefined;
|
|
@@ -2205,7 +2223,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2205
2223
|
} | undefined;
|
|
2206
2224
|
} | undefined;
|
|
2207
2225
|
enabled?: boolean | undefined;
|
|
2208
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
2209
2226
|
} | undefined;
|
|
2210
2227
|
valueDomain?: {
|
|
2211
2228
|
values: string[];
|
|
@@ -2216,6 +2233,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2216
2233
|
refsFrom: string;
|
|
2217
2234
|
refs?: Record<string, string> | undefined;
|
|
2218
2235
|
} | undefined;
|
|
2236
|
+
judgeClaimContract?: {
|
|
2237
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2238
|
+
} | undefined;
|
|
2219
2239
|
}>, "many">;
|
|
2220
2240
|
|
|
2221
2241
|
cohortTags: ZodDefault$1<ZodArray$1<ZodString, "many">>;
|
|
@@ -2240,8 +2260,8 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2240
2260
|
control: "operator" | "vendor" | "platform" | "third-party";
|
|
2241
2261
|
visibility: "transparent" | "announced" | "opaque";
|
|
2242
2262
|
semantic: "deployment-state" | "diagnostic";
|
|
2243
|
-
values?: string[] | undefined;
|
|
2244
2263
|
status?: "active" | "forward-declared" | "deprecated" | undefined;
|
|
2264
|
+
values?: string[] | undefined;
|
|
2245
2265
|
description?: string | undefined;
|
|
2246
2266
|
emissionExpectation?: "always" | "conditional" | {
|
|
2247
2267
|
whenever: string;
|
|
@@ -2250,8 +2270,8 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2250
2270
|
id: string;
|
|
2251
2271
|
control: "operator" | "vendor" | "platform" | "third-party";
|
|
2252
2272
|
visibility: "transparent" | "announced" | "opaque";
|
|
2253
|
-
values?: string[] | undefined;
|
|
2254
2273
|
status?: "active" | "forward-declared" | "deprecated" | undefined;
|
|
2274
|
+
values?: string[] | undefined;
|
|
2255
2275
|
description?: string | undefined;
|
|
2256
2276
|
semantic?: "deployment-state" | "diagnostic" | undefined;
|
|
2257
2277
|
emissionExpectation?: "always" | "conditional" | {
|
|
@@ -2401,10 +2421,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2401
2421
|
passThreshold?: number | undefined;
|
|
2402
2422
|
rubricRef?: string | undefined;
|
|
2403
2423
|
gatePolicy?: {
|
|
2424
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
2404
2425
|
enabled: boolean;
|
|
2405
2426
|
passThreshold: number;
|
|
2406
2427
|
failureAction: "retry" | "flag" | "block";
|
|
2407
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
2408
2428
|
retry?: {
|
|
2409
2429
|
maxAttempts: number;
|
|
2410
2430
|
augmentPrompt?: string | undefined;
|
|
@@ -2433,6 +2453,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2433
2453
|
refsFrom: string;
|
|
2434
2454
|
refs?: Record<string, string> | undefined;
|
|
2435
2455
|
} | undefined;
|
|
2456
|
+
judgeClaimContract?: {
|
|
2457
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2458
|
+
} | undefined;
|
|
2436
2459
|
}[];
|
|
2437
2460
|
cohortTags: string[];
|
|
2438
2461
|
substrateColumns: {
|
|
@@ -2440,8 +2463,8 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2440
2463
|
control: "operator" | "vendor" | "platform" | "third-party";
|
|
2441
2464
|
visibility: "transparent" | "announced" | "opaque";
|
|
2442
2465
|
semantic: "deployment-state" | "diagnostic";
|
|
2443
|
-
values?: string[] | undefined;
|
|
2444
2466
|
status?: "active" | "forward-declared" | "deprecated" | undefined;
|
|
2467
|
+
values?: string[] | undefined;
|
|
2445
2468
|
description?: string | undefined;
|
|
2446
2469
|
emissionExpectation?: "always" | "conditional" | {
|
|
2447
2470
|
whenever: string;
|
|
@@ -2491,6 +2514,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2491
2514
|
gatePolicy?: {
|
|
2492
2515
|
passThreshold: number;
|
|
2493
2516
|
failureAction: "retry" | "flag" | "block";
|
|
2517
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2494
2518
|
retry?: {
|
|
2495
2519
|
maxAttempts: number;
|
|
2496
2520
|
augmentPrompt?: string | undefined;
|
|
@@ -2510,7 +2534,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2510
2534
|
} | undefined;
|
|
2511
2535
|
} | undefined;
|
|
2512
2536
|
enabled?: boolean | undefined;
|
|
2513
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
2514
2537
|
} | undefined;
|
|
2515
2538
|
valueDomain?: {
|
|
2516
2539
|
values: string[];
|
|
@@ -2521,6 +2544,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2521
2544
|
refsFrom: string;
|
|
2522
2545
|
refs?: Record<string, string> | undefined;
|
|
2523
2546
|
} | undefined;
|
|
2547
|
+
judgeClaimContract?: {
|
|
2548
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2549
|
+
} | undefined;
|
|
2524
2550
|
}[];
|
|
2525
2551
|
status?: "active" | "forward-declared" | "deprecated" | undefined;
|
|
2526
2552
|
description?: string | undefined;
|
|
@@ -2529,8 +2555,8 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2529
2555
|
id: string;
|
|
2530
2556
|
control: "operator" | "vendor" | "platform" | "third-party";
|
|
2531
2557
|
visibility: "transparent" | "announced" | "opaque";
|
|
2532
|
-
values?: string[] | undefined;
|
|
2533
2558
|
status?: "active" | "forward-declared" | "deprecated" | undefined;
|
|
2559
|
+
values?: string[] | undefined;
|
|
2534
2560
|
description?: string | undefined;
|
|
2535
2561
|
semantic?: "deployment-state" | "diagnostic" | undefined;
|
|
2536
2562
|
emissionExpectation?: "always" | "conditional" | {
|
|
@@ -2599,11 +2625,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2599
2625
|
}, "strip", ZodTypeAny$1, {
|
|
2600
2626
|
surfaceId: string;
|
|
2601
2627
|
lightSourceId: string | readonly string[];
|
|
2602
|
-
activeRunModes?: ("
|
|
2628
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2603
2629
|
}, {
|
|
2604
2630
|
surfaceId: string;
|
|
2605
2631
|
lightSourceId: string | readonly string[];
|
|
2606
|
-
activeRunModes?: ("
|
|
2632
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2607
2633
|
}>, "many">>;
|
|
2608
2634
|
|
|
2609
2635
|
pricing: ZodOptional$1<ZodRecord<ZodString, ZodObject<{
|
|
@@ -2721,10 +2747,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2721
2747
|
} | undefined;
|
|
2722
2748
|
}>>;
|
|
2723
2749
|
}, "strip", ZodTypeAny$1, {
|
|
2750
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
2724
2751
|
enabled: boolean;
|
|
2725
2752
|
passThreshold: number;
|
|
2726
2753
|
failureAction: "retry" | "flag" | "block";
|
|
2727
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
2728
2754
|
retry?: {
|
|
2729
2755
|
maxAttempts: number;
|
|
2730
2756
|
augmentPrompt?: string | undefined;
|
|
@@ -2746,6 +2772,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2746
2772
|
}, {
|
|
2747
2773
|
passThreshold: number;
|
|
2748
2774
|
failureAction: "retry" | "flag" | "block";
|
|
2775
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2749
2776
|
retry?: {
|
|
2750
2777
|
maxAttempts: number;
|
|
2751
2778
|
augmentPrompt?: string | undefined;
|
|
@@ -2765,12 +2792,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2765
2792
|
} | undefined;
|
|
2766
2793
|
} | undefined;
|
|
2767
2794
|
enabled?: boolean | undefined;
|
|
2768
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
2769
2795
|
}>, {
|
|
2796
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
2770
2797
|
enabled: boolean;
|
|
2771
2798
|
passThreshold: number;
|
|
2772
2799
|
failureAction: "retry" | "flag" | "block";
|
|
2773
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
2774
2800
|
retry?: {
|
|
2775
2801
|
maxAttempts: number;
|
|
2776
2802
|
augmentPrompt?: string | undefined;
|
|
@@ -2792,6 +2818,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2792
2818
|
}, {
|
|
2793
2819
|
passThreshold: number;
|
|
2794
2820
|
failureAction: "retry" | "flag" | "block";
|
|
2821
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2795
2822
|
retry?: {
|
|
2796
2823
|
maxAttempts: number;
|
|
2797
2824
|
augmentPrompt?: string | undefined;
|
|
@@ -2811,12 +2838,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2811
2838
|
} | undefined;
|
|
2812
2839
|
} | undefined;
|
|
2813
2840
|
enabled?: boolean | undefined;
|
|
2814
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
2815
2841
|
}>, {
|
|
2842
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
2816
2843
|
enabled: boolean;
|
|
2817
2844
|
passThreshold: number;
|
|
2818
2845
|
failureAction: "retry" | "flag" | "block";
|
|
2819
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
2820
2846
|
retry?: {
|
|
2821
2847
|
maxAttempts: number;
|
|
2822
2848
|
augmentPrompt?: string | undefined;
|
|
@@ -2838,6 +2864,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2838
2864
|
}, {
|
|
2839
2865
|
passThreshold: number;
|
|
2840
2866
|
failureAction: "retry" | "flag" | "block";
|
|
2867
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2841
2868
|
retry?: {
|
|
2842
2869
|
maxAttempts: number;
|
|
2843
2870
|
augmentPrompt?: string | undefined;
|
|
@@ -2857,7 +2884,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2857
2884
|
} | undefined;
|
|
2858
2885
|
} | undefined;
|
|
2859
2886
|
enabled?: boolean | undefined;
|
|
2860
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
2861
2887
|
}>>;
|
|
2862
2888
|
|
|
2863
2889
|
valueDomain: ZodOptional$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
@@ -2884,6 +2910,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2884
2910
|
refsFrom: string;
|
|
2885
2911
|
refs?: Record<string, string> | undefined;
|
|
2886
2912
|
}>>;
|
|
2913
|
+
|
|
2914
|
+
judgeClaimContract: ZodOptional$1<ZodObject<{
|
|
2915
|
+
assertionKinds: ZodArray$1<ZodEnum$1<["tool-not-invoked", "datum-absent"]>, "many">;
|
|
2916
|
+
}, "strict", ZodTypeAny$1, {
|
|
2917
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2918
|
+
}, {
|
|
2919
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2920
|
+
}>>;
|
|
2887
2921
|
}, "strip", ZodTypeAny$1, {
|
|
2888
2922
|
id: string;
|
|
2889
2923
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -2891,10 +2925,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2891
2925
|
passThreshold?: number | undefined;
|
|
2892
2926
|
rubricRef?: string | undefined;
|
|
2893
2927
|
gatePolicy?: {
|
|
2928
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
2894
2929
|
enabled: boolean;
|
|
2895
2930
|
passThreshold: number;
|
|
2896
2931
|
failureAction: "retry" | "flag" | "block";
|
|
2897
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
2898
2932
|
retry?: {
|
|
2899
2933
|
maxAttempts: number;
|
|
2900
2934
|
augmentPrompt?: string | undefined;
|
|
@@ -2923,6 +2957,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2923
2957
|
refsFrom: string;
|
|
2924
2958
|
refs?: Record<string, string> | undefined;
|
|
2925
2959
|
} | undefined;
|
|
2960
|
+
judgeClaimContract?: {
|
|
2961
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
2962
|
+
} | undefined;
|
|
2926
2963
|
}, {
|
|
2927
2964
|
id: string;
|
|
2928
2965
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -2932,6 +2969,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2932
2969
|
gatePolicy?: {
|
|
2933
2970
|
passThreshold: number;
|
|
2934
2971
|
failureAction: "retry" | "flag" | "block";
|
|
2972
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
2935
2973
|
retry?: {
|
|
2936
2974
|
maxAttempts: number;
|
|
2937
2975
|
augmentPrompt?: string | undefined;
|
|
@@ -2951,7 +2989,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2951
2989
|
} | undefined;
|
|
2952
2990
|
} | undefined;
|
|
2953
2991
|
enabled?: boolean | undefined;
|
|
2954
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
2955
2992
|
} | undefined;
|
|
2956
2993
|
valueDomain?: {
|
|
2957
2994
|
values: string[];
|
|
@@ -2962,6 +2999,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2962
2999
|
refsFrom: string;
|
|
2963
3000
|
refs?: Record<string, string> | undefined;
|
|
2964
3001
|
} | undefined;
|
|
3002
|
+
judgeClaimContract?: {
|
|
3003
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3004
|
+
} | undefined;
|
|
2965
3005
|
}>, {
|
|
2966
3006
|
id: string;
|
|
2967
3007
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -2969,10 +3009,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
2969
3009
|
passThreshold?: number | undefined;
|
|
2970
3010
|
rubricRef?: string | undefined;
|
|
2971
3011
|
gatePolicy?: {
|
|
3012
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
2972
3013
|
enabled: boolean;
|
|
2973
3014
|
passThreshold: number;
|
|
2974
3015
|
failureAction: "retry" | "flag" | "block";
|
|
2975
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
2976
3016
|
retry?: {
|
|
2977
3017
|
maxAttempts: number;
|
|
2978
3018
|
augmentPrompt?: string | undefined;
|
|
@@ -3001,6 +3041,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3001
3041
|
refsFrom: string;
|
|
3002
3042
|
refs?: Record<string, string> | undefined;
|
|
3003
3043
|
} | undefined;
|
|
3044
|
+
judgeClaimContract?: {
|
|
3045
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3046
|
+
} | undefined;
|
|
3004
3047
|
}, {
|
|
3005
3048
|
id: string;
|
|
3006
3049
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3010,6 +3053,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3010
3053
|
gatePolicy?: {
|
|
3011
3054
|
passThreshold: number;
|
|
3012
3055
|
failureAction: "retry" | "flag" | "block";
|
|
3056
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3013
3057
|
retry?: {
|
|
3014
3058
|
maxAttempts: number;
|
|
3015
3059
|
augmentPrompt?: string | undefined;
|
|
@@ -3029,7 +3073,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3029
3073
|
} | undefined;
|
|
3030
3074
|
} | undefined;
|
|
3031
3075
|
enabled?: boolean | undefined;
|
|
3032
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3033
3076
|
} | undefined;
|
|
3034
3077
|
valueDomain?: {
|
|
3035
3078
|
values: string[];
|
|
@@ -3040,11 +3083,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3040
3083
|
refsFrom: string;
|
|
3041
3084
|
refs?: Record<string, string> | undefined;
|
|
3042
3085
|
} | undefined;
|
|
3086
|
+
judgeClaimContract?: {
|
|
3087
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3088
|
+
} | undefined;
|
|
3043
3089
|
}>, "many">>;
|
|
3044
3090
|
}, "strip", ZodTypeAny$1, {
|
|
3045
3091
|
surfaceId: string;
|
|
3046
3092
|
lightSourceId: string | readonly string[];
|
|
3047
|
-
activeRunModes?: ("
|
|
3093
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3048
3094
|
dimensions?: {
|
|
3049
3095
|
id: string;
|
|
3050
3096
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3052,10 +3098,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3052
3098
|
passThreshold?: number | undefined;
|
|
3053
3099
|
rubricRef?: string | undefined;
|
|
3054
3100
|
gatePolicy?: {
|
|
3101
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3055
3102
|
enabled: boolean;
|
|
3056
3103
|
passThreshold: number;
|
|
3057
3104
|
failureAction: "retry" | "flag" | "block";
|
|
3058
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3059
3105
|
retry?: {
|
|
3060
3106
|
maxAttempts: number;
|
|
3061
3107
|
augmentPrompt?: string | undefined;
|
|
@@ -3084,11 +3130,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3084
3130
|
refsFrom: string;
|
|
3085
3131
|
refs?: Record<string, string> | undefined;
|
|
3086
3132
|
} | undefined;
|
|
3133
|
+
judgeClaimContract?: {
|
|
3134
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3135
|
+
} | undefined;
|
|
3087
3136
|
}[] | undefined;
|
|
3088
3137
|
}, {
|
|
3089
3138
|
surfaceId: string;
|
|
3090
3139
|
lightSourceId: string | readonly string[];
|
|
3091
|
-
activeRunModes?: ("
|
|
3140
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3092
3141
|
dimensions?: {
|
|
3093
3142
|
id: string;
|
|
3094
3143
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3098,6 +3147,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3098
3147
|
gatePolicy?: {
|
|
3099
3148
|
passThreshold: number;
|
|
3100
3149
|
failureAction: "retry" | "flag" | "block";
|
|
3150
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3101
3151
|
retry?: {
|
|
3102
3152
|
maxAttempts: number;
|
|
3103
3153
|
augmentPrompt?: string | undefined;
|
|
@@ -3117,7 +3167,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3117
3167
|
} | undefined;
|
|
3118
3168
|
} | undefined;
|
|
3119
3169
|
enabled?: boolean | undefined;
|
|
3120
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3121
3170
|
} | undefined;
|
|
3122
3171
|
valueDomain?: {
|
|
3123
3172
|
values: string[];
|
|
@@ -3128,6 +3177,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3128
3177
|
refsFrom: string;
|
|
3129
3178
|
refs?: Record<string, string> | undefined;
|
|
3130
3179
|
} | undefined;
|
|
3180
|
+
judgeClaimContract?: {
|
|
3181
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3182
|
+
} | undefined;
|
|
3131
3183
|
}[] | undefined;
|
|
3132
3184
|
}>;
|
|
3133
3185
|
|
|
@@ -3223,10 +3275,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3223
3275
|
} | undefined;
|
|
3224
3276
|
}>>;
|
|
3225
3277
|
}, "strip", ZodTypeAny$1, {
|
|
3278
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3226
3279
|
enabled: boolean;
|
|
3227
3280
|
passThreshold: number;
|
|
3228
3281
|
failureAction: "retry" | "flag" | "block";
|
|
3229
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3230
3282
|
retry?: {
|
|
3231
3283
|
maxAttempts: number;
|
|
3232
3284
|
augmentPrompt?: string | undefined;
|
|
@@ -3248,6 +3300,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3248
3300
|
}, {
|
|
3249
3301
|
passThreshold: number;
|
|
3250
3302
|
failureAction: "retry" | "flag" | "block";
|
|
3303
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3251
3304
|
retry?: {
|
|
3252
3305
|
maxAttempts: number;
|
|
3253
3306
|
augmentPrompt?: string | undefined;
|
|
@@ -3267,12 +3320,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3267
3320
|
} | undefined;
|
|
3268
3321
|
} | undefined;
|
|
3269
3322
|
enabled?: boolean | undefined;
|
|
3270
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3271
3323
|
}>, {
|
|
3324
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3272
3325
|
enabled: boolean;
|
|
3273
3326
|
passThreshold: number;
|
|
3274
3327
|
failureAction: "retry" | "flag" | "block";
|
|
3275
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3276
3328
|
retry?: {
|
|
3277
3329
|
maxAttempts: number;
|
|
3278
3330
|
augmentPrompt?: string | undefined;
|
|
@@ -3294,6 +3346,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3294
3346
|
}, {
|
|
3295
3347
|
passThreshold: number;
|
|
3296
3348
|
failureAction: "retry" | "flag" | "block";
|
|
3349
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3297
3350
|
retry?: {
|
|
3298
3351
|
maxAttempts: number;
|
|
3299
3352
|
augmentPrompt?: string | undefined;
|
|
@@ -3313,12 +3366,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3313
3366
|
} | undefined;
|
|
3314
3367
|
} | undefined;
|
|
3315
3368
|
enabled?: boolean | undefined;
|
|
3316
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3317
3369
|
}>, {
|
|
3370
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3318
3371
|
enabled: boolean;
|
|
3319
3372
|
passThreshold: number;
|
|
3320
3373
|
failureAction: "retry" | "flag" | "block";
|
|
3321
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3322
3374
|
retry?: {
|
|
3323
3375
|
maxAttempts: number;
|
|
3324
3376
|
augmentPrompt?: string | undefined;
|
|
@@ -3340,6 +3392,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3340
3392
|
}, {
|
|
3341
3393
|
passThreshold: number;
|
|
3342
3394
|
failureAction: "retry" | "flag" | "block";
|
|
3395
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3343
3396
|
retry?: {
|
|
3344
3397
|
maxAttempts: number;
|
|
3345
3398
|
augmentPrompt?: string | undefined;
|
|
@@ -3359,7 +3412,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3359
3412
|
} | undefined;
|
|
3360
3413
|
} | undefined;
|
|
3361
3414
|
enabled?: boolean | undefined;
|
|
3362
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3363
3415
|
}>>;
|
|
3364
3416
|
|
|
3365
3417
|
valueDomain: ZodOptional$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
@@ -3386,6 +3438,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3386
3438
|
refsFrom: string;
|
|
3387
3439
|
refs?: Record<string, string> | undefined;
|
|
3388
3440
|
}>>;
|
|
3441
|
+
|
|
3442
|
+
judgeClaimContract: ZodOptional$1<ZodObject<{
|
|
3443
|
+
assertionKinds: ZodArray$1<ZodEnum$1<["tool-not-invoked", "datum-absent"]>, "many">;
|
|
3444
|
+
}, "strict", ZodTypeAny$1, {
|
|
3445
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3446
|
+
}, {
|
|
3447
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3448
|
+
}>>;
|
|
3389
3449
|
}, "strip", ZodTypeAny$1, {
|
|
3390
3450
|
id: string;
|
|
3391
3451
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3393,10 +3453,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3393
3453
|
passThreshold?: number | undefined;
|
|
3394
3454
|
rubricRef?: string | undefined;
|
|
3395
3455
|
gatePolicy?: {
|
|
3456
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3396
3457
|
enabled: boolean;
|
|
3397
3458
|
passThreshold: number;
|
|
3398
3459
|
failureAction: "retry" | "flag" | "block";
|
|
3399
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3400
3460
|
retry?: {
|
|
3401
3461
|
maxAttempts: number;
|
|
3402
3462
|
augmentPrompt?: string | undefined;
|
|
@@ -3425,6 +3485,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3425
3485
|
refsFrom: string;
|
|
3426
3486
|
refs?: Record<string, string> | undefined;
|
|
3427
3487
|
} | undefined;
|
|
3488
|
+
judgeClaimContract?: {
|
|
3489
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3490
|
+
} | undefined;
|
|
3428
3491
|
}, {
|
|
3429
3492
|
id: string;
|
|
3430
3493
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3434,6 +3497,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3434
3497
|
gatePolicy?: {
|
|
3435
3498
|
passThreshold: number;
|
|
3436
3499
|
failureAction: "retry" | "flag" | "block";
|
|
3500
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3437
3501
|
retry?: {
|
|
3438
3502
|
maxAttempts: number;
|
|
3439
3503
|
augmentPrompt?: string | undefined;
|
|
@@ -3453,7 +3517,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3453
3517
|
} | undefined;
|
|
3454
3518
|
} | undefined;
|
|
3455
3519
|
enabled?: boolean | undefined;
|
|
3456
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3457
3520
|
} | undefined;
|
|
3458
3521
|
valueDomain?: {
|
|
3459
3522
|
values: string[];
|
|
@@ -3464,6 +3527,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3464
3527
|
refsFrom: string;
|
|
3465
3528
|
refs?: Record<string, string> | undefined;
|
|
3466
3529
|
} | undefined;
|
|
3530
|
+
judgeClaimContract?: {
|
|
3531
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3532
|
+
} | undefined;
|
|
3467
3533
|
}>, {
|
|
3468
3534
|
id: string;
|
|
3469
3535
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3471,10 +3537,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3471
3537
|
passThreshold?: number | undefined;
|
|
3472
3538
|
rubricRef?: string | undefined;
|
|
3473
3539
|
gatePolicy?: {
|
|
3540
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3474
3541
|
enabled: boolean;
|
|
3475
3542
|
passThreshold: number;
|
|
3476
3543
|
failureAction: "retry" | "flag" | "block";
|
|
3477
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3478
3544
|
retry?: {
|
|
3479
3545
|
maxAttempts: number;
|
|
3480
3546
|
augmentPrompt?: string | undefined;
|
|
@@ -3503,6 +3569,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3503
3569
|
refsFrom: string;
|
|
3504
3570
|
refs?: Record<string, string> | undefined;
|
|
3505
3571
|
} | undefined;
|
|
3572
|
+
judgeClaimContract?: {
|
|
3573
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3574
|
+
} | undefined;
|
|
3506
3575
|
}, {
|
|
3507
3576
|
id: string;
|
|
3508
3577
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3512,6 +3581,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3512
3581
|
gatePolicy?: {
|
|
3513
3582
|
passThreshold: number;
|
|
3514
3583
|
failureAction: "retry" | "flag" | "block";
|
|
3584
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3515
3585
|
retry?: {
|
|
3516
3586
|
maxAttempts: number;
|
|
3517
3587
|
augmentPrompt?: string | undefined;
|
|
@@ -3531,7 +3601,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3531
3601
|
} | undefined;
|
|
3532
3602
|
} | undefined;
|
|
3533
3603
|
enabled?: boolean | undefined;
|
|
3534
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3535
3604
|
} | undefined;
|
|
3536
3605
|
valueDomain?: {
|
|
3537
3606
|
values: string[];
|
|
@@ -3542,11 +3611,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3542
3611
|
refsFrom: string;
|
|
3543
3612
|
refs?: Record<string, string> | undefined;
|
|
3544
3613
|
} | undefined;
|
|
3614
|
+
judgeClaimContract?: {
|
|
3615
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3616
|
+
} | undefined;
|
|
3545
3617
|
}>, "many">>;
|
|
3546
3618
|
}, "strip", ZodTypeAny$1, {
|
|
3547
3619
|
surfaceId: string;
|
|
3548
3620
|
lightSourceId: string | readonly string[];
|
|
3549
|
-
activeRunModes?: ("
|
|
3621
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3550
3622
|
dimensions?: {
|
|
3551
3623
|
id: string;
|
|
3552
3624
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3554,10 +3626,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3554
3626
|
passThreshold?: number | undefined;
|
|
3555
3627
|
rubricRef?: string | undefined;
|
|
3556
3628
|
gatePolicy?: {
|
|
3629
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3557
3630
|
enabled: boolean;
|
|
3558
3631
|
passThreshold: number;
|
|
3559
3632
|
failureAction: "retry" | "flag" | "block";
|
|
3560
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3561
3633
|
retry?: {
|
|
3562
3634
|
maxAttempts: number;
|
|
3563
3635
|
augmentPrompt?: string | undefined;
|
|
@@ -3586,11 +3658,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3586
3658
|
refsFrom: string;
|
|
3587
3659
|
refs?: Record<string, string> | undefined;
|
|
3588
3660
|
} | undefined;
|
|
3661
|
+
judgeClaimContract?: {
|
|
3662
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3663
|
+
} | undefined;
|
|
3589
3664
|
}[] | undefined;
|
|
3590
3665
|
}, {
|
|
3591
3666
|
surfaceId: string;
|
|
3592
3667
|
lightSourceId: string | readonly string[];
|
|
3593
|
-
activeRunModes?: ("
|
|
3668
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3594
3669
|
dimensions?: {
|
|
3595
3670
|
id: string;
|
|
3596
3671
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3600,6 +3675,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3600
3675
|
gatePolicy?: {
|
|
3601
3676
|
passThreshold: number;
|
|
3602
3677
|
failureAction: "retry" | "flag" | "block";
|
|
3678
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3603
3679
|
retry?: {
|
|
3604
3680
|
maxAttempts: number;
|
|
3605
3681
|
augmentPrompt?: string | undefined;
|
|
@@ -3619,7 +3695,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3619
3695
|
} | undefined;
|
|
3620
3696
|
} | undefined;
|
|
3621
3697
|
enabled?: boolean | undefined;
|
|
3622
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3623
3698
|
} | undefined;
|
|
3624
3699
|
valueDomain?: {
|
|
3625
3700
|
values: string[];
|
|
@@ -3630,6 +3705,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3630
3705
|
refsFrom: string;
|
|
3631
3706
|
refs?: Record<string, string> | undefined;
|
|
3632
3707
|
} | undefined;
|
|
3708
|
+
judgeClaimContract?: {
|
|
3709
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3710
|
+
} | undefined;
|
|
3633
3711
|
}[] | undefined;
|
|
3634
3712
|
}>>;
|
|
3635
3713
|
|
|
@@ -3725,10 +3803,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3725
3803
|
} | undefined;
|
|
3726
3804
|
}>>;
|
|
3727
3805
|
}, "strip", ZodTypeAny$1, {
|
|
3806
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3728
3807
|
enabled: boolean;
|
|
3729
3808
|
passThreshold: number;
|
|
3730
3809
|
failureAction: "retry" | "flag" | "block";
|
|
3731
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3732
3810
|
retry?: {
|
|
3733
3811
|
maxAttempts: number;
|
|
3734
3812
|
augmentPrompt?: string | undefined;
|
|
@@ -3750,6 +3828,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3750
3828
|
}, {
|
|
3751
3829
|
passThreshold: number;
|
|
3752
3830
|
failureAction: "retry" | "flag" | "block";
|
|
3831
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3753
3832
|
retry?: {
|
|
3754
3833
|
maxAttempts: number;
|
|
3755
3834
|
augmentPrompt?: string | undefined;
|
|
@@ -3769,12 +3848,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3769
3848
|
} | undefined;
|
|
3770
3849
|
} | undefined;
|
|
3771
3850
|
enabled?: boolean | undefined;
|
|
3772
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3773
3851
|
}>, {
|
|
3852
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3774
3853
|
enabled: boolean;
|
|
3775
3854
|
passThreshold: number;
|
|
3776
3855
|
failureAction: "retry" | "flag" | "block";
|
|
3777
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3778
3856
|
retry?: {
|
|
3779
3857
|
maxAttempts: number;
|
|
3780
3858
|
augmentPrompt?: string | undefined;
|
|
@@ -3796,6 +3874,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3796
3874
|
}, {
|
|
3797
3875
|
passThreshold: number;
|
|
3798
3876
|
failureAction: "retry" | "flag" | "block";
|
|
3877
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3799
3878
|
retry?: {
|
|
3800
3879
|
maxAttempts: number;
|
|
3801
3880
|
augmentPrompt?: string | undefined;
|
|
@@ -3815,12 +3894,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3815
3894
|
} | undefined;
|
|
3816
3895
|
} | undefined;
|
|
3817
3896
|
enabled?: boolean | undefined;
|
|
3818
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3819
3897
|
}>, {
|
|
3898
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3820
3899
|
enabled: boolean;
|
|
3821
3900
|
passThreshold: number;
|
|
3822
3901
|
failureAction: "retry" | "flag" | "block";
|
|
3823
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3824
3902
|
retry?: {
|
|
3825
3903
|
maxAttempts: number;
|
|
3826
3904
|
augmentPrompt?: string | undefined;
|
|
@@ -3842,6 +3920,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3842
3920
|
}, {
|
|
3843
3921
|
passThreshold: number;
|
|
3844
3922
|
failureAction: "retry" | "flag" | "block";
|
|
3923
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3845
3924
|
retry?: {
|
|
3846
3925
|
maxAttempts: number;
|
|
3847
3926
|
augmentPrompt?: string | undefined;
|
|
@@ -3861,7 +3940,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3861
3940
|
} | undefined;
|
|
3862
3941
|
} | undefined;
|
|
3863
3942
|
enabled?: boolean | undefined;
|
|
3864
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3865
3943
|
}>>;
|
|
3866
3944
|
|
|
3867
3945
|
valueDomain: ZodOptional$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
@@ -3888,6 +3966,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3888
3966
|
refsFrom: string;
|
|
3889
3967
|
refs?: Record<string, string> | undefined;
|
|
3890
3968
|
}>>;
|
|
3969
|
+
|
|
3970
|
+
judgeClaimContract: ZodOptional$1<ZodObject<{
|
|
3971
|
+
assertionKinds: ZodArray$1<ZodEnum$1<["tool-not-invoked", "datum-absent"]>, "many">;
|
|
3972
|
+
}, "strict", ZodTypeAny$1, {
|
|
3973
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3974
|
+
}, {
|
|
3975
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
3976
|
+
}>>;
|
|
3891
3977
|
}, "strip", ZodTypeAny$1, {
|
|
3892
3978
|
id: string;
|
|
3893
3979
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3895,10 +3981,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3895
3981
|
passThreshold?: number | undefined;
|
|
3896
3982
|
rubricRef?: string | undefined;
|
|
3897
3983
|
gatePolicy?: {
|
|
3984
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3898
3985
|
enabled: boolean;
|
|
3899
3986
|
passThreshold: number;
|
|
3900
3987
|
failureAction: "retry" | "flag" | "block";
|
|
3901
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3902
3988
|
retry?: {
|
|
3903
3989
|
maxAttempts: number;
|
|
3904
3990
|
augmentPrompt?: string | undefined;
|
|
@@ -3927,6 +4013,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3927
4013
|
refsFrom: string;
|
|
3928
4014
|
refs?: Record<string, string> | undefined;
|
|
3929
4015
|
} | undefined;
|
|
4016
|
+
judgeClaimContract?: {
|
|
4017
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4018
|
+
} | undefined;
|
|
3930
4019
|
}, {
|
|
3931
4020
|
id: string;
|
|
3932
4021
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3936,6 +4025,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3936
4025
|
gatePolicy?: {
|
|
3937
4026
|
passThreshold: number;
|
|
3938
4027
|
failureAction: "retry" | "flag" | "block";
|
|
4028
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
3939
4029
|
retry?: {
|
|
3940
4030
|
maxAttempts: number;
|
|
3941
4031
|
augmentPrompt?: string | undefined;
|
|
@@ -3955,7 +4045,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3955
4045
|
} | undefined;
|
|
3956
4046
|
} | undefined;
|
|
3957
4047
|
enabled?: boolean | undefined;
|
|
3958
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
3959
4048
|
} | undefined;
|
|
3960
4049
|
valueDomain?: {
|
|
3961
4050
|
values: string[];
|
|
@@ -3966,6 +4055,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3966
4055
|
refsFrom: string;
|
|
3967
4056
|
refs?: Record<string, string> | undefined;
|
|
3968
4057
|
} | undefined;
|
|
4058
|
+
judgeClaimContract?: {
|
|
4059
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4060
|
+
} | undefined;
|
|
3969
4061
|
}>, {
|
|
3970
4062
|
id: string;
|
|
3971
4063
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -3973,10 +4065,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
3973
4065
|
passThreshold?: number | undefined;
|
|
3974
4066
|
rubricRef?: string | undefined;
|
|
3975
4067
|
gatePolicy?: {
|
|
4068
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
3976
4069
|
enabled: boolean;
|
|
3977
4070
|
passThreshold: number;
|
|
3978
4071
|
failureAction: "retry" | "flag" | "block";
|
|
3979
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
3980
4072
|
retry?: {
|
|
3981
4073
|
maxAttempts: number;
|
|
3982
4074
|
augmentPrompt?: string | undefined;
|
|
@@ -4005,6 +4097,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4005
4097
|
refsFrom: string;
|
|
4006
4098
|
refs?: Record<string, string> | undefined;
|
|
4007
4099
|
} | undefined;
|
|
4100
|
+
judgeClaimContract?: {
|
|
4101
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4102
|
+
} | undefined;
|
|
4008
4103
|
}, {
|
|
4009
4104
|
id: string;
|
|
4010
4105
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4014,6 +4109,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4014
4109
|
gatePolicy?: {
|
|
4015
4110
|
passThreshold: number;
|
|
4016
4111
|
failureAction: "retry" | "flag" | "block";
|
|
4112
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4017
4113
|
retry?: {
|
|
4018
4114
|
maxAttempts: number;
|
|
4019
4115
|
augmentPrompt?: string | undefined;
|
|
@@ -4033,7 +4129,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4033
4129
|
} | undefined;
|
|
4034
4130
|
} | undefined;
|
|
4035
4131
|
enabled?: boolean | undefined;
|
|
4036
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4037
4132
|
} | undefined;
|
|
4038
4133
|
valueDomain?: {
|
|
4039
4134
|
values: string[];
|
|
@@ -4044,11 +4139,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4044
4139
|
refsFrom: string;
|
|
4045
4140
|
refs?: Record<string, string> | undefined;
|
|
4046
4141
|
} | undefined;
|
|
4142
|
+
judgeClaimContract?: {
|
|
4143
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4144
|
+
} | undefined;
|
|
4047
4145
|
}>, "many">>;
|
|
4048
4146
|
}, "strip", ZodTypeAny$1, {
|
|
4049
4147
|
surfaceId: string;
|
|
4050
4148
|
lightSourceId: string | readonly string[];
|
|
4051
|
-
activeRunModes?: ("
|
|
4149
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4052
4150
|
dimensions?: {
|
|
4053
4151
|
id: string;
|
|
4054
4152
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4056,10 +4154,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4056
4154
|
passThreshold?: number | undefined;
|
|
4057
4155
|
rubricRef?: string | undefined;
|
|
4058
4156
|
gatePolicy?: {
|
|
4157
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4059
4158
|
enabled: boolean;
|
|
4060
4159
|
passThreshold: number;
|
|
4061
4160
|
failureAction: "retry" | "flag" | "block";
|
|
4062
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4063
4161
|
retry?: {
|
|
4064
4162
|
maxAttempts: number;
|
|
4065
4163
|
augmentPrompt?: string | undefined;
|
|
@@ -4088,11 +4186,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4088
4186
|
refsFrom: string;
|
|
4089
4187
|
refs?: Record<string, string> | undefined;
|
|
4090
4188
|
} | undefined;
|
|
4189
|
+
judgeClaimContract?: {
|
|
4190
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4191
|
+
} | undefined;
|
|
4091
4192
|
}[] | undefined;
|
|
4092
4193
|
}, {
|
|
4093
4194
|
surfaceId: string;
|
|
4094
4195
|
lightSourceId: string | readonly string[];
|
|
4095
|
-
activeRunModes?: ("
|
|
4196
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4096
4197
|
dimensions?: {
|
|
4097
4198
|
id: string;
|
|
4098
4199
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4102,6 +4203,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4102
4203
|
gatePolicy?: {
|
|
4103
4204
|
passThreshold: number;
|
|
4104
4205
|
failureAction: "retry" | "flag" | "block";
|
|
4206
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4105
4207
|
retry?: {
|
|
4106
4208
|
maxAttempts: number;
|
|
4107
4209
|
augmentPrompt?: string | undefined;
|
|
@@ -4121,7 +4223,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4121
4223
|
} | undefined;
|
|
4122
4224
|
} | undefined;
|
|
4123
4225
|
enabled?: boolean | undefined;
|
|
4124
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4125
4226
|
} | undefined;
|
|
4126
4227
|
valueDomain?: {
|
|
4127
4228
|
values: string[];
|
|
@@ -4132,6 +4233,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4132
4233
|
refsFrom: string;
|
|
4133
4234
|
refs?: Record<string, string> | undefined;
|
|
4134
4235
|
} | undefined;
|
|
4236
|
+
judgeClaimContract?: {
|
|
4237
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4238
|
+
} | undefined;
|
|
4135
4239
|
}[] | undefined;
|
|
4136
4240
|
}>>;
|
|
4137
4241
|
|
|
@@ -4227,10 +4331,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4227
4331
|
} | undefined;
|
|
4228
4332
|
}>>;
|
|
4229
4333
|
}, "strip", ZodTypeAny$1, {
|
|
4334
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4230
4335
|
enabled: boolean;
|
|
4231
4336
|
passThreshold: number;
|
|
4232
4337
|
failureAction: "retry" | "flag" | "block";
|
|
4233
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4234
4338
|
retry?: {
|
|
4235
4339
|
maxAttempts: number;
|
|
4236
4340
|
augmentPrompt?: string | undefined;
|
|
@@ -4252,6 +4356,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4252
4356
|
}, {
|
|
4253
4357
|
passThreshold: number;
|
|
4254
4358
|
failureAction: "retry" | "flag" | "block";
|
|
4359
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4255
4360
|
retry?: {
|
|
4256
4361
|
maxAttempts: number;
|
|
4257
4362
|
augmentPrompt?: string | undefined;
|
|
@@ -4271,12 +4376,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4271
4376
|
} | undefined;
|
|
4272
4377
|
} | undefined;
|
|
4273
4378
|
enabled?: boolean | undefined;
|
|
4274
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4275
4379
|
}>, {
|
|
4380
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4276
4381
|
enabled: boolean;
|
|
4277
4382
|
passThreshold: number;
|
|
4278
4383
|
failureAction: "retry" | "flag" | "block";
|
|
4279
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4280
4384
|
retry?: {
|
|
4281
4385
|
maxAttempts: number;
|
|
4282
4386
|
augmentPrompt?: string | undefined;
|
|
@@ -4298,6 +4402,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4298
4402
|
}, {
|
|
4299
4403
|
passThreshold: number;
|
|
4300
4404
|
failureAction: "retry" | "flag" | "block";
|
|
4405
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4301
4406
|
retry?: {
|
|
4302
4407
|
maxAttempts: number;
|
|
4303
4408
|
augmentPrompt?: string | undefined;
|
|
@@ -4317,12 +4422,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4317
4422
|
} | undefined;
|
|
4318
4423
|
} | undefined;
|
|
4319
4424
|
enabled?: boolean | undefined;
|
|
4320
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4321
4425
|
}>, {
|
|
4426
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4322
4427
|
enabled: boolean;
|
|
4323
4428
|
passThreshold: number;
|
|
4324
4429
|
failureAction: "retry" | "flag" | "block";
|
|
4325
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4326
4430
|
retry?: {
|
|
4327
4431
|
maxAttempts: number;
|
|
4328
4432
|
augmentPrompt?: string | undefined;
|
|
@@ -4344,6 +4448,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4344
4448
|
}, {
|
|
4345
4449
|
passThreshold: number;
|
|
4346
4450
|
failureAction: "retry" | "flag" | "block";
|
|
4451
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4347
4452
|
retry?: {
|
|
4348
4453
|
maxAttempts: number;
|
|
4349
4454
|
augmentPrompt?: string | undefined;
|
|
@@ -4363,7 +4468,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4363
4468
|
} | undefined;
|
|
4364
4469
|
} | undefined;
|
|
4365
4470
|
enabled?: boolean | undefined;
|
|
4366
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4367
4471
|
}>>;
|
|
4368
4472
|
|
|
4369
4473
|
valueDomain: ZodOptional$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
@@ -4390,6 +4494,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4390
4494
|
refsFrom: string;
|
|
4391
4495
|
refs?: Record<string, string> | undefined;
|
|
4392
4496
|
}>>;
|
|
4497
|
+
|
|
4498
|
+
judgeClaimContract: ZodOptional$1<ZodObject<{
|
|
4499
|
+
assertionKinds: ZodArray$1<ZodEnum$1<["tool-not-invoked", "datum-absent"]>, "many">;
|
|
4500
|
+
}, "strict", ZodTypeAny$1, {
|
|
4501
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4502
|
+
}, {
|
|
4503
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4504
|
+
}>>;
|
|
4393
4505
|
}, "strip", ZodTypeAny$1, {
|
|
4394
4506
|
id: string;
|
|
4395
4507
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4397,10 +4509,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4397
4509
|
passThreshold?: number | undefined;
|
|
4398
4510
|
rubricRef?: string | undefined;
|
|
4399
4511
|
gatePolicy?: {
|
|
4512
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4400
4513
|
enabled: boolean;
|
|
4401
4514
|
passThreshold: number;
|
|
4402
4515
|
failureAction: "retry" | "flag" | "block";
|
|
4403
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4404
4516
|
retry?: {
|
|
4405
4517
|
maxAttempts: number;
|
|
4406
4518
|
augmentPrompt?: string | undefined;
|
|
@@ -4429,6 +4541,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4429
4541
|
refsFrom: string;
|
|
4430
4542
|
refs?: Record<string, string> | undefined;
|
|
4431
4543
|
} | undefined;
|
|
4544
|
+
judgeClaimContract?: {
|
|
4545
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4546
|
+
} | undefined;
|
|
4432
4547
|
}, {
|
|
4433
4548
|
id: string;
|
|
4434
4549
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4438,6 +4553,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4438
4553
|
gatePolicy?: {
|
|
4439
4554
|
passThreshold: number;
|
|
4440
4555
|
failureAction: "retry" | "flag" | "block";
|
|
4556
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4441
4557
|
retry?: {
|
|
4442
4558
|
maxAttempts: number;
|
|
4443
4559
|
augmentPrompt?: string | undefined;
|
|
@@ -4457,7 +4573,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4457
4573
|
} | undefined;
|
|
4458
4574
|
} | undefined;
|
|
4459
4575
|
enabled?: boolean | undefined;
|
|
4460
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4461
4576
|
} | undefined;
|
|
4462
4577
|
valueDomain?: {
|
|
4463
4578
|
values: string[];
|
|
@@ -4468,6 +4583,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4468
4583
|
refsFrom: string;
|
|
4469
4584
|
refs?: Record<string, string> | undefined;
|
|
4470
4585
|
} | undefined;
|
|
4586
|
+
judgeClaimContract?: {
|
|
4587
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4588
|
+
} | undefined;
|
|
4471
4589
|
}>, {
|
|
4472
4590
|
id: string;
|
|
4473
4591
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4475,10 +4593,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4475
4593
|
passThreshold?: number | undefined;
|
|
4476
4594
|
rubricRef?: string | undefined;
|
|
4477
4595
|
gatePolicy?: {
|
|
4596
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4478
4597
|
enabled: boolean;
|
|
4479
4598
|
passThreshold: number;
|
|
4480
4599
|
failureAction: "retry" | "flag" | "block";
|
|
4481
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4482
4600
|
retry?: {
|
|
4483
4601
|
maxAttempts: number;
|
|
4484
4602
|
augmentPrompt?: string | undefined;
|
|
@@ -4507,6 +4625,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4507
4625
|
refsFrom: string;
|
|
4508
4626
|
refs?: Record<string, string> | undefined;
|
|
4509
4627
|
} | undefined;
|
|
4628
|
+
judgeClaimContract?: {
|
|
4629
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4630
|
+
} | undefined;
|
|
4510
4631
|
}, {
|
|
4511
4632
|
id: string;
|
|
4512
4633
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4516,6 +4637,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4516
4637
|
gatePolicy?: {
|
|
4517
4638
|
passThreshold: number;
|
|
4518
4639
|
failureAction: "retry" | "flag" | "block";
|
|
4640
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4519
4641
|
retry?: {
|
|
4520
4642
|
maxAttempts: number;
|
|
4521
4643
|
augmentPrompt?: string | undefined;
|
|
@@ -4535,7 +4657,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4535
4657
|
} | undefined;
|
|
4536
4658
|
} | undefined;
|
|
4537
4659
|
enabled?: boolean | undefined;
|
|
4538
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4539
4660
|
} | undefined;
|
|
4540
4661
|
valueDomain?: {
|
|
4541
4662
|
values: string[];
|
|
@@ -4546,11 +4667,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4546
4667
|
refsFrom: string;
|
|
4547
4668
|
refs?: Record<string, string> | undefined;
|
|
4548
4669
|
} | undefined;
|
|
4670
|
+
judgeClaimContract?: {
|
|
4671
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4672
|
+
} | undefined;
|
|
4549
4673
|
}>, "many">>;
|
|
4550
4674
|
}, "strip", ZodTypeAny$1, {
|
|
4551
4675
|
surfaceId: string;
|
|
4552
4676
|
lightSourceId: string | readonly string[];
|
|
4553
|
-
activeRunModes?: ("
|
|
4677
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4554
4678
|
dimensions?: {
|
|
4555
4679
|
id: string;
|
|
4556
4680
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4558,10 +4682,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4558
4682
|
passThreshold?: number | undefined;
|
|
4559
4683
|
rubricRef?: string | undefined;
|
|
4560
4684
|
gatePolicy?: {
|
|
4685
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4561
4686
|
enabled: boolean;
|
|
4562
4687
|
passThreshold: number;
|
|
4563
4688
|
failureAction: "retry" | "flag" | "block";
|
|
4564
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4565
4689
|
retry?: {
|
|
4566
4690
|
maxAttempts: number;
|
|
4567
4691
|
augmentPrompt?: string | undefined;
|
|
@@ -4590,11 +4714,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4590
4714
|
refsFrom: string;
|
|
4591
4715
|
refs?: Record<string, string> | undefined;
|
|
4592
4716
|
} | undefined;
|
|
4717
|
+
judgeClaimContract?: {
|
|
4718
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4719
|
+
} | undefined;
|
|
4593
4720
|
}[] | undefined;
|
|
4594
4721
|
}, {
|
|
4595
4722
|
surfaceId: string;
|
|
4596
4723
|
lightSourceId: string | readonly string[];
|
|
4597
|
-
activeRunModes?: ("
|
|
4724
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4598
4725
|
dimensions?: {
|
|
4599
4726
|
id: string;
|
|
4600
4727
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4604,6 +4731,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4604
4731
|
gatePolicy?: {
|
|
4605
4732
|
passThreshold: number;
|
|
4606
4733
|
failureAction: "retry" | "flag" | "block";
|
|
4734
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4607
4735
|
retry?: {
|
|
4608
4736
|
maxAttempts: number;
|
|
4609
4737
|
augmentPrompt?: string | undefined;
|
|
@@ -4623,7 +4751,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4623
4751
|
} | undefined;
|
|
4624
4752
|
} | undefined;
|
|
4625
4753
|
enabled?: boolean | undefined;
|
|
4626
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4627
4754
|
} | undefined;
|
|
4628
4755
|
valueDomain?: {
|
|
4629
4756
|
values: string[];
|
|
@@ -4634,6 +4761,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4634
4761
|
refsFrom: string;
|
|
4635
4762
|
refs?: Record<string, string> | undefined;
|
|
4636
4763
|
} | undefined;
|
|
4764
|
+
judgeClaimContract?: {
|
|
4765
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
4766
|
+
} | undefined;
|
|
4637
4767
|
}[] | undefined;
|
|
4638
4768
|
}>>;
|
|
4639
4769
|
|
|
@@ -4729,10 +4859,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4729
4859
|
} | undefined;
|
|
4730
4860
|
}>>;
|
|
4731
4861
|
}, "strip", ZodTypeAny$1, {
|
|
4862
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4732
4863
|
enabled: boolean;
|
|
4733
4864
|
passThreshold: number;
|
|
4734
4865
|
failureAction: "retry" | "flag" | "block";
|
|
4735
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4736
4866
|
retry?: {
|
|
4737
4867
|
maxAttempts: number;
|
|
4738
4868
|
augmentPrompt?: string | undefined;
|
|
@@ -4754,6 +4884,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4754
4884
|
}, {
|
|
4755
4885
|
passThreshold: number;
|
|
4756
4886
|
failureAction: "retry" | "flag" | "block";
|
|
4887
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4757
4888
|
retry?: {
|
|
4758
4889
|
maxAttempts: number;
|
|
4759
4890
|
augmentPrompt?: string | undefined;
|
|
@@ -4773,12 +4904,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4773
4904
|
} | undefined;
|
|
4774
4905
|
} | undefined;
|
|
4775
4906
|
enabled?: boolean | undefined;
|
|
4776
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4777
4907
|
}>, {
|
|
4908
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4778
4909
|
enabled: boolean;
|
|
4779
4910
|
passThreshold: number;
|
|
4780
4911
|
failureAction: "retry" | "flag" | "block";
|
|
4781
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4782
4912
|
retry?: {
|
|
4783
4913
|
maxAttempts: number;
|
|
4784
4914
|
augmentPrompt?: string | undefined;
|
|
@@ -4800,6 +4930,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4800
4930
|
}, {
|
|
4801
4931
|
passThreshold: number;
|
|
4802
4932
|
failureAction: "retry" | "flag" | "block";
|
|
4933
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4803
4934
|
retry?: {
|
|
4804
4935
|
maxAttempts: number;
|
|
4805
4936
|
augmentPrompt?: string | undefined;
|
|
@@ -4819,12 +4950,11 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4819
4950
|
} | undefined;
|
|
4820
4951
|
} | undefined;
|
|
4821
4952
|
enabled?: boolean | undefined;
|
|
4822
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4823
4953
|
}>, {
|
|
4954
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4824
4955
|
enabled: boolean;
|
|
4825
4956
|
passThreshold: number;
|
|
4826
4957
|
failureAction: "retry" | "flag" | "block";
|
|
4827
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4828
4958
|
retry?: {
|
|
4829
4959
|
maxAttempts: number;
|
|
4830
4960
|
augmentPrompt?: string | undefined;
|
|
@@ -4846,6 +4976,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4846
4976
|
}, {
|
|
4847
4977
|
passThreshold: number;
|
|
4848
4978
|
failureAction: "retry" | "flag" | "block";
|
|
4979
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4849
4980
|
retry?: {
|
|
4850
4981
|
maxAttempts: number;
|
|
4851
4982
|
augmentPrompt?: string | undefined;
|
|
@@ -4865,7 +4996,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4865
4996
|
} | undefined;
|
|
4866
4997
|
} | undefined;
|
|
4867
4998
|
enabled?: boolean | undefined;
|
|
4868
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4869
4999
|
}>>;
|
|
4870
5000
|
|
|
4871
5001
|
valueDomain: ZodOptional$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
@@ -4892,6 +5022,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4892
5022
|
refsFrom: string;
|
|
4893
5023
|
refs?: Record<string, string> | undefined;
|
|
4894
5024
|
}>>;
|
|
5025
|
+
|
|
5026
|
+
judgeClaimContract: ZodOptional$1<ZodObject<{
|
|
5027
|
+
assertionKinds: ZodArray$1<ZodEnum$1<["tool-not-invoked", "datum-absent"]>, "many">;
|
|
5028
|
+
}, "strict", ZodTypeAny$1, {
|
|
5029
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5030
|
+
}, {
|
|
5031
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5032
|
+
}>>;
|
|
4895
5033
|
}, "strip", ZodTypeAny$1, {
|
|
4896
5034
|
id: string;
|
|
4897
5035
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4899,10 +5037,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4899
5037
|
passThreshold?: number | undefined;
|
|
4900
5038
|
rubricRef?: string | undefined;
|
|
4901
5039
|
gatePolicy?: {
|
|
5040
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4902
5041
|
enabled: boolean;
|
|
4903
5042
|
passThreshold: number;
|
|
4904
5043
|
failureAction: "retry" | "flag" | "block";
|
|
4905
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4906
5044
|
retry?: {
|
|
4907
5045
|
maxAttempts: number;
|
|
4908
5046
|
augmentPrompt?: string | undefined;
|
|
@@ -4931,6 +5069,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4931
5069
|
refsFrom: string;
|
|
4932
5070
|
refs?: Record<string, string> | undefined;
|
|
4933
5071
|
} | undefined;
|
|
5072
|
+
judgeClaimContract?: {
|
|
5073
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5074
|
+
} | undefined;
|
|
4934
5075
|
}, {
|
|
4935
5076
|
id: string;
|
|
4936
5077
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4940,6 +5081,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4940
5081
|
gatePolicy?: {
|
|
4941
5082
|
passThreshold: number;
|
|
4942
5083
|
failureAction: "retry" | "flag" | "block";
|
|
5084
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
4943
5085
|
retry?: {
|
|
4944
5086
|
maxAttempts: number;
|
|
4945
5087
|
augmentPrompt?: string | undefined;
|
|
@@ -4959,7 +5101,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4959
5101
|
} | undefined;
|
|
4960
5102
|
} | undefined;
|
|
4961
5103
|
enabled?: boolean | undefined;
|
|
4962
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
4963
5104
|
} | undefined;
|
|
4964
5105
|
valueDomain?: {
|
|
4965
5106
|
values: string[];
|
|
@@ -4970,6 +5111,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4970
5111
|
refsFrom: string;
|
|
4971
5112
|
refs?: Record<string, string> | undefined;
|
|
4972
5113
|
} | undefined;
|
|
5114
|
+
judgeClaimContract?: {
|
|
5115
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5116
|
+
} | undefined;
|
|
4973
5117
|
}>, {
|
|
4974
5118
|
id: string;
|
|
4975
5119
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -4977,10 +5121,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
4977
5121
|
passThreshold?: number | undefined;
|
|
4978
5122
|
rubricRef?: string | undefined;
|
|
4979
5123
|
gatePolicy?: {
|
|
5124
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
4980
5125
|
enabled: boolean;
|
|
4981
5126
|
passThreshold: number;
|
|
4982
5127
|
failureAction: "retry" | "flag" | "block";
|
|
4983
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
4984
5128
|
retry?: {
|
|
4985
5129
|
maxAttempts: number;
|
|
4986
5130
|
augmentPrompt?: string | undefined;
|
|
@@ -5009,6 +5153,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5009
5153
|
refsFrom: string;
|
|
5010
5154
|
refs?: Record<string, string> | undefined;
|
|
5011
5155
|
} | undefined;
|
|
5156
|
+
judgeClaimContract?: {
|
|
5157
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5158
|
+
} | undefined;
|
|
5012
5159
|
}, {
|
|
5013
5160
|
id: string;
|
|
5014
5161
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5018,6 +5165,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5018
5165
|
gatePolicy?: {
|
|
5019
5166
|
passThreshold: number;
|
|
5020
5167
|
failureAction: "retry" | "flag" | "block";
|
|
5168
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5021
5169
|
retry?: {
|
|
5022
5170
|
maxAttempts: number;
|
|
5023
5171
|
augmentPrompt?: string | undefined;
|
|
@@ -5037,7 +5185,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5037
5185
|
} | undefined;
|
|
5038
5186
|
} | undefined;
|
|
5039
5187
|
enabled?: boolean | undefined;
|
|
5040
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
5041
5188
|
} | undefined;
|
|
5042
5189
|
valueDomain?: {
|
|
5043
5190
|
values: string[];
|
|
@@ -5048,11 +5195,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5048
5195
|
refsFrom: string;
|
|
5049
5196
|
refs?: Record<string, string> | undefined;
|
|
5050
5197
|
} | undefined;
|
|
5198
|
+
judgeClaimContract?: {
|
|
5199
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5200
|
+
} | undefined;
|
|
5051
5201
|
}>, "many">>;
|
|
5052
5202
|
}, "strip", ZodTypeAny$1, {
|
|
5053
5203
|
surfaceId: string;
|
|
5054
5204
|
lightSourceId: string | readonly string[];
|
|
5055
|
-
activeRunModes?: ("
|
|
5205
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5056
5206
|
dimensions?: {
|
|
5057
5207
|
id: string;
|
|
5058
5208
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5060,10 +5210,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5060
5210
|
passThreshold?: number | undefined;
|
|
5061
5211
|
rubricRef?: string | undefined;
|
|
5062
5212
|
gatePolicy?: {
|
|
5213
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5063
5214
|
enabled: boolean;
|
|
5064
5215
|
passThreshold: number;
|
|
5065
5216
|
failureAction: "retry" | "flag" | "block";
|
|
5066
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5067
5217
|
retry?: {
|
|
5068
5218
|
maxAttempts: number;
|
|
5069
5219
|
augmentPrompt?: string | undefined;
|
|
@@ -5092,11 +5242,14 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5092
5242
|
refsFrom: string;
|
|
5093
5243
|
refs?: Record<string, string> | undefined;
|
|
5094
5244
|
} | undefined;
|
|
5245
|
+
judgeClaimContract?: {
|
|
5246
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5247
|
+
} | undefined;
|
|
5095
5248
|
}[] | undefined;
|
|
5096
5249
|
}, {
|
|
5097
5250
|
surfaceId: string;
|
|
5098
5251
|
lightSourceId: string | readonly string[];
|
|
5099
|
-
activeRunModes?: ("
|
|
5252
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5100
5253
|
dimensions?: {
|
|
5101
5254
|
id: string;
|
|
5102
5255
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5106,6 +5259,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5106
5259
|
gatePolicy?: {
|
|
5107
5260
|
passThreshold: number;
|
|
5108
5261
|
failureAction: "retry" | "flag" | "block";
|
|
5262
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5109
5263
|
retry?: {
|
|
5110
5264
|
maxAttempts: number;
|
|
5111
5265
|
augmentPrompt?: string | undefined;
|
|
@@ -5125,7 +5279,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5125
5279
|
} | undefined;
|
|
5126
5280
|
} | undefined;
|
|
5127
5281
|
enabled?: boolean | undefined;
|
|
5128
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
5129
5282
|
} | undefined;
|
|
5130
5283
|
valueDomain?: {
|
|
5131
5284
|
values: string[];
|
|
@@ -5136,13 +5289,16 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5136
5289
|
refsFrom: string;
|
|
5137
5290
|
refs?: Record<string, string> | undefined;
|
|
5138
5291
|
} | undefined;
|
|
5292
|
+
judgeClaimContract?: {
|
|
5293
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5294
|
+
} | undefined;
|
|
5139
5295
|
}[] | undefined;
|
|
5140
5296
|
}>>;
|
|
5141
5297
|
}, "strip", ZodTypeAny$1, {
|
|
5142
5298
|
skillDrafting: {
|
|
5143
5299
|
surfaceId: string;
|
|
5144
5300
|
lightSourceId: string | readonly string[];
|
|
5145
|
-
activeRunModes?: ("
|
|
5301
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5146
5302
|
dimensions?: {
|
|
5147
5303
|
id: string;
|
|
5148
5304
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5150,10 +5306,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5150
5306
|
passThreshold?: number | undefined;
|
|
5151
5307
|
rubricRef?: string | undefined;
|
|
5152
5308
|
gatePolicy?: {
|
|
5309
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5153
5310
|
enabled: boolean;
|
|
5154
5311
|
passThreshold: number;
|
|
5155
5312
|
failureAction: "retry" | "flag" | "block";
|
|
5156
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5157
5313
|
retry?: {
|
|
5158
5314
|
maxAttempts: number;
|
|
5159
5315
|
augmentPrompt?: string | undefined;
|
|
@@ -5182,12 +5338,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5182
5338
|
refsFrom: string;
|
|
5183
5339
|
refs?: Record<string, string> | undefined;
|
|
5184
5340
|
} | undefined;
|
|
5341
|
+
judgeClaimContract?: {
|
|
5342
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5343
|
+
} | undefined;
|
|
5185
5344
|
}[] | undefined;
|
|
5186
5345
|
};
|
|
5187
5346
|
lessonDrafting?: {
|
|
5188
5347
|
surfaceId: string;
|
|
5189
5348
|
lightSourceId: string | readonly string[];
|
|
5190
|
-
activeRunModes?: ("
|
|
5349
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5191
5350
|
dimensions?: {
|
|
5192
5351
|
id: string;
|
|
5193
5352
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5195,10 +5354,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5195
5354
|
passThreshold?: number | undefined;
|
|
5196
5355
|
rubricRef?: string | undefined;
|
|
5197
5356
|
gatePolicy?: {
|
|
5357
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5198
5358
|
enabled: boolean;
|
|
5199
5359
|
passThreshold: number;
|
|
5200
5360
|
failureAction: "retry" | "flag" | "block";
|
|
5201
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5202
5361
|
retry?: {
|
|
5203
5362
|
maxAttempts: number;
|
|
5204
5363
|
augmentPrompt?: string | undefined;
|
|
@@ -5227,12 +5386,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5227
5386
|
refsFrom: string;
|
|
5228
5387
|
refs?: Record<string, string> | undefined;
|
|
5229
5388
|
} | undefined;
|
|
5389
|
+
judgeClaimContract?: {
|
|
5390
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5391
|
+
} | undefined;
|
|
5230
5392
|
}[] | undefined;
|
|
5231
5393
|
} | undefined;
|
|
5232
5394
|
fixtureGeneration?: {
|
|
5233
5395
|
surfaceId: string;
|
|
5234
5396
|
lightSourceId: string | readonly string[];
|
|
5235
|
-
activeRunModes?: ("
|
|
5397
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5236
5398
|
dimensions?: {
|
|
5237
5399
|
id: string;
|
|
5238
5400
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5240,10 +5402,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5240
5402
|
passThreshold?: number | undefined;
|
|
5241
5403
|
rubricRef?: string | undefined;
|
|
5242
5404
|
gatePolicy?: {
|
|
5405
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5243
5406
|
enabled: boolean;
|
|
5244
5407
|
passThreshold: number;
|
|
5245
5408
|
failureAction: "retry" | "flag" | "block";
|
|
5246
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5247
5409
|
retry?: {
|
|
5248
5410
|
maxAttempts: number;
|
|
5249
5411
|
augmentPrompt?: string | undefined;
|
|
@@ -5272,12 +5434,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5272
5434
|
refsFrom: string;
|
|
5273
5435
|
refs?: Record<string, string> | undefined;
|
|
5274
5436
|
} | undefined;
|
|
5437
|
+
judgeClaimContract?: {
|
|
5438
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5439
|
+
} | undefined;
|
|
5275
5440
|
}[] | undefined;
|
|
5276
5441
|
} | undefined;
|
|
5277
5442
|
codeChangeRecommendationDrafting?: {
|
|
5278
5443
|
surfaceId: string;
|
|
5279
5444
|
lightSourceId: string | readonly string[];
|
|
5280
|
-
activeRunModes?: ("
|
|
5445
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5281
5446
|
dimensions?: {
|
|
5282
5447
|
id: string;
|
|
5283
5448
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5285,10 +5450,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5285
5450
|
passThreshold?: number | undefined;
|
|
5286
5451
|
rubricRef?: string | undefined;
|
|
5287
5452
|
gatePolicy?: {
|
|
5453
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5288
5454
|
enabled: boolean;
|
|
5289
5455
|
passThreshold: number;
|
|
5290
5456
|
failureAction: "retry" | "flag" | "block";
|
|
5291
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5292
5457
|
retry?: {
|
|
5293
5458
|
maxAttempts: number;
|
|
5294
5459
|
augmentPrompt?: string | undefined;
|
|
@@ -5317,12 +5482,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5317
5482
|
refsFrom: string;
|
|
5318
5483
|
refs?: Record<string, string> | undefined;
|
|
5319
5484
|
} | undefined;
|
|
5485
|
+
judgeClaimContract?: {
|
|
5486
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5487
|
+
} | undefined;
|
|
5320
5488
|
}[] | undefined;
|
|
5321
5489
|
} | undefined;
|
|
5322
5490
|
blastRadiusJudging?: {
|
|
5323
5491
|
surfaceId: string;
|
|
5324
5492
|
lightSourceId: string | readonly string[];
|
|
5325
|
-
activeRunModes?: ("
|
|
5493
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5326
5494
|
dimensions?: {
|
|
5327
5495
|
id: string;
|
|
5328
5496
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5330,10 +5498,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5330
5498
|
passThreshold?: number | undefined;
|
|
5331
5499
|
rubricRef?: string | undefined;
|
|
5332
5500
|
gatePolicy?: {
|
|
5501
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5333
5502
|
enabled: boolean;
|
|
5334
5503
|
passThreshold: number;
|
|
5335
5504
|
failureAction: "retry" | "flag" | "block";
|
|
5336
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5337
5505
|
retry?: {
|
|
5338
5506
|
maxAttempts: number;
|
|
5339
5507
|
augmentPrompt?: string | undefined;
|
|
@@ -5362,13 +5530,16 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5362
5530
|
refsFrom: string;
|
|
5363
5531
|
refs?: Record<string, string> | undefined;
|
|
5364
5532
|
} | undefined;
|
|
5533
|
+
judgeClaimContract?: {
|
|
5534
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5535
|
+
} | undefined;
|
|
5365
5536
|
}[] | undefined;
|
|
5366
5537
|
} | undefined;
|
|
5367
5538
|
}, {
|
|
5368
5539
|
skillDrafting: {
|
|
5369
5540
|
surfaceId: string;
|
|
5370
5541
|
lightSourceId: string | readonly string[];
|
|
5371
|
-
activeRunModes?: ("
|
|
5542
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5372
5543
|
dimensions?: {
|
|
5373
5544
|
id: string;
|
|
5374
5545
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5378,6 +5549,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5378
5549
|
gatePolicy?: {
|
|
5379
5550
|
passThreshold: number;
|
|
5380
5551
|
failureAction: "retry" | "flag" | "block";
|
|
5552
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5381
5553
|
retry?: {
|
|
5382
5554
|
maxAttempts: number;
|
|
5383
5555
|
augmentPrompt?: string | undefined;
|
|
@@ -5397,7 +5569,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5397
5569
|
} | undefined;
|
|
5398
5570
|
} | undefined;
|
|
5399
5571
|
enabled?: boolean | undefined;
|
|
5400
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
5401
5572
|
} | undefined;
|
|
5402
5573
|
valueDomain?: {
|
|
5403
5574
|
values: string[];
|
|
@@ -5408,12 +5579,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5408
5579
|
refsFrom: string;
|
|
5409
5580
|
refs?: Record<string, string> | undefined;
|
|
5410
5581
|
} | undefined;
|
|
5582
|
+
judgeClaimContract?: {
|
|
5583
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5584
|
+
} | undefined;
|
|
5411
5585
|
}[] | undefined;
|
|
5412
5586
|
};
|
|
5413
5587
|
lessonDrafting?: {
|
|
5414
5588
|
surfaceId: string;
|
|
5415
5589
|
lightSourceId: string | readonly string[];
|
|
5416
|
-
activeRunModes?: ("
|
|
5590
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5417
5591
|
dimensions?: {
|
|
5418
5592
|
id: string;
|
|
5419
5593
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5423,6 +5597,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5423
5597
|
gatePolicy?: {
|
|
5424
5598
|
passThreshold: number;
|
|
5425
5599
|
failureAction: "retry" | "flag" | "block";
|
|
5600
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5426
5601
|
retry?: {
|
|
5427
5602
|
maxAttempts: number;
|
|
5428
5603
|
augmentPrompt?: string | undefined;
|
|
@@ -5442,7 +5617,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5442
5617
|
} | undefined;
|
|
5443
5618
|
} | undefined;
|
|
5444
5619
|
enabled?: boolean | undefined;
|
|
5445
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
5446
5620
|
} | undefined;
|
|
5447
5621
|
valueDomain?: {
|
|
5448
5622
|
values: string[];
|
|
@@ -5453,12 +5627,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5453
5627
|
refsFrom: string;
|
|
5454
5628
|
refs?: Record<string, string> | undefined;
|
|
5455
5629
|
} | undefined;
|
|
5630
|
+
judgeClaimContract?: {
|
|
5631
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5632
|
+
} | undefined;
|
|
5456
5633
|
}[] | undefined;
|
|
5457
5634
|
} | undefined;
|
|
5458
5635
|
fixtureGeneration?: {
|
|
5459
5636
|
surfaceId: string;
|
|
5460
5637
|
lightSourceId: string | readonly string[];
|
|
5461
|
-
activeRunModes?: ("
|
|
5638
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5462
5639
|
dimensions?: {
|
|
5463
5640
|
id: string;
|
|
5464
5641
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5468,6 +5645,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5468
5645
|
gatePolicy?: {
|
|
5469
5646
|
passThreshold: number;
|
|
5470
5647
|
failureAction: "retry" | "flag" | "block";
|
|
5648
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5471
5649
|
retry?: {
|
|
5472
5650
|
maxAttempts: number;
|
|
5473
5651
|
augmentPrompt?: string | undefined;
|
|
@@ -5487,7 +5665,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5487
5665
|
} | undefined;
|
|
5488
5666
|
} | undefined;
|
|
5489
5667
|
enabled?: boolean | undefined;
|
|
5490
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
5491
5668
|
} | undefined;
|
|
5492
5669
|
valueDomain?: {
|
|
5493
5670
|
values: string[];
|
|
@@ -5498,12 +5675,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5498
5675
|
refsFrom: string;
|
|
5499
5676
|
refs?: Record<string, string> | undefined;
|
|
5500
5677
|
} | undefined;
|
|
5678
|
+
judgeClaimContract?: {
|
|
5679
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5680
|
+
} | undefined;
|
|
5501
5681
|
}[] | undefined;
|
|
5502
5682
|
} | undefined;
|
|
5503
5683
|
codeChangeRecommendationDrafting?: {
|
|
5504
5684
|
surfaceId: string;
|
|
5505
5685
|
lightSourceId: string | readonly string[];
|
|
5506
|
-
activeRunModes?: ("
|
|
5686
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5507
5687
|
dimensions?: {
|
|
5508
5688
|
id: string;
|
|
5509
5689
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5513,6 +5693,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5513
5693
|
gatePolicy?: {
|
|
5514
5694
|
passThreshold: number;
|
|
5515
5695
|
failureAction: "retry" | "flag" | "block";
|
|
5696
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5516
5697
|
retry?: {
|
|
5517
5698
|
maxAttempts: number;
|
|
5518
5699
|
augmentPrompt?: string | undefined;
|
|
@@ -5532,7 +5713,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5532
5713
|
} | undefined;
|
|
5533
5714
|
} | undefined;
|
|
5534
5715
|
enabled?: boolean | undefined;
|
|
5535
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
5536
5716
|
} | undefined;
|
|
5537
5717
|
valueDomain?: {
|
|
5538
5718
|
values: string[];
|
|
@@ -5543,12 +5723,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5543
5723
|
refsFrom: string;
|
|
5544
5724
|
refs?: Record<string, string> | undefined;
|
|
5545
5725
|
} | undefined;
|
|
5726
|
+
judgeClaimContract?: {
|
|
5727
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5728
|
+
} | undefined;
|
|
5546
5729
|
}[] | undefined;
|
|
5547
5730
|
} | undefined;
|
|
5548
5731
|
blastRadiusJudging?: {
|
|
5549
5732
|
surfaceId: string;
|
|
5550
5733
|
lightSourceId: string | readonly string[];
|
|
5551
|
-
activeRunModes?: ("
|
|
5734
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5552
5735
|
dimensions?: {
|
|
5553
5736
|
id: string;
|
|
5554
5737
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5558,6 +5741,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5558
5741
|
gatePolicy?: {
|
|
5559
5742
|
passThreshold: number;
|
|
5560
5743
|
failureAction: "retry" | "flag" | "block";
|
|
5744
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5561
5745
|
retry?: {
|
|
5562
5746
|
maxAttempts: number;
|
|
5563
5747
|
augmentPrompt?: string | undefined;
|
|
@@ -5577,7 +5761,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5577
5761
|
} | undefined;
|
|
5578
5762
|
} | undefined;
|
|
5579
5763
|
enabled?: boolean | undefined;
|
|
5580
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
5581
5764
|
} | undefined;
|
|
5582
5765
|
valueDomain?: {
|
|
5583
5766
|
values: string[];
|
|
@@ -5588,6 +5771,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5588
5771
|
refsFrom: string;
|
|
5589
5772
|
refs?: Record<string, string> | undefined;
|
|
5590
5773
|
} | undefined;
|
|
5774
|
+
judgeClaimContract?: {
|
|
5775
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5776
|
+
} | undefined;
|
|
5591
5777
|
}[] | undefined;
|
|
5592
5778
|
} | undefined;
|
|
5593
5779
|
}>>;
|
|
@@ -5603,10 +5789,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5603
5789
|
passThreshold?: number | undefined;
|
|
5604
5790
|
rubricRef?: string | undefined;
|
|
5605
5791
|
gatePolicy?: {
|
|
5792
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5606
5793
|
enabled: boolean;
|
|
5607
5794
|
passThreshold: number;
|
|
5608
5795
|
failureAction: "retry" | "flag" | "block";
|
|
5609
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5610
5796
|
retry?: {
|
|
5611
5797
|
maxAttempts: number;
|
|
5612
5798
|
augmentPrompt?: string | undefined;
|
|
@@ -5635,6 +5821,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5635
5821
|
refsFrom: string;
|
|
5636
5822
|
refs?: Record<string, string> | undefined;
|
|
5637
5823
|
} | undefined;
|
|
5824
|
+
judgeClaimContract?: {
|
|
5825
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5826
|
+
} | undefined;
|
|
5638
5827
|
}[];
|
|
5639
5828
|
cohortTags: string[];
|
|
5640
5829
|
substrateColumns: {
|
|
@@ -5642,8 +5831,8 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5642
5831
|
control: "operator" | "vendor" | "platform" | "third-party";
|
|
5643
5832
|
visibility: "transparent" | "announced" | "opaque";
|
|
5644
5833
|
semantic: "deployment-state" | "diagnostic";
|
|
5645
|
-
values?: string[] | undefined;
|
|
5646
5834
|
status?: "active" | "forward-declared" | "deprecated" | undefined;
|
|
5835
|
+
values?: string[] | undefined;
|
|
5647
5836
|
description?: string | undefined;
|
|
5648
5837
|
emissionExpectation?: "always" | "conditional" | {
|
|
5649
5838
|
whenever: string;
|
|
@@ -5693,7 +5882,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5693
5882
|
routings?: {
|
|
5694
5883
|
surfaceId: string;
|
|
5695
5884
|
lightSourceId: string | readonly string[];
|
|
5696
|
-
activeRunModes?: ("
|
|
5885
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5697
5886
|
}[] | undefined;
|
|
5698
5887
|
pricing?: Record<string, {
|
|
5699
5888
|
perMillionInput: number;
|
|
@@ -5705,7 +5894,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5705
5894
|
skillDrafting: {
|
|
5706
5895
|
surfaceId: string;
|
|
5707
5896
|
lightSourceId: string | readonly string[];
|
|
5708
|
-
activeRunModes?: ("
|
|
5897
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5709
5898
|
dimensions?: {
|
|
5710
5899
|
id: string;
|
|
5711
5900
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5713,10 +5902,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5713
5902
|
passThreshold?: number | undefined;
|
|
5714
5903
|
rubricRef?: string | undefined;
|
|
5715
5904
|
gatePolicy?: {
|
|
5905
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5716
5906
|
enabled: boolean;
|
|
5717
5907
|
passThreshold: number;
|
|
5718
5908
|
failureAction: "retry" | "flag" | "block";
|
|
5719
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5720
5909
|
retry?: {
|
|
5721
5910
|
maxAttempts: number;
|
|
5722
5911
|
augmentPrompt?: string | undefined;
|
|
@@ -5745,12 +5934,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5745
5934
|
refsFrom: string;
|
|
5746
5935
|
refs?: Record<string, string> | undefined;
|
|
5747
5936
|
} | undefined;
|
|
5937
|
+
judgeClaimContract?: {
|
|
5938
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5939
|
+
} | undefined;
|
|
5748
5940
|
}[] | undefined;
|
|
5749
5941
|
};
|
|
5750
5942
|
lessonDrafting?: {
|
|
5751
5943
|
surfaceId: string;
|
|
5752
5944
|
lightSourceId: string | readonly string[];
|
|
5753
|
-
activeRunModes?: ("
|
|
5945
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5754
5946
|
dimensions?: {
|
|
5755
5947
|
id: string;
|
|
5756
5948
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5758,10 +5950,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5758
5950
|
passThreshold?: number | undefined;
|
|
5759
5951
|
rubricRef?: string | undefined;
|
|
5760
5952
|
gatePolicy?: {
|
|
5953
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5761
5954
|
enabled: boolean;
|
|
5762
5955
|
passThreshold: number;
|
|
5763
5956
|
failureAction: "retry" | "flag" | "block";
|
|
5764
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5765
5957
|
retry?: {
|
|
5766
5958
|
maxAttempts: number;
|
|
5767
5959
|
augmentPrompt?: string | undefined;
|
|
@@ -5790,12 +5982,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5790
5982
|
refsFrom: string;
|
|
5791
5983
|
refs?: Record<string, string> | undefined;
|
|
5792
5984
|
} | undefined;
|
|
5985
|
+
judgeClaimContract?: {
|
|
5986
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
5987
|
+
} | undefined;
|
|
5793
5988
|
}[] | undefined;
|
|
5794
5989
|
} | undefined;
|
|
5795
5990
|
fixtureGeneration?: {
|
|
5796
5991
|
surfaceId: string;
|
|
5797
5992
|
lightSourceId: string | readonly string[];
|
|
5798
|
-
activeRunModes?: ("
|
|
5993
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5799
5994
|
dimensions?: {
|
|
5800
5995
|
id: string;
|
|
5801
5996
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5803,10 +5998,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5803
5998
|
passThreshold?: number | undefined;
|
|
5804
5999
|
rubricRef?: string | undefined;
|
|
5805
6000
|
gatePolicy?: {
|
|
6001
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5806
6002
|
enabled: boolean;
|
|
5807
6003
|
passThreshold: number;
|
|
5808
6004
|
failureAction: "retry" | "flag" | "block";
|
|
5809
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5810
6005
|
retry?: {
|
|
5811
6006
|
maxAttempts: number;
|
|
5812
6007
|
augmentPrompt?: string | undefined;
|
|
@@ -5835,12 +6030,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5835
6030
|
refsFrom: string;
|
|
5836
6031
|
refs?: Record<string, string> | undefined;
|
|
5837
6032
|
} | undefined;
|
|
6033
|
+
judgeClaimContract?: {
|
|
6034
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
6035
|
+
} | undefined;
|
|
5838
6036
|
}[] | undefined;
|
|
5839
6037
|
} | undefined;
|
|
5840
6038
|
codeChangeRecommendationDrafting?: {
|
|
5841
6039
|
surfaceId: string;
|
|
5842
6040
|
lightSourceId: string | readonly string[];
|
|
5843
|
-
activeRunModes?: ("
|
|
6041
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5844
6042
|
dimensions?: {
|
|
5845
6043
|
id: string;
|
|
5846
6044
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5848,10 +6046,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5848
6046
|
passThreshold?: number | undefined;
|
|
5849
6047
|
rubricRef?: string | undefined;
|
|
5850
6048
|
gatePolicy?: {
|
|
6049
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5851
6050
|
enabled: boolean;
|
|
5852
6051
|
passThreshold: number;
|
|
5853
6052
|
failureAction: "retry" | "flag" | "block";
|
|
5854
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5855
6053
|
retry?: {
|
|
5856
6054
|
maxAttempts: number;
|
|
5857
6055
|
augmentPrompt?: string | undefined;
|
|
@@ -5880,12 +6078,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5880
6078
|
refsFrom: string;
|
|
5881
6079
|
refs?: Record<string, string> | undefined;
|
|
5882
6080
|
} | undefined;
|
|
6081
|
+
judgeClaimContract?: {
|
|
6082
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
6083
|
+
} | undefined;
|
|
5883
6084
|
}[] | undefined;
|
|
5884
6085
|
} | undefined;
|
|
5885
6086
|
blastRadiusJudging?: {
|
|
5886
6087
|
surfaceId: string;
|
|
5887
6088
|
lightSourceId: string | readonly string[];
|
|
5888
|
-
activeRunModes?: ("
|
|
6089
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5889
6090
|
dimensions?: {
|
|
5890
6091
|
id: string;
|
|
5891
6092
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -5893,10 +6094,10 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5893
6094
|
passThreshold?: number | undefined;
|
|
5894
6095
|
rubricRef?: string | undefined;
|
|
5895
6096
|
gatePolicy?: {
|
|
6097
|
+
activeRunModes: ("production" | "test" | "eval" | "replay" | "local_dev")[];
|
|
5896
6098
|
enabled: boolean;
|
|
5897
6099
|
passThreshold: number;
|
|
5898
6100
|
failureAction: "retry" | "flag" | "block";
|
|
5899
|
-
activeRunModes: ("local_dev" | "replay" | "production" | "test" | "eval")[];
|
|
5900
6101
|
retry?: {
|
|
5901
6102
|
maxAttempts: number;
|
|
5902
6103
|
augmentPrompt?: string | undefined;
|
|
@@ -5925,6 +6126,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5925
6126
|
refsFrom: string;
|
|
5926
6127
|
refs?: Record<string, string> | undefined;
|
|
5927
6128
|
} | undefined;
|
|
6129
|
+
judgeClaimContract?: {
|
|
6130
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
6131
|
+
} | undefined;
|
|
5928
6132
|
}[] | undefined;
|
|
5929
6133
|
} | undefined;
|
|
5930
6134
|
} | undefined;
|
|
@@ -5941,6 +6145,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5941
6145
|
gatePolicy?: {
|
|
5942
6146
|
passThreshold: number;
|
|
5943
6147
|
failureAction: "retry" | "flag" | "block";
|
|
6148
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
5944
6149
|
retry?: {
|
|
5945
6150
|
maxAttempts: number;
|
|
5946
6151
|
augmentPrompt?: string | undefined;
|
|
@@ -5960,7 +6165,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5960
6165
|
} | undefined;
|
|
5961
6166
|
} | undefined;
|
|
5962
6167
|
enabled?: boolean | undefined;
|
|
5963
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
5964
6168
|
} | undefined;
|
|
5965
6169
|
valueDomain?: {
|
|
5966
6170
|
values: string[];
|
|
@@ -5971,6 +6175,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5971
6175
|
refsFrom: string;
|
|
5972
6176
|
refs?: Record<string, string> | undefined;
|
|
5973
6177
|
} | undefined;
|
|
6178
|
+
judgeClaimContract?: {
|
|
6179
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
6180
|
+
} | undefined;
|
|
5974
6181
|
}[];
|
|
5975
6182
|
status?: "active" | "forward-declared" | "deprecated" | undefined;
|
|
5976
6183
|
description?: string | undefined;
|
|
@@ -5979,8 +6186,8 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
5979
6186
|
id: string;
|
|
5980
6187
|
control: "operator" | "vendor" | "platform" | "third-party";
|
|
5981
6188
|
visibility: "transparent" | "announced" | "opaque";
|
|
5982
|
-
values?: string[] | undefined;
|
|
5983
6189
|
status?: "active" | "forward-declared" | "deprecated" | undefined;
|
|
6190
|
+
values?: string[] | undefined;
|
|
5984
6191
|
description?: string | undefined;
|
|
5985
6192
|
semantic?: "deployment-state" | "diagnostic" | undefined;
|
|
5986
6193
|
emissionExpectation?: "always" | "conditional" | {
|
|
@@ -6030,7 +6237,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6030
6237
|
routings?: {
|
|
6031
6238
|
surfaceId: string;
|
|
6032
6239
|
lightSourceId: string | readonly string[];
|
|
6033
|
-
activeRunModes?: ("
|
|
6240
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6034
6241
|
}[] | undefined;
|
|
6035
6242
|
pricing?: Record<string, {
|
|
6036
6243
|
perMillionInput: number;
|
|
@@ -6042,7 +6249,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6042
6249
|
skillDrafting: {
|
|
6043
6250
|
surfaceId: string;
|
|
6044
6251
|
lightSourceId: string | readonly string[];
|
|
6045
|
-
activeRunModes?: ("
|
|
6252
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6046
6253
|
dimensions?: {
|
|
6047
6254
|
id: string;
|
|
6048
6255
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -6052,6 +6259,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6052
6259
|
gatePolicy?: {
|
|
6053
6260
|
passThreshold: number;
|
|
6054
6261
|
failureAction: "retry" | "flag" | "block";
|
|
6262
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6055
6263
|
retry?: {
|
|
6056
6264
|
maxAttempts: number;
|
|
6057
6265
|
augmentPrompt?: string | undefined;
|
|
@@ -6071,7 +6279,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6071
6279
|
} | undefined;
|
|
6072
6280
|
} | undefined;
|
|
6073
6281
|
enabled?: boolean | undefined;
|
|
6074
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
6075
6282
|
} | undefined;
|
|
6076
6283
|
valueDomain?: {
|
|
6077
6284
|
values: string[];
|
|
@@ -6082,12 +6289,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6082
6289
|
refsFrom: string;
|
|
6083
6290
|
refs?: Record<string, string> | undefined;
|
|
6084
6291
|
} | undefined;
|
|
6292
|
+
judgeClaimContract?: {
|
|
6293
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
6294
|
+
} | undefined;
|
|
6085
6295
|
}[] | undefined;
|
|
6086
6296
|
};
|
|
6087
6297
|
lessonDrafting?: {
|
|
6088
6298
|
surfaceId: string;
|
|
6089
6299
|
lightSourceId: string | readonly string[];
|
|
6090
|
-
activeRunModes?: ("
|
|
6300
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6091
6301
|
dimensions?: {
|
|
6092
6302
|
id: string;
|
|
6093
6303
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -6097,6 +6307,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6097
6307
|
gatePolicy?: {
|
|
6098
6308
|
passThreshold: number;
|
|
6099
6309
|
failureAction: "retry" | "flag" | "block";
|
|
6310
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6100
6311
|
retry?: {
|
|
6101
6312
|
maxAttempts: number;
|
|
6102
6313
|
augmentPrompt?: string | undefined;
|
|
@@ -6116,7 +6327,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6116
6327
|
} | undefined;
|
|
6117
6328
|
} | undefined;
|
|
6118
6329
|
enabled?: boolean | undefined;
|
|
6119
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
6120
6330
|
} | undefined;
|
|
6121
6331
|
valueDomain?: {
|
|
6122
6332
|
values: string[];
|
|
@@ -6127,12 +6337,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6127
6337
|
refsFrom: string;
|
|
6128
6338
|
refs?: Record<string, string> | undefined;
|
|
6129
6339
|
} | undefined;
|
|
6340
|
+
judgeClaimContract?: {
|
|
6341
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
6342
|
+
} | undefined;
|
|
6130
6343
|
}[] | undefined;
|
|
6131
6344
|
} | undefined;
|
|
6132
6345
|
fixtureGeneration?: {
|
|
6133
6346
|
surfaceId: string;
|
|
6134
6347
|
lightSourceId: string | readonly string[];
|
|
6135
|
-
activeRunModes?: ("
|
|
6348
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6136
6349
|
dimensions?: {
|
|
6137
6350
|
id: string;
|
|
6138
6351
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -6142,6 +6355,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6142
6355
|
gatePolicy?: {
|
|
6143
6356
|
passThreshold: number;
|
|
6144
6357
|
failureAction: "retry" | "flag" | "block";
|
|
6358
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6145
6359
|
retry?: {
|
|
6146
6360
|
maxAttempts: number;
|
|
6147
6361
|
augmentPrompt?: string | undefined;
|
|
@@ -6161,7 +6375,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6161
6375
|
} | undefined;
|
|
6162
6376
|
} | undefined;
|
|
6163
6377
|
enabled?: boolean | undefined;
|
|
6164
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
6165
6378
|
} | undefined;
|
|
6166
6379
|
valueDomain?: {
|
|
6167
6380
|
values: string[];
|
|
@@ -6172,12 +6385,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6172
6385
|
refsFrom: string;
|
|
6173
6386
|
refs?: Record<string, string> | undefined;
|
|
6174
6387
|
} | undefined;
|
|
6388
|
+
judgeClaimContract?: {
|
|
6389
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
6390
|
+
} | undefined;
|
|
6175
6391
|
}[] | undefined;
|
|
6176
6392
|
} | undefined;
|
|
6177
6393
|
codeChangeRecommendationDrafting?: {
|
|
6178
6394
|
surfaceId: string;
|
|
6179
6395
|
lightSourceId: string | readonly string[];
|
|
6180
|
-
activeRunModes?: ("
|
|
6396
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6181
6397
|
dimensions?: {
|
|
6182
6398
|
id: string;
|
|
6183
6399
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -6187,6 +6403,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6187
6403
|
gatePolicy?: {
|
|
6188
6404
|
passThreshold: number;
|
|
6189
6405
|
failureAction: "retry" | "flag" | "block";
|
|
6406
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6190
6407
|
retry?: {
|
|
6191
6408
|
maxAttempts: number;
|
|
6192
6409
|
augmentPrompt?: string | undefined;
|
|
@@ -6206,7 +6423,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6206
6423
|
} | undefined;
|
|
6207
6424
|
} | undefined;
|
|
6208
6425
|
enabled?: boolean | undefined;
|
|
6209
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
6210
6426
|
} | undefined;
|
|
6211
6427
|
valueDomain?: {
|
|
6212
6428
|
values: string[];
|
|
@@ -6217,12 +6433,15 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6217
6433
|
refsFrom: string;
|
|
6218
6434
|
refs?: Record<string, string> | undefined;
|
|
6219
6435
|
} | undefined;
|
|
6436
|
+
judgeClaimContract?: {
|
|
6437
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
6438
|
+
} | undefined;
|
|
6220
6439
|
}[] | undefined;
|
|
6221
6440
|
} | undefined;
|
|
6222
6441
|
blastRadiusJudging?: {
|
|
6223
6442
|
surfaceId: string;
|
|
6224
6443
|
lightSourceId: string | readonly string[];
|
|
6225
|
-
activeRunModes?: ("
|
|
6444
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6226
6445
|
dimensions?: {
|
|
6227
6446
|
id: string;
|
|
6228
6447
|
scoring: "custom" | "exact-match" | "llm-judge";
|
|
@@ -6232,6 +6451,7 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6232
6451
|
gatePolicy?: {
|
|
6233
6452
|
passThreshold: number;
|
|
6234
6453
|
failureAction: "retry" | "flag" | "block";
|
|
6454
|
+
activeRunModes?: ("production" | "test" | "eval" | "replay" | "local_dev")[] | undefined;
|
|
6235
6455
|
retry?: {
|
|
6236
6456
|
maxAttempts: number;
|
|
6237
6457
|
augmentPrompt?: string | undefined;
|
|
@@ -6251,7 +6471,6 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6251
6471
|
} | undefined;
|
|
6252
6472
|
} | undefined;
|
|
6253
6473
|
enabled?: boolean | undefined;
|
|
6254
|
-
activeRunModes?: ("local_dev" | "replay" | "production" | "test" | "eval")[] | undefined;
|
|
6255
6474
|
} | undefined;
|
|
6256
6475
|
valueDomain?: {
|
|
6257
6476
|
values: string[];
|
|
@@ -6262,6 +6481,9 @@ declare const SurfaceContractSchema: ZodObject<{
|
|
|
6262
6481
|
refsFrom: string;
|
|
6263
6482
|
refs?: Record<string, string> | undefined;
|
|
6264
6483
|
} | undefined;
|
|
6484
|
+
judgeClaimContract?: {
|
|
6485
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
6486
|
+
} | undefined;
|
|
6265
6487
|
}[] | undefined;
|
|
6266
6488
|
} | undefined;
|
|
6267
6489
|
} | undefined;
|
|
@@ -9902,19 +10124,19 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
9902
10124
|
timestamp: ZodString;
|
|
9903
10125
|
columns: ZodRecord<ZodString, ZodString>;
|
|
9904
10126
|
}, "strip", ZodTypeAny$1, {
|
|
9905
|
-
provenance: "
|
|
10127
|
+
provenance: "replay" | "local_dev" | "pre_deploy_gate" | "scheduled_production_eval" | "manual_production_run";
|
|
9906
10128
|
timestamp: string;
|
|
9907
10129
|
lensVersion: string;
|
|
9908
10130
|
lightSourceIdentifier: string;
|
|
9909
|
-
runMode: "
|
|
10131
|
+
runMode: "production" | "test" | "eval" | "replay" | "local_dev";
|
|
9910
10132
|
correlationId: string;
|
|
9911
10133
|
columns: Record<string, string>;
|
|
9912
10134
|
}, {
|
|
9913
|
-
provenance: "
|
|
10135
|
+
provenance: "replay" | "local_dev" | "pre_deploy_gate" | "scheduled_production_eval" | "manual_production_run";
|
|
9914
10136
|
timestamp: string;
|
|
9915
10137
|
lensVersion: string;
|
|
9916
10138
|
lightSourceIdentifier: string;
|
|
9917
|
-
runMode: "
|
|
10139
|
+
runMode: "production" | "test" | "eval" | "replay" | "local_dev";
|
|
9918
10140
|
correlationId: string;
|
|
9919
10141
|
columns: Record<string, string>;
|
|
9920
10142
|
}>>;
|
|
@@ -9962,6 +10184,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
9962
10184
|
rubricFacet?: string | undefined;
|
|
9963
10185
|
rubricDefaultReason?: string | undefined;
|
|
9964
10186
|
}>>;
|
|
10187
|
+
|
|
10188
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
10189
|
+
status: ZodLiteral<"emitted">;
|
|
10190
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
10191
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
10192
|
+
tool: ZodString;
|
|
10193
|
+
}, "strip", ZodTypeAny$1, {
|
|
10194
|
+
kind: "tool-not-invoked";
|
|
10195
|
+
tool: string;
|
|
10196
|
+
}, {
|
|
10197
|
+
kind: "tool-not-invoked";
|
|
10198
|
+
tool: string;
|
|
10199
|
+
}>, ZodObject<{
|
|
10200
|
+
kind: ZodLiteral<"datum-absent">;
|
|
10201
|
+
datum: ZodString;
|
|
10202
|
+
reference: ZodOptional$1<ZodString>;
|
|
10203
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
10204
|
+
}, "strip", ZodTypeAny$1, {
|
|
10205
|
+
kind: "datum-absent";
|
|
10206
|
+
datum: string;
|
|
10207
|
+
reference?: string | undefined;
|
|
10208
|
+
direction?: "commission" | "omission" | undefined;
|
|
10209
|
+
}, {
|
|
10210
|
+
kind: "datum-absent";
|
|
10211
|
+
datum: string;
|
|
10212
|
+
reference?: string | undefined;
|
|
10213
|
+
direction?: "commission" | "omission" | undefined;
|
|
10214
|
+
}>]>, "many">;
|
|
10215
|
+
}, "strip", ZodTypeAny$1, {
|
|
10216
|
+
status: "emitted";
|
|
10217
|
+
assertions: ({
|
|
10218
|
+
kind: "tool-not-invoked";
|
|
10219
|
+
tool: string;
|
|
10220
|
+
} | {
|
|
10221
|
+
kind: "datum-absent";
|
|
10222
|
+
datum: string;
|
|
10223
|
+
reference?: string | undefined;
|
|
10224
|
+
direction?: "commission" | "omission" | undefined;
|
|
10225
|
+
})[];
|
|
10226
|
+
}, {
|
|
10227
|
+
status: "emitted";
|
|
10228
|
+
assertions: ({
|
|
10229
|
+
kind: "tool-not-invoked";
|
|
10230
|
+
tool: string;
|
|
10231
|
+
} | {
|
|
10232
|
+
kind: "datum-absent";
|
|
10233
|
+
datum: string;
|
|
10234
|
+
reference?: string | undefined;
|
|
10235
|
+
direction?: "commission" | "omission" | undefined;
|
|
10236
|
+
})[];
|
|
10237
|
+
}>, ZodObject<{
|
|
10238
|
+
status: ZodLiteral<"malformed">;
|
|
10239
|
+
reflectionAttempted: ZodBoolean;
|
|
10240
|
+
raw: ZodOptional$1<ZodString>;
|
|
10241
|
+
}, "strip", ZodTypeAny$1, {
|
|
10242
|
+
status: "malformed";
|
|
10243
|
+
reflectionAttempted: boolean;
|
|
10244
|
+
raw?: string | undefined;
|
|
10245
|
+
}, {
|
|
10246
|
+
status: "malformed";
|
|
10247
|
+
reflectionAttempted: boolean;
|
|
10248
|
+
raw?: string | undefined;
|
|
10249
|
+
}>]>>;
|
|
9965
10250
|
}, "passthrough", ZodTypeAny$1, objectOutputType<{
|
|
9966
10251
|
dimensionId: ZodString;
|
|
9967
10252
|
passed: ZodBoolean;
|
|
@@ -9999,6 +10284,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
9999
10284
|
rubricFacet?: string | undefined;
|
|
10000
10285
|
rubricDefaultReason?: string | undefined;
|
|
10001
10286
|
}>>;
|
|
10287
|
+
|
|
10288
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
10289
|
+
status: ZodLiteral<"emitted">;
|
|
10290
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
10291
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
10292
|
+
tool: ZodString;
|
|
10293
|
+
}, "strip", ZodTypeAny$1, {
|
|
10294
|
+
kind: "tool-not-invoked";
|
|
10295
|
+
tool: string;
|
|
10296
|
+
}, {
|
|
10297
|
+
kind: "tool-not-invoked";
|
|
10298
|
+
tool: string;
|
|
10299
|
+
}>, ZodObject<{
|
|
10300
|
+
kind: ZodLiteral<"datum-absent">;
|
|
10301
|
+
datum: ZodString;
|
|
10302
|
+
reference: ZodOptional$1<ZodString>;
|
|
10303
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
10304
|
+
}, "strip", ZodTypeAny$1, {
|
|
10305
|
+
kind: "datum-absent";
|
|
10306
|
+
datum: string;
|
|
10307
|
+
reference?: string | undefined;
|
|
10308
|
+
direction?: "commission" | "omission" | undefined;
|
|
10309
|
+
}, {
|
|
10310
|
+
kind: "datum-absent";
|
|
10311
|
+
datum: string;
|
|
10312
|
+
reference?: string | undefined;
|
|
10313
|
+
direction?: "commission" | "omission" | undefined;
|
|
10314
|
+
}>]>, "many">;
|
|
10315
|
+
}, "strip", ZodTypeAny$1, {
|
|
10316
|
+
status: "emitted";
|
|
10317
|
+
assertions: ({
|
|
10318
|
+
kind: "tool-not-invoked";
|
|
10319
|
+
tool: string;
|
|
10320
|
+
} | {
|
|
10321
|
+
kind: "datum-absent";
|
|
10322
|
+
datum: string;
|
|
10323
|
+
reference?: string | undefined;
|
|
10324
|
+
direction?: "commission" | "omission" | undefined;
|
|
10325
|
+
})[];
|
|
10326
|
+
}, {
|
|
10327
|
+
status: "emitted";
|
|
10328
|
+
assertions: ({
|
|
10329
|
+
kind: "tool-not-invoked";
|
|
10330
|
+
tool: string;
|
|
10331
|
+
} | {
|
|
10332
|
+
kind: "datum-absent";
|
|
10333
|
+
datum: string;
|
|
10334
|
+
reference?: string | undefined;
|
|
10335
|
+
direction?: "commission" | "omission" | undefined;
|
|
10336
|
+
})[];
|
|
10337
|
+
}>, ZodObject<{
|
|
10338
|
+
status: ZodLiteral<"malformed">;
|
|
10339
|
+
reflectionAttempted: ZodBoolean;
|
|
10340
|
+
raw: ZodOptional$1<ZodString>;
|
|
10341
|
+
}, "strip", ZodTypeAny$1, {
|
|
10342
|
+
status: "malformed";
|
|
10343
|
+
reflectionAttempted: boolean;
|
|
10344
|
+
raw?: string | undefined;
|
|
10345
|
+
}, {
|
|
10346
|
+
status: "malformed";
|
|
10347
|
+
reflectionAttempted: boolean;
|
|
10348
|
+
raw?: string | undefined;
|
|
10349
|
+
}>]>>;
|
|
10002
10350
|
}, ZodTypeAny$1, "passthrough">, objectInputType<{
|
|
10003
10351
|
dimensionId: ZodString;
|
|
10004
10352
|
passed: ZodBoolean;
|
|
@@ -10036,6 +10384,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10036
10384
|
rubricFacet?: string | undefined;
|
|
10037
10385
|
rubricDefaultReason?: string | undefined;
|
|
10038
10386
|
}>>;
|
|
10387
|
+
|
|
10388
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
10389
|
+
status: ZodLiteral<"emitted">;
|
|
10390
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
10391
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
10392
|
+
tool: ZodString;
|
|
10393
|
+
}, "strip", ZodTypeAny$1, {
|
|
10394
|
+
kind: "tool-not-invoked";
|
|
10395
|
+
tool: string;
|
|
10396
|
+
}, {
|
|
10397
|
+
kind: "tool-not-invoked";
|
|
10398
|
+
tool: string;
|
|
10399
|
+
}>, ZodObject<{
|
|
10400
|
+
kind: ZodLiteral<"datum-absent">;
|
|
10401
|
+
datum: ZodString;
|
|
10402
|
+
reference: ZodOptional$1<ZodString>;
|
|
10403
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
10404
|
+
}, "strip", ZodTypeAny$1, {
|
|
10405
|
+
kind: "datum-absent";
|
|
10406
|
+
datum: string;
|
|
10407
|
+
reference?: string | undefined;
|
|
10408
|
+
direction?: "commission" | "omission" | undefined;
|
|
10409
|
+
}, {
|
|
10410
|
+
kind: "datum-absent";
|
|
10411
|
+
datum: string;
|
|
10412
|
+
reference?: string | undefined;
|
|
10413
|
+
direction?: "commission" | "omission" | undefined;
|
|
10414
|
+
}>]>, "many">;
|
|
10415
|
+
}, "strip", ZodTypeAny$1, {
|
|
10416
|
+
status: "emitted";
|
|
10417
|
+
assertions: ({
|
|
10418
|
+
kind: "tool-not-invoked";
|
|
10419
|
+
tool: string;
|
|
10420
|
+
} | {
|
|
10421
|
+
kind: "datum-absent";
|
|
10422
|
+
datum: string;
|
|
10423
|
+
reference?: string | undefined;
|
|
10424
|
+
direction?: "commission" | "omission" | undefined;
|
|
10425
|
+
})[];
|
|
10426
|
+
}, {
|
|
10427
|
+
status: "emitted";
|
|
10428
|
+
assertions: ({
|
|
10429
|
+
kind: "tool-not-invoked";
|
|
10430
|
+
tool: string;
|
|
10431
|
+
} | {
|
|
10432
|
+
kind: "datum-absent";
|
|
10433
|
+
datum: string;
|
|
10434
|
+
reference?: string | undefined;
|
|
10435
|
+
direction?: "commission" | "omission" | undefined;
|
|
10436
|
+
})[];
|
|
10437
|
+
}>, ZodObject<{
|
|
10438
|
+
status: ZodLiteral<"malformed">;
|
|
10439
|
+
reflectionAttempted: ZodBoolean;
|
|
10440
|
+
raw: ZodOptional$1<ZodString>;
|
|
10441
|
+
}, "strip", ZodTypeAny$1, {
|
|
10442
|
+
status: "malformed";
|
|
10443
|
+
reflectionAttempted: boolean;
|
|
10444
|
+
raw?: string | undefined;
|
|
10445
|
+
}, {
|
|
10446
|
+
status: "malformed";
|
|
10447
|
+
reflectionAttempted: boolean;
|
|
10448
|
+
raw?: string | undefined;
|
|
10449
|
+
}>]>>;
|
|
10039
10450
|
}, ZodTypeAny$1, "passthrough">>, "many">;
|
|
10040
10451
|
|
|
10041
10452
|
cohortTags: ZodDefault$1<ZodArray$1<ZodString, "many">>;
|
|
@@ -10214,6 +10625,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10214
10625
|
rubricFacet?: string | undefined;
|
|
10215
10626
|
rubricDefaultReason?: string | undefined;
|
|
10216
10627
|
}>>;
|
|
10628
|
+
|
|
10629
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
10630
|
+
status: ZodLiteral<"emitted">;
|
|
10631
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
10632
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
10633
|
+
tool: ZodString;
|
|
10634
|
+
}, "strip", ZodTypeAny$1, {
|
|
10635
|
+
kind: "tool-not-invoked";
|
|
10636
|
+
tool: string;
|
|
10637
|
+
}, {
|
|
10638
|
+
kind: "tool-not-invoked";
|
|
10639
|
+
tool: string;
|
|
10640
|
+
}>, ZodObject<{
|
|
10641
|
+
kind: ZodLiteral<"datum-absent">;
|
|
10642
|
+
datum: ZodString;
|
|
10643
|
+
reference: ZodOptional$1<ZodString>;
|
|
10644
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
10645
|
+
}, "strip", ZodTypeAny$1, {
|
|
10646
|
+
kind: "datum-absent";
|
|
10647
|
+
datum: string;
|
|
10648
|
+
reference?: string | undefined;
|
|
10649
|
+
direction?: "commission" | "omission" | undefined;
|
|
10650
|
+
}, {
|
|
10651
|
+
kind: "datum-absent";
|
|
10652
|
+
datum: string;
|
|
10653
|
+
reference?: string | undefined;
|
|
10654
|
+
direction?: "commission" | "omission" | undefined;
|
|
10655
|
+
}>]>, "many">;
|
|
10656
|
+
}, "strip", ZodTypeAny$1, {
|
|
10657
|
+
status: "emitted";
|
|
10658
|
+
assertions: ({
|
|
10659
|
+
kind: "tool-not-invoked";
|
|
10660
|
+
tool: string;
|
|
10661
|
+
} | {
|
|
10662
|
+
kind: "datum-absent";
|
|
10663
|
+
datum: string;
|
|
10664
|
+
reference?: string | undefined;
|
|
10665
|
+
direction?: "commission" | "omission" | undefined;
|
|
10666
|
+
})[];
|
|
10667
|
+
}, {
|
|
10668
|
+
status: "emitted";
|
|
10669
|
+
assertions: ({
|
|
10670
|
+
kind: "tool-not-invoked";
|
|
10671
|
+
tool: string;
|
|
10672
|
+
} | {
|
|
10673
|
+
kind: "datum-absent";
|
|
10674
|
+
datum: string;
|
|
10675
|
+
reference?: string | undefined;
|
|
10676
|
+
direction?: "commission" | "omission" | undefined;
|
|
10677
|
+
})[];
|
|
10678
|
+
}>, ZodObject<{
|
|
10679
|
+
status: ZodLiteral<"malformed">;
|
|
10680
|
+
reflectionAttempted: ZodBoolean;
|
|
10681
|
+
raw: ZodOptional$1<ZodString>;
|
|
10682
|
+
}, "strip", ZodTypeAny$1, {
|
|
10683
|
+
status: "malformed";
|
|
10684
|
+
reflectionAttempted: boolean;
|
|
10685
|
+
raw?: string | undefined;
|
|
10686
|
+
}, {
|
|
10687
|
+
status: "malformed";
|
|
10688
|
+
reflectionAttempted: boolean;
|
|
10689
|
+
raw?: string | undefined;
|
|
10690
|
+
}>]>>;
|
|
10217
10691
|
}, "passthrough", ZodTypeAny$1, objectOutputType<{
|
|
10218
10692
|
dimensionId: ZodString;
|
|
10219
10693
|
passed: ZodBoolean;
|
|
@@ -10251,6 +10725,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10251
10725
|
rubricFacet?: string | undefined;
|
|
10252
10726
|
rubricDefaultReason?: string | undefined;
|
|
10253
10727
|
}>>;
|
|
10728
|
+
|
|
10729
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
10730
|
+
status: ZodLiteral<"emitted">;
|
|
10731
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
10732
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
10733
|
+
tool: ZodString;
|
|
10734
|
+
}, "strip", ZodTypeAny$1, {
|
|
10735
|
+
kind: "tool-not-invoked";
|
|
10736
|
+
tool: string;
|
|
10737
|
+
}, {
|
|
10738
|
+
kind: "tool-not-invoked";
|
|
10739
|
+
tool: string;
|
|
10740
|
+
}>, ZodObject<{
|
|
10741
|
+
kind: ZodLiteral<"datum-absent">;
|
|
10742
|
+
datum: ZodString;
|
|
10743
|
+
reference: ZodOptional$1<ZodString>;
|
|
10744
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
10745
|
+
}, "strip", ZodTypeAny$1, {
|
|
10746
|
+
kind: "datum-absent";
|
|
10747
|
+
datum: string;
|
|
10748
|
+
reference?: string | undefined;
|
|
10749
|
+
direction?: "commission" | "omission" | undefined;
|
|
10750
|
+
}, {
|
|
10751
|
+
kind: "datum-absent";
|
|
10752
|
+
datum: string;
|
|
10753
|
+
reference?: string | undefined;
|
|
10754
|
+
direction?: "commission" | "omission" | undefined;
|
|
10755
|
+
}>]>, "many">;
|
|
10756
|
+
}, "strip", ZodTypeAny$1, {
|
|
10757
|
+
status: "emitted";
|
|
10758
|
+
assertions: ({
|
|
10759
|
+
kind: "tool-not-invoked";
|
|
10760
|
+
tool: string;
|
|
10761
|
+
} | {
|
|
10762
|
+
kind: "datum-absent";
|
|
10763
|
+
datum: string;
|
|
10764
|
+
reference?: string | undefined;
|
|
10765
|
+
direction?: "commission" | "omission" | undefined;
|
|
10766
|
+
})[];
|
|
10767
|
+
}, {
|
|
10768
|
+
status: "emitted";
|
|
10769
|
+
assertions: ({
|
|
10770
|
+
kind: "tool-not-invoked";
|
|
10771
|
+
tool: string;
|
|
10772
|
+
} | {
|
|
10773
|
+
kind: "datum-absent";
|
|
10774
|
+
datum: string;
|
|
10775
|
+
reference?: string | undefined;
|
|
10776
|
+
direction?: "commission" | "omission" | undefined;
|
|
10777
|
+
})[];
|
|
10778
|
+
}>, ZodObject<{
|
|
10779
|
+
status: ZodLiteral<"malformed">;
|
|
10780
|
+
reflectionAttempted: ZodBoolean;
|
|
10781
|
+
raw: ZodOptional$1<ZodString>;
|
|
10782
|
+
}, "strip", ZodTypeAny$1, {
|
|
10783
|
+
status: "malformed";
|
|
10784
|
+
reflectionAttempted: boolean;
|
|
10785
|
+
raw?: string | undefined;
|
|
10786
|
+
}, {
|
|
10787
|
+
status: "malformed";
|
|
10788
|
+
reflectionAttempted: boolean;
|
|
10789
|
+
raw?: string | undefined;
|
|
10790
|
+
}>]>>;
|
|
10254
10791
|
}, ZodTypeAny$1, "passthrough">, objectInputType<{
|
|
10255
10792
|
dimensionId: ZodString;
|
|
10256
10793
|
passed: ZodBoolean;
|
|
@@ -10288,6 +10825,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10288
10825
|
rubricFacet?: string | undefined;
|
|
10289
10826
|
rubricDefaultReason?: string | undefined;
|
|
10290
10827
|
}>>;
|
|
10828
|
+
|
|
10829
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
10830
|
+
status: ZodLiteral<"emitted">;
|
|
10831
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
10832
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
10833
|
+
tool: ZodString;
|
|
10834
|
+
}, "strip", ZodTypeAny$1, {
|
|
10835
|
+
kind: "tool-not-invoked";
|
|
10836
|
+
tool: string;
|
|
10837
|
+
}, {
|
|
10838
|
+
kind: "tool-not-invoked";
|
|
10839
|
+
tool: string;
|
|
10840
|
+
}>, ZodObject<{
|
|
10841
|
+
kind: ZodLiteral<"datum-absent">;
|
|
10842
|
+
datum: ZodString;
|
|
10843
|
+
reference: ZodOptional$1<ZodString>;
|
|
10844
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
10845
|
+
}, "strip", ZodTypeAny$1, {
|
|
10846
|
+
kind: "datum-absent";
|
|
10847
|
+
datum: string;
|
|
10848
|
+
reference?: string | undefined;
|
|
10849
|
+
direction?: "commission" | "omission" | undefined;
|
|
10850
|
+
}, {
|
|
10851
|
+
kind: "datum-absent";
|
|
10852
|
+
datum: string;
|
|
10853
|
+
reference?: string | undefined;
|
|
10854
|
+
direction?: "commission" | "omission" | undefined;
|
|
10855
|
+
}>]>, "many">;
|
|
10856
|
+
}, "strip", ZodTypeAny$1, {
|
|
10857
|
+
status: "emitted";
|
|
10858
|
+
assertions: ({
|
|
10859
|
+
kind: "tool-not-invoked";
|
|
10860
|
+
tool: string;
|
|
10861
|
+
} | {
|
|
10862
|
+
kind: "datum-absent";
|
|
10863
|
+
datum: string;
|
|
10864
|
+
reference?: string | undefined;
|
|
10865
|
+
direction?: "commission" | "omission" | undefined;
|
|
10866
|
+
})[];
|
|
10867
|
+
}, {
|
|
10868
|
+
status: "emitted";
|
|
10869
|
+
assertions: ({
|
|
10870
|
+
kind: "tool-not-invoked";
|
|
10871
|
+
tool: string;
|
|
10872
|
+
} | {
|
|
10873
|
+
kind: "datum-absent";
|
|
10874
|
+
datum: string;
|
|
10875
|
+
reference?: string | undefined;
|
|
10876
|
+
direction?: "commission" | "omission" | undefined;
|
|
10877
|
+
})[];
|
|
10878
|
+
}>, ZodObject<{
|
|
10879
|
+
status: ZodLiteral<"malformed">;
|
|
10880
|
+
reflectionAttempted: ZodBoolean;
|
|
10881
|
+
raw: ZodOptional$1<ZodString>;
|
|
10882
|
+
}, "strip", ZodTypeAny$1, {
|
|
10883
|
+
status: "malformed";
|
|
10884
|
+
reflectionAttempted: boolean;
|
|
10885
|
+
raw?: string | undefined;
|
|
10886
|
+
}, {
|
|
10887
|
+
status: "malformed";
|
|
10888
|
+
reflectionAttempted: boolean;
|
|
10889
|
+
raw?: string | undefined;
|
|
10890
|
+
}>]>>;
|
|
10291
10891
|
}, ZodTypeAny$1, "passthrough">>, "many">;
|
|
10292
10892
|
|
|
10293
10893
|
cohortTags: ZodDefault$1<ZodArray$1<ZodString, "many">>;
|
|
@@ -10466,6 +11066,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10466
11066
|
rubricFacet?: string | undefined;
|
|
10467
11067
|
rubricDefaultReason?: string | undefined;
|
|
10468
11068
|
}>>;
|
|
11069
|
+
|
|
11070
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
11071
|
+
status: ZodLiteral<"emitted">;
|
|
11072
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
11073
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
11074
|
+
tool: ZodString;
|
|
11075
|
+
}, "strip", ZodTypeAny$1, {
|
|
11076
|
+
kind: "tool-not-invoked";
|
|
11077
|
+
tool: string;
|
|
11078
|
+
}, {
|
|
11079
|
+
kind: "tool-not-invoked";
|
|
11080
|
+
tool: string;
|
|
11081
|
+
}>, ZodObject<{
|
|
11082
|
+
kind: ZodLiteral<"datum-absent">;
|
|
11083
|
+
datum: ZodString;
|
|
11084
|
+
reference: ZodOptional$1<ZodString>;
|
|
11085
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
11086
|
+
}, "strip", ZodTypeAny$1, {
|
|
11087
|
+
kind: "datum-absent";
|
|
11088
|
+
datum: string;
|
|
11089
|
+
reference?: string | undefined;
|
|
11090
|
+
direction?: "commission" | "omission" | undefined;
|
|
11091
|
+
}, {
|
|
11092
|
+
kind: "datum-absent";
|
|
11093
|
+
datum: string;
|
|
11094
|
+
reference?: string | undefined;
|
|
11095
|
+
direction?: "commission" | "omission" | undefined;
|
|
11096
|
+
}>]>, "many">;
|
|
11097
|
+
}, "strip", ZodTypeAny$1, {
|
|
11098
|
+
status: "emitted";
|
|
11099
|
+
assertions: ({
|
|
11100
|
+
kind: "tool-not-invoked";
|
|
11101
|
+
tool: string;
|
|
11102
|
+
} | {
|
|
11103
|
+
kind: "datum-absent";
|
|
11104
|
+
datum: string;
|
|
11105
|
+
reference?: string | undefined;
|
|
11106
|
+
direction?: "commission" | "omission" | undefined;
|
|
11107
|
+
})[];
|
|
11108
|
+
}, {
|
|
11109
|
+
status: "emitted";
|
|
11110
|
+
assertions: ({
|
|
11111
|
+
kind: "tool-not-invoked";
|
|
11112
|
+
tool: string;
|
|
11113
|
+
} | {
|
|
11114
|
+
kind: "datum-absent";
|
|
11115
|
+
datum: string;
|
|
11116
|
+
reference?: string | undefined;
|
|
11117
|
+
direction?: "commission" | "omission" | undefined;
|
|
11118
|
+
})[];
|
|
11119
|
+
}>, ZodObject<{
|
|
11120
|
+
status: ZodLiteral<"malformed">;
|
|
11121
|
+
reflectionAttempted: ZodBoolean;
|
|
11122
|
+
raw: ZodOptional$1<ZodString>;
|
|
11123
|
+
}, "strip", ZodTypeAny$1, {
|
|
11124
|
+
status: "malformed";
|
|
11125
|
+
reflectionAttempted: boolean;
|
|
11126
|
+
raw?: string | undefined;
|
|
11127
|
+
}, {
|
|
11128
|
+
status: "malformed";
|
|
11129
|
+
reflectionAttempted: boolean;
|
|
11130
|
+
raw?: string | undefined;
|
|
11131
|
+
}>]>>;
|
|
10469
11132
|
}, "passthrough", ZodTypeAny$1, objectOutputType<{
|
|
10470
11133
|
dimensionId: ZodString;
|
|
10471
11134
|
passed: ZodBoolean;
|
|
@@ -10503,6 +11166,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10503
11166
|
rubricFacet?: string | undefined;
|
|
10504
11167
|
rubricDefaultReason?: string | undefined;
|
|
10505
11168
|
}>>;
|
|
11169
|
+
|
|
11170
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
11171
|
+
status: ZodLiteral<"emitted">;
|
|
11172
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
11173
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
11174
|
+
tool: ZodString;
|
|
11175
|
+
}, "strip", ZodTypeAny$1, {
|
|
11176
|
+
kind: "tool-not-invoked";
|
|
11177
|
+
tool: string;
|
|
11178
|
+
}, {
|
|
11179
|
+
kind: "tool-not-invoked";
|
|
11180
|
+
tool: string;
|
|
11181
|
+
}>, ZodObject<{
|
|
11182
|
+
kind: ZodLiteral<"datum-absent">;
|
|
11183
|
+
datum: ZodString;
|
|
11184
|
+
reference: ZodOptional$1<ZodString>;
|
|
11185
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
11186
|
+
}, "strip", ZodTypeAny$1, {
|
|
11187
|
+
kind: "datum-absent";
|
|
11188
|
+
datum: string;
|
|
11189
|
+
reference?: string | undefined;
|
|
11190
|
+
direction?: "commission" | "omission" | undefined;
|
|
11191
|
+
}, {
|
|
11192
|
+
kind: "datum-absent";
|
|
11193
|
+
datum: string;
|
|
11194
|
+
reference?: string | undefined;
|
|
11195
|
+
direction?: "commission" | "omission" | undefined;
|
|
11196
|
+
}>]>, "many">;
|
|
11197
|
+
}, "strip", ZodTypeAny$1, {
|
|
11198
|
+
status: "emitted";
|
|
11199
|
+
assertions: ({
|
|
11200
|
+
kind: "tool-not-invoked";
|
|
11201
|
+
tool: string;
|
|
11202
|
+
} | {
|
|
11203
|
+
kind: "datum-absent";
|
|
11204
|
+
datum: string;
|
|
11205
|
+
reference?: string | undefined;
|
|
11206
|
+
direction?: "commission" | "omission" | undefined;
|
|
11207
|
+
})[];
|
|
11208
|
+
}, {
|
|
11209
|
+
status: "emitted";
|
|
11210
|
+
assertions: ({
|
|
11211
|
+
kind: "tool-not-invoked";
|
|
11212
|
+
tool: string;
|
|
11213
|
+
} | {
|
|
11214
|
+
kind: "datum-absent";
|
|
11215
|
+
datum: string;
|
|
11216
|
+
reference?: string | undefined;
|
|
11217
|
+
direction?: "commission" | "omission" | undefined;
|
|
11218
|
+
})[];
|
|
11219
|
+
}>, ZodObject<{
|
|
11220
|
+
status: ZodLiteral<"malformed">;
|
|
11221
|
+
reflectionAttempted: ZodBoolean;
|
|
11222
|
+
raw: ZodOptional$1<ZodString>;
|
|
11223
|
+
}, "strip", ZodTypeAny$1, {
|
|
11224
|
+
status: "malformed";
|
|
11225
|
+
reflectionAttempted: boolean;
|
|
11226
|
+
raw?: string | undefined;
|
|
11227
|
+
}, {
|
|
11228
|
+
status: "malformed";
|
|
11229
|
+
reflectionAttempted: boolean;
|
|
11230
|
+
raw?: string | undefined;
|
|
11231
|
+
}>]>>;
|
|
10506
11232
|
}, ZodTypeAny$1, "passthrough">, objectInputType<{
|
|
10507
11233
|
dimensionId: ZodString;
|
|
10508
11234
|
passed: ZodBoolean;
|
|
@@ -10540,14 +11266,77 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10540
11266
|
rubricFacet?: string | undefined;
|
|
10541
11267
|
rubricDefaultReason?: string | undefined;
|
|
10542
11268
|
}>>;
|
|
10543
|
-
}, ZodTypeAny$1, "passthrough">>, "many">;
|
|
10544
|
-
|
|
10545
|
-
cohortTags: ZodDefault$1<ZodArray$1<ZodString, "many">>;
|
|
10546
11269
|
|
|
10547
|
-
|
|
10548
|
-
|
|
10549
|
-
|
|
10550
|
-
|
|
11270
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
11271
|
+
status: ZodLiteral<"emitted">;
|
|
11272
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
11273
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
11274
|
+
tool: ZodString;
|
|
11275
|
+
}, "strip", ZodTypeAny$1, {
|
|
11276
|
+
kind: "tool-not-invoked";
|
|
11277
|
+
tool: string;
|
|
11278
|
+
}, {
|
|
11279
|
+
kind: "tool-not-invoked";
|
|
11280
|
+
tool: string;
|
|
11281
|
+
}>, ZodObject<{
|
|
11282
|
+
kind: ZodLiteral<"datum-absent">;
|
|
11283
|
+
datum: ZodString;
|
|
11284
|
+
reference: ZodOptional$1<ZodString>;
|
|
11285
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
11286
|
+
}, "strip", ZodTypeAny$1, {
|
|
11287
|
+
kind: "datum-absent";
|
|
11288
|
+
datum: string;
|
|
11289
|
+
reference?: string | undefined;
|
|
11290
|
+
direction?: "commission" | "omission" | undefined;
|
|
11291
|
+
}, {
|
|
11292
|
+
kind: "datum-absent";
|
|
11293
|
+
datum: string;
|
|
11294
|
+
reference?: string | undefined;
|
|
11295
|
+
direction?: "commission" | "omission" | undefined;
|
|
11296
|
+
}>]>, "many">;
|
|
11297
|
+
}, "strip", ZodTypeAny$1, {
|
|
11298
|
+
status: "emitted";
|
|
11299
|
+
assertions: ({
|
|
11300
|
+
kind: "tool-not-invoked";
|
|
11301
|
+
tool: string;
|
|
11302
|
+
} | {
|
|
11303
|
+
kind: "datum-absent";
|
|
11304
|
+
datum: string;
|
|
11305
|
+
reference?: string | undefined;
|
|
11306
|
+
direction?: "commission" | "omission" | undefined;
|
|
11307
|
+
})[];
|
|
11308
|
+
}, {
|
|
11309
|
+
status: "emitted";
|
|
11310
|
+
assertions: ({
|
|
11311
|
+
kind: "tool-not-invoked";
|
|
11312
|
+
tool: string;
|
|
11313
|
+
} | {
|
|
11314
|
+
kind: "datum-absent";
|
|
11315
|
+
datum: string;
|
|
11316
|
+
reference?: string | undefined;
|
|
11317
|
+
direction?: "commission" | "omission" | undefined;
|
|
11318
|
+
})[];
|
|
11319
|
+
}>, ZodObject<{
|
|
11320
|
+
status: ZodLiteral<"malformed">;
|
|
11321
|
+
reflectionAttempted: ZodBoolean;
|
|
11322
|
+
raw: ZodOptional$1<ZodString>;
|
|
11323
|
+
}, "strip", ZodTypeAny$1, {
|
|
11324
|
+
status: "malformed";
|
|
11325
|
+
reflectionAttempted: boolean;
|
|
11326
|
+
raw?: string | undefined;
|
|
11327
|
+
}, {
|
|
11328
|
+
status: "malformed";
|
|
11329
|
+
reflectionAttempted: boolean;
|
|
11330
|
+
raw?: string | undefined;
|
|
11331
|
+
}>]>>;
|
|
11332
|
+
}, ZodTypeAny$1, "passthrough">>, "many">;
|
|
11333
|
+
|
|
11334
|
+
cohortTags: ZodDefault$1<ZodArray$1<ZodString, "many">>;
|
|
11335
|
+
|
|
11336
|
+
sideEffects: ZodDefault$1<ZodArray$1<ZodObject<{
|
|
11337
|
+
kind: ZodString;
|
|
11338
|
+
passed: ZodBoolean;
|
|
11339
|
+
details: ZodOptional$1<ZodUnknown>;
|
|
10551
11340
|
}, "strip", ZodTypeAny$1, {
|
|
10552
11341
|
kind: string;
|
|
10553
11342
|
passed: boolean;
|
|
@@ -10708,14 +11497,14 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10708
11497
|
|
|
10709
11498
|
n: ZodNumber;
|
|
10710
11499
|
}, "strip", ZodTypeAny$1, {
|
|
10711
|
-
fixtureId: string;
|
|
10712
11500
|
dimensionId: string;
|
|
11501
|
+
fixtureId: string;
|
|
10713
11502
|
scores: number[];
|
|
10714
11503
|
sigmaFloor: number;
|
|
10715
11504
|
n: number;
|
|
10716
11505
|
}, {
|
|
10717
|
-
fixtureId: string;
|
|
10718
11506
|
dimensionId: string;
|
|
11507
|
+
fixtureId: string;
|
|
10719
11508
|
scores: number[];
|
|
10720
11509
|
sigmaFloor: number;
|
|
10721
11510
|
n: number;
|
|
@@ -10760,8 +11549,8 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10760
11549
|
}, "strip", ZodTypeAny$1, {
|
|
10761
11550
|
totalEventCount: number;
|
|
10762
11551
|
perFixtureDimension: {
|
|
10763
|
-
fixtureId: string;
|
|
10764
11552
|
dimensionId: string;
|
|
11553
|
+
fixtureId: string;
|
|
10765
11554
|
scores: number[];
|
|
10766
11555
|
sigmaFloor: number;
|
|
10767
11556
|
n: number;
|
|
@@ -10782,8 +11571,8 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
10782
11571
|
}, {
|
|
10783
11572
|
totalEventCount: number;
|
|
10784
11573
|
perFixtureDimension: {
|
|
10785
|
-
fixtureId: string;
|
|
10786
11574
|
dimensionId: string;
|
|
11575
|
+
fixtureId: string;
|
|
10787
11576
|
scores: number[];
|
|
10788
11577
|
sigmaFloor: number;
|
|
10789
11578
|
n: number;
|
|
@@ -11275,7 +12064,6 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11275
12064
|
|
|
11276
12065
|
assessedBy: ZodString;
|
|
11277
12066
|
}, "strip", ZodTypeAny$1, {
|
|
11278
|
-
confidence: number;
|
|
11279
12067
|
rationale: string;
|
|
11280
12068
|
targetEventId: string;
|
|
11281
12069
|
recommendation: "degenerate" | "contaminated" | "viable" | "insufficient-n" | "instrument-limited" | "stale-floor";
|
|
@@ -11284,6 +12072,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11284
12072
|
passed: boolean;
|
|
11285
12073
|
detail: string;
|
|
11286
12074
|
}[];
|
|
12075
|
+
confidence: number;
|
|
11287
12076
|
assessedBy: string;
|
|
11288
12077
|
recomputed?: {
|
|
11289
12078
|
sigmaObservedSquared: number;
|
|
@@ -11294,7 +12083,6 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11294
12083
|
identityCloses: boolean;
|
|
11295
12084
|
} | undefined;
|
|
11296
12085
|
}, {
|
|
11297
|
-
confidence: number;
|
|
11298
12086
|
rationale: string;
|
|
11299
12087
|
targetEventId: string;
|
|
11300
12088
|
recommendation: "degenerate" | "contaminated" | "viable" | "insufficient-n" | "instrument-limited" | "stale-floor";
|
|
@@ -11303,6 +12091,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11303
12091
|
passed: boolean;
|
|
11304
12092
|
detail: string;
|
|
11305
12093
|
}[];
|
|
12094
|
+
confidence: number;
|
|
11306
12095
|
assessedBy: string;
|
|
11307
12096
|
recomputed?: {
|
|
11308
12097
|
sigmaObservedSquared: number;
|
|
@@ -11405,24 +12194,24 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11405
12194
|
present: ZodOptional$1<ZodBoolean>;
|
|
11406
12195
|
}, "strip", ZodTypeAny$1, {
|
|
11407
12196
|
column: string;
|
|
12197
|
+
present?: boolean | undefined;
|
|
11408
12198
|
equals?: string | undefined;
|
|
11409
12199
|
oneOf?: string[] | undefined;
|
|
11410
|
-
present?: boolean | undefined;
|
|
11411
12200
|
}, {
|
|
11412
12201
|
column: string;
|
|
12202
|
+
present?: boolean | undefined;
|
|
11413
12203
|
equals?: string | undefined;
|
|
11414
12204
|
oneOf?: string[] | undefined;
|
|
11415
|
-
present?: boolean | undefined;
|
|
11416
12205
|
}>, {
|
|
11417
12206
|
column: string;
|
|
12207
|
+
present?: boolean | undefined;
|
|
11418
12208
|
equals?: string | undefined;
|
|
11419
12209
|
oneOf?: string[] | undefined;
|
|
11420
|
-
present?: boolean | undefined;
|
|
11421
12210
|
}, {
|
|
11422
12211
|
column: string;
|
|
12212
|
+
present?: boolean | undefined;
|
|
11423
12213
|
equals?: string | undefined;
|
|
11424
12214
|
oneOf?: string[] | undefined;
|
|
11425
|
-
present?: boolean | undefined;
|
|
11426
12215
|
}>, "many">>;
|
|
11427
12216
|
}, "strip", ZodTypeAny$1, {
|
|
11428
12217
|
description: string;
|
|
@@ -11460,9 +12249,9 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11460
12249
|
sourceExcerpt?: string | undefined;
|
|
11461
12250
|
when?: {
|
|
11462
12251
|
column: string;
|
|
12252
|
+
present?: boolean | undefined;
|
|
11463
12253
|
equals?: string | undefined;
|
|
11464
12254
|
oneOf?: string[] | undefined;
|
|
11465
|
-
present?: boolean | undefined;
|
|
11466
12255
|
}[] | undefined;
|
|
11467
12256
|
}, {
|
|
11468
12257
|
description: string;
|
|
@@ -11500,9 +12289,9 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11500
12289
|
sourceExcerpt?: string | undefined;
|
|
11501
12290
|
when?: {
|
|
11502
12291
|
column: string;
|
|
12292
|
+
present?: boolean | undefined;
|
|
11503
12293
|
equals?: string | undefined;
|
|
11504
12294
|
oneOf?: string[] | undefined;
|
|
11505
|
-
present?: boolean | undefined;
|
|
11506
12295
|
}[] | undefined;
|
|
11507
12296
|
}>, {
|
|
11508
12297
|
description: string;
|
|
@@ -11540,9 +12329,9 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11540
12329
|
sourceExcerpt?: string | undefined;
|
|
11541
12330
|
when?: {
|
|
11542
12331
|
column: string;
|
|
12332
|
+
present?: boolean | undefined;
|
|
11543
12333
|
equals?: string | undefined;
|
|
11544
12334
|
oneOf?: string[] | undefined;
|
|
11545
|
-
present?: boolean | undefined;
|
|
11546
12335
|
}[] | undefined;
|
|
11547
12336
|
}, {
|
|
11548
12337
|
description: string;
|
|
@@ -11580,9 +12369,9 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11580
12369
|
sourceExcerpt?: string | undefined;
|
|
11581
12370
|
when?: {
|
|
11582
12371
|
column: string;
|
|
12372
|
+
present?: boolean | undefined;
|
|
11583
12373
|
equals?: string | undefined;
|
|
11584
12374
|
oneOf?: string[] | undefined;
|
|
11585
|
-
present?: boolean | undefined;
|
|
11586
12375
|
}[] | undefined;
|
|
11587
12376
|
}>;
|
|
11588
12377
|
|
|
@@ -11592,6 +12381,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11592
12381
|
|
|
11593
12382
|
sourceSurfaceId: ZodOptional$1<ZodString>;
|
|
11594
12383
|
}, "strip", ZodTypeAny$1, {
|
|
12384
|
+
approverId: string;
|
|
11595
12385
|
fixture: {
|
|
11596
12386
|
description: string;
|
|
11597
12387
|
fixtureId: string;
|
|
@@ -11628,15 +12418,15 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11628
12418
|
sourceExcerpt?: string | undefined;
|
|
11629
12419
|
when?: {
|
|
11630
12420
|
column: string;
|
|
12421
|
+
present?: boolean | undefined;
|
|
11631
12422
|
equals?: string | undefined;
|
|
11632
12423
|
oneOf?: string[] | undefined;
|
|
11633
|
-
present?: boolean | undefined;
|
|
11634
12424
|
}[] | undefined;
|
|
11635
12425
|
};
|
|
11636
|
-
approverId: string;
|
|
11637
12426
|
occurredAt: string;
|
|
11638
12427
|
sourceSurfaceId?: string | undefined;
|
|
11639
12428
|
}, {
|
|
12429
|
+
approverId: string;
|
|
11640
12430
|
fixture: {
|
|
11641
12431
|
description: string;
|
|
11642
12432
|
fixtureId: string;
|
|
@@ -11673,12 +12463,11 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11673
12463
|
sourceExcerpt?: string | undefined;
|
|
11674
12464
|
when?: {
|
|
11675
12465
|
column: string;
|
|
12466
|
+
present?: boolean | undefined;
|
|
11676
12467
|
equals?: string | undefined;
|
|
11677
12468
|
oneOf?: string[] | undefined;
|
|
11678
|
-
present?: boolean | undefined;
|
|
11679
12469
|
}[] | undefined;
|
|
11680
12470
|
};
|
|
11681
|
-
approverId: string;
|
|
11682
12471
|
occurredAt: string;
|
|
11683
12472
|
sourceSurfaceId?: string | undefined;
|
|
11684
12473
|
}>>;
|
|
@@ -11791,18 +12580,18 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
11791
12580
|
};
|
|
11792
12581
|
}>>;
|
|
11793
12582
|
}, "strip", ZodTypeAny$1, {
|
|
12583
|
+
surfaceId: string;
|
|
11794
12584
|
lensVersion: string;
|
|
11795
12585
|
correlationId: string;
|
|
11796
12586
|
kind: "evaluation" | "availability.transition" | "analysis.noise-floor-calibration" | "analysis.variance-decomposition" | "analysis.lifecycle-transition" | "analysis.eval-recommendation" | "analysis.conformance-fixture" | "analysis.emission-coverage" | "analysis.delivery-orphan" | "analysis.orthogonality-hypothesis";
|
|
11797
|
-
surfaceId: string;
|
|
11798
12587
|
occurredAt: string;
|
|
11799
12588
|
eventId: string;
|
|
11800
12589
|
substrate?: {
|
|
11801
|
-
provenance: "
|
|
12590
|
+
provenance: "replay" | "local_dev" | "pre_deploy_gate" | "scheduled_production_eval" | "manual_production_run";
|
|
11802
12591
|
timestamp: string;
|
|
11803
12592
|
lensVersion: string;
|
|
11804
12593
|
lightSourceIdentifier: string;
|
|
11805
|
-
runMode: "
|
|
12594
|
+
runMode: "production" | "test" | "eval" | "replay" | "local_dev";
|
|
11806
12595
|
correlationId: string;
|
|
11807
12596
|
columns: Record<string, string>;
|
|
11808
12597
|
} | undefined;
|
|
@@ -12432,6 +13221,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
12432
13221
|
rubricFacet?: string | undefined;
|
|
12433
13222
|
rubricDefaultReason?: string | undefined;
|
|
12434
13223
|
}>>;
|
|
13224
|
+
|
|
13225
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
13226
|
+
status: ZodLiteral<"emitted">;
|
|
13227
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
13228
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
13229
|
+
tool: ZodString;
|
|
13230
|
+
}, "strip", ZodTypeAny$1, {
|
|
13231
|
+
kind: "tool-not-invoked";
|
|
13232
|
+
tool: string;
|
|
13233
|
+
}, {
|
|
13234
|
+
kind: "tool-not-invoked";
|
|
13235
|
+
tool: string;
|
|
13236
|
+
}>, ZodObject<{
|
|
13237
|
+
kind: ZodLiteral<"datum-absent">;
|
|
13238
|
+
datum: ZodString;
|
|
13239
|
+
reference: ZodOptional$1<ZodString>;
|
|
13240
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
13241
|
+
}, "strip", ZodTypeAny$1, {
|
|
13242
|
+
kind: "datum-absent";
|
|
13243
|
+
datum: string;
|
|
13244
|
+
reference?: string | undefined;
|
|
13245
|
+
direction?: "commission" | "omission" | undefined;
|
|
13246
|
+
}, {
|
|
13247
|
+
kind: "datum-absent";
|
|
13248
|
+
datum: string;
|
|
13249
|
+
reference?: string | undefined;
|
|
13250
|
+
direction?: "commission" | "omission" | undefined;
|
|
13251
|
+
}>]>, "many">;
|
|
13252
|
+
}, "strip", ZodTypeAny$1, {
|
|
13253
|
+
status: "emitted";
|
|
13254
|
+
assertions: ({
|
|
13255
|
+
kind: "tool-not-invoked";
|
|
13256
|
+
tool: string;
|
|
13257
|
+
} | {
|
|
13258
|
+
kind: "datum-absent";
|
|
13259
|
+
datum: string;
|
|
13260
|
+
reference?: string | undefined;
|
|
13261
|
+
direction?: "commission" | "omission" | undefined;
|
|
13262
|
+
})[];
|
|
13263
|
+
}, {
|
|
13264
|
+
status: "emitted";
|
|
13265
|
+
assertions: ({
|
|
13266
|
+
kind: "tool-not-invoked";
|
|
13267
|
+
tool: string;
|
|
13268
|
+
} | {
|
|
13269
|
+
kind: "datum-absent";
|
|
13270
|
+
datum: string;
|
|
13271
|
+
reference?: string | undefined;
|
|
13272
|
+
direction?: "commission" | "omission" | undefined;
|
|
13273
|
+
})[];
|
|
13274
|
+
}>, ZodObject<{
|
|
13275
|
+
status: ZodLiteral<"malformed">;
|
|
13276
|
+
reflectionAttempted: ZodBoolean;
|
|
13277
|
+
raw: ZodOptional$1<ZodString>;
|
|
13278
|
+
}, "strip", ZodTypeAny$1, {
|
|
13279
|
+
status: "malformed";
|
|
13280
|
+
reflectionAttempted: boolean;
|
|
13281
|
+
raw?: string | undefined;
|
|
13282
|
+
}, {
|
|
13283
|
+
status: "malformed";
|
|
13284
|
+
reflectionAttempted: boolean;
|
|
13285
|
+
raw?: string | undefined;
|
|
13286
|
+
}>]>>;
|
|
12435
13287
|
}, "passthrough", ZodTypeAny$1, objectOutputType<{
|
|
12436
13288
|
dimensionId: ZodString;
|
|
12437
13289
|
passed: ZodBoolean;
|
|
@@ -12469,6 +13321,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
12469
13321
|
rubricFacet?: string | undefined;
|
|
12470
13322
|
rubricDefaultReason?: string | undefined;
|
|
12471
13323
|
}>>;
|
|
13324
|
+
|
|
13325
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
13326
|
+
status: ZodLiteral<"emitted">;
|
|
13327
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
13328
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
13329
|
+
tool: ZodString;
|
|
13330
|
+
}, "strip", ZodTypeAny$1, {
|
|
13331
|
+
kind: "tool-not-invoked";
|
|
13332
|
+
tool: string;
|
|
13333
|
+
}, {
|
|
13334
|
+
kind: "tool-not-invoked";
|
|
13335
|
+
tool: string;
|
|
13336
|
+
}>, ZodObject<{
|
|
13337
|
+
kind: ZodLiteral<"datum-absent">;
|
|
13338
|
+
datum: ZodString;
|
|
13339
|
+
reference: ZodOptional$1<ZodString>;
|
|
13340
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
13341
|
+
}, "strip", ZodTypeAny$1, {
|
|
13342
|
+
kind: "datum-absent";
|
|
13343
|
+
datum: string;
|
|
13344
|
+
reference?: string | undefined;
|
|
13345
|
+
direction?: "commission" | "omission" | undefined;
|
|
13346
|
+
}, {
|
|
13347
|
+
kind: "datum-absent";
|
|
13348
|
+
datum: string;
|
|
13349
|
+
reference?: string | undefined;
|
|
13350
|
+
direction?: "commission" | "omission" | undefined;
|
|
13351
|
+
}>]>, "many">;
|
|
13352
|
+
}, "strip", ZodTypeAny$1, {
|
|
13353
|
+
status: "emitted";
|
|
13354
|
+
assertions: ({
|
|
13355
|
+
kind: "tool-not-invoked";
|
|
13356
|
+
tool: string;
|
|
13357
|
+
} | {
|
|
13358
|
+
kind: "datum-absent";
|
|
13359
|
+
datum: string;
|
|
13360
|
+
reference?: string | undefined;
|
|
13361
|
+
direction?: "commission" | "omission" | undefined;
|
|
13362
|
+
})[];
|
|
13363
|
+
}, {
|
|
13364
|
+
status: "emitted";
|
|
13365
|
+
assertions: ({
|
|
13366
|
+
kind: "tool-not-invoked";
|
|
13367
|
+
tool: string;
|
|
13368
|
+
} | {
|
|
13369
|
+
kind: "datum-absent";
|
|
13370
|
+
datum: string;
|
|
13371
|
+
reference?: string | undefined;
|
|
13372
|
+
direction?: "commission" | "omission" | undefined;
|
|
13373
|
+
})[];
|
|
13374
|
+
}>, ZodObject<{
|
|
13375
|
+
status: ZodLiteral<"malformed">;
|
|
13376
|
+
reflectionAttempted: ZodBoolean;
|
|
13377
|
+
raw: ZodOptional$1<ZodString>;
|
|
13378
|
+
}, "strip", ZodTypeAny$1, {
|
|
13379
|
+
status: "malformed";
|
|
13380
|
+
reflectionAttempted: boolean;
|
|
13381
|
+
raw?: string | undefined;
|
|
13382
|
+
}, {
|
|
13383
|
+
status: "malformed";
|
|
13384
|
+
reflectionAttempted: boolean;
|
|
13385
|
+
raw?: string | undefined;
|
|
13386
|
+
}>]>>;
|
|
12472
13387
|
}, ZodTypeAny$1, "passthrough">, objectInputType<{
|
|
12473
13388
|
dimensionId: ZodString;
|
|
12474
13389
|
passed: ZodBoolean;
|
|
@@ -12506,6 +13421,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
12506
13421
|
rubricFacet?: string | undefined;
|
|
12507
13422
|
rubricDefaultReason?: string | undefined;
|
|
12508
13423
|
}>>;
|
|
13424
|
+
|
|
13425
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
13426
|
+
status: ZodLiteral<"emitted">;
|
|
13427
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
13428
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
13429
|
+
tool: ZodString;
|
|
13430
|
+
}, "strip", ZodTypeAny$1, {
|
|
13431
|
+
kind: "tool-not-invoked";
|
|
13432
|
+
tool: string;
|
|
13433
|
+
}, {
|
|
13434
|
+
kind: "tool-not-invoked";
|
|
13435
|
+
tool: string;
|
|
13436
|
+
}>, ZodObject<{
|
|
13437
|
+
kind: ZodLiteral<"datum-absent">;
|
|
13438
|
+
datum: ZodString;
|
|
13439
|
+
reference: ZodOptional$1<ZodString>;
|
|
13440
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
13441
|
+
}, "strip", ZodTypeAny$1, {
|
|
13442
|
+
kind: "datum-absent";
|
|
13443
|
+
datum: string;
|
|
13444
|
+
reference?: string | undefined;
|
|
13445
|
+
direction?: "commission" | "omission" | undefined;
|
|
13446
|
+
}, {
|
|
13447
|
+
kind: "datum-absent";
|
|
13448
|
+
datum: string;
|
|
13449
|
+
reference?: string | undefined;
|
|
13450
|
+
direction?: "commission" | "omission" | undefined;
|
|
13451
|
+
}>]>, "many">;
|
|
13452
|
+
}, "strip", ZodTypeAny$1, {
|
|
13453
|
+
status: "emitted";
|
|
13454
|
+
assertions: ({
|
|
13455
|
+
kind: "tool-not-invoked";
|
|
13456
|
+
tool: string;
|
|
13457
|
+
} | {
|
|
13458
|
+
kind: "datum-absent";
|
|
13459
|
+
datum: string;
|
|
13460
|
+
reference?: string | undefined;
|
|
13461
|
+
direction?: "commission" | "omission" | undefined;
|
|
13462
|
+
})[];
|
|
13463
|
+
}, {
|
|
13464
|
+
status: "emitted";
|
|
13465
|
+
assertions: ({
|
|
13466
|
+
kind: "tool-not-invoked";
|
|
13467
|
+
tool: string;
|
|
13468
|
+
} | {
|
|
13469
|
+
kind: "datum-absent";
|
|
13470
|
+
datum: string;
|
|
13471
|
+
reference?: string | undefined;
|
|
13472
|
+
direction?: "commission" | "omission" | undefined;
|
|
13473
|
+
})[];
|
|
13474
|
+
}>, ZodObject<{
|
|
13475
|
+
status: ZodLiteral<"malformed">;
|
|
13476
|
+
reflectionAttempted: ZodBoolean;
|
|
13477
|
+
raw: ZodOptional$1<ZodString>;
|
|
13478
|
+
}, "strip", ZodTypeAny$1, {
|
|
13479
|
+
status: "malformed";
|
|
13480
|
+
reflectionAttempted: boolean;
|
|
13481
|
+
raw?: string | undefined;
|
|
13482
|
+
}, {
|
|
13483
|
+
status: "malformed";
|
|
13484
|
+
reflectionAttempted: boolean;
|
|
13485
|
+
raw?: string | undefined;
|
|
13486
|
+
}>]>>;
|
|
12509
13487
|
}, ZodTypeAny$1, "passthrough">>, "many">;
|
|
12510
13488
|
|
|
12511
13489
|
cohortTags: ZodDefault$1<ZodArray$1<ZodString, "many">>;
|
|
@@ -12650,8 +13628,8 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
12650
13628
|
noiseFloorCalibration?: {
|
|
12651
13629
|
totalEventCount: number;
|
|
12652
13630
|
perFixtureDimension: {
|
|
12653
|
-
fixtureId: string;
|
|
12654
13631
|
dimensionId: string;
|
|
13632
|
+
fixtureId: string;
|
|
12655
13633
|
scores: number[];
|
|
12656
13634
|
sigmaFloor: number;
|
|
12657
13635
|
n: number;
|
|
@@ -12750,7 +13728,6 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
12750
13728
|
pinnedLabel?: string | undefined;
|
|
12751
13729
|
} | undefined;
|
|
12752
13730
|
evalRecommendation?: {
|
|
12753
|
-
confidence: number;
|
|
12754
13731
|
rationale: string;
|
|
12755
13732
|
targetEventId: string;
|
|
12756
13733
|
recommendation: "degenerate" | "contaminated" | "viable" | "insufficient-n" | "instrument-limited" | "stale-floor";
|
|
@@ -12759,6 +13736,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
12759
13736
|
passed: boolean;
|
|
12760
13737
|
detail: string;
|
|
12761
13738
|
}[];
|
|
13739
|
+
confidence: number;
|
|
12762
13740
|
assessedBy: string;
|
|
12763
13741
|
recomputed?: {
|
|
12764
13742
|
sigmaObservedSquared: number;
|
|
@@ -12770,6 +13748,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
12770
13748
|
} | undefined;
|
|
12771
13749
|
} | undefined;
|
|
12772
13750
|
conformanceFixtureRecord?: {
|
|
13751
|
+
approverId: string;
|
|
12773
13752
|
fixture: {
|
|
12774
13753
|
description: string;
|
|
12775
13754
|
fixtureId: string;
|
|
@@ -12806,12 +13785,11 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
12806
13785
|
sourceExcerpt?: string | undefined;
|
|
12807
13786
|
when?: {
|
|
12808
13787
|
column: string;
|
|
13788
|
+
present?: boolean | undefined;
|
|
12809
13789
|
equals?: string | undefined;
|
|
12810
13790
|
oneOf?: string[] | undefined;
|
|
12811
|
-
present?: boolean | undefined;
|
|
12812
13791
|
}[] | undefined;
|
|
12813
13792
|
};
|
|
12814
|
-
approverId: string;
|
|
12815
13793
|
occurredAt: string;
|
|
12816
13794
|
sourceSurfaceId?: string | undefined;
|
|
12817
13795
|
} | undefined;
|
|
@@ -12844,17 +13822,17 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
12844
13822
|
};
|
|
12845
13823
|
} | undefined;
|
|
12846
13824
|
}, {
|
|
13825
|
+
surfaceId: string;
|
|
12847
13826
|
lensVersion: string;
|
|
12848
13827
|
correlationId: string;
|
|
12849
|
-
surfaceId: string;
|
|
12850
13828
|
occurredAt: string;
|
|
12851
13829
|
eventId: string;
|
|
12852
13830
|
substrate?: {
|
|
12853
|
-
provenance: "
|
|
13831
|
+
provenance: "replay" | "local_dev" | "pre_deploy_gate" | "scheduled_production_eval" | "manual_production_run";
|
|
12854
13832
|
timestamp: string;
|
|
12855
13833
|
lensVersion: string;
|
|
12856
13834
|
lightSourceIdentifier: string;
|
|
12857
|
-
runMode: "
|
|
13835
|
+
runMode: "production" | "test" | "eval" | "replay" | "local_dev";
|
|
12858
13836
|
correlationId: string;
|
|
12859
13837
|
columns: Record<string, string>;
|
|
12860
13838
|
} | undefined;
|
|
@@ -13485,6 +14463,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
13485
14463
|
rubricFacet?: string | undefined;
|
|
13486
14464
|
rubricDefaultReason?: string | undefined;
|
|
13487
14465
|
}>>;
|
|
14466
|
+
|
|
14467
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
14468
|
+
status: ZodLiteral<"emitted">;
|
|
14469
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
14470
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
14471
|
+
tool: ZodString;
|
|
14472
|
+
}, "strip", ZodTypeAny$1, {
|
|
14473
|
+
kind: "tool-not-invoked";
|
|
14474
|
+
tool: string;
|
|
14475
|
+
}, {
|
|
14476
|
+
kind: "tool-not-invoked";
|
|
14477
|
+
tool: string;
|
|
14478
|
+
}>, ZodObject<{
|
|
14479
|
+
kind: ZodLiteral<"datum-absent">;
|
|
14480
|
+
datum: ZodString;
|
|
14481
|
+
reference: ZodOptional$1<ZodString>;
|
|
14482
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
14483
|
+
}, "strip", ZodTypeAny$1, {
|
|
14484
|
+
kind: "datum-absent";
|
|
14485
|
+
datum: string;
|
|
14486
|
+
reference?: string | undefined;
|
|
14487
|
+
direction?: "commission" | "omission" | undefined;
|
|
14488
|
+
}, {
|
|
14489
|
+
kind: "datum-absent";
|
|
14490
|
+
datum: string;
|
|
14491
|
+
reference?: string | undefined;
|
|
14492
|
+
direction?: "commission" | "omission" | undefined;
|
|
14493
|
+
}>]>, "many">;
|
|
14494
|
+
}, "strip", ZodTypeAny$1, {
|
|
14495
|
+
status: "emitted";
|
|
14496
|
+
assertions: ({
|
|
14497
|
+
kind: "tool-not-invoked";
|
|
14498
|
+
tool: string;
|
|
14499
|
+
} | {
|
|
14500
|
+
kind: "datum-absent";
|
|
14501
|
+
datum: string;
|
|
14502
|
+
reference?: string | undefined;
|
|
14503
|
+
direction?: "commission" | "omission" | undefined;
|
|
14504
|
+
})[];
|
|
14505
|
+
}, {
|
|
14506
|
+
status: "emitted";
|
|
14507
|
+
assertions: ({
|
|
14508
|
+
kind: "tool-not-invoked";
|
|
14509
|
+
tool: string;
|
|
14510
|
+
} | {
|
|
14511
|
+
kind: "datum-absent";
|
|
14512
|
+
datum: string;
|
|
14513
|
+
reference?: string | undefined;
|
|
14514
|
+
direction?: "commission" | "omission" | undefined;
|
|
14515
|
+
})[];
|
|
14516
|
+
}>, ZodObject<{
|
|
14517
|
+
status: ZodLiteral<"malformed">;
|
|
14518
|
+
reflectionAttempted: ZodBoolean;
|
|
14519
|
+
raw: ZodOptional$1<ZodString>;
|
|
14520
|
+
}, "strip", ZodTypeAny$1, {
|
|
14521
|
+
status: "malformed";
|
|
14522
|
+
reflectionAttempted: boolean;
|
|
14523
|
+
raw?: string | undefined;
|
|
14524
|
+
}, {
|
|
14525
|
+
status: "malformed";
|
|
14526
|
+
reflectionAttempted: boolean;
|
|
14527
|
+
raw?: string | undefined;
|
|
14528
|
+
}>]>>;
|
|
13488
14529
|
}, "passthrough", ZodTypeAny$1, objectOutputType<{
|
|
13489
14530
|
dimensionId: ZodString;
|
|
13490
14531
|
passed: ZodBoolean;
|
|
@@ -13522,6 +14563,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
13522
14563
|
rubricFacet?: string | undefined;
|
|
13523
14564
|
rubricDefaultReason?: string | undefined;
|
|
13524
14565
|
}>>;
|
|
14566
|
+
|
|
14567
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
14568
|
+
status: ZodLiteral<"emitted">;
|
|
14569
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
14570
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
14571
|
+
tool: ZodString;
|
|
14572
|
+
}, "strip", ZodTypeAny$1, {
|
|
14573
|
+
kind: "tool-not-invoked";
|
|
14574
|
+
tool: string;
|
|
14575
|
+
}, {
|
|
14576
|
+
kind: "tool-not-invoked";
|
|
14577
|
+
tool: string;
|
|
14578
|
+
}>, ZodObject<{
|
|
14579
|
+
kind: ZodLiteral<"datum-absent">;
|
|
14580
|
+
datum: ZodString;
|
|
14581
|
+
reference: ZodOptional$1<ZodString>;
|
|
14582
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
14583
|
+
}, "strip", ZodTypeAny$1, {
|
|
14584
|
+
kind: "datum-absent";
|
|
14585
|
+
datum: string;
|
|
14586
|
+
reference?: string | undefined;
|
|
14587
|
+
direction?: "commission" | "omission" | undefined;
|
|
14588
|
+
}, {
|
|
14589
|
+
kind: "datum-absent";
|
|
14590
|
+
datum: string;
|
|
14591
|
+
reference?: string | undefined;
|
|
14592
|
+
direction?: "commission" | "omission" | undefined;
|
|
14593
|
+
}>]>, "many">;
|
|
14594
|
+
}, "strip", ZodTypeAny$1, {
|
|
14595
|
+
status: "emitted";
|
|
14596
|
+
assertions: ({
|
|
14597
|
+
kind: "tool-not-invoked";
|
|
14598
|
+
tool: string;
|
|
14599
|
+
} | {
|
|
14600
|
+
kind: "datum-absent";
|
|
14601
|
+
datum: string;
|
|
14602
|
+
reference?: string | undefined;
|
|
14603
|
+
direction?: "commission" | "omission" | undefined;
|
|
14604
|
+
})[];
|
|
14605
|
+
}, {
|
|
14606
|
+
status: "emitted";
|
|
14607
|
+
assertions: ({
|
|
14608
|
+
kind: "tool-not-invoked";
|
|
14609
|
+
tool: string;
|
|
14610
|
+
} | {
|
|
14611
|
+
kind: "datum-absent";
|
|
14612
|
+
datum: string;
|
|
14613
|
+
reference?: string | undefined;
|
|
14614
|
+
direction?: "commission" | "omission" | undefined;
|
|
14615
|
+
})[];
|
|
14616
|
+
}>, ZodObject<{
|
|
14617
|
+
status: ZodLiteral<"malformed">;
|
|
14618
|
+
reflectionAttempted: ZodBoolean;
|
|
14619
|
+
raw: ZodOptional$1<ZodString>;
|
|
14620
|
+
}, "strip", ZodTypeAny$1, {
|
|
14621
|
+
status: "malformed";
|
|
14622
|
+
reflectionAttempted: boolean;
|
|
14623
|
+
raw?: string | undefined;
|
|
14624
|
+
}, {
|
|
14625
|
+
status: "malformed";
|
|
14626
|
+
reflectionAttempted: boolean;
|
|
14627
|
+
raw?: string | undefined;
|
|
14628
|
+
}>]>>;
|
|
13525
14629
|
}, ZodTypeAny$1, "passthrough">, objectInputType<{
|
|
13526
14630
|
dimensionId: ZodString;
|
|
13527
14631
|
passed: ZodBoolean;
|
|
@@ -13559,6 +14663,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
13559
14663
|
rubricFacet?: string | undefined;
|
|
13560
14664
|
rubricDefaultReason?: string | undefined;
|
|
13561
14665
|
}>>;
|
|
14666
|
+
|
|
14667
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
14668
|
+
status: ZodLiteral<"emitted">;
|
|
14669
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
14670
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
14671
|
+
tool: ZodString;
|
|
14672
|
+
}, "strip", ZodTypeAny$1, {
|
|
14673
|
+
kind: "tool-not-invoked";
|
|
14674
|
+
tool: string;
|
|
14675
|
+
}, {
|
|
14676
|
+
kind: "tool-not-invoked";
|
|
14677
|
+
tool: string;
|
|
14678
|
+
}>, ZodObject<{
|
|
14679
|
+
kind: ZodLiteral<"datum-absent">;
|
|
14680
|
+
datum: ZodString;
|
|
14681
|
+
reference: ZodOptional$1<ZodString>;
|
|
14682
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
14683
|
+
}, "strip", ZodTypeAny$1, {
|
|
14684
|
+
kind: "datum-absent";
|
|
14685
|
+
datum: string;
|
|
14686
|
+
reference?: string | undefined;
|
|
14687
|
+
direction?: "commission" | "omission" | undefined;
|
|
14688
|
+
}, {
|
|
14689
|
+
kind: "datum-absent";
|
|
14690
|
+
datum: string;
|
|
14691
|
+
reference?: string | undefined;
|
|
14692
|
+
direction?: "commission" | "omission" | undefined;
|
|
14693
|
+
}>]>, "many">;
|
|
14694
|
+
}, "strip", ZodTypeAny$1, {
|
|
14695
|
+
status: "emitted";
|
|
14696
|
+
assertions: ({
|
|
14697
|
+
kind: "tool-not-invoked";
|
|
14698
|
+
tool: string;
|
|
14699
|
+
} | {
|
|
14700
|
+
kind: "datum-absent";
|
|
14701
|
+
datum: string;
|
|
14702
|
+
reference?: string | undefined;
|
|
14703
|
+
direction?: "commission" | "omission" | undefined;
|
|
14704
|
+
})[];
|
|
14705
|
+
}, {
|
|
14706
|
+
status: "emitted";
|
|
14707
|
+
assertions: ({
|
|
14708
|
+
kind: "tool-not-invoked";
|
|
14709
|
+
tool: string;
|
|
14710
|
+
} | {
|
|
14711
|
+
kind: "datum-absent";
|
|
14712
|
+
datum: string;
|
|
14713
|
+
reference?: string | undefined;
|
|
14714
|
+
direction?: "commission" | "omission" | undefined;
|
|
14715
|
+
})[];
|
|
14716
|
+
}>, ZodObject<{
|
|
14717
|
+
status: ZodLiteral<"malformed">;
|
|
14718
|
+
reflectionAttempted: ZodBoolean;
|
|
14719
|
+
raw: ZodOptional$1<ZodString>;
|
|
14720
|
+
}, "strip", ZodTypeAny$1, {
|
|
14721
|
+
status: "malformed";
|
|
14722
|
+
reflectionAttempted: boolean;
|
|
14723
|
+
raw?: string | undefined;
|
|
14724
|
+
}, {
|
|
14725
|
+
status: "malformed";
|
|
14726
|
+
reflectionAttempted: boolean;
|
|
14727
|
+
raw?: string | undefined;
|
|
14728
|
+
}>]>>;
|
|
13562
14729
|
}, ZodTypeAny$1, "passthrough">>, "many">;
|
|
13563
14730
|
|
|
13564
14731
|
cohortTags: ZodDefault$1<ZodArray$1<ZodString, "many">>;
|
|
@@ -13703,8 +14870,8 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
13703
14870
|
noiseFloorCalibration?: {
|
|
13704
14871
|
totalEventCount: number;
|
|
13705
14872
|
perFixtureDimension: {
|
|
13706
|
-
fixtureId: string;
|
|
13707
14873
|
dimensionId: string;
|
|
14874
|
+
fixtureId: string;
|
|
13708
14875
|
scores: number[];
|
|
13709
14876
|
sigmaFloor: number;
|
|
13710
14877
|
n: number;
|
|
@@ -13803,7 +14970,6 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
13803
14970
|
pinnedLabel?: string | undefined;
|
|
13804
14971
|
} | undefined;
|
|
13805
14972
|
evalRecommendation?: {
|
|
13806
|
-
confidence: number;
|
|
13807
14973
|
rationale: string;
|
|
13808
14974
|
targetEventId: string;
|
|
13809
14975
|
recommendation: "degenerate" | "contaminated" | "viable" | "insufficient-n" | "instrument-limited" | "stale-floor";
|
|
@@ -13812,6 +14978,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
13812
14978
|
passed: boolean;
|
|
13813
14979
|
detail: string;
|
|
13814
14980
|
}[];
|
|
14981
|
+
confidence: number;
|
|
13815
14982
|
assessedBy: string;
|
|
13816
14983
|
recomputed?: {
|
|
13817
14984
|
sigmaObservedSquared: number;
|
|
@@ -13823,6 +14990,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
13823
14990
|
} | undefined;
|
|
13824
14991
|
} | undefined;
|
|
13825
14992
|
conformanceFixtureRecord?: {
|
|
14993
|
+
approverId: string;
|
|
13826
14994
|
fixture: {
|
|
13827
14995
|
description: string;
|
|
13828
14996
|
fixtureId: string;
|
|
@@ -13859,12 +15027,11 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
13859
15027
|
sourceExcerpt?: string | undefined;
|
|
13860
15028
|
when?: {
|
|
13861
15029
|
column: string;
|
|
15030
|
+
present?: boolean | undefined;
|
|
13862
15031
|
equals?: string | undefined;
|
|
13863
15032
|
oneOf?: string[] | undefined;
|
|
13864
|
-
present?: boolean | undefined;
|
|
13865
15033
|
}[] | undefined;
|
|
13866
15034
|
};
|
|
13867
|
-
approverId: string;
|
|
13868
15035
|
occurredAt: string;
|
|
13869
15036
|
sourceSurfaceId?: string | undefined;
|
|
13870
15037
|
} | undefined;
|
|
@@ -13897,18 +15064,18 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
13897
15064
|
};
|
|
13898
15065
|
} | undefined;
|
|
13899
15066
|
}>, {
|
|
15067
|
+
surfaceId: string;
|
|
13900
15068
|
lensVersion: string;
|
|
13901
15069
|
correlationId: string;
|
|
13902
15070
|
kind: "evaluation" | "availability.transition" | "analysis.noise-floor-calibration" | "analysis.variance-decomposition" | "analysis.lifecycle-transition" | "analysis.eval-recommendation" | "analysis.conformance-fixture" | "analysis.emission-coverage" | "analysis.delivery-orphan" | "analysis.orthogonality-hypothesis";
|
|
13903
|
-
surfaceId: string;
|
|
13904
15071
|
occurredAt: string;
|
|
13905
15072
|
eventId: string;
|
|
13906
15073
|
substrate?: {
|
|
13907
|
-
provenance: "
|
|
15074
|
+
provenance: "replay" | "local_dev" | "pre_deploy_gate" | "scheduled_production_eval" | "manual_production_run";
|
|
13908
15075
|
timestamp: string;
|
|
13909
15076
|
lensVersion: string;
|
|
13910
15077
|
lightSourceIdentifier: string;
|
|
13911
|
-
runMode: "
|
|
15078
|
+
runMode: "production" | "test" | "eval" | "replay" | "local_dev";
|
|
13912
15079
|
correlationId: string;
|
|
13913
15080
|
columns: Record<string, string>;
|
|
13914
15081
|
} | undefined;
|
|
@@ -14538,6 +15705,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
14538
15705
|
rubricFacet?: string | undefined;
|
|
14539
15706
|
rubricDefaultReason?: string | undefined;
|
|
14540
15707
|
}>>;
|
|
15708
|
+
|
|
15709
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
15710
|
+
status: ZodLiteral<"emitted">;
|
|
15711
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
15712
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
15713
|
+
tool: ZodString;
|
|
15714
|
+
}, "strip", ZodTypeAny$1, {
|
|
15715
|
+
kind: "tool-not-invoked";
|
|
15716
|
+
tool: string;
|
|
15717
|
+
}, {
|
|
15718
|
+
kind: "tool-not-invoked";
|
|
15719
|
+
tool: string;
|
|
15720
|
+
}>, ZodObject<{
|
|
15721
|
+
kind: ZodLiteral<"datum-absent">;
|
|
15722
|
+
datum: ZodString;
|
|
15723
|
+
reference: ZodOptional$1<ZodString>;
|
|
15724
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
15725
|
+
}, "strip", ZodTypeAny$1, {
|
|
15726
|
+
kind: "datum-absent";
|
|
15727
|
+
datum: string;
|
|
15728
|
+
reference?: string | undefined;
|
|
15729
|
+
direction?: "commission" | "omission" | undefined;
|
|
15730
|
+
}, {
|
|
15731
|
+
kind: "datum-absent";
|
|
15732
|
+
datum: string;
|
|
15733
|
+
reference?: string | undefined;
|
|
15734
|
+
direction?: "commission" | "omission" | undefined;
|
|
15735
|
+
}>]>, "many">;
|
|
15736
|
+
}, "strip", ZodTypeAny$1, {
|
|
15737
|
+
status: "emitted";
|
|
15738
|
+
assertions: ({
|
|
15739
|
+
kind: "tool-not-invoked";
|
|
15740
|
+
tool: string;
|
|
15741
|
+
} | {
|
|
15742
|
+
kind: "datum-absent";
|
|
15743
|
+
datum: string;
|
|
15744
|
+
reference?: string | undefined;
|
|
15745
|
+
direction?: "commission" | "omission" | undefined;
|
|
15746
|
+
})[];
|
|
15747
|
+
}, {
|
|
15748
|
+
status: "emitted";
|
|
15749
|
+
assertions: ({
|
|
15750
|
+
kind: "tool-not-invoked";
|
|
15751
|
+
tool: string;
|
|
15752
|
+
} | {
|
|
15753
|
+
kind: "datum-absent";
|
|
15754
|
+
datum: string;
|
|
15755
|
+
reference?: string | undefined;
|
|
15756
|
+
direction?: "commission" | "omission" | undefined;
|
|
15757
|
+
})[];
|
|
15758
|
+
}>, ZodObject<{
|
|
15759
|
+
status: ZodLiteral<"malformed">;
|
|
15760
|
+
reflectionAttempted: ZodBoolean;
|
|
15761
|
+
raw: ZodOptional$1<ZodString>;
|
|
15762
|
+
}, "strip", ZodTypeAny$1, {
|
|
15763
|
+
status: "malformed";
|
|
15764
|
+
reflectionAttempted: boolean;
|
|
15765
|
+
raw?: string | undefined;
|
|
15766
|
+
}, {
|
|
15767
|
+
status: "malformed";
|
|
15768
|
+
reflectionAttempted: boolean;
|
|
15769
|
+
raw?: string | undefined;
|
|
15770
|
+
}>]>>;
|
|
14541
15771
|
}, "passthrough", ZodTypeAny$1, objectOutputType<{
|
|
14542
15772
|
dimensionId: ZodString;
|
|
14543
15773
|
passed: ZodBoolean;
|
|
@@ -14575,6 +15805,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
14575
15805
|
rubricFacet?: string | undefined;
|
|
14576
15806
|
rubricDefaultReason?: string | undefined;
|
|
14577
15807
|
}>>;
|
|
15808
|
+
|
|
15809
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
15810
|
+
status: ZodLiteral<"emitted">;
|
|
15811
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
15812
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
15813
|
+
tool: ZodString;
|
|
15814
|
+
}, "strip", ZodTypeAny$1, {
|
|
15815
|
+
kind: "tool-not-invoked";
|
|
15816
|
+
tool: string;
|
|
15817
|
+
}, {
|
|
15818
|
+
kind: "tool-not-invoked";
|
|
15819
|
+
tool: string;
|
|
15820
|
+
}>, ZodObject<{
|
|
15821
|
+
kind: ZodLiteral<"datum-absent">;
|
|
15822
|
+
datum: ZodString;
|
|
15823
|
+
reference: ZodOptional$1<ZodString>;
|
|
15824
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
15825
|
+
}, "strip", ZodTypeAny$1, {
|
|
15826
|
+
kind: "datum-absent";
|
|
15827
|
+
datum: string;
|
|
15828
|
+
reference?: string | undefined;
|
|
15829
|
+
direction?: "commission" | "omission" | undefined;
|
|
15830
|
+
}, {
|
|
15831
|
+
kind: "datum-absent";
|
|
15832
|
+
datum: string;
|
|
15833
|
+
reference?: string | undefined;
|
|
15834
|
+
direction?: "commission" | "omission" | undefined;
|
|
15835
|
+
}>]>, "many">;
|
|
15836
|
+
}, "strip", ZodTypeAny$1, {
|
|
15837
|
+
status: "emitted";
|
|
15838
|
+
assertions: ({
|
|
15839
|
+
kind: "tool-not-invoked";
|
|
15840
|
+
tool: string;
|
|
15841
|
+
} | {
|
|
15842
|
+
kind: "datum-absent";
|
|
15843
|
+
datum: string;
|
|
15844
|
+
reference?: string | undefined;
|
|
15845
|
+
direction?: "commission" | "omission" | undefined;
|
|
15846
|
+
})[];
|
|
15847
|
+
}, {
|
|
15848
|
+
status: "emitted";
|
|
15849
|
+
assertions: ({
|
|
15850
|
+
kind: "tool-not-invoked";
|
|
15851
|
+
tool: string;
|
|
15852
|
+
} | {
|
|
15853
|
+
kind: "datum-absent";
|
|
15854
|
+
datum: string;
|
|
15855
|
+
reference?: string | undefined;
|
|
15856
|
+
direction?: "commission" | "omission" | undefined;
|
|
15857
|
+
})[];
|
|
15858
|
+
}>, ZodObject<{
|
|
15859
|
+
status: ZodLiteral<"malformed">;
|
|
15860
|
+
reflectionAttempted: ZodBoolean;
|
|
15861
|
+
raw: ZodOptional$1<ZodString>;
|
|
15862
|
+
}, "strip", ZodTypeAny$1, {
|
|
15863
|
+
status: "malformed";
|
|
15864
|
+
reflectionAttempted: boolean;
|
|
15865
|
+
raw?: string | undefined;
|
|
15866
|
+
}, {
|
|
15867
|
+
status: "malformed";
|
|
15868
|
+
reflectionAttempted: boolean;
|
|
15869
|
+
raw?: string | undefined;
|
|
15870
|
+
}>]>>;
|
|
14578
15871
|
}, ZodTypeAny$1, "passthrough">, objectInputType<{
|
|
14579
15872
|
dimensionId: ZodString;
|
|
14580
15873
|
passed: ZodBoolean;
|
|
@@ -14612,6 +15905,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
14612
15905
|
rubricFacet?: string | undefined;
|
|
14613
15906
|
rubricDefaultReason?: string | undefined;
|
|
14614
15907
|
}>>;
|
|
15908
|
+
|
|
15909
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
15910
|
+
status: ZodLiteral<"emitted">;
|
|
15911
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
15912
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
15913
|
+
tool: ZodString;
|
|
15914
|
+
}, "strip", ZodTypeAny$1, {
|
|
15915
|
+
kind: "tool-not-invoked";
|
|
15916
|
+
tool: string;
|
|
15917
|
+
}, {
|
|
15918
|
+
kind: "tool-not-invoked";
|
|
15919
|
+
tool: string;
|
|
15920
|
+
}>, ZodObject<{
|
|
15921
|
+
kind: ZodLiteral<"datum-absent">;
|
|
15922
|
+
datum: ZodString;
|
|
15923
|
+
reference: ZodOptional$1<ZodString>;
|
|
15924
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
15925
|
+
}, "strip", ZodTypeAny$1, {
|
|
15926
|
+
kind: "datum-absent";
|
|
15927
|
+
datum: string;
|
|
15928
|
+
reference?: string | undefined;
|
|
15929
|
+
direction?: "commission" | "omission" | undefined;
|
|
15930
|
+
}, {
|
|
15931
|
+
kind: "datum-absent";
|
|
15932
|
+
datum: string;
|
|
15933
|
+
reference?: string | undefined;
|
|
15934
|
+
direction?: "commission" | "omission" | undefined;
|
|
15935
|
+
}>]>, "many">;
|
|
15936
|
+
}, "strip", ZodTypeAny$1, {
|
|
15937
|
+
status: "emitted";
|
|
15938
|
+
assertions: ({
|
|
15939
|
+
kind: "tool-not-invoked";
|
|
15940
|
+
tool: string;
|
|
15941
|
+
} | {
|
|
15942
|
+
kind: "datum-absent";
|
|
15943
|
+
datum: string;
|
|
15944
|
+
reference?: string | undefined;
|
|
15945
|
+
direction?: "commission" | "omission" | undefined;
|
|
15946
|
+
})[];
|
|
15947
|
+
}, {
|
|
15948
|
+
status: "emitted";
|
|
15949
|
+
assertions: ({
|
|
15950
|
+
kind: "tool-not-invoked";
|
|
15951
|
+
tool: string;
|
|
15952
|
+
} | {
|
|
15953
|
+
kind: "datum-absent";
|
|
15954
|
+
datum: string;
|
|
15955
|
+
reference?: string | undefined;
|
|
15956
|
+
direction?: "commission" | "omission" | undefined;
|
|
15957
|
+
})[];
|
|
15958
|
+
}>, ZodObject<{
|
|
15959
|
+
status: ZodLiteral<"malformed">;
|
|
15960
|
+
reflectionAttempted: ZodBoolean;
|
|
15961
|
+
raw: ZodOptional$1<ZodString>;
|
|
15962
|
+
}, "strip", ZodTypeAny$1, {
|
|
15963
|
+
status: "malformed";
|
|
15964
|
+
reflectionAttempted: boolean;
|
|
15965
|
+
raw?: string | undefined;
|
|
15966
|
+
}, {
|
|
15967
|
+
status: "malformed";
|
|
15968
|
+
reflectionAttempted: boolean;
|
|
15969
|
+
raw?: string | undefined;
|
|
15970
|
+
}>]>>;
|
|
14615
15971
|
}, ZodTypeAny$1, "passthrough">>, "many">;
|
|
14616
15972
|
|
|
14617
15973
|
cohortTags: ZodDefault$1<ZodArray$1<ZodString, "many">>;
|
|
@@ -14756,8 +16112,8 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
14756
16112
|
noiseFloorCalibration?: {
|
|
14757
16113
|
totalEventCount: number;
|
|
14758
16114
|
perFixtureDimension: {
|
|
14759
|
-
fixtureId: string;
|
|
14760
16115
|
dimensionId: string;
|
|
16116
|
+
fixtureId: string;
|
|
14761
16117
|
scores: number[];
|
|
14762
16118
|
sigmaFloor: number;
|
|
14763
16119
|
n: number;
|
|
@@ -14856,7 +16212,6 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
14856
16212
|
pinnedLabel?: string | undefined;
|
|
14857
16213
|
} | undefined;
|
|
14858
16214
|
evalRecommendation?: {
|
|
14859
|
-
confidence: number;
|
|
14860
16215
|
rationale: string;
|
|
14861
16216
|
targetEventId: string;
|
|
14862
16217
|
recommendation: "degenerate" | "contaminated" | "viable" | "insufficient-n" | "instrument-limited" | "stale-floor";
|
|
@@ -14865,6 +16220,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
14865
16220
|
passed: boolean;
|
|
14866
16221
|
detail: string;
|
|
14867
16222
|
}[];
|
|
16223
|
+
confidence: number;
|
|
14868
16224
|
assessedBy: string;
|
|
14869
16225
|
recomputed?: {
|
|
14870
16226
|
sigmaObservedSquared: number;
|
|
@@ -14876,6 +16232,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
14876
16232
|
} | undefined;
|
|
14877
16233
|
} | undefined;
|
|
14878
16234
|
conformanceFixtureRecord?: {
|
|
16235
|
+
approverId: string;
|
|
14879
16236
|
fixture: {
|
|
14880
16237
|
description: string;
|
|
14881
16238
|
fixtureId: string;
|
|
@@ -14912,12 +16269,11 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
14912
16269
|
sourceExcerpt?: string | undefined;
|
|
14913
16270
|
when?: {
|
|
14914
16271
|
column: string;
|
|
16272
|
+
present?: boolean | undefined;
|
|
14915
16273
|
equals?: string | undefined;
|
|
14916
16274
|
oneOf?: string[] | undefined;
|
|
14917
|
-
present?: boolean | undefined;
|
|
14918
16275
|
}[] | undefined;
|
|
14919
16276
|
};
|
|
14920
|
-
approverId: string;
|
|
14921
16277
|
occurredAt: string;
|
|
14922
16278
|
sourceSurfaceId?: string | undefined;
|
|
14923
16279
|
} | undefined;
|
|
@@ -14950,17 +16306,17 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
14950
16306
|
};
|
|
14951
16307
|
} | undefined;
|
|
14952
16308
|
}, {
|
|
16309
|
+
surfaceId: string;
|
|
14953
16310
|
lensVersion: string;
|
|
14954
16311
|
correlationId: string;
|
|
14955
|
-
surfaceId: string;
|
|
14956
16312
|
occurredAt: string;
|
|
14957
16313
|
eventId: string;
|
|
14958
16314
|
substrate?: {
|
|
14959
|
-
provenance: "
|
|
16315
|
+
provenance: "replay" | "local_dev" | "pre_deploy_gate" | "scheduled_production_eval" | "manual_production_run";
|
|
14960
16316
|
timestamp: string;
|
|
14961
16317
|
lensVersion: string;
|
|
14962
16318
|
lightSourceIdentifier: string;
|
|
14963
|
-
runMode: "
|
|
16319
|
+
runMode: "production" | "test" | "eval" | "replay" | "local_dev";
|
|
14964
16320
|
correlationId: string;
|
|
14965
16321
|
columns: Record<string, string>;
|
|
14966
16322
|
} | undefined;
|
|
@@ -15591,6 +16947,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
15591
16947
|
rubricFacet?: string | undefined;
|
|
15592
16948
|
rubricDefaultReason?: string | undefined;
|
|
15593
16949
|
}>>;
|
|
16950
|
+
|
|
16951
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
16952
|
+
status: ZodLiteral<"emitted">;
|
|
16953
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
16954
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
16955
|
+
tool: ZodString;
|
|
16956
|
+
}, "strip", ZodTypeAny$1, {
|
|
16957
|
+
kind: "tool-not-invoked";
|
|
16958
|
+
tool: string;
|
|
16959
|
+
}, {
|
|
16960
|
+
kind: "tool-not-invoked";
|
|
16961
|
+
tool: string;
|
|
16962
|
+
}>, ZodObject<{
|
|
16963
|
+
kind: ZodLiteral<"datum-absent">;
|
|
16964
|
+
datum: ZodString;
|
|
16965
|
+
reference: ZodOptional$1<ZodString>;
|
|
16966
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
16967
|
+
}, "strip", ZodTypeAny$1, {
|
|
16968
|
+
kind: "datum-absent";
|
|
16969
|
+
datum: string;
|
|
16970
|
+
reference?: string | undefined;
|
|
16971
|
+
direction?: "commission" | "omission" | undefined;
|
|
16972
|
+
}, {
|
|
16973
|
+
kind: "datum-absent";
|
|
16974
|
+
datum: string;
|
|
16975
|
+
reference?: string | undefined;
|
|
16976
|
+
direction?: "commission" | "omission" | undefined;
|
|
16977
|
+
}>]>, "many">;
|
|
16978
|
+
}, "strip", ZodTypeAny$1, {
|
|
16979
|
+
status: "emitted";
|
|
16980
|
+
assertions: ({
|
|
16981
|
+
kind: "tool-not-invoked";
|
|
16982
|
+
tool: string;
|
|
16983
|
+
} | {
|
|
16984
|
+
kind: "datum-absent";
|
|
16985
|
+
datum: string;
|
|
16986
|
+
reference?: string | undefined;
|
|
16987
|
+
direction?: "commission" | "omission" | undefined;
|
|
16988
|
+
})[];
|
|
16989
|
+
}, {
|
|
16990
|
+
status: "emitted";
|
|
16991
|
+
assertions: ({
|
|
16992
|
+
kind: "tool-not-invoked";
|
|
16993
|
+
tool: string;
|
|
16994
|
+
} | {
|
|
16995
|
+
kind: "datum-absent";
|
|
16996
|
+
datum: string;
|
|
16997
|
+
reference?: string | undefined;
|
|
16998
|
+
direction?: "commission" | "omission" | undefined;
|
|
16999
|
+
})[];
|
|
17000
|
+
}>, ZodObject<{
|
|
17001
|
+
status: ZodLiteral<"malformed">;
|
|
17002
|
+
reflectionAttempted: ZodBoolean;
|
|
17003
|
+
raw: ZodOptional$1<ZodString>;
|
|
17004
|
+
}, "strip", ZodTypeAny$1, {
|
|
17005
|
+
status: "malformed";
|
|
17006
|
+
reflectionAttempted: boolean;
|
|
17007
|
+
raw?: string | undefined;
|
|
17008
|
+
}, {
|
|
17009
|
+
status: "malformed";
|
|
17010
|
+
reflectionAttempted: boolean;
|
|
17011
|
+
raw?: string | undefined;
|
|
17012
|
+
}>]>>;
|
|
15594
17013
|
}, "passthrough", ZodTypeAny$1, objectOutputType<{
|
|
15595
17014
|
dimensionId: ZodString;
|
|
15596
17015
|
passed: ZodBoolean;
|
|
@@ -15628,6 +17047,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
15628
17047
|
rubricFacet?: string | undefined;
|
|
15629
17048
|
rubricDefaultReason?: string | undefined;
|
|
15630
17049
|
}>>;
|
|
17050
|
+
|
|
17051
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
17052
|
+
status: ZodLiteral<"emitted">;
|
|
17053
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
17054
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
17055
|
+
tool: ZodString;
|
|
17056
|
+
}, "strip", ZodTypeAny$1, {
|
|
17057
|
+
kind: "tool-not-invoked";
|
|
17058
|
+
tool: string;
|
|
17059
|
+
}, {
|
|
17060
|
+
kind: "tool-not-invoked";
|
|
17061
|
+
tool: string;
|
|
17062
|
+
}>, ZodObject<{
|
|
17063
|
+
kind: ZodLiteral<"datum-absent">;
|
|
17064
|
+
datum: ZodString;
|
|
17065
|
+
reference: ZodOptional$1<ZodString>;
|
|
17066
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
17067
|
+
}, "strip", ZodTypeAny$1, {
|
|
17068
|
+
kind: "datum-absent";
|
|
17069
|
+
datum: string;
|
|
17070
|
+
reference?: string | undefined;
|
|
17071
|
+
direction?: "commission" | "omission" | undefined;
|
|
17072
|
+
}, {
|
|
17073
|
+
kind: "datum-absent";
|
|
17074
|
+
datum: string;
|
|
17075
|
+
reference?: string | undefined;
|
|
17076
|
+
direction?: "commission" | "omission" | undefined;
|
|
17077
|
+
}>]>, "many">;
|
|
17078
|
+
}, "strip", ZodTypeAny$1, {
|
|
17079
|
+
status: "emitted";
|
|
17080
|
+
assertions: ({
|
|
17081
|
+
kind: "tool-not-invoked";
|
|
17082
|
+
tool: string;
|
|
17083
|
+
} | {
|
|
17084
|
+
kind: "datum-absent";
|
|
17085
|
+
datum: string;
|
|
17086
|
+
reference?: string | undefined;
|
|
17087
|
+
direction?: "commission" | "omission" | undefined;
|
|
17088
|
+
})[];
|
|
17089
|
+
}, {
|
|
17090
|
+
status: "emitted";
|
|
17091
|
+
assertions: ({
|
|
17092
|
+
kind: "tool-not-invoked";
|
|
17093
|
+
tool: string;
|
|
17094
|
+
} | {
|
|
17095
|
+
kind: "datum-absent";
|
|
17096
|
+
datum: string;
|
|
17097
|
+
reference?: string | undefined;
|
|
17098
|
+
direction?: "commission" | "omission" | undefined;
|
|
17099
|
+
})[];
|
|
17100
|
+
}>, ZodObject<{
|
|
17101
|
+
status: ZodLiteral<"malformed">;
|
|
17102
|
+
reflectionAttempted: ZodBoolean;
|
|
17103
|
+
raw: ZodOptional$1<ZodString>;
|
|
17104
|
+
}, "strip", ZodTypeAny$1, {
|
|
17105
|
+
status: "malformed";
|
|
17106
|
+
reflectionAttempted: boolean;
|
|
17107
|
+
raw?: string | undefined;
|
|
17108
|
+
}, {
|
|
17109
|
+
status: "malformed";
|
|
17110
|
+
reflectionAttempted: boolean;
|
|
17111
|
+
raw?: string | undefined;
|
|
17112
|
+
}>]>>;
|
|
15631
17113
|
}, ZodTypeAny$1, "passthrough">, objectInputType<{
|
|
15632
17114
|
dimensionId: ZodString;
|
|
15633
17115
|
passed: ZodBoolean;
|
|
@@ -15665,6 +17147,69 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
15665
17147
|
rubricFacet?: string | undefined;
|
|
15666
17148
|
rubricDefaultReason?: string | undefined;
|
|
15667
17149
|
}>>;
|
|
17150
|
+
|
|
17151
|
+
claim: ZodOptional$1<ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
17152
|
+
status: ZodLiteral<"emitted">;
|
|
17153
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
17154
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
17155
|
+
tool: ZodString;
|
|
17156
|
+
}, "strip", ZodTypeAny$1, {
|
|
17157
|
+
kind: "tool-not-invoked";
|
|
17158
|
+
tool: string;
|
|
17159
|
+
}, {
|
|
17160
|
+
kind: "tool-not-invoked";
|
|
17161
|
+
tool: string;
|
|
17162
|
+
}>, ZodObject<{
|
|
17163
|
+
kind: ZodLiteral<"datum-absent">;
|
|
17164
|
+
datum: ZodString;
|
|
17165
|
+
reference: ZodOptional$1<ZodString>;
|
|
17166
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
17167
|
+
}, "strip", ZodTypeAny$1, {
|
|
17168
|
+
kind: "datum-absent";
|
|
17169
|
+
datum: string;
|
|
17170
|
+
reference?: string | undefined;
|
|
17171
|
+
direction?: "commission" | "omission" | undefined;
|
|
17172
|
+
}, {
|
|
17173
|
+
kind: "datum-absent";
|
|
17174
|
+
datum: string;
|
|
17175
|
+
reference?: string | undefined;
|
|
17176
|
+
direction?: "commission" | "omission" | undefined;
|
|
17177
|
+
}>]>, "many">;
|
|
17178
|
+
}, "strip", ZodTypeAny$1, {
|
|
17179
|
+
status: "emitted";
|
|
17180
|
+
assertions: ({
|
|
17181
|
+
kind: "tool-not-invoked";
|
|
17182
|
+
tool: string;
|
|
17183
|
+
} | {
|
|
17184
|
+
kind: "datum-absent";
|
|
17185
|
+
datum: string;
|
|
17186
|
+
reference?: string | undefined;
|
|
17187
|
+
direction?: "commission" | "omission" | undefined;
|
|
17188
|
+
})[];
|
|
17189
|
+
}, {
|
|
17190
|
+
status: "emitted";
|
|
17191
|
+
assertions: ({
|
|
17192
|
+
kind: "tool-not-invoked";
|
|
17193
|
+
tool: string;
|
|
17194
|
+
} | {
|
|
17195
|
+
kind: "datum-absent";
|
|
17196
|
+
datum: string;
|
|
17197
|
+
reference?: string | undefined;
|
|
17198
|
+
direction?: "commission" | "omission" | undefined;
|
|
17199
|
+
})[];
|
|
17200
|
+
}>, ZodObject<{
|
|
17201
|
+
status: ZodLiteral<"malformed">;
|
|
17202
|
+
reflectionAttempted: ZodBoolean;
|
|
17203
|
+
raw: ZodOptional$1<ZodString>;
|
|
17204
|
+
}, "strip", ZodTypeAny$1, {
|
|
17205
|
+
status: "malformed";
|
|
17206
|
+
reflectionAttempted: boolean;
|
|
17207
|
+
raw?: string | undefined;
|
|
17208
|
+
}, {
|
|
17209
|
+
status: "malformed";
|
|
17210
|
+
reflectionAttempted: boolean;
|
|
17211
|
+
raw?: string | undefined;
|
|
17212
|
+
}>]>>;
|
|
15668
17213
|
}, ZodTypeAny$1, "passthrough">>, "many">;
|
|
15669
17214
|
|
|
15670
17215
|
cohortTags: ZodDefault$1<ZodArray$1<ZodString, "many">>;
|
|
@@ -15809,8 +17354,8 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
15809
17354
|
noiseFloorCalibration?: {
|
|
15810
17355
|
totalEventCount: number;
|
|
15811
17356
|
perFixtureDimension: {
|
|
15812
|
-
fixtureId: string;
|
|
15813
17357
|
dimensionId: string;
|
|
17358
|
+
fixtureId: string;
|
|
15814
17359
|
scores: number[];
|
|
15815
17360
|
sigmaFloor: number;
|
|
15816
17361
|
n: number;
|
|
@@ -15909,7 +17454,6 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
15909
17454
|
pinnedLabel?: string | undefined;
|
|
15910
17455
|
} | undefined;
|
|
15911
17456
|
evalRecommendation?: {
|
|
15912
|
-
confidence: number;
|
|
15913
17457
|
rationale: string;
|
|
15914
17458
|
targetEventId: string;
|
|
15915
17459
|
recommendation: "degenerate" | "contaminated" | "viable" | "insufficient-n" | "instrument-limited" | "stale-floor";
|
|
@@ -15918,6 +17462,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
15918
17462
|
passed: boolean;
|
|
15919
17463
|
detail: string;
|
|
15920
17464
|
}[];
|
|
17465
|
+
confidence: number;
|
|
15921
17466
|
assessedBy: string;
|
|
15922
17467
|
recomputed?: {
|
|
15923
17468
|
sigmaObservedSquared: number;
|
|
@@ -15929,6 +17474,7 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
15929
17474
|
} | undefined;
|
|
15930
17475
|
} | undefined;
|
|
15931
17476
|
conformanceFixtureRecord?: {
|
|
17477
|
+
approverId: string;
|
|
15932
17478
|
fixture: {
|
|
15933
17479
|
description: string;
|
|
15934
17480
|
fixtureId: string;
|
|
@@ -15965,12 +17511,11 @@ declare const EvaluationEventSchema: ZodEffects$1<ZodObject<{
|
|
|
15965
17511
|
sourceExcerpt?: string | undefined;
|
|
15966
17512
|
when?: {
|
|
15967
17513
|
column: string;
|
|
17514
|
+
present?: boolean | undefined;
|
|
15968
17515
|
equals?: string | undefined;
|
|
15969
17516
|
oneOf?: string[] | undefined;
|
|
15970
|
-
present?: boolean | undefined;
|
|
15971
17517
|
}[] | undefined;
|
|
15972
17518
|
};
|
|
15973
|
-
approverId: string;
|
|
15974
17519
|
occurredAt: string;
|
|
15975
17520
|
sourceSurfaceId?: string | undefined;
|
|
15976
17521
|
} | undefined;
|
|
@@ -16404,6 +17949,117 @@ declare const DimensionJudgeIdentitySchema: ZodObject<{
|
|
|
16404
17949
|
}>;
|
|
16405
17950
|
type DimensionJudgeIdentity = TypeOf$1<typeof DimensionJudgeIdentitySchema>;
|
|
16406
17951
|
|
|
17952
|
+
declare const JudgeAssertionKindSchema: ZodEnum$1<["tool-not-invoked", "datum-absent"]>;
|
|
17953
|
+
type JudgeAssertionKind = TypeOf$1<typeof JudgeAssertionKindSchema>;
|
|
17954
|
+
|
|
17955
|
+
declare const JudgeAssertionSchema: ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
17956
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
17957
|
+
tool: ZodString;
|
|
17958
|
+
}, "strip", ZodTypeAny$1, {
|
|
17959
|
+
kind: "tool-not-invoked";
|
|
17960
|
+
tool: string;
|
|
17961
|
+
}, {
|
|
17962
|
+
kind: "tool-not-invoked";
|
|
17963
|
+
tool: string;
|
|
17964
|
+
}>, ZodObject<{
|
|
17965
|
+
kind: ZodLiteral<"datum-absent">;
|
|
17966
|
+
datum: ZodString;
|
|
17967
|
+
reference: ZodOptional$1<ZodString>;
|
|
17968
|
+
|
|
17969
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
17970
|
+
}, "strip", ZodTypeAny$1, {
|
|
17971
|
+
kind: "datum-absent";
|
|
17972
|
+
datum: string;
|
|
17973
|
+
reference?: string | undefined;
|
|
17974
|
+
direction?: "commission" | "omission" | undefined;
|
|
17975
|
+
}, {
|
|
17976
|
+
kind: "datum-absent";
|
|
17977
|
+
datum: string;
|
|
17978
|
+
reference?: string | undefined;
|
|
17979
|
+
direction?: "commission" | "omission" | undefined;
|
|
17980
|
+
}>]>;
|
|
17981
|
+
type JudgeAssertion = TypeOf$1<typeof JudgeAssertionSchema>;
|
|
17982
|
+
|
|
17983
|
+
declare const JudgeClaimReportSchema: ZodDiscriminatedUnion<"status", [ZodObject<{
|
|
17984
|
+
|
|
17985
|
+
status: ZodLiteral<"emitted">;
|
|
17986
|
+
|
|
17987
|
+
assertions: ZodArray$1<ZodDiscriminatedUnion<"kind", [ZodObject<{
|
|
17988
|
+
kind: ZodLiteral<"tool-not-invoked">;
|
|
17989
|
+
tool: ZodString;
|
|
17990
|
+
}, "strip", ZodTypeAny$1, {
|
|
17991
|
+
kind: "tool-not-invoked";
|
|
17992
|
+
tool: string;
|
|
17993
|
+
}, {
|
|
17994
|
+
kind: "tool-not-invoked";
|
|
17995
|
+
tool: string;
|
|
17996
|
+
}>, ZodObject<{
|
|
17997
|
+
kind: ZodLiteral<"datum-absent">;
|
|
17998
|
+
datum: ZodString;
|
|
17999
|
+
reference: ZodOptional$1<ZodString>;
|
|
18000
|
+
|
|
18001
|
+
direction: ZodOptional$1<ZodEnum$1<["commission", "omission"]>>;
|
|
18002
|
+
}, "strip", ZodTypeAny$1, {
|
|
18003
|
+
kind: "datum-absent";
|
|
18004
|
+
datum: string;
|
|
18005
|
+
reference?: string | undefined;
|
|
18006
|
+
direction?: "commission" | "omission" | undefined;
|
|
18007
|
+
}, {
|
|
18008
|
+
kind: "datum-absent";
|
|
18009
|
+
datum: string;
|
|
18010
|
+
reference?: string | undefined;
|
|
18011
|
+
direction?: "commission" | "omission" | undefined;
|
|
18012
|
+
}>]>, "many">;
|
|
18013
|
+
}, "strip", ZodTypeAny$1, {
|
|
18014
|
+
status: "emitted";
|
|
18015
|
+
assertions: ({
|
|
18016
|
+
kind: "tool-not-invoked";
|
|
18017
|
+
tool: string;
|
|
18018
|
+
} | {
|
|
18019
|
+
kind: "datum-absent";
|
|
18020
|
+
datum: string;
|
|
18021
|
+
reference?: string | undefined;
|
|
18022
|
+
direction?: "commission" | "omission" | undefined;
|
|
18023
|
+
})[];
|
|
18024
|
+
}, {
|
|
18025
|
+
status: "emitted";
|
|
18026
|
+
assertions: ({
|
|
18027
|
+
kind: "tool-not-invoked";
|
|
18028
|
+
tool: string;
|
|
18029
|
+
} | {
|
|
18030
|
+
kind: "datum-absent";
|
|
18031
|
+
datum: string;
|
|
18032
|
+
reference?: string | undefined;
|
|
18033
|
+
direction?: "commission" | "omission" | undefined;
|
|
18034
|
+
})[];
|
|
18035
|
+
}>, ZodObject<{
|
|
18036
|
+
|
|
18037
|
+
status: ZodLiteral<"malformed">;
|
|
18038
|
+
|
|
18039
|
+
reflectionAttempted: ZodBoolean;
|
|
18040
|
+
|
|
18041
|
+
raw: ZodOptional$1<ZodString>;
|
|
18042
|
+
}, "strip", ZodTypeAny$1, {
|
|
18043
|
+
status: "malformed";
|
|
18044
|
+
reflectionAttempted: boolean;
|
|
18045
|
+
raw?: string | undefined;
|
|
18046
|
+
}, {
|
|
18047
|
+
status: "malformed";
|
|
18048
|
+
reflectionAttempted: boolean;
|
|
18049
|
+
raw?: string | undefined;
|
|
18050
|
+
}>]>;
|
|
18051
|
+
type JudgeClaimReport = TypeOf$1<typeof JudgeClaimReportSchema>;
|
|
18052
|
+
|
|
18053
|
+
declare const JudgeClaimContractSchema: ZodObject<{
|
|
18054
|
+
|
|
18055
|
+
assertionKinds: ZodArray$1<ZodEnum$1<["tool-not-invoked", "datum-absent"]>, "many">;
|
|
18056
|
+
}, "strict", ZodTypeAny$1, {
|
|
18057
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
18058
|
+
}, {
|
|
18059
|
+
assertionKinds: ("tool-not-invoked" | "datum-absent")[];
|
|
18060
|
+
}>;
|
|
18061
|
+
type JudgeClaimContract = TypeOf$1<typeof JudgeClaimContractSchema>;
|
|
18062
|
+
|
|
16407
18063
|
interface InjectionRequest {
|
|
16408
18064
|
|
|
16409
18065
|
surfaceId?: string;
|
|
@@ -17429,6 +19085,8 @@ interface SurfaceOutcomeReport {
|
|
|
17429
19085
|
rationale?: string;
|
|
17430
19086
|
|
|
17431
19087
|
judge?: DimensionJudgeIdentity;
|
|
19088
|
+
|
|
19089
|
+
claim?: JudgeClaimReport;
|
|
17432
19090
|
}[];
|
|
17433
19091
|
|
|
17434
19092
|
cohortTags?: readonly string[];
|
|
@@ -17760,4 +19418,4 @@ interface HolonographClient {
|
|
|
17760
19418
|
declare const HolonographClient: new (options: HolonographClientOptions) => HolonographClient;
|
|
17761
19419
|
|
|
17762
19420
|
export { HolonographClient, HolonographGradeAfterReportError, HolonographHttpError, HolonographMarkerPairingWarningError, HolonographNoObserversError, HolonographObserverNotFoundError, HttpTransport, createPoller, diffByKey, hasChanges, watchByKey, watchEmission, watchReconciliation };
|
|
17763
|
-
export type { AvailabilityMarkOptions, CompletenessWindow, ContractRegisterResponse, ContractSurfaceSummary, EmissionReader, EmitChannel, EmitChannelCompleteness, EmitMode, EmitOptions, ExtremeSustainedLoadEvent, HolonographCallHandle, HolonographClientOptions, HolonographMessageRequest as HolonographMessageRequest, HolonographMessageResponse as HolonographMessageResponse, HttpTransportOptions, KeyedDiff, MediatorCallRequest, OtlpEmitConfig, PollerHandle, PollerOptions, ReconciliationReader, SurfaceOutcomeReport, WatchByKeyOptions, WatchEmissionOptions, WatchReconciliationOptions };
|
|
19421
|
+
export type { AvailabilityMarkOptions, CompletenessWindow, ContractRegisterResponse, ContractSurfaceSummary, EmissionReader, EmitChannel, EmitChannelCompleteness, EmitMode, EmitOptions, ExtremeSustainedLoadEvent, HolonographCallHandle, HolonographClientOptions, HolonographMessageRequest as HolonographMessageRequest, HolonographMessageResponse as HolonographMessageResponse, HttpTransportOptions, JudgeAssertion, JudgeAssertionKind, JudgeClaimContract, JudgeClaimReport, KeyedDiff, MediatorCallRequest, OtlpEmitConfig, PollerHandle, PollerOptions, ReconciliationReader, SurfaceOutcomeReport, WatchByKeyOptions, WatchEmissionOptions, WatchReconciliationOptions };
|