@ls-stack/agent-eval 0.51.0 → 0.52.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
@@ -1835,9 +1835,9 @@ declare const traceAttributeDisplaySchema: z$1.ZodObject<{
1835
1835
  subtree: "subtree";
1836
1836
  }>>;
1837
1837
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1838
- all: "all";
1839
- last: "last";
1840
1838
  sum: "sum";
1839
+ last: "last";
1840
+ all: "all";
1841
1841
  }>>;
1842
1842
  }, z$1.core.$strip>;
1843
1843
  /**
@@ -1871,9 +1871,9 @@ declare const traceDisplayConfigSchema: z$1.ZodObject<{
1871
1871
  subtree: "subtree";
1872
1872
  }>>;
1873
1873
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1874
- all: "all";
1875
- last: "last";
1876
1874
  sum: "sum";
1875
+ last: "last";
1876
+ all: "all";
1877
1877
  }>>;
1878
1878
  }, z$1.core.$strip>>>;
1879
1879
  }, z$1.core.$strip>;
@@ -1911,9 +1911,9 @@ declare const traceAttributeDisplayInputSchema: z$1.ZodObject<{
1911
1911
  subtree: "subtree";
1912
1912
  }>>;
1913
1913
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1914
- all: "all";
1915
- last: "last";
1916
1914
  sum: "sum";
1915
+ last: "last";
1916
+ all: "all";
1917
1917
  }>>;
1918
1918
  transform: z$1.ZodOptional<z$1.ZodCustom<TraceAttributeTransform, TraceAttributeTransform>>;
1919
1919
  }, z$1.core.$strip>;
@@ -1949,9 +1949,9 @@ declare const traceDisplayInputConfigSchema: z$1.ZodObject<{
1949
1949
  subtree: "subtree";
1950
1950
  }>>;
1951
1951
  mode: z$1.ZodOptional<z$1.ZodEnum<{
1952
- all: "all";
1953
- last: "last";
1954
1952
  sum: "sum";
1953
+ last: "last";
1954
+ all: "all";
1955
1955
  }>>;
1956
1956
  transform: z$1.ZodOptional<z$1.ZodCustom<TraceAttributeTransform, TraceAttributeTransform>>;
1957
1957
  }, z$1.core.$strip>>>;
@@ -2030,11 +2030,11 @@ declare const evalFreshnessStatusSchema: z$1.ZodEnum<{
2030
2030
  type EvalFreshnessStatus = z$1.infer<typeof evalFreshnessStatusSchema>;
2031
2031
  /** Reducer used to collapse a column's per-case values into a single stat. */
2032
2032
  declare const evalStatAggregateSchema: z$1.ZodEnum<{
2033
- last: "last";
2034
- sum: "sum";
2035
2033
  avg: "avg";
2036
2034
  min: "min";
2037
2035
  max: "max";
2036
+ sum: "sum";
2037
+ last: "last";
2038
2038
  }>;
2039
2039
  /** Reducer used to collapse a column's per-case values into a single stat. */
2040
2040
  type EvalStatAggregate = z$1.infer<typeof evalStatAggregateSchema>;
@@ -2063,11 +2063,11 @@ declare const evalStatItemSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2063
2063
  key: z$1.ZodString;
2064
2064
  label: z$1.ZodOptional<z$1.ZodString>;
2065
2065
  aggregate: z$1.ZodEnum<{
2066
- last: "last";
2067
- sum: "sum";
2068
2066
  avg: "avg";
2069
2067
  min: "min";
2070
2068
  max: "max";
2069
+ sum: "sum";
2070
+ last: "last";
2071
2071
  }>;
