niceeval 0.13.4-canary.49 → 0.14.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.
Files changed (71) hide show
  1. package/INDEX.md +3 -3
  2. package/dist/inspection/overview.cjs +20 -4
  3. package/dist/inspection/overview.cjs.map +1 -1
  4. package/dist/inspection/overview.d.cts +5 -0
  5. package/dist/inspection/overview.d.mts +5 -0
  6. package/dist/inspection/overview.d.ts +5 -0
  7. package/dist/inspection/protocol.d.cts +238 -0
  8. package/dist/inspection/protocol.d.mts +238 -0
  9. package/dist/inspection/protocol.d.ts +238 -0
  10. package/dist/inspection/public.mjs +19 -16
  11. package/dist/inspection/results.cjs +11 -10
  12. package/dist/inspection/results.cjs.map +1 -1
  13. package/dist/inspection/results.d.cts +34 -0
  14. package/dist/inspection/results.d.mts +34 -0
  15. package/dist/inspection/results.d.ts +34 -0
  16. package/dist/show/contribution.cjs +11 -2
  17. package/dist/show/contribution.cjs.map +1 -1
  18. package/dist/show/contribution.d.cts +7 -0
  19. package/dist/show/contribution.d.mts +7 -0
  20. package/dist/show/contribution.d.ts +7 -0
  21. package/dist/show/model.cjs +1 -0
  22. package/dist/show/model.cjs.map +1 -1
  23. package/dist/show/model.d.cts +2 -0
  24. package/dist/show/model.d.mts +2 -0
  25. package/dist/show/model.d.ts +2 -0
  26. package/dist/show/render.cjs +149 -81
  27. package/dist/show/render.cjs.map +1 -1
  28. package/dist/show/render.d.cts +3 -1
  29. package/dist/show/render.d.mts +3 -1
  30. package/dist/show/render.d.ts +3 -1
  31. package/dist/view/app-dist/.vite/manifest.json +18 -18
  32. package/dist/view/app-dist/assets/{AttemptDialog-zlgkBA66.js → AttemptDialog-76dX1VQq.js} +1 -1
  33. package/dist/view/app-dist/assets/{AttemptRoute-DN6R4719.js → AttemptRoute-DRHVh2JA.js} +1 -1
  34. package/dist/view/app-dist/assets/{ResultsPage-BfH9vA6y.js → ResultsPage-9CSI8dvZ.js} +2 -2
  35. package/dist/view/app-dist/assets/{RunPage-XiJvNLB-.js → RunPage-BUF0REv7.js} +1 -1
  36. package/dist/view/app-dist/assets/{TableContentView-V8MYLnmk.js → TableContentView-_Sbg5wDr.js} +1 -1
  37. package/dist/view/app-dist/assets/index-BGr_6pGY.js +19 -0
  38. package/dist/view/app-dist/assets/{quality-cost-scatter-Bxyj_9oc.js → quality-cost-scatter-B5wDa_F1.js} +1 -1
  39. package/dist/view/app-dist/assets/useSuspenseQuery-D3W8Uy33.js +1 -0
  40. package/dist/view/app-dist/index.html +1 -1
  41. package/dist/view/function-runtime.mjs +35 -20
  42. package/docs-site/zh/examples/ai-agent-application.mdx +1 -1
  43. package/docs-site/zh/examples/index.mdx +1 -3
  44. package/docs-site/zh/explanation/evals.mdx +1 -1
  45. package/docs-site/zh/explanation/experiment.mdx +3 -1
  46. package/docs-site/zh/explanation/overview.mdx +6 -4
  47. package/docs-site/zh/explanation/record.mdx +9 -5
  48. package/docs-site/zh/explanation/runner.mdx +3 -3
  49. package/docs-site/zh/index.mdx +4 -8
  50. package/docs-site/zh/introduction.mdx +2 -2
  51. package/docs-site/zh/reference/cli.mdx +8 -7
  52. package/docs-site/zh/troubleshooting/debug-sandbox.mdx +5 -5
  53. package/docs-site/zh/troubleshooting/debugging.mdx +8 -8
  54. package/docs-site/zh/troubleshooting/recover-after-kill.mdx +35 -55
  55. package/docs-site/zh/tutorials/accept-results.mdx +4 -4
  56. package/docs-site/zh/tutorials/agent-onboarding.mdx +2 -2
  57. package/docs-site/zh/tutorials/authoring.mdx +1 -1
  58. package/docs-site/zh/tutorials/compare-runs.mdx +3 -3
  59. package/docs-site/zh/tutorials/concurrency.mdx +6 -6
  60. package/docs-site/zh/tutorials/connect-your-agent.mdx +2 -2
  61. package/docs-site/zh/tutorials/docker-in-docker.mdx +1 -1
  62. package/docs-site/zh/tutorials/experiments.mdx +1 -1
  63. package/docs-site/zh/tutorials/install-custom-sandbox-agent.mdx +1 -1
  64. package/docs-site/zh/tutorials/quickstart.mdx +2 -2
  65. package/docs-site/zh/tutorials/reporters.mdx +3 -3
  66. package/docs-site/zh/tutorials/sandbox-agent.mdx +2 -2
  67. package/docs-site/zh/tutorials/sandbox-reuse.mdx +3 -3
  68. package/docs-site/zh/tutorials/viewing-results.mdx +10 -11
  69. package/package.json +1 -1
  70. package/dist/view/app-dist/assets/index-BSJP_UAR.js +0 -19
  71. package/dist/view/app-dist/assets/useSuspenseQuery-Bdi9nQF1.js +0 -1
