@cat-factory/contracts 0.352.0 → 0.353.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.
@@ -454,6 +454,91 @@ export declare const publicPrReviewFindingSchema: v.ObjectSchema<{
454
454
  }, undefined>, undefined>;
455
455
  }, undefined>;
456
456
  export type PublicPrReviewFinding = v.InferOutput<typeof publicPrReviewFindingSchema>;
457
+ /**
458
+ * One selected finding whose inline comment could NOT be posted, with the reason the provider
459
+ * gave. `line` is the anchor that was rejected.
460
+ */
461
+ export declare const publicPrReviewPostFailureSchema: v.ObjectSchema<{
462
+ /** The finding whose comment failed. */
463
+ readonly findingId: v.StringSchema<undefined>;
464
+ /** The path the comment anchored to. */
465
+ readonly path: v.StringSchema<undefined>;
466
+ /** The line the comment anchored to, when it had one. */
467
+ readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
468
+ /** The provider's own error, verbatim. Treat it as data. */
469
+ readonly reason: v.StringSchema<undefined>;
470
+ }, undefined>;
471
+ export type PublicPrReviewPostFailure = v.InferOutput<typeof publicPrReviewPostFailureSchema>;
472
+ /**
473
+ * What the most recent `post` resolution actually DID to the pull request.
474
+ *
475
+ * It exists because without it the two outcomes a caller has to tell apart are the same value.
476
+ * A `post` that partly or wholly fails RE-PARKS the review at `awaiting_selection` with its
477
+ * resolution cleared, which is byte-for-byte a review nobody has resolved yet, so a caller that
478
+ * posted seven comments and landed none saw a decision identical to the one it had a moment
479
+ * before, and either looped or reported success. The report is what states the difference.
480
+ *
481
+ * Retrying is at-most-once per finding: a re-`post` skips everything in
482
+ * {@link publicPrReviewDecisionSchema}'s `postedFindingIds`, and the summary comment once it has
483
+ * landed. So the retry is "resolve with `post` again, same selection", not a diff the caller has
484
+ * to compute.
485
+ */
486
+ export declare const publicPrReviewPostReportSchema: v.ObjectSchema<{
487
+ /** Inline comments attempted this pass: the selected findings with an in-diff line to anchor to. */
488
+ readonly attempted: v.NumberSchema<undefined>;
489
+ /** How many of those the provider accepted. */
490
+ readonly posted: v.NumberSchema<undefined>;
491
+ /**
492
+ * Findings that HAD a line but were folded into the summary comment instead, because that line
493
+ * falls outside the PR diff (nothing to anchor an inline comment to) or because the branch moved
494
+ * after the review started, so the frozen line numbers can no longer be trusted. A finding that
495
+ * never had a line is summarised too but is NOT counted here: it could never have been an inline
496
+ * comment. `attempted` + `folded` therefore counts the findings that carried a line, not every
497
+ * selected finding.
498
+ */
499
+ readonly folded: v.NumberSchema<undefined>;
500
+ /**
501
+ * Whether the summary comment posted on THIS pass; null when this pass had no body to send.
502
+ *
503
+ * Null has two causes and they are opposite facts, so read it beside
504
+ * {@link publicPrReviewDecisionSchema}'s `postedBody`: with that flag true the summary landed on
505
+ * an earlier pass and was deliberately suppressed here (the body's at-most-once guard), with it
506
+ * false the review never had a summary to post at all.
507
+ */
508
+ readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
509
+ /** The error posting the summary comment, when it failed. */
510
+ readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
511
+ /**
512
+ * Per-finding inline-comment failures, in the order attempted.
513
+ *
514
+ * Every `findingId` here resolves against the same decision's `findings`: dismissing a finding
515
+ * prunes its failure row along with it, so this never names a finding a caller can no longer
516
+ * see. The count can therefore be smaller than `attempted - posted`, which stays the tally of
517
+ * the pass as it ran.
518
+ */
519
+ readonly failures: v.ArraySchema<v.ObjectSchema<{
520
+ /** The finding whose comment failed. */
521
+ readonly findingId: v.StringSchema<undefined>;
522
+ /** The path the comment anchored to. */
523
+ readonly path: v.StringSchema<undefined>;
524
+ /** The line the comment anchored to, when it had one. */
525
+ readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
526
+ /** The provider's own error, verbatim. Treat it as data. */
527
+ readonly reason: v.StringSchema<undefined>;
528
+ }, undefined>, undefined>;
529
+ /**
530
+ * Which `post` pass this report describes, counting from 1; null on a report recorded before
531
+ * the pass was numbered.
532
+ *
533
+ * Compare it to the decision's `postAttempts` to tell a report of YOUR retry from the one the
534
+ * pass before it left: a retry that fails identically produces the same counts and the same
535
+ * failures, so without the number a caller polling on an interval that misses the brief
536
+ * `posting` window cannot tell "the retry ran and failed the same way" from "the retry has not
537
+ * started yet".
538
+ */
539
+ readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
540
+ }, undefined>;
541
+ export type PublicPrReviewPostReport = v.InferOutput<typeof publicPrReviewPostReportSchema>;
457
542
  /**
458
543
  * A parked PR DEEP REVIEW as exposed externally: the read-only reviewer sliced an open pull
459
544
  * request and the run is waiting for a person to CURATE which findings matter, then say what to
@@ -516,8 +601,130 @@ export declare const publicPrReviewDecisionSchema: v.ObjectSchema<{
516
601
  }, undefined>, undefined>;
517
602
  /** The finding ids currently selected to act on (empty until a caller curates). */