2072
2072
  format: z$1.ZodOptional<z$1.ZodEnum<{
2073
2073
  number: "number";
@@ -2108,11 +2108,11 @@ declare const evalStatsConfigSchema: z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1
2108
2108
  key: z$1.ZodString;
2109
2109
  label: z$1.ZodOptional<z$1.ZodString>;
2110
2110
  aggregate: z$1.ZodEnum<{
2111
- last: "last";
2112
- sum: "sum";
2113
2111
  avg: "avg";
2114
2112
  min: "min";
2115
2113
  max: "max";
2114
+ sum: "sum";
2115
+ last: "last";
2116
2116
  }>;
2117
2117
  format: z$1.ZodOptional<z$1.ZodEnum<{
2118
2118
  number: "number";
@@ -2189,10 +2189,10 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2189
2189
  caseIds: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2190
2190
  lastRunStatus: z$1.ZodNullable<z$1.ZodEnum<{
2191
2191
  error: "error";
2192
- running: "running";
2193
- cancelled: "cancelled";
2194
2192
  pass: "pass";
2195
2193
  fail: "fail";
2194
+ running: "running";
2195
+ cancelled: "cancelled";
2196
2196
  unscored: "unscored";
2197
2197
  }>>;
2198
2198
  stats: z$1.ZodOptional<z$1.ZodArray<z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
@@ -2214,11 +2214,11 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2214
2214
  key: z$1.ZodString;
2215
2215
  label: z$1.ZodOptional<z$1.ZodString>;
2216
2216
  aggregate: z$1.ZodEnum<{
2217
- last: "last";
2218
- sum: "sum";
2219
2217
  avg: "avg";
2220
2218
  min: "min";
2221
2219
  max: "max";
2220
+ sum: "sum";
2221
+ last: "last";
2222
2222
  }>;
2223
2223
  format: z$1.ZodOptional<z$1.ZodEnum<{
2224
2224
  number: "number";
@@ -2256,9 +2256,9 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2256
2256
  color: z$1.ZodOptional<z$1.ZodEnum<{
2257
2257
  success: "success";
2258
2258
  error: "error";
2259
- warning: "warning";
2260
2259
  accent: "accent";
2261
2260
  accentDim: "accentDim";
2261
+ warning: "warning";
2262
2262
  textMuted: "textMuted";
2263
2263
  }>>;
2264
2264
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2269,10 +2269,10 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2269
2269
  source: z$1.ZodLiteral<"column">;
2270
2270
  key: z$1.ZodString;
2271
2271
  aggregate: z$1.ZodEnum<{
2272
- sum: "sum";
2273
2272
  avg: "avg";
2274
2273
  min: "min";
2275
2274
  max: "max";
2275
+ sum: "sum";
2276
2276
  latest: "latest";
2277
2277
  passThresholdRate: "passThresholdRate";
2278
2278
  }>;
@@ -2280,9 +2280,9 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2280
2280
  color: z$1.ZodOptional<z$1.ZodEnum<{
2281
2281
  success: "success";
2282
2282
  error: "error";
2283
- warning: "warning";
2284
2283
  accent: "accent";
2285
2284
  accentDim: "accentDim";
2285
+ warning: "warning";
2286
2286
  textMuted: "textMuted";
2287
2287
  }>>;
2288
2288
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2311,10 +2311,10 @@ declare const evalSummarySchema$1: z$1.ZodObject<{
2311
2311
  source: z$1.ZodLiteral<"column">;
2312
2312
  key: z$1.ZodString;
2313
2313
  aggregate: z$1.ZodEnum<{
2314
- sum: "sum";
2315
2314
  avg: "avg";
2316
2315
  min: "min";
2317
2316
  max: "max";
2317
+ sum: "sum";
2318
2318
  latest: "latest";
2319
2319
  passThresholdRate: "passThresholdRate";
2320
2320
  }>;
@@ -2411,11 +2411,11 @@ declare const caseRowSchema$1: z$1.ZodObject<{
2411
2411
  tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2412
2412
  status: z$1.ZodEnum<{
2413
2413
  error: "error";
2414
- pending: "pending";
2415
- running: "running";
2416
- cancelled: "cancelled";
2417
2414
  pass: "pass";
2418
2415
  fail: "fail";
2416
+ running: "running";
2417
+ cancelled: "cancelled";
2418
+ pending: "pending";
2419
2419
  }>;
2420
2420
  durationMs: z$1.ZodNullable<z$1.ZodNumber>;
2421
2421
  cacheHits: z$1.ZodOptional<z$1.ZodNumber>;
@@ -2562,9 +2562,9 @@ declare const scoreTraceSchema: z$1.ZodObject<{
2562
2562
  subtree: "subtree";
2563
2563
  }>>;
2564
2564
  mode: z$1.ZodOptional<z$1.ZodEnum<{
2565
- all: "all";
2566
- last: "last";
2567
2565
  sum: "sum";
2566
+ last: "last";
2567
+ all: "all";
2568
2568
  }>>;
2569
2569
  }, z$1.core.$strip>>>;
2570
2570
  }, z$1.core.$strip>;
@@ -2580,11 +2580,11 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2580
2580
  tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
2581
2581
  status: z$1.ZodEnum<{
2582
2582
  error: "error";
2583
- pending: "pending";
2584
- running: "running";
2585
- cancelled: "cancelled";
2586
2583
  pass: "pass";
2587
2584
  fail: "fail";
2585
+ running: "running";
2586
+ cancelled: "cancelled";
2587
+ pending: "pending";
2588
2588
  }>;
2589
2589
  input: z$1.ZodUnknown;
2590
2590
  trace: z$1.ZodArray<z$1.ZodObject<{
@@ -2649,9 +2649,9 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2649
2649
  subtree: "subtree";
2650
2650
  }>>;
2651
2651
  mode: z$1.ZodOptional<z$1.ZodEnum<{
2652
- all: "all";
2653
- last: "last";
2654
2652
  sum: "sum";
2653
+ last: "last";
2654
+ all: "all";
2655
2655
  }>>;
2656
2656
  }, z$1.core.$strip>>>;
2657
2657
  }, z$1.core.$strip>;
@@ -2718,9 +2718,9 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2718
2718
  subtree: "subtree";
2719
2719
  }>>;