@@ -598,6 +598,14 @@ export declare const inspectionProtocolRegistry: Readonly<{
598
598
  }>, Schema.Struct<{
599
599
  readonly state: Schema.Literal<"unavailable">;
600
600
  }>]>;
601
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
602
+ readonly state: Schema.Literal<"available">;
603
+ readonly value: Schema.String;
604
+ }>, Schema.Struct<{
605
+ readonly state: Schema.Literal<"mixed">;
606
+ }>, Schema.Struct<{
607
+ readonly state: Schema.Literal<"unavailable">;
608
+ }>]>>;
601
609
  readonly groups: Schema.$Array<Schema.Struct<{
602
610
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
603
611
  readonly denominator: Schema.Struct<{
@@ -1097,9 +1105,18 @@ export declare const inspectionProtocolRegistry: Readonly<{
1097
1105
  readonly slotId: Schema.String;
1098
1106
  readonly evalId: Schema.String;
1099
1107
  readonly attemptOrdinal: Schema.Number;
1108
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
1109
+ readonly state: Schema.Literal<"available">;
1110
+ readonly value: Schema.String;
1111
+ }>, Schema.Struct<{
1112
+ readonly state: Schema.Literal<"mixed">;
1113
+ }>, Schema.Struct<{
1114
+ readonly state: Schema.Literal<"unavailable">;
1115
+ }>]>>;
1100
1116
  readonly publication: Schema.Union<readonly [Schema.Struct<{
1101
1117
  readonly state: Schema.Literal<"pending">;
1102
1118
  }>, Schema.Struct<{
1119
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
1103
1120
  readonly score: Schema.Struct<{
1104
1121
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
1105
1122
  readonly value: Schema.NullOr<Schema.Number>;
@@ -1530,6 +1547,14 @@ export declare const inspectionProtocolRegistry: Readonly<{
1530
1547
  }>, Schema.Struct<{
1531
1548
  readonly state: Schema.Literal<"unavailable">;
1532
1549
  }>]>;
1550
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
1551
+ readonly state: Schema.Literal<"available">;
1552
+ readonly value: Schema.String;
1553
+ }>, Schema.Struct<{
1554
+ readonly state: Schema.Literal<"mixed">;
1555
+ }>, Schema.Struct<{
1556
+ readonly state: Schema.Literal<"unavailable">;
1557
+ }>]>>;
1533
1558
  readonly groups: Schema.$Array<Schema.Struct<{
1534
1559
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
1535
1560
  readonly denominator: Schema.Struct<{
@@ -2029,9 +2054,18 @@ export declare const inspectionProtocolRegistry: Readonly<{
2029
2054
  readonly slotId: Schema.String;
2030
2055
  readonly evalId: Schema.String;
2031
2056
  readonly attemptOrdinal: Schema.Number;
2057
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
2058
+ readonly state: Schema.Literal<"available">;
2059
+ readonly value: Schema.String;
2060
+ }>, Schema.Struct<{
2061
+ readonly state: Schema.Literal<"mixed">;
2062
+ }>, Schema.Struct<{
2063
+ readonly state: Schema.Literal<"unavailable">;
2064
+ }>]>>;
2032
2065
  readonly publication: Schema.Union<readonly [Schema.Struct<{
2033
2066
  readonly state: Schema.Literal<"pending">;
2034
2067
  }>, Schema.Struct<{
2068
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
2035
2069
  readonly score: Schema.Struct<{
2036
2070
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
2037
2071
  readonly value: Schema.NullOr<Schema.Number>;
@@ -5719,6 +5753,14 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
5719
5753
  }>, Schema.Struct<{
5720
5754
  readonly state: Schema.Literal<"unavailable">;
5721
5755
  }>]>;
5756
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
5757
+ readonly state: Schema.Literal<"available">;
5758
+ readonly value: Schema.String;
5759
+ }>, Schema.Struct<{
5760
+ readonly state: Schema.Literal<"mixed">;
5761
+ }>, Schema.Struct<{
5762
+ readonly state: Schema.Literal<"unavailable">;
5763
+ }>]>>;
5722
5764
  readonly groups: Schema.$Array<Schema.Struct<{
5723
5765
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
5724
5766
  readonly denominator: Schema.Struct<{
@@ -6218,9 +6260,18 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
6218
6260
  readonly slotId: Schema.String;
6219
6261
  readonly evalId: Schema.String;
6220
6262
  readonly attemptOrdinal: Schema.Number;
6263
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
6264
+ readonly state: Schema.Literal<"available">;
6265
+ readonly value: Schema.String;
6266
+ }>, Schema.Struct<{
6267
+ readonly state: Schema.Literal<"mixed">;
6268
+ }>, Schema.Struct<{
6269
+ readonly state: Schema.Literal<"unavailable">;
6270
+ }>]>>;
6221
6271
  readonly publication: Schema.Union<readonly [Schema.Struct<{
6222
6272
  readonly state: Schema.Literal<"pending">;
6223
6273
  }>, Schema.Struct<{
6274
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
6224
6275
  readonly score: Schema.Struct<{
6225
6276
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
6226
6277
  readonly value: Schema.NullOr<Schema.Number>;
@@ -6666,6 +6717,14 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
6666
6717
  }>, Schema.Struct<{
6667
6718
  readonly state: Schema.Literal<"unavailable">;
6668
6719
  }>]>;
6720
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
6721
+ readonly state: Schema.Literal<"available">;
6722
+ readonly value: Schema.String;
6723
+ }>, Schema.Struct<{
6724
+ readonly state: Schema.Literal<"mixed">;
6725
+ }>, Schema.Struct<{
6726
+ readonly state: Schema.Literal<"unavailable">;
6727
+ }>]>>;
6669
6728
  readonly groups: Schema.$Array<Schema.Struct<{
6670
6729
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
6671
6730
  readonly denominator: Schema.Struct<{
@@ -7165,9 +7224,18 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
7165
7224
  readonly slotId: Schema.String;
7166
7225
  readonly evalId: Schema.String;
7167
7226
  readonly attemptOrdinal: Schema.Number;
7227
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
7228
+ readonly state: Schema.Literal<"available">;
7229
+ readonly value: Schema.String;
7230
+ }>, Schema.Struct<{
7231
+ readonly state: Schema.Literal<"mixed">;
7232
+ }>, Schema.Struct<{
7233
+ readonly state: Schema.Literal<"unavailable">;
7234
+ }>]>>;
7168
7235
  readonly publication: Schema.Union<readonly [Schema.Struct<{
7169
7236
  readonly state: Schema.Literal<"pending">;
7170
7237
  }>, Schema.Struct<{
7238
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
7171
7239
  readonly score: Schema.Struct<{
7172
7240
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
7173
7241
  readonly value: Schema.NullOr<Schema.Number>;
@@ -10961,6 +11029,14 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
10961
11029
  }>, Schema.Struct<{
10962
11030
  readonly state: Schema.Literal<"unavailable">;
10963
11031
  }>]>;
11032
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
11033
+ readonly state: Schema.Literal<"available">;
11034
+ readonly value: Schema.String;
11035
+ }>, Schema.Struct<{
11036
+ readonly state: Schema.Literal<"mixed">;
11037
+ }>, Schema.Struct<{
11038
+ readonly state: Schema.Literal<"unavailable">;
11039
+ }>]>>;
10964
11040
  readonly groups: Schema.$Array<Schema.Struct<{
10965
11041
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
10966
11042
  readonly denominator: Schema.Struct<{
@@ -11460,9 +11536,18 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
11460
11536
  readonly slotId: Schema.String;
11461
11537
  readonly evalId: Schema.String;
11462
11538
  readonly attemptOrdinal: Schema.Number;
11539
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
11540
+ readonly state: Schema.Literal<"available">;
11541
+ readonly value: Schema.String;
11542
+ }>, Schema.Struct<{
11543
+ readonly state: Schema.Literal<"mixed">;
11544
+ }>, Schema.Struct<{
11545
+ readonly state: Schema.Literal<"unavailable">;
11546
+ }>]>>;
11463
11547
  readonly publication: Schema.Union<readonly [Schema.Struct<{
11464
11548
  readonly state: Schema.Literal<"pending">;
11465
11549
  }>, Schema.Struct<{
11550
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
11466
11551
  readonly score: Schema.Struct<{
11467
11552
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
11468
11553
  readonly value: Schema.NullOr<Schema.Number>;
@@ -11915,6 +12000,14 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
11915
12000
  }>, Schema.Struct<{
11916
12001
  readonly state: Schema.Literal<"unavailable">;
11917
12002
  }>]>;
12003
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
12004
+ readonly state: Schema.Literal<"available">;
12005
+ readonly value: Schema.String;
12006
+ }>, Schema.Struct<{
12007
+ readonly state: Schema.Literal<"mixed">;
12008
+ }>, Schema.Struct<{
12009
+ readonly state: Schema.Literal<"unavailable">;
12010
+ }>]>>;
11918
12011
  readonly groups: Schema.$Array<Schema.Struct<{
11919
12012
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
11920
12013
  readonly denominator: Schema.Struct<{
@@ -12414,9 +12507,18 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
12414
12507
  readonly slotId: Schema.String;
12415
12508
  readonly evalId: Schema.String;
12416
12509
  readonly attemptOrdinal: Schema.Number;
12510
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
12511
+ readonly state: Schema.Literal<"available">;
12512
+ readonly value: Schema.String;
12513
+ }>, Schema.Struct<{
12514
+ readonly state: Schema.Literal<"mixed">;
12515
+ }>, Schema.Struct<{
12516
+ readonly state: Schema.Literal<"unavailable">;
12517
+ }>]>>;
12417
12518
  readonly publication: Schema.Union<readonly [Schema.Struct<{
12418
12519
  readonly state: Schema.Literal<"pending">;
12419
12520
  }>, Schema.Struct<{
12521
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
12420
12522
  readonly score: Schema.Struct<{
12421
12523
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
12422
12524
  readonly value: Schema.NullOr<Schema.Number>;
@@ -16302,6 +16404,14 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
16302
16404
  }>, Schema.Struct<{
16303
16405
  readonly state: Schema.Literal<"unavailable">;
16304
16406
  }>]>;
16407
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
16408
+ readonly state: Schema.Literal<"available">;
16409
+ readonly value: Schema.String;
16410
+ }>, Schema.Struct<{
16411
+ readonly state: Schema.Literal<"mixed">;
16412
+ }>, Schema.Struct<{
16413
+ readonly state: Schema.Literal<"unavailable">;
16414
+ }>]>>;
16305
16415
  readonly groups: Schema.$Array<Schema.Struct<{
16306
16416
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
16307
16417
  readonly denominator: Schema.Struct<{
@@ -16801,9 +16911,18 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
16801
16911
  readonly slotId: Schema.String;
16802
16912
  readonly evalId: Schema.String;
16803
16913
  readonly attemptOrdinal: Schema.Number;
16914
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
16915
+ readonly state: Schema.Literal<"available">;
16916
+ readonly value: Schema.String;
16917
+ }>, Schema.Struct<{
16918
+ readonly state: Schema.Literal<"mixed">;
16919
+ }>, Schema.Struct<{
16920
+ readonly state: Schema.Literal<"unavailable">;
16921
+ }>]>>;
16804
16922
  readonly publication: Schema.Union<readonly [Schema.Struct<{
16805
16923
  readonly state: Schema.Literal<"pending">;
16806
16924
  }>, Schema.Struct<{
16925
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
16807
16926
  readonly score: Schema.Struct<{
16808
16927
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
16809
16928
  readonly value: Schema.NullOr<Schema.Number>;
@@ -17250,6 +17369,14 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
17250
17369
  }>, Schema.Struct<{
17251
17370
  readonly state: Schema.Literal<"unavailable">;
17252
17371
  }>]>;
17372
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
17373
+ readonly state: Schema.Literal<"available">;
17374
+ readonly value: Schema.String;
17375
+ }>, Schema.Struct<{
17376
+ readonly state: Schema.Literal<"mixed">;
17377
+ }>, Schema.Struct<{
17378
+ readonly state: Schema.Literal<"unavailable">;
17379
+ }>]>>;
17253
17380
  readonly groups: Schema.$Array<Schema.Struct<{
17254
17381
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
17255
17382
  readonly denominator: Schema.Struct<{
@@ -17749,9 +17876,18 @@ export declare const InspectionSuccessDocumentSchema: Schema.Union<(Schema.Struc
17749
17876
  readonly slotId: Schema.String;
17750
17877
  readonly evalId: Schema.String;
17751
17878
  readonly attemptOrdinal: Schema.Number;
17879
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
17880
+ readonly state: Schema.Literal<"available">;
17881
+ readonly value: Schema.String;
17882
+ }>, Schema.Struct<{
17883
+ readonly state: Schema.Literal<"mixed">;
17884
+ }>, Schema.Struct<{
17885
+ readonly state: Schema.Literal<"unavailable">;
17886
+ }>]>>;
17752
17887
  readonly publication: Schema.Union<readonly [Schema.Struct<{
17753
17888
  readonly state: Schema.Literal<"pending">;
17754
17889
  }>, Schema.Struct<{
17890
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
17755
17891
  readonly score: Schema.Struct<{
17756
17892
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
17757
17893
  readonly value: Schema.NullOr<Schema.Number>;
@@ -21633,6 +21769,14 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
21633
21769
  }>, Schema.Struct<{
21634
21770
  readonly state: Schema.Literal<"unavailable">;
21635
21771
  }>]>;
21772
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
21773
+ readonly state: Schema.Literal<"available">;
21774
+ readonly value: Schema.String;
21775
+ }>, Schema.Struct<{
21776
+ readonly state: Schema.Literal<"mixed">;
21777
+ }>, Schema.Struct<{
21778
+ readonly state: Schema.Literal<"unavailable">;
21779
+ }>]>>;
21636
21780
  readonly groups: Schema.$Array<Schema.Struct<{
21637
21781
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
21638
21782
  readonly denominator: Schema.Struct<{
@@ -22132,9 +22276,18 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
22132
22276
  readonly slotId: Schema.String;
22133
22277
  readonly evalId: Schema.String;
22134
22278
  readonly attemptOrdinal: Schema.Number;
22279
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
22280
+ readonly state: Schema.Literal<"available">;
22281
+ readonly value: Schema.String;
22282
+ }>, Schema.Struct<{
22283
+ readonly state: Schema.Literal<"mixed">;
22284
+ }>, Schema.Struct<{
22285
+ readonly state: Schema.Literal<"unavailable">;
22286
+ }>]>>;
22135
22287
  readonly publication: Schema.Union<readonly [Schema.Struct<{
22136
22288
  readonly state: Schema.Literal<"pending">;
22137
22289
  }>, Schema.Struct<{
22290
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
22138
22291
  readonly score: Schema.Struct<{
22139
22292
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
22140
22293
  readonly value: Schema.NullOr<Schema.Number>;
@@ -22580,6 +22733,14 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
22580
22733
  }>, Schema.Struct<{
22581
22734
  readonly state: Schema.Literal<"unavailable">;
22582
22735
  }>]>;
22736
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
22737
+ readonly state: Schema.Literal<"available">;
22738
+ readonly value: Schema.String;
22739
+ }>, Schema.Struct<{
22740
+ readonly state: Schema.Literal<"mixed">;
22741
+ }>, Schema.Struct<{
22742
+ readonly state: Schema.Literal<"unavailable">;
22743
+ }>]>>;
22583
22744
  readonly groups: Schema.$Array<Schema.Struct<{
22584
22745
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
22585
22746
  readonly denominator: Schema.Struct<{
@@ -23079,9 +23240,18 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
23079
23240
  readonly slotId: Schema.String;
23080
23241
  readonly evalId: Schema.String;
23081
23242
  readonly attemptOrdinal: Schema.Number;
23243
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
23244
+ readonly state: Schema.Literal<"available">;
23245
+ readonly value: Schema.String;
23246
+ }>, Schema.Struct<{
23247
+ readonly state: Schema.Literal<"mixed">;
23248
+ }>, Schema.Struct<{
23249
+ readonly state: Schema.Literal<"unavailable">;
23250
+ }>]>>;
23082
23251
  readonly publication: Schema.Union<readonly [Schema.Struct<{
23083
23252
  readonly state: Schema.Literal<"pending">;
23084
23253
  }>, Schema.Struct<{
23254
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
23085
23255
  readonly score: Schema.Struct<{
23086
23256
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
23087
23257
  readonly value: Schema.NullOr<Schema.Number>;
@@ -26875,6 +27045,14 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
26875
27045
  }>, Schema.Struct<{
26876
27046
  readonly state: Schema.Literal<"unavailable">;
26877
27047
  }>]>;
27048
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
27049
+ readonly state: Schema.Literal<"available">;
27050
+ readonly value: Schema.String;
27051
+ }>, Schema.Struct<{
27052
+ readonly state: Schema.Literal<"mixed">;
27053
+ }>, Schema.Struct<{
27054
+ readonly state: Schema.Literal<"unavailable">;
27055
+ }>]>>;
26878
27056
  readonly groups: Schema.$Array<Schema.Struct<{
26879
27057
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
26880
27058
  readonly denominator: Schema.Struct<{
@@ -27374,9 +27552,18 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
27374
27552
  readonly slotId: Schema.String;
27375
27553
  readonly evalId: Schema.String;
27376
27554
  readonly attemptOrdinal: Schema.Number;
27555
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
27556
+ readonly state: Schema.Literal<"available">;
27557
+ readonly value: Schema.String;
27558
+ }>, Schema.Struct<{
27559
+ readonly state: Schema.Literal<"mixed">;
27560
+ }>, Schema.Struct<{
27561
+ readonly state: Schema.Literal<"unavailable">;
27562
+ }>]>>;
27377
27563
  readonly publication: Schema.Union<readonly [Schema.Struct<{
27378
27564
  readonly state: Schema.Literal<"pending">;
27379
27565
  }>, Schema.Struct<{
27566
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
27380
27567
  readonly score: Schema.Struct<{
27381
27568
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
27382
27569
  readonly value: Schema.NullOr<Schema.Number>;
@@ -27829,6 +28016,14 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
27829
28016
  }>, Schema.Struct<{
27830
28017
  readonly state: Schema.Literal<"unavailable">;
27831
28018
  }>]>;
28019
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
28020
+ readonly state: Schema.Literal<"available">;
28021
+ readonly value: Schema.String;
28022
+ }>, Schema.Struct<{
28023
+ readonly state: Schema.Literal<"mixed">;
28024
+ }>, Schema.Struct<{
28025
+ readonly state: Schema.Literal<"unavailable">;
28026
+ }>]>>;
27832
28027
  readonly groups: Schema.$Array<Schema.Struct<{
27833
28028
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
27834
28029
  readonly denominator: Schema.Struct<{
@@ -28328,9 +28523,18 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
28328
28523
  readonly slotId: Schema.String;
28329
28524
  readonly evalId: Schema.String;
28330
28525
  readonly attemptOrdinal: Schema.Number;
28526
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
28527
+ readonly state: Schema.Literal<"available">;
28528
+ readonly value: Schema.String;
28529
+ }>, Schema.Struct<{
28530
+ readonly state: Schema.Literal<"mixed">;
28531
+ }>, Schema.Struct<{
28532
+ readonly state: Schema.Literal<"unavailable">;
28533
+ }>]>>;
28331
28534
  readonly publication: Schema.Union<readonly [Schema.Struct<{
28332
28535
  readonly state: Schema.Literal<"pending">;
28333
28536
  }>, Schema.Struct<{
28537
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
28334
28538
  readonly score: Schema.Struct<{
28335
28539
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
28336
28540
  readonly value: Schema.NullOr<Schema.Number>;
@@ -32216,6 +32420,14 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
32216
32420
  }>, Schema.Struct<{
32217
32421
  readonly state: Schema.Literal<"unavailable">;
32218
32422
  }>]>;
32423
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
32424
+ readonly state: Schema.Literal<"available">;
32425
+ readonly value: Schema.String;
32426
+ }>, Schema.Struct<{
32427
+ readonly state: Schema.Literal<"mixed">;
32428
+ }>, Schema.Struct<{
32429
+ readonly state: Schema.Literal<"unavailable">;
32430
+ }>]>>;
32219
32431
  readonly groups: Schema.$Array<Schema.Struct<{
32220
32432
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
32221
32433
  readonly denominator: Schema.Struct<{
@@ -32715,9 +32927,18 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
32715
32927
  readonly slotId: Schema.String;
32716
32928
  readonly evalId: Schema.String;
32717
32929
  readonly attemptOrdinal: Schema.Number;
32930
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
32931
+ readonly state: Schema.Literal<"available">;
32932
+ readonly value: Schema.String;
32933
+ }>, Schema.Struct<{
32934
+ readonly state: Schema.Literal<"mixed">;
32935
+ }>, Schema.Struct<{
32936
+ readonly state: Schema.Literal<"unavailable">;
32937
+ }>]>>;
32718
32938
  readonly publication: Schema.Union<readonly [Schema.Struct<{
32719
32939
  readonly state: Schema.Literal<"pending">;
32720
32940
  }>, Schema.Struct<{
32941
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
32721
32942
  readonly score: Schema.Struct<{
32722
32943
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
32723
32944
  readonly value: Schema.NullOr<Schema.Number>;
@@ -33164,6 +33385,14 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
33164
33385
  }>, Schema.Struct<{
33165
33386
  readonly state: Schema.Literal<"unavailable">;
33166
33387
  }>]>;
33388
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
33389
+ readonly state: Schema.Literal<"available">;
33390
+ readonly value: Schema.String;
33391
+ }>, Schema.Struct<{
33392
+ readonly state: Schema.Literal<"mixed">;
33393
+ }>, Schema.Struct<{
33394
+ readonly state: Schema.Literal<"unavailable">;
33395
+ }>]>>;
33167
33396
  readonly groups: Schema.$Array<Schema.Struct<{
33168
33397
  readonly evaluationKind: Schema.Literals<readonly ["pass", "points", "mixed"]>;
33169
33398
  readonly denominator: Schema.Struct<{
@@ -33663,9 +33892,18 @@ export declare const InspectionDocumentSchema: Schema.Union<readonly [Schema.Str
33663
33892
  readonly slotId: Schema.String;
33664
33893
  readonly evalId: Schema.String;
33665
33894
  readonly attemptOrdinal: Schema.Number;
33895
+ readonly labels: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
33896
+ readonly state: Schema.Literal<"available">;
33897
+ readonly value: Schema.String;
33898
+ }>, Schema.Struct<{
33899
+ readonly state: Schema.Literal<"mixed">;
33900
+ }>, Schema.Struct<{
33901
+ readonly state: Schema.Literal<"unavailable">;
33902
+ }>]>>;
33666
33903
  readonly publication: Schema.Union<readonly [Schema.Struct<{
33667
33904
  readonly state: Schema.Literal<"pending">;
33668
33905
  }>, Schema.Struct<{
33906
+ readonly verdict: Schema.NullOr<Schema.Literals<readonly ["passed", "failed", "errored", "skipped"]>>;
33669
33907
  readonly score: Schema.Struct<{
33670
33908
  readonly state: Schema.Literals<readonly ["available", "partial", "unavailable", "empty", "unsupported", "failed"]>;
33671
33909
  readonly value: Schema.NullOr<Schema.Number>;