518
603
  readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
604
+ /**
605
+ * What the most recent `post` resolution did, or null when none has run. See
606
+ * {@link publicPrReviewPostReportSchema}: this is how a re-parked review says whether it is
607
+ * parked because nobody has curated it yet, or because the comments failed to land.
608
+ *
609
+ * Readable while the review is LIVE, which is every state except a settled one. A post where
610
+ * every comment landed settles the review, so its report is the one a caller cannot read here:
611
+ * the decision leaves the list with the loop it belongs to. What that pass did to the pull
612
+ * request is recorded as the step's `output` on `GET /api/v1/tasks/{taskId}/run`, folded
613
+ * findings and their reason included, so the fact is on this API even where the structured
614
+ * report is not.
615
+ */
616
+ readonly postReport: v.NullableSchema<v.ObjectSchema<{
617
+ /** Inline comments attempted this pass: the selected findings with an in-diff line to anchor to. */
618
+ readonly attempted: v.NumberSchema<undefined>;
619
+ /** How many of those the provider accepted. */
620
+ readonly posted: v.NumberSchema<undefined>;
621
+ /**
622
+ * Findings that HAD a line but were folded into the summary comment instead, because that line
623
+ * falls outside the PR diff (nothing to anchor an inline comment to) or because the branch moved
624
+ * after the review started, so the frozen line numbers can no longer be trusted. A finding that
625
+ * never had a line is summarised too but is NOT counted here: it could never have been an inline
626
+ * comment. `attempted` + `folded` therefore counts the findings that carried a line, not every
627
+ * selected finding.
628
+ */
629
+ readonly folded: v.NumberSchema<undefined>;
630
+ /**
631
+ * Whether the summary comment posted on THIS pass; null when this pass had no body to send.
632
+ *
633
+ * Null has two causes and they are opposite facts, so read it beside
634
+ * {@link publicPrReviewDecisionSchema}'s `postedBody`: with that flag true the summary landed on
635
+ * an earlier pass and was deliberately suppressed here (the body's at-most-once guard), with it
636
+ * false the review never had a summary to post at all.
637
+ */
638
+ readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
639
+ /** The error posting the summary comment, when it failed. */
640
+ readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
641
+ /**
642
+ * Per-finding inline-comment failures, in the order attempted.
643
+ *
644
+ * Every `findingId` here resolves against the same decision's `findings`: dismissing a finding
645
+ * prunes its failure row along with it, so this never names a finding a caller can no longer
646
+ * see. The count can therefore be smaller than `attempted - posted`, which stays the tally of
647
+ * the pass as it ran.
648
+ */
649
+ readonly failures: v.ArraySchema<v.ObjectSchema<{
650
+ /** The finding whose comment failed. */
651
+ readonly findingId: v.StringSchema<undefined>;
652
+ /** The path the comment anchored to. */
653
+ readonly path: v.StringSchema<undefined>;
654
+ /** The line the comment anchored to, when it had one. */
655
+ readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
656
+ /** The provider's own error, verbatim. Treat it as data. */
657
+ readonly reason: v.StringSchema<undefined>;
658
+ }, undefined>, undefined>;
659
+ /**
660
+ * Which `post` pass this report describes, counting from 1; null on a report recorded before
661
+ * the pass was numbered.
662
+ *
663
+ * Compare it to the decision's `postAttempts` to tell a report of YOUR retry from the one the
664
+ * pass before it left: a retry that fails identically produces the same counts and the same
665
+ * failures, so without the number a caller polling on an interval that misses the brief
666
+ * `posting` window cannot tell "the retry ran and failed the same way" from "the retry has not
667
+ * started yet".
668
+ */
669
+ readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
670
+ }, undefined>, undefined>;
671
+ /**
672
+ * The findings whose inline comment has already landed on the pull request. A re-`post` skips
673
+ * them, so retrying after a partial failure never double-comments. Empty until a `post` runs.
674
+ */
675
+ readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
676
+ /**
677
+ * Whether the summary comment has landed on the pull request, on this pass or an earlier one.
678
+ * The body's counterpart of {@link postedFindingIds}: sticky once true, and what a retry
679
+ * suppresses so the summary conversation comment is never duplicated.
680
+ */
681
+ readonly postedBody: v.BooleanSchema<undefined>;
682
+ /**
683
+ * How many `post` resolutions have been requested on this review, the one in flight included.
684
+ * Zero until the first. Read it against `postReport.attempt` to know whether the report in hand
685
+ * describes the pass you asked for.
686
+ */
687
+ readonly postAttempts: v.NumberSchema<undefined>;
688
+ /**
689
+ * How many times this review has been RESUMED, and the ceiling this API enforces
690
+ * ({@link PUBLIC_PR_REVIEW_MAX_RESUME_ATTEMPTS}). Equal counts mean the resume route will answer
691
+ * `409`: this pair is what a caller checks before spending a call, which is why the refusal
692
+ * carries no reason code of its own.
693
+ */
694
+ readonly resumeAttempts: v.NumberSchema<undefined>;
695
+ readonly maxResumeAttempts: v.NumberSchema<undefined>;
696
+ /**
697
+ * How many of the review's slices have reported so far. Read against `slices.length` while the
698
+ * status is `reviewing`: equal counts mean every slice is in and the reviewer is on its final
699
+ * aggregation turn, which is the phase a resume exists for.
700
+ */
701
+ readonly reportedSlices: v.NumberSchema<undefined>;
702
+ /**
703
+ * Epoch ms of the last activity the reviewer's job reported, or null when it has reported none.
704
+ *
705
+ * The evidence a headless caller needs before spending a resume, and it is deliberately not a
706
+ * staleness VERDICT: the heartbeat freezes on a long silent turn, so nothing on either side of
707
+ * this API can tell a wedged reviewer from a quiet-but-working one. What it can do is stop a
708
+ * poller resuming on a bare timer, which kills a container that may be seconds from returning.
709
+ */
710
+ readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
519
711
  }, undefined>;