2720
2720
  mode: z$1.ZodOptional<z$1.ZodEnum<{
2721
- all: "all";
2722
- last: "last";
2723
2721
  sum: "sum";
2722
+ last: "last";
2723
+ all: "all";
2724
2724
  }>>;
2725
2725
  }, z$1.core.$strip>>>;
2726
2726
  }, z$1.core.$strip>;
@@ -2781,10 +2781,10 @@ declare const caseDetailSchema$1: z$1.ZodObject<{
2781
2781
  namespace: z$1.ZodString;
2782
2782
  key: z$1.ZodString;
2783
2783
  status: z$1.ZodEnum<{
2784
- bypass: "bypass";
2785
- refresh: "refresh";
2786
2784
  hit: "hit";
2787
2785
  miss: "miss";
2786
+ refresh: "refresh";
2787
+ bypass: "bypass";
2788
2788
  }>;
2789
2789
  read: z$1.ZodOptional<z$1.ZodBoolean>;
2790
2790
  stored: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -2837,10 +2837,10 @@ declare const evalChartBuiltinMetricSchema: z$1.ZodEnum<{
2837
2837
  type EvalChartBuiltinMetric = z$1.infer<typeof evalChartBuiltinMetricSchema>;
2838
2838
  /** Reducer applied to a numeric column across all cases of a single run. */
2839
2839
  declare const evalChartAggregateSchema: z$1.ZodEnum<{
2840
- sum: "sum";
2841
2840
  avg: "avg";
2842
2841
  min: "min";
2843
2842
  max: "max";
2843
+ sum: "sum";
2844
2844
  latest: "latest";
2845
2845
  passThresholdRate: "passThresholdRate";
2846
2846
  }>;
@@ -2853,9 +2853,9 @@ type EvalChartAggregate = z$1.infer<typeof evalChartAggregateSchema>;
2853
2853
  declare const evalChartColorSchema: z$1.ZodEnum<{
2854
2854
  success: "success";
2855
2855
  error: "error";
2856
- warning: "warning";
2857
2856
  accent: "accent";
2858
2857
  accentDim: "accentDim";
2858
+ warning: "warning";
2859
2859
  textMuted: "textMuted";
2860
2860
  }>;
2861
2861
  /** Semantic color token resolved to a theme color by the web UI. */
@@ -2882,9 +2882,9 @@ declare const evalChartMetricSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2882
2882
  color: z$1.ZodOptional<z$1.ZodEnum<{
2883
2883
  success: "success";
2884
2884
  error: "error";
2885
- warning: "warning";
2886
2885
  accent: "accent";
2887
2886
  accentDim: "accentDim";
2887
+ warning: "warning";
2888
2888
  textMuted: "textMuted";
2889
2889
  }>>;
2890
2890
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2895,10 +2895,10 @@ declare const evalChartMetricSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2895
2895
  source: z$1.ZodLiteral<"column">;
2896
2896
  key: z$1.ZodString;
2897
2897
  aggregate: z$1.ZodEnum<{
2898
- sum: "sum";
2899
2898
  avg: "avg";
2900
2899
  min: "min";
2901
2900
  max: "max";
2901
+ sum: "sum";
2902
2902
  latest: "latest";
2903
2903
  passThresholdRate: "passThresholdRate";
2904
2904
  }>;
@@ -2906,9 +2906,9 @@ declare const evalChartMetricSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
2906
2906
  color: z$1.ZodOptional<z$1.ZodEnum<{
2907
2907
  success: "success";
2908
2908
  error: "error";
2909
- warning: "warning";
2910
2909
  accent: "accent";
2911
2910
  accentDim: "accentDim";
2911
+ warning: "warning";
2912
2912
  textMuted: "textMuted";
2913
2913
  }>>;
2914
2914
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2930,10 +2930,10 @@ declare const evalChartTooltipExtraSchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObj
2930
2930
  source: z$1.ZodLiteral<"column">;
2931
2931
  key: z$1.ZodString;
2932
2932
  aggregate: z$1.ZodEnum<{
2933
- sum: "sum";
2934
2933
  avg: "avg";
2935
2934
  min: "min";
2936
2935
  max: "max";
2936
+ sum: "sum";
2937
2937
  latest: "latest";
2938
2938
  passThresholdRate: "passThresholdRate";
2939
2939
  }>;
@@ -2965,9 +2965,9 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
2965
2965
  color: z$1.ZodOptional<z$1.ZodEnum<{
2966
2966
  success: "success";
2967
2967
  error: "error";
2968
- warning: "warning";
2969
2968
  accent: "accent";
2970
2969
  accentDim: "accentDim";
2970
+ warning: "warning";
2971
2971
  textMuted: "textMuted";
2972
2972
  }>>;
2973
2973
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -2978,10 +2978,10 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
2978
2978
  source: z$1.ZodLiteral<"column">;
2979
2979
  key: z$1.ZodString;
2980
2980
  aggregate: z$1.ZodEnum<{
2981
- sum: "sum";
2982
2981
  avg: "avg";
2983
2982
  min: "min";
2984
2983
  max: "max";
2984
+ sum: "sum";
2985
2985
  latest: "latest";
2986
2986
  passThresholdRate: "passThresholdRate";
2987
2987
  }>;
@@ -2989,9 +2989,9 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
2989
2989
  color: z$1.ZodOptional<z$1.ZodEnum<{
2990
2990
  success: "success";
2991
2991
  error: "error";
2992
- warning: "warning";
2993
2992
  accent: "accent";
2994
2993
  accentDim: "accentDim";
2994
+ warning: "warning";
2995
2995
  textMuted: "textMuted";
2996
2996
  }>>;
2997
2997
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -3020,10 +3020,10 @@ declare const evalChartConfigSchema: z$1.ZodObject<{
3020
3020
  source: z$1.ZodLiteral<"column">;
3021
3021
  key: z$1.ZodString;
3022
3022
  aggregate: z$1.ZodEnum<{
3023
- sum: "sum";
3024
3023
  avg: "avg";
3025
3024
  min: "min";
3026
3025
  max: "max";
3026
+ sum: "sum";
3027
3027
  latest: "latest";
3028
3028
  passThresholdRate: "passThresholdRate";
3029
3029
  }>;
@@ -3055,9 +3055,9 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3055
3055
  color: z$1.ZodOptional<z$1.ZodEnum<{
3056
3056
  success: "success";
3057
3057
  error: "error";
3058
- warning: "warning";
3059
3058
  accent: "accent";
3060
3059
  accentDim: "accentDim";
3060
+ warning: "warning";
3061
3061
  textMuted: "textMuted";
3062
3062
  }>>;
3063
3063
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -3068,10 +3068,10 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3068
3068
  source: z$1.ZodLiteral<"column">;
3069
3069
  key: z$1.ZodString;
3070
3070
  aggregate: z$1.ZodEnum<{
3071
- sum: "sum";
3072
3071
  avg: "avg";
3073
3072
  min: "min";
3074
3073
  max: "max";
3074
+ sum: "sum";
3075
3075
  latest: "latest";
3076
3076
  passThresholdRate: "passThresholdRate";
3077
3077
  }>;
@@ -3079,9 +3079,9 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3079
3079
  color: z$1.ZodOptional<z$1.ZodEnum<{
3080
3080
  success: "success";
3081
3081
  error: "error";
3082
- warning: "warning";
3083
3082
  accent: "accent";
3084
3083
  accentDim: "accentDim";
3084
+ warning: "warning";
3085
3085
  textMuted: "textMuted";
3086
3086
  }>>;
3087
3087
  axis: z$1.ZodOptional<z$1.ZodEnum<{
@@ -3110,10 +3110,10 @@ declare const evalChartsConfigSchema: z$1.ZodArray<z$1.ZodObject<{
3110
3110
  source: z$1.ZodLiteral<"column">;
3111
3111
  key: z$1.ZodString;
3112
3112
  aggregate: z$1.ZodEnum<{
3113
- sum: "sum";
3114
3113
  avg: "avg";
3115
3114
  min: "min";
3116
3115
  max: "max";
3116
+ sum: "sum";
3117
3117
  latest: "latest";
3118
3118
  passThresholdRate: "passThresholdRate";
3119
3119
  }>;
@@ -3129,10 +3129,10 @@ declare const runManifestSchema$1: z$1.ZodObject<{
3129
3129
  shortId: z$1.ZodString;
3130
3130
  status: z$1.ZodEnum<{
3131
3131
  error: "error";
3132
- pending: "pending";
3133
3132
  running: "running";
3134
- completed: "completed";
3135
3133
  cancelled: "cancelled";
3134
+ pending: "pending";
3135
+ completed: "completed";
3136
3136
  }>;
3137
3137
  temporary: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodBoolean>>;
3138
3138
  startedAt: z$1.ZodString;
@@ -3141,9 +3141,9 @@ declare const runManifestSchema$1: z$1.ZodObject<{
3141
3141
  evalSourceFingerprints: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>>;
3142
3142
  target: z$1.ZodObject<{
3143
3143
  mode: z$1.ZodEnum<{
3144
+ caseIds: "caseIds";
3144
3145
  all: "all";
3145
3146
  evalIds: "evalIds";
3146
- caseIds: "caseIds";
3147
3147
  }>;
3148
3148
  evalKeys: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
3149
3149
  files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -3157,9 +3157,9 @@ declare const runManifestSchema$1: z$1.ZodObject<{
3157
3157
  median: "median";
3158
3158
  }>>>;
3159
3159
  cacheMode: z$1.ZodOptional<z$1.ZodEnum<{
3160
- use: "use";
3161
- bypass: "bypass";
3162
3160
  refresh: "refresh";
3161
+ bypass: "bypass";
3162
+ use: "use";
3163
3163
  }>>;
3164
3164
  }, z$1.core.$strip>;
3165
3165
  /** Persisted lifecycle metadata for a single eval run. */
@@ -3169,10 +3169,10 @@ declare const runSummarySchema$1: z$1.ZodObject<{
3169
3169
  runId: z$1.ZodString;
3170
3170
  status: z$1.ZodEnum<{
3171
3171
  error: "error";
3172
- pending: "pending";
3173
3172
  running: "running";
3174
- completed: "completed";
3175
3173
  cancelled: "cancelled";
3174
+ pending: "pending";
3175
+ completed: "completed";
3176
3176
  }>;
3177
3177
  totalCases: z$1.ZodNumber;
3178
3178
  passedCases: z$1.ZodNumber;
@@ -4061,9 +4061,9 @@ declare function extractApiCalls(spans: EvalTraceSpan$1[], config: ResolvedApiCa
4061
4061
  * - `refresh`: never read, always write (forces re-execution and overwrites).
4062
4062
  */
4063
4063
  declare const cacheModeSchema: z$1.ZodEnum<{
4064
- use: "use";
4065
- bypass: "bypass";
4066
4064
  refresh: "refresh";
4065
+ bypass: "bypass";
4066
+ use: "use";
4067
4067
  }>;
4068
4068
  /** Mode controlling how cached spans behave during a run. */
4069
4069
  type CacheMode = z$1.infer<typeof cacheModeSchema>;
@@ -4084,10 +4084,10 @@ declare const cacheOperationTypeSchema: z$1.ZodEnum<{
4084
4084
  type CacheOperationType = z$1.infer<typeof cacheOperationTypeSchema>;
4085
4085
  /** Status of a cache lookup recorded on a span or case scope. */
4086
4086
  declare const cacheStatusSchema: z$1.ZodEnum<{
4087
- bypass: "bypass";
4088
- refresh: "refresh";
4089
4087
  hit: "hit";
4090
4088
  miss: "miss";
4089
+ refresh: "refresh";
4090
+ bypass: "bypass";
4091
4091
  }>;
4092
4092
  /** Status of a cache lookup recorded on a span or case scope. */
4093
4093
  type CacheStatus = z$1.infer<typeof cacheStatusSchema>;
@@ -4104,10 +4104,10 @@ declare const traceCacheRefSchema: z$1.ZodObject<{
4104
4104
  namespace: z$1.ZodString;
4105
4105
  key: z$1.ZodString;
4106
4106
  status: z$1.ZodEnum<{
4107
- bypass: "bypass";
4108
- refresh: "refresh";
4109
4107
  hit: "hit";
4110
4108
  miss: "miss";
4109
+ refresh: "refresh";
4110
+ bypass: "bypass";
4111
4111
  }>;
4112
4112
  read: z$1.ZodOptional<z$1.ZodBoolean>;
4113
4113
  stored: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -4832,9 +4832,9 @@ type ConfigReloadState = z$1.infer<typeof configReloadStateSchema$1>;
4832
4832
  declare const createRunRequestSchema$1: z$1.ZodObject<{
4833
4833
  target: z$1.ZodObject<{
4834
4834
  mode: z$1.ZodEnum<{
4835
+ caseIds: "caseIds";
4835
4836
  all: "all";
4836
4837
  evalIds: "evalIds";
4837
- caseIds: "caseIds";
4838
4838
  }>;
4839
4839
  evalKeys: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
4840
4840
  files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -4846,9 +4846,9 @@ declare const createRunRequestSchema$1: z$1.ZodObject<{
4846
4846
  temporary: z$1.ZodOptional<z$1.ZodBoolean>;
4847
4847
  cache: z$1.ZodOptional<z$1.ZodObject<{
4848
4848
  mode: z$1.ZodDefault<z$1.ZodEnum<{
4849
- use: "use";
4850
- bypass: "bypass";
4851
4849
  refresh: "refresh";
4850
+ bypass: "bypass";
4851
+ use: "use";
4852
4852
  }>>;
4853
4853
  }, z$1.core.$strip>>;
4854
4854
  manualInputs: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ls-stack/agent-eval",
3
- "version": "0.51.0",
3
+ "version": "0.52.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "agent-evals": "./dist/bin.mjs"
@@ -33,8 +33,8 @@
33
33
  "@types/node": "^24.7.2",
34
34
  "typescript": "^5.9.2",
35
35
  "@agent-evals/runner": "0.0.1",
36
- "@agent-evals/shared": "0.0.1",
37
- "@agent-evals/sdk": "0.0.1"
36
+ "@agent-evals/sdk": "0.0.1",
37
+ "@agent-evals/shared": "0.0.1"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "pnpm --filter @agent-evals/web build && pnpm --filter @agent-evals/shared build && pnpm --filter @agent-evals/sdk build && pnpm --filter @agent-evals/runner build && tsdown --filter cli-js && tsdown --filter cli-types",