@claudexor/schema 3.9.2 → 3.9.5
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/agent-capabilities.d.ts +8 -0
- package/dist/agent-capabilities.d.ts.map +1 -1
- package/dist/agent-capabilities.js +2 -1
- package/dist/agent-capabilities.js.map +1 -1
- package/dist/cancel-reason.d.ts +13 -0
- package/dist/cancel-reason.d.ts.map +1 -0
- package/dist/cancel-reason.js +16 -0
- package/dist/cancel-reason.js.map +1 -0
- package/dist/control-harness-list.d.ts +11 -0
- package/dist/control-harness-list.d.ts.map +1 -1
- package/dist/control-operation-responses.d.ts +7 -7
- package/dist/control-run-detail.d.ts +38 -28
- package/dist/control-run-detail.d.ts.map +1 -1
- package/dist/control-timeline.d.ts +54 -0
- package/dist/control-timeline.d.ts.map +1 -0
- package/dist/control-timeline.js +50 -0
- package/dist/control-timeline.js.map +1 -0
- package/dist/control.d.ts +35 -72
- package/dist/control.d.ts.map +1 -1
- package/dist/control.js +6 -37
- package/dist/control.js.map +1 -1
- package/dist/credential-profile-snapshot.d.ts +22 -0
- package/dist/credential-profile-snapshot.d.ts.map +1 -1
- package/dist/decision.d.ts +9 -9
- package/dist/decision.d.ts.map +1 -1
- package/dist/decision.js +6 -0
- package/dist/decision.js.map +1 -1
- package/dist/harness.d.ts +17 -0
- package/dist/harness.d.ts.map +1 -1
- package/dist/harness.js +7 -0
- package/dist/harness.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp-run-result.d.ts +24 -24
- package/dist/readiness.d.ts +9 -0
- package/dist/readiness.d.ts.map +1 -1
- package/dist/run-facts.d.ts +5 -5
- package/dist/run-facts.d.ts.map +1 -1
- package/dist/run-facts.js +6 -1
- package/dist/run-facts.js.map +1 -1
- package/dist/status-projection.d.ts +6 -3
- package/dist/status-projection.d.ts.map +1 -1
- package/dist/status-projection.js +24 -6
- package/dist/status-projection.js.map +1 -1
- package/dist/telemetry.d.ts +7 -7
- package/generated/AgentCapabilityCatalog.schema.json +10 -0
- package/generated/ControlCredentialProfilesQueryResponse.schema.json +10 -0
- package/generated/ControlCredentialProfilesSnapshotResponse.schema.json +10 -0
- package/generated/ControlHarnessListResponse.schema.json +10 -0
- package/generated/ControlRunControlRequest.schema.json +8 -0
- package/generated/ControlRunDetail.schema.json +24 -1
- package/generated/ControlRunListResponse.schema.json +2 -0
- package/generated/ControlRunSummary.schema.json +2 -0
- package/generated/ControlThreadDetail.schema.json +2 -0
- package/generated/DecisionRecord.schema.json +2 -0
- package/generated/HarnessManifest.schema.json +10 -0
- package/generated/HarnessStatusDto.schema.json +10 -0
- package/generated/McpRunHandleResult.schema.json +2 -0
- package/generated/McpRunToolResult.schema.json +2 -0
- package/generated/RunControl.schema.json +8 -0
- package/generated/RunFacts.schema.json +2 -0
- package/generated/RunTelemetry.schema.json +2 -0
- package/package.json +2 -2
|
@@ -477,7 +477,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
477
477
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
478
478
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
479
479
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
480
|
-
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
480
|
+
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
481
481
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
482
482
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
483
483
|
source: z.ZodEnum<["constrained", "validated", "absent"]>;
|
|
@@ -516,7 +516,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
516
516
|
noChanges: boolean;
|
|
517
517
|
checks: "failed" | "not_configured" | "passed";
|
|
518
518
|
review: "approved" | "blocked" | "not_run";
|
|
519
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
519
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
520
520
|
work_state?: {
|
|
521
521
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
522
522
|
source: "absent" | "constrained" | "validated";
|
|
@@ -531,7 +531,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
531
531
|
noChanges?: boolean | undefined;
|
|
532
532
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
533
533
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
534
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
534
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
535
535
|
work_state?: {
|
|
536
536
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
537
537
|
source: "absent" | "constrained" | "validated";
|
|
@@ -755,7 +755,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
755
755
|
noChanges: boolean;
|
|
756
756
|
checks: "failed" | "not_configured" | "passed";
|
|
757
757
|
review: "approved" | "blocked" | "not_run";
|
|
758
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
758
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
759
759
|
work_state?: {
|
|
760
760
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
761
761
|
source: "absent" | "constrained" | "validated";
|
|
@@ -925,7 +925,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
925
925
|
noChanges?: boolean | undefined;
|
|
926
926
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
927
927
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
928
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
928
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
929
929
|
work_state?: {
|
|
930
930
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
931
931
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1288,7 +1288,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1288
1288
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
1289
1289
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
1290
1290
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
1291
|
-
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
1291
|
+
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
1292
1292
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
1293
1293
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
1294
1294
|
source: z.ZodEnum<["constrained", "validated", "absent"]>;
|
|
@@ -1327,7 +1327,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1327
1327
|
noChanges: boolean;
|
|
1328
1328
|
checks: "failed" | "not_configured" | "passed";
|
|
1329
1329
|
review: "approved" | "blocked" | "not_run";
|
|
1330
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1330
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1331
1331
|
work_state?: {
|
|
1332
1332
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1333
1333
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1342,7 +1342,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1342
1342
|
noChanges?: boolean | undefined;
|
|
1343
1343
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1344
1344
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1345
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1345
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1346
1346
|
work_state?: {
|
|
1347
1347
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1348
1348
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1566,7 +1566,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1566
1566
|
noChanges: boolean;
|
|
1567
1567
|
checks: "failed" | "not_configured" | "passed";
|
|
1568
1568
|
review: "approved" | "blocked" | "not_run";
|
|
1569
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1569
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1570
1570
|
work_state?: {
|
|
1571
1571
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1572
1572
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1736,7 +1736,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1736
1736
|
noChanges?: boolean | undefined;
|
|
1737
1737
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1738
1738
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1739
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1739
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1740
1740
|
work_state?: {
|
|
1741
1741
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1742
1742
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1789,7 +1789,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1789
1789
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
1790
1790
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
1791
1791
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
1792
|
-
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
1792
|
+
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
1793
1793
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
1794
1794
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
1795
1795
|
source: z.ZodEnum<["constrained", "validated", "absent"]>;
|
|
@@ -1828,7 +1828,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1828
1828
|
noChanges: boolean;
|
|
1829
1829
|
checks: "failed" | "not_configured" | "passed";
|
|
1830
1830
|
review: "approved" | "blocked" | "not_run";
|
|
1831
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1831
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
1832
1832
|
work_state?: {
|
|
1833
1833
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1834
1834
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1843,7 +1843,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
1843
1843
|
noChanges?: boolean | undefined;
|
|
1844
1844
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
1845
1845
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
1846
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1846
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
1847
1847
|
work_state?: {
|
|
1848
1848
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
1849
1849
|
source: "absent" | "constrained" | "validated";
|
|
@@ -2026,7 +2026,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2026
2026
|
noChanges: boolean;
|
|
2027
2027
|
checks: "failed" | "not_configured" | "passed";
|
|
2028
2028
|
review: "approved" | "blocked" | "not_run";
|
|
2029
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
2029
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
2030
2030
|
work_state?: {
|
|
2031
2031
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
2032
2032
|
source: "absent" | "constrained" | "validated";
|
|
@@ -2097,7 +2097,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2097
2097
|
noChanges?: boolean | undefined;
|
|
2098
2098
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
2099
2099
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
2100
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
2100
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
2101
2101
|
work_state?: {
|
|
2102
2102
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
2103
2103
|
source: "absent" | "constrained" | "validated";
|
|
@@ -2215,6 +2215,8 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2215
2215
|
attemptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2216
2216
|
title: z.ZodString;
|
|
2217
2217
|
detail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2218
|
+
textKind: z.ZodDefault<z.ZodNullable<z.ZodEnum<["thinking", "message"]>>>;
|
|
2219
|
+
textDelta: z.ZodDefault<z.ZodBoolean>;
|
|
2218
2220
|
severity: z.ZodDefault<z.ZodEnum<["info", "warning", "error"]>>;
|
|
2219
2221
|
toolName: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
2220
2222
|
target: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
@@ -2228,6 +2230,8 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2228
2230
|
attemptId: string | null;
|
|
2229
2231
|
title: string;
|
|
2230
2232
|
detail: string | null;
|
|
2233
|
+
textKind: "message" | "thinking" | null;
|
|
2234
|
+
textDelta: boolean;
|
|
2231
2235
|
severity: "error" | "info" | "warning";
|
|
2232
2236
|
toolName: string | null;
|
|
2233
2237
|
target: string | null;
|
|
@@ -2241,6 +2245,8 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2241
2245
|
attemptId?: string | null | undefined;
|
|
2242
2246
|
title: string;
|
|
2243
2247
|
detail?: string | null | undefined;
|
|
2248
|
+
textKind?: "message" | "thinking" | null | undefined;
|
|
2249
|
+
textDelta?: boolean | undefined;
|
|
2244
2250
|
severity?: "error" | "info" | "warning" | undefined;
|
|
2245
2251
|
toolName?: string | null | undefined;
|
|
2246
2252
|
target?: string | null | undefined;
|
|
@@ -2309,7 +2315,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2309
2315
|
noChanges: z.ZodDefault<z.ZodBoolean>;
|
|
2310
2316
|
checks: z.ZodDefault<z.ZodEnum<["passed", "failed", "not_configured"]>>;
|
|
2311
2317
|
review: z.ZodDefault<z.ZodEnum<["approved", "blocked", "not_run"]>>;
|
|
2312
|
-
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
2318
|
+
reason: z.ZodDefault<z.ZodNullable<z.ZodEnum<["harness_failed", "no_changes", "review_blocked", "checks_failed", "budget_exhausted", "budget_overshoot", "cost_unverifiable", "not_converged", "stuck_no_progress", "wall_clock_exceeded", "user_cancelled", "host_cancelled", "owner_task_gone", "crash_interrupted", "workspace_unavailable", "input_required", "work_incomplete", "context_capacity_exhausted", "work_report_contract"]>>>;
|
|
2313
2319
|
work_state: z.ZodOptional<z.ZodObject<{
|
|
2314
2320
|
state: z.ZodEnum<["completed", "needs_input", "incomplete", "unverified"]>;
|
|
2315
2321
|
source: z.ZodEnum<["constrained", "validated", "absent"]>;
|
|
@@ -2348,7 +2354,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2348
2354
|
noChanges: boolean;
|
|
2349
2355
|
checks: "failed" | "not_configured" | "passed";
|
|
2350
2356
|
review: "approved" | "blocked" | "not_run";
|
|
2351
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
2357
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
2352
2358
|
work_state?: {
|
|
2353
2359
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
2354
2360
|
source: "absent" | "constrained" | "validated";
|
|
@@ -2363,7 +2369,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2363
2369
|
noChanges?: boolean | undefined;
|
|
2364
2370
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
2365
2371
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
2366
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
2372
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
2367
2373
|
work_state?: {
|
|
2368
2374
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
2369
2375
|
source: "absent" | "constrained" | "validated";
|
|
@@ -2475,7 +2481,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2475
2481
|
noChanges: boolean;
|
|
2476
2482
|
checks: "failed" | "not_configured" | "passed";
|
|
2477
2483
|
review: "approved" | "blocked" | "not_run";
|
|
2478
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
2484
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
2479
2485
|
work_state?: {
|
|
2480
2486
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
2481
2487
|
source: "absent" | "constrained" | "validated";
|
|
@@ -2531,7 +2537,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
2531
2537
|
noChanges?: boolean | undefined;
|
|
2532
2538
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
2533
2539
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
2534
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
2540
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
2535
2541
|
work_state?: {
|
|
2536
2542
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
2537
2543
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3289,7 +3295,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3289
3295
|
noChanges: boolean;
|
|
3290
3296
|
checks: "failed" | "not_configured" | "passed";
|
|
3291
3297
|
review: "approved" | "blocked" | "not_run";
|
|
3292
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3298
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3293
3299
|
work_state?: {
|
|
3294
3300
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3295
3301
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3460,7 +3466,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3460
3466
|
noChanges: boolean;
|
|
3461
3467
|
checks: "failed" | "not_configured" | "passed";
|
|
3462
3468
|
review: "approved" | "blocked" | "not_run";
|
|
3463
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3469
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3464
3470
|
work_state?: {
|
|
3465
3471
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3466
3472
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3511,7 +3517,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3511
3517
|
noChanges: boolean;
|
|
3512
3518
|
checks: "failed" | "not_configured" | "passed";
|
|
3513
3519
|
review: "approved" | "blocked" | "not_run";
|
|
3514
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3520
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3515
3521
|
work_state?: {
|
|
3516
3522
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3517
3523
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3595,6 +3601,8 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3595
3601
|
attemptId: string | null;
|
|
3596
3602
|
title: string;
|
|
3597
3603
|
detail: string | null;
|
|
3604
|
+
textKind: "message" | "thinking" | null;
|
|
3605
|
+
textDelta: boolean;
|
|
3598
3606
|
severity: "error" | "info" | "warning";
|
|
3599
3607
|
toolName: string | null;
|
|
3600
3608
|
target: string | null;
|
|
@@ -3625,7 +3633,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3625
3633
|
noChanges: boolean;
|
|
3626
3634
|
checks: "failed" | "not_configured" | "passed";
|
|
3627
3635
|
review: "approved" | "blocked" | "not_run";
|
|
3628
|
-
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3636
|
+
reason: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null;
|
|
3629
3637
|
work_state?: {
|
|
3630
3638
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3631
3639
|
source: "absent" | "constrained" | "validated";
|
|
@@ -3954,7 +3962,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
3954
3962
|
noChanges?: boolean | undefined;
|
|
3955
3963
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
3956
3964
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
3957
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3965
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
3958
3966
|
work_state?: {
|
|
3959
3967
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
3960
3968
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4125,7 +4133,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4125
4133
|
noChanges?: boolean | undefined;
|
|
4126
4134
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4127
4135
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4128
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4136
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4129
4137
|
work_state?: {
|
|
4130
4138
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4131
4139
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4176,7 +4184,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4176
4184
|
noChanges?: boolean | undefined;
|
|
4177
4185
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4178
4186
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4179
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4187
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4180
4188
|
work_state?: {
|
|
4181
4189
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4182
4190
|
source: "absent" | "constrained" | "validated";
|
|
@@ -4260,6 +4268,8 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4260
4268
|
attemptId?: string | null | undefined;
|
|
4261
4269
|
title: string;
|
|
4262
4270
|
detail?: string | null | undefined;
|
|
4271
|
+
textKind?: "message" | "thinking" | null | undefined;
|
|
4272
|
+
textDelta?: boolean | undefined;
|
|
4263
4273
|
severity?: "error" | "info" | "warning" | undefined;
|
|
4264
4274
|
toolName?: string | null | undefined;
|
|
4265
4275
|
target?: string | null | undefined;
|
|
@@ -4290,7 +4300,7 @@ export declare const ControlRunDetail: z.ZodObject<{
|
|
|
4290
4300
|
noChanges?: boolean | undefined;
|
|
4291
4301
|
checks?: "failed" | "not_configured" | "passed" | undefined;
|
|
4292
4302
|
review?: "approved" | "blocked" | "not_run" | undefined;
|
|
4293
|
-
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "input_required" | "no_changes" | "not_converged" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4303
|
+
reason?: "budget_exhausted" | "budget_overshoot" | "checks_failed" | "context_capacity_exhausted" | "cost_unverifiable" | "crash_interrupted" | "harness_failed" | "host_cancelled" | "input_required" | "no_changes" | "not_converged" | "owner_task_gone" | "review_blocked" | "stuck_no_progress" | "user_cancelled" | "wall_clock_exceeded" | "work_incomplete" | "work_report_contract" | "workspace_unavailable" | null | undefined;
|
|
4294
4304
|
work_state?: {
|
|
4295
4305
|
state: "completed" | "incomplete" | "needs_input" | "unverified";
|
|
4296
4306
|
source: "absent" | "constrained" | "validated";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"control-run-detail.d.ts","sourceRoot":"","sources":["../src/control-run-detail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAmB3B,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAe4B,CAAC;AAC9D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE;;;kCAGkC;AAClC,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAwBrC,CAAC;AACJ,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEtF;;;gCAGgC;AAChC,eAAO,MAAM,gBAAgB;;;;;;;;;;IAgCzB,0DAA0D;;;;;;;;;;;;;;;;;;IA0B1D;;;;;;;;OAQG;;IAQH;uEACmE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASpE,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUzB;sEACkE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIlE;;;;;;OAMG;;IAQH;;;;OAIG
|
|
1
|
+
{"version":3,"file":"control-run-detail.d.ts","sourceRoot":"","sources":["../src/control-run-detail.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAmB3B,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAe4B,CAAC;AAC9D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE;;;kCAGkC;AAClC,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAwBrC,CAAC;AACJ,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAEtF;;;gCAGgC;AAChC,eAAO,MAAM,gBAAgB;;;;;;;;;;IAgCzB,0DAA0D;;;;;;;;;;;;;;;;;;IA0B1D;;;;;;;;OAQG;;IAQH;uEACmE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASpE,CAAC;AACJ,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUzB;sEACkE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { z } from "zod/v3";
|
|
2
|
+
export declare const ControlTimelineEvent: z.ZodObject<{
|
|
3
|
+
type: z.ZodString;
|
|
4
|
+
ts: z.ZodOptional<z.ZodString>;
|
|
5
|
+
harnessId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
6
|
+
attemptId: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
7
|
+
title: z.ZodString;
|
|
8
|
+
detail: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
9
|
+
textKind: z.ZodDefault<z.ZodNullable<z.ZodEnum<["thinking", "message"]>>>;
|
|
10
|
+
textDelta: z.ZodDefault<z.ZodBoolean>;
|
|
11
|
+
severity: z.ZodDefault<z.ZodEnum<["info", "warning", "error"]>>;
|
|
12
|
+
toolName: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
target: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
errorSummary: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
15
|
+
/** Unsupported per-harness knobs the selected route silently could not honor
|
|
16
|
+
* (INV-105): the engine discloses them on `harness.started`, and this
|
|
17
|
+
* projection carries them so the row can render a visible warning ("max_turns
|
|
18
|
+
* was ignored") instead of an indistinguishable benign start (QA-070). Empty
|
|
19
|
+
* for every event that dropped nothing. */
|
|
20
|
+
ignoredSettings: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
21
|
+
rawRef: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
type: string;
|
|
24
|
+
ts?: string | undefined;
|
|
25
|
+
harnessId: string | null;
|
|
26
|
+
attemptId: string | null;
|
|
27
|
+
title: string;
|
|
28
|
+
detail: string | null;
|
|
29
|
+
textKind: "message" | "thinking" | null;
|
|
30
|
+
textDelta: boolean;
|
|
31
|
+
severity: "error" | "info" | "warning";
|
|
32
|
+
toolName: string | null;
|
|
33
|
+
target: string | null;
|
|
34
|
+
errorSummary: string | null;
|
|
35
|
+
ignoredSettings: string[];
|
|
36
|
+
rawRef: string | null;
|
|
37
|
+
}, {
|
|
38
|
+
type: string;
|
|
39
|
+
ts?: string | undefined;
|
|
40
|
+
harnessId?: string | null | undefined;
|
|
41
|
+
attemptId?: string | null | undefined;
|
|
42
|
+
title: string;
|
|
43
|
+
detail?: string | null | undefined;
|
|
44
|
+
textKind?: "message" | "thinking" | null | undefined;
|
|
45
|
+
textDelta?: boolean | undefined;
|
|
46
|
+
severity?: "error" | "info" | "warning" | undefined;
|
|
47
|
+
toolName?: string | null | undefined;
|
|
48
|
+
target?: string | null | undefined;
|
|
49
|
+
errorSummary?: string | null | undefined;
|
|
50
|
+
ignoredSettings?: string[] | undefined;
|
|
51
|
+
rawRef?: string | null | undefined;
|
|
52
|
+
}>;
|
|
53
|
+
export type ControlTimelineEvent = z.infer<typeof ControlTimelineEvent>;
|
|
54
|
+
//# sourceMappingURL=control-timeline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"control-timeline.d.ts","sourceRoot":"","sources":["../src/control-timeline.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;IAsC7B;;;;+CAI2C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAagB,CAAC;AAChE,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { z } from "zod/v3";
|
|
2
|
+
export const ControlTimelineEvent = z
|
|
3
|
+
.object({
|
|
4
|
+
type: z.string().describe("Run event type."),
|
|
5
|
+
ts: z.string().optional().describe("Event timestamp."),
|
|
6
|
+
harnessId: z.string().nullable().default(null).describe("Harness involved, when any."),
|
|
7
|
+
attemptId: z.string().nullable().default(null).describe("Attempt involved, when any."),
|
|
8
|
+
title: z.string().describe("Human-readable event title."),
|
|
9
|
+
detail: z
|
|
10
|
+
.string()
|
|
11
|
+
.nullable()
|
|
12
|
+
.default(null)
|
|
13
|
+
.describe("Human-readable event detail. For typed harness text, the complete redacted text with original whitespace; title may be abbreviated."),
|
|
14
|
+
textKind: z
|
|
15
|
+
.enum(["thinking", "message"])
|
|
16
|
+
.nullable()
|
|
17
|
+
.default(null)
|
|
18
|
+
.describe("Normalized harness text category; null for non-text or legacy rows. Read text from detail, not the abbreviated title."),
|
|
19
|
+
textDelta: z
|
|
20
|
+
.boolean()
|
|
21
|
+
.default(false)
|
|
22
|
+
.describe("True only for adapter-declared text fragments. Consecutive deltas of the same textKind and attempt may be concatenated verbatim; complete messages and other events remain separate."),
|
|
23
|
+
severity: z
|
|
24
|
+
.enum(["info", "warning", "error"])
|
|
25
|
+
.default("info")
|
|
26
|
+
.describe("Display severity of the event."),
|
|
27
|
+
toolName: z.string().nullable().default(null).describe("Tool name for tool events."),
|
|
28
|
+
target: z.string().nullable().default(null).describe("Redacted tool target for tool events."),
|
|
29
|
+
errorSummary: z
|
|
30
|
+
.string()
|
|
31
|
+
.nullable()
|
|
32
|
+
.default(null)
|
|
33
|
+
.describe("Redacted error detail for error events."),
|
|
34
|
+
/** Unsupported per-harness knobs the selected route silently could not honor
|
|
35
|
+
* (INV-105): the engine discloses them on `harness.started`, and this
|
|
36
|
+
* projection carries them so the row can render a visible warning ("max_turns
|
|
37
|
+
* was ignored") instead of an indistinguishable benign start (QA-070). Empty
|
|
38
|
+
* for every event that dropped nothing. */
|
|
39
|
+
ignoredSettings: z
|
|
40
|
+
.array(z.string())
|
|
41
|
+
.default([])
|
|
42
|
+
.describe("Unsupported per-harness knobs the route could not honor (INV-105), disclosed on harness.started; empty when nothing was dropped (QA-070)."),
|
|
43
|
+
rawRef: z
|
|
44
|
+
.string()
|
|
45
|
+
.nullable()
|
|
46
|
+
.default(null)
|
|
47
|
+
.describe("Reference to the raw underlying event/artifact."),
|
|
48
|
+
})
|
|
49
|
+
.describe("One projected timeline row of a run for display.");
|
|
50
|
+
//# sourceMappingURL=control-timeline.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"control-timeline.js","sourceRoot":"","sources":["../src/control-timeline.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC;KAClC,MAAM,CAAC;IACN,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC;IAC5C,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IACtD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,6BAA6B,CAAC;IACtF,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,6BAA6B,CAAC;IACtF,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,6BAA6B,CAAC;IACzD,MAAM,EAAE,CAAC;SACN,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CACP,qIAAqI,CACtI;IACH,QAAQ,EAAE,CAAC;SACR,IAAI,CAAC,CAAC,UAAU,EAAE,SAAS,CAAC,CAAC;SAC7B,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CACP,uHAAuH,CACxH;IACH,SAAS,EAAE,CAAC;SACT,OAAO,EAAE;SACT,OAAO,CAAC,KAAK,CAAC;SACd,QAAQ,CACP,sLAAsL,CACvL;IACH,QAAQ,EAAE,CAAC;SACR,IAAI,CAAC,CAAC,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC,CAAC;SAClC,OAAO,CAAC,MAAM,CAAC;SACf,QAAQ,CAAC,gCAAgC,CAAC;IAC7C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,4BAA4B,CAAC;IACpF,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,uCAAuC,CAAC;IAC7F,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CAAC,yCAAyC,CAAC;IACtD;;;;+CAI2C;IAC3C,eAAe,EAAE,CAAC;SACf,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CACP,2IAA2I,CAC5I;IACH,MAAM,EAAE,CAAC;SACN,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,OAAO,CAAC,IAAI,CAAC;SACb,QAAQ,CAAC,iDAAiD,CAAC;CAC/D,CAAC;KACD,QAAQ,CAAC,kDAAkD,CAAC,CAAC"}
|