@ls-stack/agent-eval 0.42.2 → 0.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1486,7 +1486,7 @@ declare function evalAssert(condition: unknown, message: string): asserts condit
1486
1486
  /** Info accepted by `evalTracer.cache(info, fn)` for spanless value caching. */
1487
1487
  type TraceCacheInfo = {
1488
1488
  /** Display name used for cache listings and the default namespace. */name: string; /** Arbitrary JSON-safe value used to derive the cache key. */
1489
- key: unknown; /** Override the default namespace (`${evalId}__${name}`). */
1489
+ key: unknown; /** Override the default namespace (`${evalId}.${name}`). */
1490
1490
  namespace?: string;
1491
1491
  /**
1492
1492
  * Include native `Blob`/`File` bytes in the cache key. By default only stable
@@ -1831,9 +1831,9 @@ declare const traceAttributeDisplaySchema: z$1.ZodObject<{
1831
1831
  subtree: "subtree";
1832
1832
  }>>;
1833
1833
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1834
- sum: "sum";
1835
- last: "last";
1836
1834
  all: "all";
1835
+ last: "last";
1836
+ sum: "sum";
1837
1837
  }>>;
1838
1838
  }, z$1.core.$strip>;
1839
1839
  /**
@@ -1867,9 +1867,9 @@ declare const traceDisplayConfigSchema: z$1.ZodObject<{
1867
1867
  subtree: "subtree";
1868
1868
  }>>;
1869
1869
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1870
- sum: "sum";
1871
- last: "last";
1872
1870
  all: "all";
1871
+ last: "last";
1872
+ sum: "sum";
1873
1873
  }>>;
1874
1874
  }, z$1.core.$strip>>>;
1875
1875
  }, z$1.core.$strip>;
@@ -1907,9 +1907,9 @@ declare const traceAttributeDisplayInputSchema: z$1.ZodObject<{
1907
1907
  subtree: "subtree";
1908
1908
  }>>;
1909
1909
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1910
- sum: "sum";
1911
- last: "last";
1912
1910
  all: "all";
1911
+ last: "last";
1912
+ sum: "sum";
1913
1913
  }>>;
1914
1914
  transform: z$1.ZodOptional<z$1.ZodCustom<TraceAttributeTransform, TraceAttributeTransform>>;
1915
1915
  }, z$1.core.$strip>;
@@ -1945,9 +1945,9 @@ declare const traceDisplayInputConfigSchema: z$1.ZodObject<{
1945
1945
  subtree: "subtree";
1946
1946
  }>>;
1947
1947
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1948
- sum: "sum";
1949
- last: "last";
1950
1948
  all: "all";
1949
+ last: "last";
1950
+ sum: "sum";
1951
1951
  }>>;
1952
1952
  transform: z$1.ZodOptional<z$1.ZodCustom<TraceAttributeTransform, TraceAttributeTransform>>;
1953
1953
  }, z$1.core.$strip>>>;
@@ -1984,8 +1984,8 @@ declare const traceSpanSchema$1: z$1.ZodObject<{
1984
1984
  status: z$1.ZodEnum<{
1985
1985
  error: "error";
1986
1986
  running: "running";
1987
- cancelled: "cancelled";
1988
1987
  ok: "ok";
1988
+ cancelled: "cancelled";
1989
1989
  }>;
1990
1990
  attributes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
1991
1991
  error: z$1.ZodOptional<z$1.ZodObject<{
@@ -2026,11 +2026,11 @@ declare const evalFreshnessStatusSchema: z$1.ZodEnum<{
2026
2026
  type EvalFreshnessStatus = z$1.infer<typeof evalFreshnessStatusSchema>;
2027
2027
  /** Reducer used to collapse a column's per-case values into a single stat. */
2028
2028
  declare const evalStatAggregateSchema: z$1.ZodEnum<{
2029
+ last: "last";
2030
+ sum: "sum";
2029
2031
  avg: "avg";
2030
2032
  min: "min";
2031
2033
  max: "max";
2032
- sum: "sum";
2033
- last: "last";
2034
2034
  }>;
2035
2035
  /** Reducer used to collapse a column's per-case values into a single stat. */
2036
2036
  type EvalStatAggregate = z$1.infer<typeof evalStatAggregateSchema>;
@@ -2054,11 +2054,11 @@ declare const evalStatItemSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2054
2054
  key: z$1.ZodString;
2055
2055
  label: z$1.ZodOptional<z$1.ZodString>;
2056
2056
  aggregate: z$1.ZodEnum<{
2057
+ last: "last";
2058
+ sum: "sum";
2057
2059
  avg: "avg";
2058
2060
  min: "min";
2059
2061
  max: "max";
2060
- sum: "sum";
2061
- last: "last";
2062
2062
  }>;
2063
2063
  format: z$1.ZodOptional<z$1.ZodEnum<{
2064
2064
  number: "number";
@@ -2096,11 +2096,11 @@ declare const evalStatsConfigSchema: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1
2096
2096
  key: z$1.ZodString;
2097
2097
  label: z$1.ZodOptional<z$1.ZodString>;
2098
2098
  aggregate: z$1.ZodEnum<{
2099
+ last: "last";
2100
+ sum: "sum";
2099
2101
  avg: "avg";
2100
2102
  min: "min";
2101
2103
  max: "max";
2102
- sum: "sum";
2103
- last: "last";
2104
2104
  }>;
2105
2105
  format: z$1.ZodOptional<z$1.ZodEnum<{
2106
2106
  number: "number";
@@ -2177,10 +2177,10 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2177
2177
  caseIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2178
2178
  lastRunStatus: z$1.ZodNullable<z$1.ZodEnum<{
2179
2179
  error: "error";
2180
- pass: "pass";
2181
- fail: "fail";
2182
2180
  running: "running";
2183
2181
  cancelled: "cancelled";
2182
+ pass: "pass";
2183
+ fail: "fail";
2184
2184
  unscored: "unscored";
2185
2185
  }>>;
2186
2186
  stats: z$1.ZodOptional<z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
@@ -2199,11 +2199,11 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2199
2199
  key: z$1.ZodString;
2200
2200
  label: z$1.ZodOptional<z$1.ZodString>;
2201
2201
  aggregate: z$1.ZodEnum<{
2202
+ last: "last";
2203
+ sum: "sum";
2202
2204
  avg: "avg";
2203
2205
  min: "min";
2204
2206
  max: "max";
2205
- sum: "sum";
2206
- last: "last";
2207
2207
  }>;
2208
2208
  format: z$1.ZodOptional<z$1.ZodEnum<{
2209
2209
  number: "number";
@@ -2241,9 +2241,9 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2241
2241
  color: z$1.ZodOptional<z$1.ZodEnum<{
2242
2242
  success: "success";
2243
2243
  error: "error";
2244
+ warning: "warning";
2244
2245
  accent: "accent";
2245
2246
  accentDim: "accentDim";
2246
- warning: "warning";
2247
2247
  textMuted: "textMuted";
2248
2248
  }>>;
2249
2249
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2254,10 +2254,10 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2254
2254
  source: z$1.ZodLiteral<"column">;
2255
2255
  key: z$1.ZodString;
2256
2256
  aggregate: z$1.ZodEnum<{
2257
+ sum: "sum";
2257
2258
  avg: "avg";
2258
2259
  min: "min";
2259
2260
  max: "max";
2260
- sum: "sum";
2261
2261
  latest: "latest";
2262
2262
  passThresholdRate: "passThresholdRate";
2263
2263
  }>;
@@ -2265,9 +2265,9 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2265
2265
  color: z$1.ZodOptional<z$1.ZodEnum<{
2266
2266
  success: "success";
2267
2267
  error: "error";
2268
+ warning: "warning";
2268
2269
  accent: "accent";
2269
2270
  accentDim: "accentDim";
2270
- warning: "warning";
2271
2271
  textMuted: "textMuted";
2272
2272
  }>>;
2273
2273
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2296,10 +2296,10 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2296
2296
  source: z$1.ZodLiteral<"column">;
2297
2297
  key: z$1.ZodString;
2298
2298
  aggregate: z$1.ZodEnum<{
2299
+ sum: "sum";
2299
2300
  avg: "avg";
2300
2301
  min: "min";
2301
2302
  max: "max";
2302
- sum: "sum";
2303
2303
  latest: "latest";
2304
2304
  passThresholdRate: "passThresholdRate";
2305
2305
  }>;
@@ -2396,11 +2396,11 @@ declare const caseRowSchema$1: z$1.ZodObject<{
2396
2396
  tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2397
2397
  status: z$1.ZodEnum<{
2398
2398
  error: "error";
2399
- pass: "pass";
2400
- fail: "fail";
2401
2399
  running: "running";
2402
2400
  cancelled: "cancelled";
2403
2401
  pending: "pending";
2402
+ pass: "pass";
2403
+ fail: "fail";
2404
2404
  }>;
2405
2405
  durationMs: z$1.ZodNullable<z$1.ZodNumber>;
2406
2406
  costUsd: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
@@ -2492,8 +2492,8 @@ declare const scoreTraceSchema: z$1.ZodObject<{
2492
2492
  status: z$1.ZodEnum<{
2493
2493
  error: "error";
2494
2494
  running: "running";
2495
- cancelled: "cancelled";
2496
2495
  ok: "ok";
2496
+ cancelled: "cancelled";
2497
2497
  }>;
2498
2498
  attributes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
2499
2499
  error: z$1.ZodOptional<z$1.ZodObject<{
@@ -2543,9 +2543,9 @@ declare const scoreTraceSchema: z$1.ZodObject<{
2543
2543
  subtree: "subtree";
2544
2544
  }>>;
2545
2545
  mode: z$1.ZodOptional<z$1.ZodEnum<{
2546
- sum: "sum";
2547
- last: "last";
2548
2546
  all: "all";
2547
+ last: "last";
2548
+ sum: "sum";
2549
2549
  }>>;
2550
2550
  }, z$1.core.$strip>>>;
2551
2551
  }, z$1.core.$strip>;
@@ -2561,11 +2561,11 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2561
2561
  tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2562
2562
  status: z$1.ZodEnum<{
2563
2563
  error: "error";
2564
- pass: "pass";
2565
- fail: "fail";
2566
2564
  running: "running";
2567
2565
  cancelled: "cancelled";
2568
2566
  pending: "pending";
2567
+ pass: "pass";
2568
+ fail: "fail";
2569
2569
  }>;
2570
2570
  input: z$1.ZodUnknown;
2571
2571
  trace: z$1.ZodArray<z$1.ZodObject<{
@@ -2579,8 +2579,8 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2579
2579
  status: z$1.ZodEnum<{
2580
2580
  error: "error";
2581
2581
  running: "running";
2582
- cancelled: "cancelled";
2583
2582
  ok: "ok";
2583
+ cancelled: "cancelled";
2584
2584
  }>;
2585
2585
  attributes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
2586
2586
  error: z$1.ZodOptional<z$1.ZodObject<{
@@ -2630,9 +2630,9 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2630
2630
  subtree: "subtree";
2631
2631
  }>>;
2632
2632
  mode: z$1.ZodOptional<z$1.ZodEnum<{
2633
- sum: "sum";
2634
- last: "last";
2635
2633
  all: "all";
2634
+ last: "last";
2635
+ sum: "sum";
2636
2636
  }>>;
2637
2637
  }, z$1.core.$strip>>>;
2638
2638
  }, z$1.core.$strip>;
@@ -2648,8 +2648,8 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2648
2648
  status: z$1.ZodEnum<{
2649
2649
  error: "error";
2650
2650
  running: "running";
2651
- cancelled: "cancelled";
2652
2651
  ok: "ok";
2652
+ cancelled: "cancelled";
2653
2653
  }>;
2654
2654
  attributes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
2655
2655
  error: z$1.ZodOptional<z$1.ZodObject<{
@@ -2699,9 +2699,9 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2699
2699
  subtree: "subtree";
2700
2700
  }>>;
2701
2701
  mode: z$1.ZodOptional<z$1.ZodEnum<{
2702
- sum: "sum";
2703
- last: "last";
2704
2702
  all: "all";
2703
+ last: "last";
2704
+ sum: "sum";
2705
2705
  }>>;
2706
2706
  }, z$1.core.$strip>>>;
2707
2707
  }, z$1.core.$strip>;
@@ -2761,10 +2761,10 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2761
2761
  namespace: z$1.ZodString;
2762
2762
  key: z$1.ZodString;
2763
2763
  status: z$1.ZodEnum<{
2764
+ bypass: "bypass";
2765
+ refresh: "refresh";
2764
2766
  hit: "hit";
2765
2767
  miss: "miss";
2766
- refresh: "refresh";
2767
- bypass: "bypass";
2768
2768
  }>;
2769
2769
  read: z$1.ZodOptional<z$1.ZodBoolean>;
2770
2770
  stored: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -2817,10 +2817,10 @@ declare const evalChartBuiltinMetricSchema: z$1.ZodEnum<{
2817
2817
  type EvalChartBuiltinMetric = z$1.infer<typeof evalChartBuiltinMetricSchema>;
2818
2818
  /** Reducer applied to a numeric column across all cases of a single run. */
2819
2819
  declare const evalChartAggregateSchema: z$1.ZodEnum<{
2820
+ sum: "sum";
2820
2821
  avg: "avg";
2821
2822
  min: "min";
2822
2823
  max: "max";
2823
- sum: "sum";
2824
2824
  latest: "latest";
2825
2825
  passThresholdRate: "passThresholdRate";
2826
2826
  }>;
@@ -2833,9 +2833,9 @@ type EvalChartAggregate = z$1.infer<typeof evalChartAggregateSchema>;
2833
2833
  declare const evalChartColorSchema: z$1.ZodEnum<{
2834
2834
  success: "success";
2835
2835
  error: "error";
2836
+ warning: "warning";
2836
2837
  accent: "accent";
2837
2838
  accentDim: "accentDim";
2838
- warning: "warning";
2839
2839
  textMuted: "textMuted";
2840
2840
  }>;
2841
2841
  /** Semantic color token resolved to a theme color by the web UI. */
@@ -2862,9 +2862,9 @@ declare const evalChartMetricSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2862
2862
  color: z$1.ZodOptional<z$1.ZodEnum<{
2863
2863
  success: "success";
2864
2864
  error: "error";
2865
+ warning: "warning";
2865
2866
  accent: "accent";
2866
2867
  accentDim: "accentDim";
2867
- warning: "warning";
2868
2868
  textMuted: "textMuted";
2869
2869
  }>>;
2870
2870
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2875,10 +2875,10 @@ declare const evalChartMetricSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2875
2875
  source: z$1.ZodLiteral<"column">;
2876
2876
  key: z$1.ZodString;
2877
2877
  aggregate: z$1.ZodEnum<{
2878
+ sum: "sum";
2878
2879
  avg: "avg";
2879
2880
  min: "min";
2880
2881
  max: "max";
2881
- sum: "sum";
2882
2882
  latest: "latest";
2883
2883
  passThresholdRate: "passThresholdRate";
2884
2884
  }>;
@@ -2886,9 +2886,9 @@ declare const evalChartMetricSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2886
2886
  color: z$1.ZodOptional<z$1.ZodEnum<{
2887
2887
  success: "success";
2888
2888
  error: "error";
2889
+ warning: "warning";
2889
2890
  accent: "accent";
2890
2891
  accentDim: "accentDim";
2891
- warning: "warning";
2892
2892
  textMuted: "textMuted";
2893
2893
  }>>;
2894
2894
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2910,10 +2910,10 @@ declare const evalChartTooltipExtraSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObj
2910
2910
  source: z$1.ZodLiteral<"column">;
2911
2911
  key: z$1.ZodString;
2912
2912
  aggregate: z$1.ZodEnum<{
2913
+ sum: "sum";
2913
2914
  avg: "avg";
2914
2915
  min: "min";
2915
2916
  max: "max";
2916
- sum: "sum";
2917
2917
  latest: "latest";
2918
2918
  passThresholdRate: "passThresholdRate";
2919
2919
  }>;
@@ -2945,9 +2945,9 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
2945
2945
  color: z$1.ZodOptional<z$1.ZodEnum<{
2946
2946
  success: "success";
2947
2947
  error: "error";
2948
+ warning: "warning";
2948
2949
  accent: "accent";
2949
2950
  accentDim: "accentDim";
2950
- warning: "warning";
2951
2951
  textMuted: "textMuted";
2952
2952
  }>>;
2953
2953
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2958,10 +2958,10 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
2958
2958
  source: z$1.ZodLiteral<"column">;
2959
2959
  key: z$1.ZodString;
2960
2960
  aggregate: z$1.ZodEnum<{
2961
+ sum: "sum";
2961
2962
  avg: "avg";
2962
2963
  min: "min";
2963
2964
  max: "max";
2964
- sum: "sum";
2965
2965
  latest: "latest";
2966
2966
  passThresholdRate: "passThresholdRate";
2967
2967
  }>;
@@ -2969,9 +2969,9 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
2969
2969
  color: z$1.ZodOptional<z$1.ZodEnum<{
2970
2970
  success: "success";
2971
2971
  error: "error";
2972
+ warning: "warning";
2972
2973
  accent: "accent";
2973
2974
  accentDim: "accentDim";
2974
- warning: "warning";
2975
2975
  textMuted: "textMuted";
2976
2976
  }>>;
2977
2977
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -3000,10 +3000,10 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
3000
3000
  source: z$1.ZodLiteral<"column">;
3001
3001
  key: z$1.ZodString;
3002
3002
  aggregate: z$1.ZodEnum<{
3003
+ sum: "sum";
3003
3004
  avg: "avg";
3004
3005
  min: "min";
3005
3006
  max: "max";
3006
- sum: "sum";
3007
3007
  latest: "latest";
3008
3008
  passThresholdRate: "passThresholdRate";
3009
3009
  }>;
@@ -3035,9 +3035,9 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3035
3035
  color: z$1.ZodOptional<z$1.ZodEnum<{
3036
3036
  success: "success";
3037
3037
  error: "error";
3038
+ warning: "warning";
3038
3039
  accent: "accent";
3039
3040
  accentDim: "accentDim";
3040
- warning: "warning";
3041
3041
  textMuted: "textMuted";
3042
3042
  }>>;
3043
3043
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -3048,10 +3048,10 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3048
3048
  source: z$1.ZodLiteral<"column">;
3049
3049
  key: z$1.ZodString;
3050
3050
  aggregate: z$1.ZodEnum<{
3051
+ sum: "sum";
3051
3052
  avg: "avg";
3052
3053
  min: "min";
3053
3054
  max: "max";
3054
- sum: "sum";
3055
3055
  latest: "latest";
3056
3056
  passThresholdRate: "passThresholdRate";
3057
3057
  }>;
@@ -3059,9 +3059,9 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3059
3059
  color: z$1.ZodOptional<z$1.ZodEnum<{
3060
3060
  success: "success";
3061
3061
  error: "error";
3062
+ warning: "warning";
3062
3063
  accent: "accent";
3063
3064
  accentDim: "accentDim";
3064
- warning: "warning";
3065
3065
  textMuted: "textMuted";
3066
3066
  }>>;
3067
3067
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -3090,10 +3090,10 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3090
3090
  source: z$1.ZodLiteral<"column">;
3091
3091
  key: z$1.ZodString;
3092
3092
  aggregate: z$1.ZodEnum<{
3093
+ sum: "sum";
3093
3094
  avg: "avg";
3094
3095
  min: "min";
3095
3096
  max: "max";
3096
- sum: "sum";
3097
3097
  latest: "latest";
3098
3098
  passThresholdRate: "passThresholdRate";
3099
3099
  }>;
@@ -3121,9 +3121,9 @@ declare const runManifestSchema$1: z$1.ZodObject<{
3121
3121
  evalSourceFingerprints: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
3122
3122
  target: z$1.ZodObject<{
3123
3123
  mode: z$1.ZodEnum<{
3124
- caseIds: "caseIds";
3125
3124
  all: "all";
3126
3125
  evalIds: "evalIds";
3126
+ caseIds: "caseIds";
3127
3127
  }>;
3128
3128
  evalKeys: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
3129
3129
  files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -3137,9 +3137,9 @@ declare const runManifestSchema$1: z$1.ZodObject<{
3137
3137
  median: "median";
3138
3138
  }>>>;
3139
3139
  cacheMode: z$1.ZodOptional<z$1.ZodEnum<{
3140
- refresh: "refresh";
3141
- bypass: "bypass";
3142
3140
  use: "use";
3141
+ bypass: "bypass";
3142
+ refresh: "refresh";
3143
3143
  }>>;
3144
3144
  }, z$1.core.$strip>;
3145
3145
  /** Persisted lifecycle metadata for a single eval run. */
@@ -4026,9 +4026,9 @@ declare function extractApiCalls(spans: EvalTraceSpan$1[], config: ResolvedApiCa
4026
4026
  * - `refresh`: never read, always write (forces re-execution and overwrites).
4027
4027
  */
4028
4028
  declare const cacheModeSchema: z$1.ZodEnum<{
4029
- refresh: "refresh";
4030
- bypass: "bypass";
4031
4029
  use: "use";
4030
+ bypass: "bypass";
4031
+ refresh: "refresh";
4032
4032
  }>;
4033
4033
  /** Mode controlling how cached spans behave during a run. */
4034
4034
  type CacheMode = z$1.infer<typeof cacheModeSchema>;
@@ -4049,10 +4049,10 @@ declare const cacheOperationTypeSchema: z$1.ZodEnum<{
4049
4049
  type CacheOperationType = z$1.infer<typeof cacheOperationTypeSchema>;
4050
4050
  /** Status of a cache lookup recorded on a span or case scope. */
4051
4051
  declare const cacheStatusSchema: z$1.ZodEnum<{
4052
+ bypass: "bypass";
4053
+ refresh: "refresh";
4052
4054
  hit: "hit";
4053
4055
  miss: "miss";
4054
- refresh: "refresh";
4055
- bypass: "bypass";
4056
4056
  }>;
4057
4057
  /** Status of a cache lookup recorded on a span or case scope. */
4058
4058
  type CacheStatus = z$1.infer<typeof cacheStatusSchema>;
@@ -4069,10 +4069,10 @@ declare const traceCacheRefSchema: z$1.ZodObject<{
4069
4069
  namespace: z$1.ZodString;
4070
4070
  key: z$1.ZodString;
4071
4071
  status: z$1.ZodEnum<{
4072
+ bypass: "bypass";
4073
+ refresh: "refresh";
4072
4074
  hit: "hit";
4073
4075
  miss: "miss";
4074
- refresh: "refresh";
4075
- bypass: "bypass";
4076
4076
  }>;
4077
4077
  read: z$1.ZodOptional<z$1.ZodBoolean>;
4078
4078
  stored: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -4149,8 +4149,8 @@ declare const cacheRecordingSchema: z$1.ZodObject<{
4149
4149
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4150
4150
  error: "error";
4151
4151
  running: "running";
4152
- cancelled: "cancelled";
4153
4152
  ok: "ok";
4153
+ cancelled: "cancelled";
4154
4154
  }>>;
4155
4155
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4156
4156
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4222,8 +4222,8 @@ declare const cacheEntrySchema: z$1.ZodObject<{
4222
4222
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4223
4223
  error: "error";
4224
4224
  running: "running";
4225
- cancelled: "cancelled";
4226
4225
  ok: "ok";
4226
+ cancelled: "cancelled";
4227
4227
  }>>;
4228
4228
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4229
4229
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4277,7 +4277,12 @@ declare const cacheEntrySchema: z$1.ZodObject<{
4277
4277
  }, z$1.core.$strip>;
4278
4278
  /** Persisted cache file contents. */
4279
4279
  type CacheEntry = z$1.infer<typeof cacheEntrySchema>;
4280
- /** Debug-only raw key metadata stored outside the reusable cache entry. */
4280
+ /**
4281
+ * Debug-only raw key metadata stored outside the reusable cache entry.
4282
+ *
4283
+ * Debug entries mirror the serialized cache entry so inspecting one debug file
4284
+ * shows both the authored raw key and the persisted payload for that key.
4285
+ */
4281
4286
  declare const cacheDebugKeyEntrySchema: z$1.ZodObject<{
4282
4287
  version: z$1.ZodLiteral<1>;
4283
4288
  key: z$1.ZodString;
@@ -4289,8 +4294,83 @@ declare const cacheDebugKeyEntrySchema: z$1.ZodObject<{
4289
4294
  operationName: z$1.ZodString;
4290
4295
  storedAt: z$1.ZodString;
4291
4296
  rawKey: z$1.ZodUnknown;
4297
+ entry: z$1.ZodObject<{
4298
+ version: z$1.ZodLiteral<1>;
4299
+ key: z$1.ZodString;
4300
+ namespace: z$1.ZodString;
4301
+ operationType: z$1.ZodOptional<z$1.ZodEnum<{
4302
+ value: "value";
4303
+ span: "span";
4304
+ }>>;
4305
+ operationName: z$1.ZodOptional<z$1.ZodString>;
4306
+ spanName: z$1.ZodOptional<z$1.ZodString>;
4307
+ spanKind: z$1.ZodOptional<z$1.ZodString>;
4308
+ storedAt: z$1.ZodString;
4309
+ recording: z$1.ZodObject<{
4310
+ returnValue: z$1.ZodUnknown;
4311
+ finalAttributes: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>;
4312
+ finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4313
+ error: "error";
4314
+ running: "running";
4315
+ ok: "ok";
4316
+ cancelled: "cancelled";
4317
+ }>>;
4318
+ finalError: z$1.ZodOptional<z$1.ZodObject<{
4319
+ name: z$1.ZodOptional<z$1.ZodString>;
4320
+ message: z$1.ZodString;
4321
+ stack: z$1.ZodOptional<z$1.ZodString>;
4322
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4323
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>;
4324
+ finalErrors: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
4325
+ name: z$1.ZodOptional<z$1.ZodString>;
4326
+ message: z$1.ZodString;
4327
+ stack: z$1.ZodOptional<z$1.ZodString>;
4328
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4329
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>>;
4330
+ finalWarning: z$1.ZodOptional<z$1.ZodObject<{
4331
+ name: z$1.ZodOptional<z$1.ZodString>;
4332
+ message: z$1.ZodString;
4333
+ stack: z$1.ZodOptional<z$1.ZodString>;
4334
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4335
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>;
4336
+ finalWarnings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
4337
+ name: z$1.ZodOptional<z$1.ZodString>;
4338
+ message: z$1.ZodString;
4339
+ stack: z$1.ZodOptional<z$1.ZodString>;
4340
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4341
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>>;
4342
+ ops: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
4343
+ kind: z$1.ZodLiteral<"setOutput">;
4344
+ key: z$1.ZodString;
4345
+ value: z$1.ZodUnknown;
4346
+ }, z$1.core.$strip>, z$1.ZodObject<{
4347
+ kind: z$1.ZodLiteral<"appendOutput">;
4348
+ key: z$1.ZodString;
4349
+ value: z$1.ZodUnknown;
4350
+ }, z$1.core.$strip>, z$1.ZodObject<{
4351
+ kind: z$1.ZodLiteral<"mergeOutput">;
4352
+ key: z$1.ZodString;
4353
+ patch: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>;
4354
+ }, z$1.core.$strip>, z$1.ZodObject<{
4355
+ kind: z$1.ZodLiteral<"incrementOutput">;
4356
+ key: z$1.ZodString;
4357
+ delta: z$1.ZodNumber;
4358
+ }, z$1.core.$strip>, z$1.ZodObject<{
4359
+ kind: z$1.ZodLiteral<"checkpoint">;
4360
+ name: z$1.ZodString;
4361
+ data: z$1.ZodUnknown;
4362
+ }, z$1.core.$strip>, z$1.ZodObject<{
4363
+ kind: z$1.ZodLiteral<"subSpan">;
4364
+ span: z$1.ZodType<SerializedCacheSpan, unknown, z$1.core.$ZodTypeInternals<SerializedCacheSpan, unknown>>;
4365
+ }, z$1.core.$strip>], "kind">>;
4366
+ }, z$1.core.$strip>;
4367
+ }, z$1.core.$strip>;
4292
4368
  }, z$1.core.$strip>;
4293
- /** Debug-only raw cache key entry. May contain sensitive prompt/input data. */
4369
+ /**
4370
+ * Debug-only raw cache key entry.
4371
+ *
4372
+ * May contain sensitive prompt/input data and the full serialized cache entry.
4373
+ */
4294
4374
  type CacheDebugKeyEntry = z$1.infer<typeof cacheDebugKeyEntrySchema>;
4295
4375
  /** Cache lookup response with optional debug-only raw key data. */
4296
4376
  declare const cacheEntryWithDebugKeySchema$1: z$1.ZodObject<{
@@ -4311,8 +4391,8 @@ declare const cacheEntryWithDebugKeySchema$1: z$1.ZodObject<{
4311
4391
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4312
4392
  error: "error";
4313
4393
  running: "running";
4314
- cancelled: "cancelled";
4315
4394
  ok: "ok";
4395
+ cancelled: "cancelled";
4316
4396
  }>>;
4317
4397
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4318
4398
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4374,11 +4454,82 @@ declare const cacheEntryWithDebugKeySchema$1: z$1.ZodObject<{
4374
4454
  operationName: z$1.ZodString;
4375
4455
  storedAt: z$1.ZodString;
4376
4456
  rawKey: z$1.ZodUnknown;
4457
+ entry: z$1.ZodObject<{
4458
+ version: z$1.ZodLiteral<1>;
4459
+ key: z$1.ZodString;
4460
+ namespace: z$1.ZodString;
4461
+ operationType: z$1.ZodOptional<z$1.ZodEnum<{
4462
+ value: "value";
4463
+ span: "span";
4464
+ }>>;
4465
+ operationName: z$1.ZodOptional<z$1.ZodString>;
4466
+ spanName: z$1.ZodOptional<z$1.ZodString>;
4467
+ spanKind: z$1.ZodOptional<z$1.ZodString>;
4468
+ storedAt: z$1.ZodString;
4469
+ recording: z$1.ZodObject<{
4470
+ returnValue: z$1.ZodUnknown;
4471
+ finalAttributes: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>;
4472
+ finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4473
+ error: "error";
4474
+ running: "running";
4475
+ ok: "ok";
4476
+ cancelled: "cancelled";
4477
+ }>>;
4478
+ finalError: z$1.ZodOptional<z$1.ZodObject<{
4479
+ name: z$1.ZodOptional<z$1.ZodString>;
4480
+ message: z$1.ZodString;
4481
+ stack: z$1.ZodOptional<z$1.ZodString>;
4482
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4483
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>;
4484
+ finalErrors: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
4485
+ name: z$1.ZodOptional<z$1.ZodString>;
4486
+ message: z$1.ZodString;
4487
+ stack: z$1.ZodOptional<z$1.ZodString>;
4488
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4489
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>>;
4490
+ finalWarning: z$1.ZodOptional<z$1.ZodObject<{
4491
+ name: z$1.ZodOptional<z$1.ZodString>;
4492
+ message: z$1.ZodString;
4493
+ stack: z$1.ZodOptional<z$1.ZodString>;
4494
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4495
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>;
4496
+ finalWarnings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
4497
+ name: z$1.ZodOptional<z$1.ZodString>;
4498
+ message: z$1.ZodString;
4499
+ stack: z$1.ZodOptional<z$1.ZodString>;
4500
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4501
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>>;
4502
+ ops: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
4503
+ kind: z$1.ZodLiteral<"setOutput">;
4504
+ key: z$1.ZodString;
4505
+ value: z$1.ZodUnknown;
4506
+ }, z$1.core.$strip>, z$1.ZodObject<{
4507
+ kind: z$1.ZodLiteral<"appendOutput">;
4508
+ key: z$1.ZodString;
4509
+ value: z$1.ZodUnknown;
4510
+ }, z$1.core.$strip>, z$1.ZodObject<{
4511
+ kind: z$1.ZodLiteral<"mergeOutput">;
4512
+ key: z$1.ZodString;
4513
+ patch: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>;
4514
+ }, z$1.core.$strip>, z$1.ZodObject<{
4515
+ kind: z$1.ZodLiteral<"incrementOutput">;
4516
+ key: z$1.ZodString;
4517
+ delta: z$1.ZodNumber;
4518
+ }, z$1.core.$strip>, z$1.ZodObject<{
4519
+ kind: z$1.ZodLiteral<"checkpoint">;
4520
+ name: z$1.ZodString;
4521
+ data: z$1.ZodUnknown;
4522
+ }, z$1.core.$strip>, z$1.ZodObject<{
4523
+ kind: z$1.ZodLiteral<"subSpan">;
4524
+ span: z$1.ZodType<SerializedCacheSpan, unknown, z$1.core.$ZodTypeInternals<SerializedCacheSpan, unknown>>;
4525
+ }, z$1.core.$strip>], "kind">>;
4526
+ }, z$1.core.$strip>;
4527
+ }, z$1.core.$strip>;
4377
4528
  }, z$1.core.$strip>>;
4378
4529
  }, z$1.core.$strip>;
4379
4530
  /** Cache lookup response returned by cache APIs when raw-key debug data exists. */
4380
4531
  type CacheEntryWithDebugKey = z$1.infer<typeof cacheEntryWithDebugKeySchema$1>;
4381
- /** Persisted per-owner cache file containing multiple cache entries. */
4532
+ /** Legacy aggregate cache file shape retained for API compatibility. */
4382
4533
  declare const cacheFileSchema: z$1.ZodObject<{
4383
4534
  version: z$1.ZodLiteral<1>;
4384
4535
  owner: z$1.ZodString;
@@ -4400,8 +4551,8 @@ declare const cacheFileSchema: z$1.ZodObject<{
4400
4551
  finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4401
4552
  error: "error";
4402
4553
  running: "running";
4403
- cancelled: "cancelled";
4404
4554
  ok: "ok";
4555
+ cancelled: "cancelled";
4405
4556
  }>>;
4406
4557
  finalError: z$1.ZodOptional<z$1.ZodObject<{
4407
4558
  name: z$1.ZodOptional<z$1.ZodString>;
@@ -4454,9 +4605,9 @@ declare const cacheFileSchema: z$1.ZodObject<{
4454
4605
  }, z$1.core.$strip>;
4455
4606
  }, z$1.core.$strip>>;
4456
4607
  }, z$1.core.$strip>;
4457
- /** Persisted per-owner cache file contents. */
4608
+ /** Legacy aggregate cache file contents retained for API compatibility. */
4458
4609
  type CacheFile = z$1.infer<typeof cacheFileSchema>;
4459
- /** Persisted per-owner debug file containing raw cache key metadata. */
4610
+ /** Legacy aggregate debug file shape retained for API compatibility. */
4460
4611
  declare const cacheDebugKeyFileSchema: z$1.ZodObject<{
4461
4612
  version: z$1.ZodLiteral<1>;
4462
4613
  owner: z$1.ZodString;
@@ -4471,9 +4622,80 @@ declare const cacheDebugKeyFileSchema: z$1.ZodObject<{
4471
4622
  operationName: z$1.ZodString;
4472
4623
  storedAt: z$1.ZodString;
4473
4624
  rawKey: z$1.ZodUnknown;
4625
+ entry: z$1.ZodObject<{
4626
+ version: z$1.ZodLiteral<1>;
4627
+ key: z$1.ZodString;
4628
+ namespace: z$1.ZodString;
4629
+ operationType: z$1.ZodOptional<z$1.ZodEnum<{
4630
+ value: "value";
4631
+ span: "span";
4632
+ }>>;
4633
+ operationName: z$1.ZodOptional<z$1.ZodString>;
4634
+ spanName: z$1.ZodOptional<z$1.ZodString>;
4635
+ spanKind: z$1.ZodOptional<z$1.ZodString>;
4636
+ storedAt: z$1.ZodString;
4637
+ recording: z$1.ZodObject<{
4638
+ returnValue: z$1.ZodUnknown;
4639
+ finalAttributes: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>;
4640
+ finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
4641
+ error: "error";
4642
+ running: "running";
4643
+ ok: "ok";
4644
+ cancelled: "cancelled";
4645
+ }>>;
4646
+ finalError: z$1.ZodOptional<z$1.ZodObject<{
4647
+ name: z$1.ZodOptional<z$1.ZodString>;
4648
+ message: z$1.ZodString;
4649
+ stack: z$1.ZodOptional<z$1.ZodString>;
4650
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4651
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>;
4652
+ finalErrors: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
4653
+ name: z$1.ZodOptional<z$1.ZodString>;
4654
+ message: z$1.ZodString;
4655
+ stack: z$1.ZodOptional<z$1.ZodString>;
4656
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4657
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>>;
4658
+ finalWarning: z$1.ZodOptional<z$1.ZodObject<{
4659
+ name: z$1.ZodOptional<z$1.ZodString>;
4660
+ message: z$1.ZodString;
4661
+ stack: z$1.ZodOptional<z$1.ZodString>;
4662
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4663
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>;
4664
+ finalWarnings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
4665
+ name: z$1.ZodOptional<z$1.ZodString>;
4666
+ message: z$1.ZodString;
4667
+ stack: z$1.ZodOptional<z$1.ZodString>;
4668
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
4669
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>>;
4670
+ ops: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
4671
+ kind: z$1.ZodLiteral<"setOutput">;
4672
+ key: z$1.ZodString;
4673
+ value: z$1.ZodUnknown;
4674
+ }, z$1.core.$strip>, z$1.ZodObject<{
4675
+ kind: z$1.ZodLiteral<"appendOutput">;
4676
+ key: z$1.ZodString;
4677
+ value: z$1.ZodUnknown;
4678
+ }, z$1.core.$strip>, z$1.ZodObject<{
4679
+ kind: z$1.ZodLiteral<"mergeOutput">;
4680
+ key: z$1.ZodString;
4681
+ patch: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>;
4682
+ }, z$1.core.$strip>, z$1.ZodObject<{
4683
+ kind: z$1.ZodLiteral<"incrementOutput">;
4684
+ key: z$1.ZodString;
4685
+ delta: z$1.ZodNumber;
4686
+ }, z$1.core.$strip>, z$1.ZodObject<{
4687
+ kind: z$1.ZodLiteral<"checkpoint">;
4688
+ name: z$1.ZodString;
4689
+ data: z$1.ZodUnknown;
4690
+ }, z$1.core.$strip>, z$1.ZodObject<{
4691
+ kind: z$1.ZodLiteral<"subSpan">;
4692
+ span: z$1.ZodType<SerializedCacheSpan, unknown, z$1.core.$ZodTypeInternals<SerializedCacheSpan, unknown>>;
4693
+ }, z$1.core.$strip>], "kind">>;
4694
+ }, z$1.core.$strip>;
4695
+ }, z$1.core.$strip>;
4474
4696
  }, z$1.core.$strip>>;
4475
4697
  }, z$1.core.$strip>;
4476
- /** Persisted per-owner raw cache key debug file contents. */
4698
+ /** Legacy aggregate raw cache key debug file contents retained for compatibility. */
4477
4699
  type CacheDebugKeyFile = z$1.infer<typeof cacheDebugKeyFileSchema>; //#endregion
4478
4700
  //#region src/utils/extractCacheHits.d.ts
4479
4701
  /**
@@ -4575,9 +4797,9 @@ type ConfigReloadState = z$1.infer<typeof configReloadStateSchema$1>;
4575
4797
  declare const createRunRequestSchema$1: z$1.ZodObject<{
4576
4798
  target: z$1.ZodObject<{
4577
4799
  mode: z$1.ZodEnum<{
4578
- caseIds: "caseIds";
4579
4800
  all: "all";
4580
4801
  evalIds: "evalIds";
4802
+ caseIds: "caseIds";
4581
4803
  }>;
4582
4804
  evalKeys: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
4583
4805
  files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -4589,9 +4811,9 @@ declare const createRunRequestSchema$1: z$1.ZodObject<{
4589
4811
  temporary: z$1.ZodOptional<z$1.ZodBoolean>;
4590
4812
  cache: z$1.ZodOptional<z$1.ZodObject<{
4591
4813
  mode: z$1.ZodDefault<z$1.ZodEnum<{
4592
- refresh: "refresh";
4593
- bypass: "bypass";
4594
4814
  use: "use";
4815
+ bypass: "bypass";
4816
+ refresh: "refresh";
4595
4817
  }>>;
4596
4818
  }, z$1.core.$strip>>;
4597
4819
  manualInputs: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
@@ -5707,6 +5929,77 @@ declare const cacheEntryWithDebugKeySchema: z$1.ZodObject<{
5707
5929
  operationName: z$1.ZodString;
5708
5930
  storedAt: z$1.ZodString;
5709
5931
  rawKey: z$1.ZodUnknown;
5932
+ entry: z$1.ZodObject<{
5933
+ version: z$1.ZodLiteral<1>;
5934
+ key: z$1.ZodString;
5935
+ namespace: z$1.ZodString;
5936
+ operationType: z$1.ZodOptional<z$1.ZodEnum<{
5937
+ span: "span";
5938
+ value: "value";
5939
+ }>>;
5940
+ operationName: z$1.ZodOptional<z$1.ZodString>;
5941
+ spanName: z$1.ZodOptional<z$1.ZodString>;
5942
+ spanKind: z$1.ZodOptional<z$1.ZodString>;
5943
+ storedAt: z$1.ZodString;
5944
+ recording: z$1.ZodObject<{
5945
+ returnValue: z$1.ZodUnknown;
5946
+ finalAttributes: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>;
5947
+ finalStatus: z$1.ZodOptional<z$1.ZodEnum<{
5948
+ error: "error";
5949
+ running: "running";
5950
+ ok: "ok";
5951
+ cancelled: "cancelled";
5952
+ }>>;
5953
+ finalError: z$1.ZodOptional<z$1.ZodObject<{
5954
+ name: z$1.ZodOptional<z$1.ZodString>;
5955
+ message: z$1.ZodString;
5956
+ stack: z$1.ZodOptional<z$1.ZodString>;
5957
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
5958
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>;
5959
+ finalErrors: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
5960
+ name: z$1.ZodOptional<z$1.ZodString>;
5961
+ message: z$1.ZodString;
5962
+ stack: z$1.ZodOptional<z$1.ZodString>;
5963
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
5964
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>>;
5965
+ finalWarning: z$1.ZodOptional<z$1.ZodObject<{
5966
+ name: z$1.ZodOptional<z$1.ZodString>;
5967
+ message: z$1.ZodString;
5968
+ stack: z$1.ZodOptional<z$1.ZodString>;
5969
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
5970
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>;
5971
+ finalWarnings: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
5972
+ name: z$1.ZodOptional<z$1.ZodString>;
5973
+ message: z$1.ZodString;
5974
+ stack: z$1.ZodOptional<z$1.ZodString>;
5975
+ capturedAt: z$1.ZodOptional<z$1.ZodString>;
5976
+ }, z$1.core.$catchall<z$1.ZodUnknown>>>>;
5977
+ ops: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
5978
+ kind: z$1.ZodLiteral<"setOutput">;
5979
+ key: z$1.ZodString;
5980
+ value: z$1.ZodUnknown;
5981
+ }, z$1.core.$strip>, z$1.ZodObject<{
5982
+ kind: z$1.ZodLiteral<"appendOutput">;
5983
+ key: z$1.ZodString;
5984
+ value: z$1.ZodUnknown;
5985
+ }, z$1.core.$strip>, z$1.ZodObject<{
5986
+ kind: z$1.ZodLiteral<"mergeOutput">;
5987
+ key: z$1.ZodString;
5988
+ patch: z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>;
5989
+ }, z$1.core.$strip>, z$1.ZodObject<{
5990
+ kind: z$1.ZodLiteral<"incrementOutput">;
5991
+ key: z$1.ZodString;
5992
+ delta: z$1.ZodNumber;
5993
+ }, z$1.core.$strip>, z$1.ZodObject<{
5994
+ kind: z$1.ZodLiteral<"checkpoint">;
5995
+ name: z$1.ZodString;
5996
+ data: z$1.ZodUnknown;
5997
+ }, z$1.core.$strip>, z$1.ZodObject<{
5998
+ kind: z$1.ZodLiteral<"subSpan">;
5999
+ span: z$1.ZodType<SerializedCacheSpan$1, unknown, z$1.core.$ZodTypeInternals<SerializedCacheSpan$1, unknown>>;
6000
+ }, z$1.core.$strip>], "kind">>;
6001
+ }, z$1.core.$strip>;
6002
+ }, z$1.core.$strip>;
5710
6003
  }, z$1.core.$strip>>;
5711
6004
  }, z$1.core.$strip>;
5712
6005
  /** Cache lookup response returned by cache APIs when raw-key debug data exists. */