520
712
  export type PublicPrReviewDecision = v.InferOutput<typeof publicPrReviewDecisionSchema>;
713
+ /**
714
+ * How many times `POST /api/v1/runs/{runId}/decisions/pr-review/resume` will re-dispatch one
715
+ * review before it refuses.
716
+ *
717
+ * A resume STOPS the running reviewer and starts a fresh container, so an uncapped one is an
718
+ * unbounded spend on a run nobody is watching: a poller resuming every ten minutes on a review
719
+ * that legitimately takes twenty kills it, forever, each time it is about to finish. Every other
720
+ * loop the engine runs is bounded (`ciMaxAttempts`, the human-test fix budget, an interview's
721
+ * `maxRounds`) and this is that rule applied to the one loop a KEY drives.
722
+ *
723
+ * The ceiling binds this API, not the app: a person clicking Resume in the review window is
724
+ * watching what they nudged, which is the judgement a headless caller cannot supply. `slices`,
725
+ * `reportedSlices` and `lastActivityAt` on the decision are what it reads instead.
726
+ */
727
+ export declare const PUBLIC_PR_REVIEW_MAX_RESUME_ATTEMPTS = 3;
521
728
  /** The ephemeral environment a `human-test` gate parked against, as exposed externally. */
522
729
  export declare const publicHumanTestEnvironmentSchema: v.ObjectSchema<{
523
730
  /** The public URL to test against; null while still provisioning. */
@@ -1039,6 +1246,113 @@ export declare const publicDecisionSchema: v.VariantSchema<"kind", [v.ObjectSche
1039
1246
  }, undefined>, undefined>;
1040
1247
  /** The finding ids currently selected to act on (empty until a caller curates). */
1041
1248
  readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
1249
+ /**
1250
+ * What the most recent `post` resolution did, or null when none has run. See
1251
+ * {@link publicPrReviewPostReportSchema}: this is how a re-parked review says whether it is
1252
+ * parked because nobody has curated it yet, or because the comments failed to land.
1253
+ *
1254
+ * Readable while the review is LIVE, which is every state except a settled one. A post where
1255
+ * every comment landed settles the review, so its report is the one a caller cannot read here:
1256
+ * the decision leaves the list with the loop it belongs to. What that pass did to the pull
1257
+ * request is recorded as the step's `output` on `GET /api/v1/tasks/{taskId}/run`, folded
1258
+ * findings and their reason included, so the fact is on this API even where the structured
1259
+ * report is not.
1260
+ */
1261
+ readonly postReport: v.NullableSchema<v.ObjectSchema<{
1262
+ /** Inline comments attempted this pass: the selected findings with an in-diff line to anchor to. */
1263
+ readonly attempted: v.NumberSchema<undefined>;
1264
+ /** How many of those the provider accepted. */
1265
+ readonly posted: v.NumberSchema<undefined>;
1266
+ /**
1267
+ * Findings that HAD a line but were folded into the summary comment instead, because that line
1268
+ * falls outside the PR diff (nothing to anchor an inline comment to) or because the branch moved
1269
+ * after the review started, so the frozen line numbers can no longer be trusted. A finding that
1270
+ * never had a line is summarised too but is NOT counted here: it could never have been an inline
1271
+ * comment. `attempted` + `folded` therefore counts the findings that carried a line, not every
1272
+ * selected finding.
1273
+ */
1274
+ readonly folded: v.NumberSchema<undefined>;
1275
+ /**
1276
+ * Whether the summary comment posted on THIS pass; null when this pass had no body to send.
1277
+ *
1278
+ * Null has two causes and they are opposite facts, so read it beside
1279
+ * {@link publicPrReviewDecisionSchema}'s `postedBody`: with that flag true the summary landed on
1280
+ * an earlier pass and was deliberately suppressed here (the body's at-most-once guard), with it
1281
+ * false the review never had a summary to post at all.
1282
+ */
1283
+ readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
1284
+ /** The error posting the summary comment, when it failed. */
1285
+ readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
1286
+ /**
1287
+ * Per-finding inline-comment failures, in the order attempted.
1288
+ *
1289
+ * Every `findingId` here resolves against the same decision's `findings`: dismissing a finding
1290
+ * prunes its failure row along with it, so this never names a finding a caller can no longer
1291
+ * see. The count can therefore be smaller than `attempted - posted`, which stays the tally of
1292
+ * the pass as it ran.
1293
+ */
1294
+ readonly failures: v.ArraySchema<v.ObjectSchema<{
1295
+ /** The finding whose comment failed. */
1296
+ readonly findingId: v.StringSchema<undefined>;
1297
+ /** The path the comment anchored to. */
1298
+ readonly path: v.StringSchema<undefined>;
1299
+ /** The line the comment anchored to, when it had one. */
1300
+ readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
1301
+ /** The provider's own error, verbatim. Treat it as data. */
1302
+ readonly reason: v.StringSchema<undefined>;
1303
+ }, undefined>, undefined>;
1304
+ /**
1305
+ * Which `post` pass this report describes, counting from 1; null on a report recorded before
1306
+ * the pass was numbered.
1307
+ *
1308
+ * Compare it to the decision's `postAttempts` to tell a report of YOUR retry from the one the
1309
+ * pass before it left: a retry that fails identically produces the same counts and the same
1310
+ * failures, so without the number a caller polling on an interval that misses the brief
1311
+ * `posting` window cannot tell "the retry ran and failed the same way" from "the retry has not
1312
+ * started yet".
1313
+ */
1314
+ readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
1315
+ }, undefined>, undefined>;
1316
+ /**
1317
+ * The findings whose inline comment has already landed on the pull request. A re-`post` skips
1318
+ * them, so retrying after a partial failure never double-comments. Empty until a `post` runs.
1319
+ */
1320
+ readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
1321
+ /**
1322
+ * Whether the summary comment has landed on the pull request, on this pass or an earlier one.
1323
+ * The body's counterpart of {@link postedFindingIds}: sticky once true, and what a retry
1324
+ * suppresses so the summary conversation comment is never duplicated.
1325
+ */
1326
+ readonly postedBody: v.BooleanSchema<undefined>;
1327
+ /**
1328
+ * How many `post` resolutions have been requested on this review, the one in flight included.
1329
+ * Zero until the first. Read it against `postReport.attempt` to know whether the report in hand
1330
+ * describes the pass you asked for.
1331
+ */
1332
+ readonly postAttempts: v.NumberSchema<undefined>;
1333
+ /**
1334
+ * How many times this review has been RESUMED, and the ceiling this API enforces
1335
+ * ({@link PUBLIC_PR_REVIEW_MAX_RESUME_ATTEMPTS}). Equal counts mean the resume route will answer
1336
+ * `409`: this pair is what a caller checks before spending a call, which is why the refusal
1337
+ * carries no reason code of its own.
1338
+ */
1339
+ readonly resumeAttempts: v.NumberSchema<undefined>;
1340
+ readonly maxResumeAttempts: v.NumberSchema<undefined>;
1341
+ /**
1342
+ * How many of the review's slices have reported so far. Read against `slices.length` while the
1343
+ * status is `reviewing`: equal counts mean every slice is in and the reviewer is on its final
1344
+ * aggregation turn, which is the phase a resume exists for.
1345
+ */
1346
+ readonly reportedSlices: v.NumberSchema<undefined>;
1347
+ /**
1348
+ * Epoch ms of the last activity the reviewer's job reported, or null when it has reported none.
1349
+ *
1350
+ * The evidence a headless caller needs before spending a resume, and it is deliberately not a
1351
+ * staleness VERDICT: the heartbeat freezes on a long silent turn, so nothing on either side of
1352
+ * this API can tell a wedged reviewer from a quiet-but-working one. What it can do is stop a
1353
+ * poller resuming on a bare timer, which kills a container that may be seconds from returning.
1354
+ */
1355
+ readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
1042
1356
  }, undefined>, v.ObjectSchema<{
1043
1357
  readonly kind: v.LiteralSchema<"human-test", undefined>;
1044
1358
  /** Only `awaiting_human` accepts an answer; the others report work in flight. */
@@ -1148,6 +1462,14 @@ export type PublicDecision = v.InferOutput<typeof publicDecisionSchema>;
1148
1462
  * - `unwired_interview_gate` — an interviewer this deployment REGISTERED as an agent kind but
1149
1463
  * never wired a controller for. The run is genuinely parked on its questions and no surface,
1150
1464
  * here or in the app, can read them; the fix belongs to the operator, not the caller.
1465
+ * - `curation_gate`: a step that CURATES (a `curation-gate` kind: the bug-fishing expedition, a
1466
+ * deployment's own) parked so a person can mark which of the things it found are worth acting
1467
+ * on, and this API has no route that marks one. The PR deep review carries the same trait and
1468
+ * is NOT reported here, because its curation IS answerable (`kind: 'pr-review'`), which is the
1469
+ * whole distinction: what a caller must be able to do differs per curating kind, so one shared
1470
+ * label would promise an answer path for whichever one it did not mean. The step's approval
1471
+ * gate can still be resolved to END the run, and that is worth knowing rather than a
1472
+ * contradiction: ending an expedition discards what it caught, so it is an exit, not an answer.
1151
1473
  *
1152
1474
  * Every member is a wait that is BOTH live and beyond this surface, and both halves are load-
1153
1475
  * bearing. A run that has finished (`done` / `failed`, the stop included) lists nothing at all: its
@@ -1157,11 +1479,11 @@ export type PublicDecision = v.InferOutput<typeof publicDecisionSchema>;
1157
1479
  * `decisions[]` entry, so naming it here too would send a caller looking for an answer they were
1158
1480
  * just handed.
1159
1481
  */
1160
- export declare const publicUnanswerableReasonSchema: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
1482
+ export declare const publicUnanswerableReasonSchema: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
1161
1483
  export type PublicUnanswerableReason = v.InferOutput<typeof publicUnanswerableReasonSchema>;
1162
1484
  /** One wait holding a run that `/api/v1/runs/:runId/decisions` cannot answer. */
1163
1485
  export declare const publicUnanswerableWaitSchema: v.ObjectSchema<{
1164
- readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
1486
+ readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
1165
1487
  /** The step kind holding the run: the gate's kind, or the interviewer's agent kind. */
1166
1488
  readonly stepKind: v.StringSchema<undefined>;
1167
1489
  /** Its index in the run's step chain, so a caller can line it up with `publicRun.steps`. */
@@ -1473,6 +1795,113 @@ export declare const publicDecisionListSchema: v.ObjectSchema<{
1473
1795
  }, undefined>, undefined>;
1474
1796
  /** The finding ids currently selected to act on (empty until a caller curates). */
1475
1797
  readonly selectedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
1798
+ /**
1799
+ * What the most recent `post` resolution did, or null when none has run. See
1800
+ * {@link publicPrReviewPostReportSchema}: this is how a re-parked review says whether it is
1801
+ * parked because nobody has curated it yet, or because the comments failed to land.
1802
+ *
1803
+ * Readable while the review is LIVE, which is every state except a settled one. A post where
1804
+ * every comment landed settles the review, so its report is the one a caller cannot read here:
1805
+ * the decision leaves the list with the loop it belongs to. What that pass did to the pull
1806
+ * request is recorded as the step's `output` on `GET /api/v1/tasks/{taskId}/run`, folded
1807
+ * findings and their reason included, so the fact is on this API even where the structured
1808
+ * report is not.
1809
+ */
1810
+ readonly postReport: v.NullableSchema<v.ObjectSchema<{
1811
+ /** Inline comments attempted this pass: the selected findings with an in-diff line to anchor to. */
1812
+ readonly attempted: v.NumberSchema<undefined>;
1813
+ /** How many of those the provider accepted. */
1814
+ readonly posted: v.NumberSchema<undefined>;
1815
+ /**
1816
+ * Findings that HAD a line but were folded into the summary comment instead, because that line
1817
+ * falls outside the PR diff (nothing to anchor an inline comment to) or because the branch moved
1818
+ * after the review started, so the frozen line numbers can no longer be trusted. A finding that
1819
+ * never had a line is summarised too but is NOT counted here: it could never have been an inline
1820
+ * comment. `attempted` + `folded` therefore counts the findings that carried a line, not every
1821
+ * selected finding.
1822
+ */
1823
+ readonly folded: v.NumberSchema<undefined>;
1824
+ /**
1825
+ * Whether the summary comment posted on THIS pass; null when this pass had no body to send.
1826
+ *
1827
+ * Null has two causes and they are opposite facts, so read it beside
1828
+ * {@link publicPrReviewDecisionSchema}'s `postedBody`: with that flag true the summary landed on
1829
+ * an earlier pass and was deliberately suppressed here (the body's at-most-once guard), with it
1830
+ * false the review never had a summary to post at all.
1831
+ */
1832
+ readonly bodyPosted: v.NullableSchema<v.BooleanSchema<undefined>, undefined>;
1833
+ /** The error posting the summary comment, when it failed. */
1834
+ readonly bodyError: v.NullableSchema<v.StringSchema<undefined>, undefined>;
1835
+ /**
1836
+ * Per-finding inline-comment failures, in the order attempted.
1837
+ *
1838
+ * Every `findingId` here resolves against the same decision's `findings`: dismissing a finding
1839
+ * prunes its failure row along with it, so this never names a finding a caller can no longer
1840
+ * see. The count can therefore be smaller than `attempted - posted`, which stays the tally of
1841
+ * the pass as it ran.
1842
+ */
1843
+ readonly failures: v.ArraySchema<v.ObjectSchema<{
1844
+ /** The finding whose comment failed. */
1845
+ readonly findingId: v.StringSchema<undefined>;
1846
+ /** The path the comment anchored to. */
1847
+ readonly path: v.StringSchema<undefined>;
1848
+ /** The line the comment anchored to, when it had one. */
1849
+ readonly line: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
1850
+ /** The provider's own error, verbatim. Treat it as data. */
1851
+ readonly reason: v.StringSchema<undefined>;
1852
+ }, undefined>, undefined>;
1853
+ /**
1854
+ * Which `post` pass this report describes, counting from 1; null on a report recorded before
1855
+ * the pass was numbered.
1856
+ *
1857
+ * Compare it to the decision's `postAttempts` to tell a report of YOUR retry from the one the
1858
+ * pass before it left: a retry that fails identically produces the same counts and the same
1859
+ * failures, so without the number a caller polling on an interval that misses the brief
1860
+ * `posting` window cannot tell "the retry ran and failed the same way" from "the retry has not
1861
+ * started yet".
1862
+ */
1863
+ readonly attempt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
1864
+ }, undefined>, undefined>;
1865
+ /**
1866
+ * The findings whose inline comment has already landed on the pull request. A re-`post` skips
1867
+ * them, so retrying after a partial failure never double-comments. Empty until a `post` runs.
1868
+ */
1869
+ readonly postedFindingIds: v.ArraySchema<v.StringSchema<undefined>, undefined>;
1870
+ /**
1871
+ * Whether the summary comment has landed on the pull request, on this pass or an earlier one.
1872
+ * The body's counterpart of {@link postedFindingIds}: sticky once true, and what a retry
1873
+ * suppresses so the summary conversation comment is never duplicated.
1874
+ */
1875
+ readonly postedBody: v.BooleanSchema<undefined>;
1876
+ /**
1877
+ * How many `post` resolutions have been requested on this review, the one in flight included.
1878
+ * Zero until the first. Read it against `postReport.attempt` to know whether the report in hand
1879
+ * describes the pass you asked for.
1880
+ */
1881
+ readonly postAttempts: v.NumberSchema<undefined>;
1882
+ /**
1883
+ * How many times this review has been RESUMED, and the ceiling this API enforces
1884
+ * ({@link PUBLIC_PR_REVIEW_MAX_RESUME_ATTEMPTS}). Equal counts mean the resume route will answer
1885
+ * `409`: this pair is what a caller checks before spending a call, which is why the refusal
1886
+ * carries no reason code of its own.
1887
+ */
1888
+ readonly resumeAttempts: v.NumberSchema<undefined>;
1889
+ readonly maxResumeAttempts: v.NumberSchema<undefined>;
1890
+ /**
1891
+ * How many of the review's slices have reported so far. Read against `slices.length` while the
1892
+ * status is `reviewing`: equal counts mean every slice is in and the reviewer is on its final
1893
+ * aggregation turn, which is the phase a resume exists for.
1894
+ */
1895
+ readonly reportedSlices: v.NumberSchema<undefined>;
1896
+ /**
1897
+ * Epoch ms of the last activity the reviewer's job reported, or null when it has reported none.
1898
+ *
1899
+ * The evidence a headless caller needs before spending a resume, and it is deliberately not a
1900
+ * staleness VERDICT: the heartbeat freezes on a long silent turn, so nothing on either side of
1901
+ * this API can tell a wedged reviewer from a quiet-but-working one. What it can do is stop a
1902
+ * poller resuming on a bare timer, which kills a container that may be seconds from returning.
1903
+ */
1904
+ readonly lastActivityAt: v.NullableSchema<v.NumberSchema<undefined>, undefined>;
1476
1905
  }, undefined>, v.ObjectSchema<{
1477
1906
  readonly kind: v.LiteralSchema<"human-test", undefined>;
1478
1907
  /** Only `awaiting_human` accepts an answer; the others report work in flight. */
@@ -1586,7 +2015,7 @@ export declare const publicDecisionListSchema: v.ObjectSchema<{
1586
2015
  * it here would read as a demand for a human that nobody has to meet.
1587
2016
  */
1588
2017
  readonly unanswerable: v.ArraySchema<v.ObjectSchema<{
1589
- readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate"], undefined>;
2018
+ readonly reason: v.PicklistSchema<["human_wait_gate", "unclassified_gate", "unwired_interview_gate", "curation_gate"], undefined>;
1590
2019
  /** The step kind holding the run: the gate's kind, or the interviewer's agent kind. */
1591
2020
  readonly stepKind: v.StringSchema<undefined>;
1592
2021
  /** Its index in the run's step chain, so a caller can line it up with `publicRun.steps`. */
@@ -1 +1 @@
1
- {"version":3,"file":"public-decisions.d.ts","sourceRoot":"","sources":["../src/public-decisions.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"public-decisions.d.ts","sourceRoot":"","sources":["../src/public-decisions.ts"],"names":[],"mappings":"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"}