qontinui-types 0.6.0

Canonical DTO types for Qontinui. Rust is the source of truth; TypeScript and Python are generated from JSON Schema emitted by schemars.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
//! Task-run DTO types.
//!
//! Wire-format types for task runs: local execution records (runner-side),
//! backend/API representations (web-side), session and finding entities,
//! create/update request payloads, filters, and verification result responses.
//!
//! Ported from `qontinui-schemas/ts/src/task-run/_api.ts`. Rust is the
//! source of truth; JSON Schema emitted from these types drives the TS and
//! Python bindings.
//!
//! ## Conventions
//!
//! - Optional TS fields (`?`) map to `Option<T>` with
//!   `#[serde(default, skip_serializing_if = "Option::is_none")]`.
//! - Required-nullable TS fields (`T | null`) map to `Option<T>` with
//!   `#[serde(default)]` but **without** `skip_serializing_if` — the wire
//!   always includes the key (as `null` when absent); serde treats missing
//!   and `null` identically on deserialize.
//! - Timestamps are ISO 8601 `String`s (see crate docs).
//! - Counts and indices are `u32`. Millisecond durations are `u64`. Second
//!   durations are `i64` to preserve a sentinel range if ever needed.
//! - `Record<string, number>` ↔ `HashMap<String, u32>`.
//! - Free-form step-config index signatures use
//!   `HashMap<String, serde_json::Value>` on a `#[serde(flatten)]` `extra` field.

use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::collections::HashMap;

// ============================================================================
// Status Types
// ============================================================================

/// Lifecycle status of a task run.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum TaskRunStatus {
    /// The task is currently executing.
    Running,
    /// The task finished successfully.
    Complete,
    /// The task finished with an error.
    Failed,
    /// The task was stopped before natural completion.
    Stopped,
}

/// Kind of task being tracked.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum TaskType {
    /// A one-off AI task launched from a prompt.
    Task,
    /// A UI automation task.
    Automation,
    /// A task executed by the scheduler.
    Scheduled,
}

// ============================================================================
// Runner Task Run (local execution)
// ============================================================================

/// A task run as tracked by the local runner during execution.
///
/// Mirrors `TaskRun` in the runner's `taskRun.ts`. Optional fields here use
/// `?` in TypeScript, so they are omitted on the wire when missing.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRun {
    /// Unique identifier (UUID v4 string).
    #[serde(alias = "id")]
    pub id: String,
    /// Display name of the task.
    #[serde(alias = "task_name")]
    pub task_name: String,
    /// Original prompt text, if applicable.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "prompt")]
    pub prompt: Option<String>,
    /// Kind of task (one-off, automation, or scheduled).
    #[serde(alias = "task_type")]
    pub task_type: TaskType,
    /// ID of the workflow config used to run this task, if any.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "config_id")]
    pub config_id: Option<String>,
    /// Name of the workflow used to run this task, if any.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "workflow_name"
    )]
    pub workflow_name: Option<String>,
    /// Current lifecycle status.
    #[serde(alias = "status")]
    pub status: TaskRunStatus,
    /// Number of AI sessions that have been run.
    #[serde(alias = "sessions_count")]
    pub sessions_count: u32,
    /// Optional cap on AI sessions.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "max_sessions"
    )]
    pub max_sessions: Option<u32>,
    /// Whether the task will auto-continue into another session on exit.
    #[serde(alias = "auto_continue")]
    pub auto_continue: bool,
    /// Accumulated output log for the task run.
    #[serde(alias = "output_log")]
    pub output_log: String,
    /// Error message if the task failed.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "error_message"
    )]
    pub error_message: Option<String>,
    /// AI-generated summary of the task run.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "summary")]
    pub summary: Option<String>,
    /// Whether the task's goal was achieved (AI assessment).
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "goal_achieved"
    )]
    pub goal_achieved: Option<bool>,
    /// Description of any remaining work (AI assessment).
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "remaining_work"
    )]
    pub remaining_work: Option<String>,
    /// ISO 8601 timestamp when the summary was generated.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "summary_generated_at"
    )]
    pub summary_generated_at: Option<String>,
    /// ISO 8601 timestamp when the task was created.
    #[serde(alias = "created_at")]
    pub created_at: String,
    /// ISO 8601 timestamp when the task record was last updated.
    #[serde(alias = "updated_at")]
    pub updated_at: String,
    /// ISO 8601 timestamp when the task completed.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "completed_at"
    )]
    pub completed_at: Option<String>,
}

// ============================================================================
// Web Backend Task Run (API responses)
// ============================================================================

/// A task run as returned by the backend API.
///
/// Mirrors `TaskRunBackend` in the web app's `task-runs.ts`. Nullable
/// ownership fields (`project_id`, `created_by_user_id`, `runner_id`,
/// `max_sessions`, `output_summary`, `error_message`, `duration_seconds`,
/// `completed_at`) are required on the wire but may be `null`; they are
/// `Option<T>` with `serde(default)` so deserialize tolerates missing, but
/// are always serialized (including as `null`) to preserve the wire shape.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunBackend {
    /// Unique identifier (UUID v4 string).
    #[serde(alias = "id")]
    pub id: String,
    /// Owning project ID, if scoped to a project.
    #[serde(default, alias = "project_id")]
    pub project_id: Option<String>,
    /// User who created the task run, if known.
    #[serde(default, alias = "created_by_user_id")]
    pub created_by_user_id: Option<String>,
    /// Runner instance that executed the task, if known.
    #[serde(default, alias = "runner_id")]
    pub runner_id: Option<String>,
    /// Display name.
    #[serde(alias = "task_name")]
    pub task_name: String,
    /// Original prompt text.
    #[serde(alias = "prompt")]
    pub prompt: String,
    /// Current lifecycle status.
    #[serde(alias = "status")]
    pub status: TaskRunStatus,
    /// Number of AI sessions that have been run.
    #[serde(alias = "sessions_count")]
    pub sessions_count: u32,
    /// Optional cap on AI sessions.
    #[serde(default, alias = "max_sessions")]
    pub max_sessions: Option<u32>,
    /// Whether the task will auto-continue into another session on exit.
    #[serde(alias = "auto_continue")]
    pub auto_continue: bool,
    /// Short summary of the run output, if stored.
    #[serde(default, alias = "output_summary")]
    pub output_summary: Option<String>,
    /// Whether the full output log was persisted.
    #[serde(alias = "full_output_stored")]
    pub full_output_stored: bool,
    /// Error message if the task failed.
    #[serde(default, alias = "error_message")]
    pub error_message: Option<String>,
    /// Total duration in seconds.
    #[serde(default, alias = "duration_seconds")]
    pub duration_seconds: Option<i64>,
    /// ISO 8601 timestamp when the task was created.
    #[serde(alias = "created_at")]
    pub created_at: String,
    /// ISO 8601 timestamp when the record was last updated.
    #[serde(alias = "updated_at")]
    pub updated_at: String,
    /// ISO 8601 timestamp when the task completed.
    #[serde(default, alias = "completed_at")]
    pub completed_at: Option<String>,
}

// ============================================================================
// Session Types
// ============================================================================

/// A single AI session within a task run.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunSession {
    /// Unique identifier (UUID v4 string).
    #[serde(alias = "id")]
    pub id: String,
    /// Parent task run ID.
    #[serde(alias = "task_id", alias = "task_run_id")]
    pub task_run_id: String,
    /// 1-based session index within the parent task run.
    #[serde(alias = "session_number")]
    pub session_number: u32,
    /// ISO 8601 timestamp when the session started.
    #[serde(alias = "started_at")]
    pub started_at: String,
    /// ISO 8601 timestamp when the session ended.
    #[serde(default, alias = "ended_at")]
    pub ended_at: Option<String>,
    /// Duration of the session in seconds.
    #[serde(default, alias = "duration_seconds")]
    pub duration_seconds: Option<i64>,
    /// Short summary of the session output, if stored.
    #[serde(default, alias = "output_summary")]
    pub output_summary: Option<String>,
}

// ============================================================================
// Finding Types
// ============================================================================

/// Category of a finding surfaced during a task run.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum TaskRunFindingCategory {
    /// A bug in application code.
    CodeBug,
    /// A security issue (e.g., vulnerability, exposed secret).
    Security,
    /// A performance concern.
    Performance,
    /// A TODO or open task.
    Todo,
    /// A proposed enhancement.
    Enhancement,
    /// A configuration issue.
    ConfigIssue,
    /// A test-related issue.
    TestIssue,
    /// A documentation issue.
    Documentation,
    /// A runtime issue observed during execution.
    RuntimeIssue,
    /// An issue that was already fixed.
    AlreadyFixed,
    /// Behavior that looked suspicious but is expected.
    ExpectedBehavior,
    /// A data migration issue.
    DataMigration,
    /// A non-blocking warning.
    Warning,
}

/// Severity of a finding.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum TaskRunFindingSeverity {
    /// Critical severity — blocks release or execution.
    Critical,
    /// High severity.
    High,
    /// Medium severity.
    Medium,
    /// Low severity.
    Low,
    /// Informational only.
    Info,
}

/// Lifecycle status of a finding.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum TaskRunFindingStatus {
    /// Newly detected.
    Detected,
    /// Being worked on.
    InProgress,
    /// Needs user input before it can proceed.
    NeedsInput,
    /// Resolved.
    Resolved,
    /// Acknowledged but won't be fixed.
    WontFix,
    /// Deferred to a later time.
    Deferred,
}

/// How a finding should be acted upon.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum TaskRunFindingActionType {
    /// Can be fixed automatically.
    AutoFix,
    /// Requires user input to proceed.
    NeedsUserInput,
    /// Requires manual intervention.
    Manual,
    /// Informational; no action required.
    Informational,
}

/// A finding surfaced during a task run (bug, enhancement, TODO, etc.).
///
/// All nullable fields here are required-nullable on the wire (always present,
/// possibly `null`), so they use `serde(default)` without `skip_serializing_if`.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunFinding {
    /// Unique identifier (UUID v4 string).
    #[serde(alias = "id")]
    pub id: String,
    /// Parent task run ID.
    #[serde(alias = "task_id", alias = "task_run_id")]
    pub task_run_id: String,
    /// Category (bug, security, performance, etc.).
    #[serde(alias = "category")]
    pub category: TaskRunFindingCategory,
    /// Severity of the finding.
    #[serde(alias = "severity")]
    pub severity: TaskRunFindingSeverity,
    /// Current lifecycle status.
    #[serde(alias = "status")]
    pub status: TaskRunFindingStatus,
    /// How the finding should be acted upon.
    #[serde(alias = "action_type")]
    pub action_type: TaskRunFindingActionType,
    /// Hash used to deduplicate findings across runs.
    #[serde(default, alias = "signature_hash")]
    pub signature_hash: Option<String>,
    /// Short human-readable title.
    #[serde(alias = "title")]
    pub title: String,
    /// Full description.
    #[serde(alias = "description")]
    pub description: String,
    /// How the finding was resolved, if applicable.
    #[serde(default, alias = "resolution")]
    pub resolution: Option<String>,
    /// File path where the issue was found.
    #[serde(default, alias = "file_path")]
    pub file_path: Option<String>,
    /// Line number where the issue was found.
    #[serde(default, alias = "line_number")]
    pub line_number: Option<u32>,
    /// Column number where the issue was found.
    #[serde(default, alias = "column_number")]
    pub column_number: Option<u32>,
    /// Snippet of code illustrating the issue.
    #[serde(default, alias = "code_snippet")]
    pub code_snippet: Option<String>,
    /// Session number in which the finding was detected.
    #[serde(alias = "detected_in_session")]
    pub detected_in_session: u32,
    /// Session number in which the finding was resolved.
    #[serde(default, alias = "resolved_in_session")]
    pub resolved_in_session: Option<u32>,
    /// Whether this finding requires user input.
    #[serde(alias = "needs_input")]
    pub needs_input: bool,
    /// Question posed to the user, if input is needed.
    #[serde(default, alias = "question")]
    pub question: Option<String>,
    /// Suggested response options for the user, if input is needed.
    #[serde(default, alias = "input_options")]
    pub input_options: Option<Vec<String>>,
    /// The user's response, if any.
    #[serde(default, alias = "user_response")]
    pub user_response: Option<String>,
    /// ISO 8601 timestamp when the finding was detected.
    #[serde(alias = "detected_at")]
    pub detected_at: String,
    /// ISO 8601 timestamp when the finding was resolved.
    #[serde(default, alias = "resolved_at")]
    pub resolved_at: Option<String>,
    /// ISO 8601 timestamp when the record was last updated.
    #[serde(alias = "updated_at")]
    pub updated_at: String,
}

/// Response-shape alias for [`TaskRunFinding`].
///
/// The TS source declares `export type TaskRunFindingResponse = TaskRunFinding;`
/// — a transparent alias. Exposing it as a Rust `type` alias keeps downstream
/// code (tests, handlers) referring to the name they expect.
pub type TaskRunFindingResponse = TaskRunFinding;

// ============================================================================
// Detail Types
// ============================================================================

/// Aggregated finding counts grouped along each axis.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunFindingSummary {
    /// Count of findings by category.
    #[serde(alias = "by_category")]
    pub by_category: HashMap<String, u32>,
    /// Count of findings by severity.
    #[serde(alias = "by_severity")]
    pub by_severity: HashMap<String, u32>,
    /// Count of findings by status.
    #[serde(alias = "by_status")]
    pub by_status: HashMap<String, u32>,
    /// Total number of findings.
    #[serde(alias = "total")]
    pub total: u32,
}

/// Detailed view of a backend task run, including its sessions and findings.
///
/// The TypeScript `TaskRunBackendDetail extends TaskRunBackend` is modeled in
/// Rust by flattening a [`TaskRunBackend`] base so the wire shape stays flat.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
pub struct TaskRunBackendDetail {
    /// Base task run record, flattened so its fields appear inline.
    #[serde(flatten)]
    pub base: TaskRunBackend,
    /// AI sessions associated with this task run.
    #[serde(default, alias = "sessions")]
    pub sessions: Vec<TaskRunSession>,
    /// Findings surfaced during this task run.
    #[serde(default, alias = "findings")]
    pub findings: Vec<TaskRunFinding>,
    /// Aggregated counts of findings.
    #[serde(alias = "finding_summary")]
    pub finding_summary: TaskRunFindingSummary,
}

// ============================================================================
// Request / Update Types
// ============================================================================

/// Request payload for creating a task run.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunCreate {
    /// Optional client-generated ID.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "id")]
    pub id: Option<String>,
    /// Optional owning project.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "project_id")]
    pub project_id: Option<String>,
    /// Optional runner that will execute the task.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "runner_id")]
    pub runner_id: Option<String>,
    /// Display name.
    #[serde(alias = "task_name")]
    pub task_name: String,
    /// Prompt text, if applicable.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "prompt")]
    pub prompt: Option<String>,
    /// Optional cap on AI sessions.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "max_sessions"
    )]
    pub max_sessions: Option<u32>,
    /// Whether the task should auto-continue.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "auto_continue"
    )]
    pub auto_continue: Option<bool>,
    /// Task type.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "task_type")]
    pub task_type: Option<TaskType>,
    /// Workflow config ID to use.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "config_id")]
    pub config_id: Option<String>,
    /// Workflow name to use.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "workflow_name"
    )]
    pub workflow_name: Option<String>,
    /// Serialized execution steps, if provided ad-hoc.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "execution_steps_json"
    )]
    pub execution_steps_json: Option<String>,
    /// Serialized log-sources configuration.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "log_sources_json"
    )]
    pub log_sources_json: Option<String>,
}

/// Request payload for updating an existing task run. All fields are optional;
/// only those supplied are applied.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunUpdate {
    /// New lifecycle status.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "status")]
    pub status: Option<TaskRunStatus>,
    /// Updated session count.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "sessions_count"
    )]
    pub sessions_count: Option<u32>,
    /// Updated output summary.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "output_summary"
    )]
    pub output_summary: Option<String>,
    /// Full output log to persist.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "full_output"
    )]
    pub full_output: Option<String>,
    /// Whether the full output log has been stored.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "full_output_stored"
    )]
    pub full_output_stored: Option<bool>,
    /// Error message to attach.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "error_message"
    )]
    pub error_message: Option<String>,
    /// Total duration in seconds.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "duration_seconds"
    )]
    pub duration_seconds: Option<i64>,
    /// ISO 8601 timestamp when the task completed.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "completed_at"
    )]
    pub completed_at: Option<String>,
}

/// Request payload for creating a finding.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunFindingCreate {
    /// Optional client-generated ID.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "id")]
    pub id: Option<String>,
    /// Category.
    #[serde(alias = "category")]
    pub category: TaskRunFindingCategory,
    /// Severity.
    #[serde(alias = "severity")]
    pub severity: TaskRunFindingSeverity,
    /// Initial status (defaults server-side if omitted).
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "status")]
    pub status: Option<TaskRunFindingStatus>,
    /// Action type (defaults server-side if omitted).
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "action_type"
    )]
    pub action_type: Option<TaskRunFindingActionType>,
    /// Deduplication hash.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "signature_hash"
    )]
    pub signature_hash: Option<String>,
    /// Short title.
    #[serde(alias = "title")]
    pub title: String,
    /// Full description.
    #[serde(alias = "description")]
    pub description: String,
    /// Resolution text, if already resolved.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "resolution")]
    pub resolution: Option<String>,
    /// File path where the issue was found.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "file_path")]
    pub file_path: Option<String>,
    /// Line number where the issue was found.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "line_number"
    )]
    pub line_number: Option<u32>,
    /// Column number where the issue was found.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "column_number"
    )]
    pub column_number: Option<u32>,
    /// Snippet of code illustrating the issue.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "code_snippet"
    )]
    pub code_snippet: Option<String>,
    /// Session number in which the finding was detected.
    #[serde(alias = "detected_in_session")]
    pub detected_in_session: u32,
    /// Whether this finding requires user input.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "needs_input"
    )]
    pub needs_input: Option<bool>,
    /// Question to pose to the user, if input is needed.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "question")]
    pub question: Option<String>,
    /// Suggested response options for the user.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "input_options"
    )]
    pub input_options: Option<Vec<String>>,
}

/// Request payload for updating a finding. All fields are optional.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunFindingUpdate {
    /// New lifecycle status.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "status")]
    pub status: Option<TaskRunFindingStatus>,
    /// Resolution text.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "resolution")]
    pub resolution: Option<String>,
    /// Session number in which the finding was resolved.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "resolved_in_session"
    )]
    pub resolved_in_session: Option<u32>,
    /// ISO 8601 timestamp of resolution.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "resolved_at"
    )]
    pub resolved_at: Option<String>,
    /// User response, if the finding needed input.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "user_response"
    )]
    pub user_response: Option<String>,
}

// ============================================================================
// Runner-Specific Request Types
// ============================================================================

/// Inline `data` payload on a [`RunPromptResponse`].
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct RunPromptResponseData {
    /// AI output text.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "output")]
    pub output: Option<String>,
    /// Final response text.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "response")]
    pub response: Option<String>,
}

/// Response from the runner's `run_prompt` endpoint.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct RunPromptResponse {
    /// Whether the prompt was accepted and started successfully.
    #[serde(alias = "success")]
    pub success: bool,
    /// ID of the created task run, if any.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "task_run_id"
    )]
    pub task_run_id: Option<String>,
    /// ID of the created AI session, if any.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "session_id")]
    pub session_id: Option<String>,
    /// Path to the state file tracking the session.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "state_file")]
    pub state_file: Option<String>,
    /// Path to the log file for the session.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "log_file")]
    pub log_file: Option<String>,
    /// OS process ID of the spawned AI session, if any.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "pid")]
    pub pid: Option<u32>,
    /// Error message if the call failed.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "error")]
    pub error: Option<String>,
    /// Immediate output if the call ran synchronously.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "output")]
    pub output: Option<String>,
    /// Structured data payload from a synchronous prompt run.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "data")]
    pub data: Option<RunPromptResponseData>,
}

/// Request body for the runner's `run_prompt` endpoint.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct RunPromptRequest {
    /// Display name for the task.
    #[serde(alias = "name")]
    pub name: String,
    /// Prompt content (the actual text sent to the AI).
    #[serde(alias = "content")]
    pub content: String,
    /// Optional cap on AI sessions.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "max_sessions"
    )]
    pub max_sessions: Option<u32>,
    /// Display-only version of the prompt (shown in the UI).
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "display_prompt"
    )]
    pub display_prompt: Option<String>,
    /// Hard timeout in seconds.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "timeout_seconds"
    )]
    pub timeout_seconds: Option<u64>,
    /// Optional free-form context string appended to the prompt.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "context")]
    pub context: Option<String>,
    /// Attached image paths.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "image_paths"
    )]
    pub image_paths: Option<Vec<String>>,
    /// Attached video paths.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "video_paths"
    )]
    pub video_paths: Option<Vec<String>>,
    /// Optional path to a trace file.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "trace_path")]
    pub trace_path: Option<String>,
    /// Cap on video frames to extract for the prompt.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "max_video_frames"
    )]
    pub max_video_frames: Option<u32>,
    /// Cap on trace screenshots to include.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "max_trace_screenshots"
    )]
    pub max_trace_screenshots: Option<u32>,
}

/// Request body for creating a task run (simplified shape used by the runner's
/// create-task endpoint).
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct CreateTaskRunRequest {
    /// Display name.
    #[serde(alias = "task_name")]
    pub task_name: String,
    /// Prompt text, if applicable.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "prompt")]
    pub prompt: Option<String>,
    /// Task type.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "task_type")]
    pub task_type: Option<TaskType>,
    /// Workflow config ID to use.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "config_id")]
    pub config_id: Option<String>,
    /// Workflow name to use.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "workflow_name"
    )]
    pub workflow_name: Option<String>,
    /// Optional cap on AI sessions.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "max_sessions"
    )]
    pub max_sessions: Option<u32>,
    /// Whether the task should auto-continue.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "auto_continue"
    )]
    pub auto_continue: Option<bool>,
    /// Serialized execution steps, if provided ad-hoc.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "execution_steps_json"
    )]
    pub execution_steps_json: Option<String>,
    /// Serialized log-sources configuration.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "log_sources_json"
    )]
    pub log_sources_json: Option<String>,
}

// ============================================================================
// Filter Types
// ============================================================================

/// Filter parameters for listing task runs.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunFilters {
    /// Restrict to a given project.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "project_id")]
    pub project_id: Option<String>,
    /// Restrict to a given status.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "status")]
    pub status: Option<TaskRunStatus>,
    /// Include only runs after this ISO 8601 timestamp.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "start_date")]
    pub start_date: Option<String>,
    /// Include only runs before this ISO 8601 timestamp.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "end_date")]
    pub end_date: Option<String>,
    /// Pagination offset.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "offset")]
    pub offset: Option<u32>,
    /// Pagination limit.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "limit")]
    pub limit: Option<u32>,
}

/// Filter parameters for listing findings.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunFindingFilters {
    /// Restrict to a given category.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "category")]
    pub category: Option<TaskRunFindingCategory>,
    /// Restrict to a given severity.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "severity")]
    pub severity: Option<TaskRunFindingSeverity>,
    /// Restrict to a given status.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "status")]
    pub status: Option<TaskRunFindingStatus>,
}

// ============================================================================
// Response Types
// ============================================================================

/// Pagination envelope attached to list responses.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct Pagination {
    /// Total number of matching records.
    #[serde(alias = "total")]
    pub total: u32,
    /// Maximum number of records returned per page.
    #[serde(alias = "limit")]
    pub limit: u32,
    /// Offset into the full result set.
    #[serde(alias = "offset")]
    pub offset: u32,
    /// Whether additional records are available after this page.
    #[serde(alias = "has_more")]
    pub has_more: bool,
}

/// Response for `GET /task-runs`.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunListResponse {
    /// Page of matching task runs.
    #[serde(alias = "tasks")]
    pub tasks: Vec<TaskRunBackend>,
    /// Pagination envelope.
    #[serde(alias = "pagination")]
    pub pagination: Pagination,
}

/// Response for `GET /task-runs/{id}/findings`.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct TaskRunFindingsListResponse {
    /// Findings for the task run.
    #[serde(alias = "findings")]
    pub findings: Vec<TaskRunFinding>,
    /// Aggregated counts of findings.
    #[serde(alias = "summary")]
    pub summary: TaskRunFindingSummary,
}

/// Compact findings summary including the most recent findings.
///
/// The TS type `TaskRunFindingResponse` is a type alias for `TaskRunFinding`;
/// in Rust we use `TaskRunFinding` directly.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct FindingsSummary {
    /// Total number of findings.
    #[serde(alias = "total")]
    pub total: u32,
    /// Count by severity.
    #[serde(alias = "by_severity")]
    pub by_severity: HashMap<String, u32>,
    /// Count by category.
    #[serde(alias = "by_category")]
    pub by_category: HashMap<String, u32>,
    /// Count by status.
    #[serde(alias = "by_status")]
    pub by_status: HashMap<String, u32>,
    /// Most recent findings.
    #[serde(alias = "recent")]
    pub recent: Vec<TaskRunFinding>,
}

// ============================================================================
// Verification Result Types
// ============================================================================

/// A specific issue detail from an individual verification check.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct CheckIssueDetail {
    /// File path where the issue was detected.
    #[serde(alias = "file")]
    pub file: String,
    /// Line number, if applicable.
    #[serde(default, alias = "line")]
    pub line: Option<u32>,
    /// Column number, if applicable.
    #[serde(default, alias = "column")]
    pub column: Option<u32>,
    /// Error code or lint rule, if applicable.
    #[serde(default, alias = "code")]
    pub code: Option<String>,
    /// Human-readable message.
    #[serde(alias = "message")]
    pub message: String,
    /// Severity label (free-form string from the upstream check).
    #[serde(alias = "severity")]
    pub severity: String,
    /// Whether the check can auto-fix this issue.
    #[serde(alias = "fixable")]
    pub fixable: bool,
}

/// Result of a single named verification check (e.g., `"eslint"`, `"mypy"`).
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct IndividualCheckResult {
    /// Name of the check.
    #[serde(alias = "name")]
    pub name: String,
    /// Free-form status string (e.g., `"passed"`, `"failed"`, `"skipped"`).
    #[serde(alias = "status")]
    pub status: String,
    /// How long the check took, in milliseconds.
    #[serde(alias = "duration_ms")]
    pub duration_ms: u64,
    /// Number of issues surfaced by this check.
    #[serde(alias = "issues_found")]
    pub issues_found: u32,
    /// Number of issues auto-fixed by this check.
    #[serde(alias = "issues_fixed")]
    pub issues_fixed: u32,
    /// Number of files the check inspected.
    #[serde(alias = "files_checked")]
    pub files_checked: u32,
    /// Error message, if the check itself failed to run.
    #[serde(default, alias = "error_message")]
    pub error_message: Option<String>,
    /// Raw check output, if captured.
    #[serde(default, alias = "output")]
    pub output: Option<String>,
    /// Specific issue details.
    #[serde(default, alias = "issues")]
    pub issues: Vec<CheckIssueDetail>,
}

/// Detailed output captured for a single verification step.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct VerificationStepDetails {
    /// ID of the step this detail belongs to.
    #[serde(alias = "step_id")]
    pub step_id: String,
    /// Phase the step belongs to (e.g., `"setup"`, `"verification"`).
    #[serde(alias = "phase")]
    pub phase: String,
    /// Captured stdout, if any.
    #[serde(default, alias = "stdout")]
    pub stdout: Option<String>,
    /// Captured stderr, if any.
    #[serde(default, alias = "stderr")]
    pub stderr: Option<String>,
    /// Number of assertions that passed.
    #[serde(default, alias = "assertions_passed")]
    pub assertions_passed: Option<u32>,
    /// Total number of assertions.
    #[serde(default, alias = "assertions_total")]
    pub assertions_total: Option<u32>,
    /// Captured browser/console output.
    #[serde(default, alias = "console_output")]
    pub console_output: Option<String>,
    /// Captured page snapshot (HTML or serialized representation).
    #[serde(default, alias = "page_snapshot")]
    pub page_snapshot: Option<String>,
    /// Exit code of the spawned process.
    #[serde(default, alias = "exit_code")]
    pub exit_code: Option<i32>,
    /// Results of individual named checks (e.g., lint, type, test).
    #[serde(default, alias = "check_results")]
    pub check_results: Option<Vec<IndividualCheckResult>>,
}

/// Execution config captured for a verification step.
///
/// The TypeScript type includes an index signature `[key: string]: unknown`,
/// so extra arbitrary fields are captured in `extra` via `serde(flatten)` and
/// passed through opaquely.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
pub struct StepExecutionConfig {
    /// Action type (e.g., click, type, wait).
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "action_type"
    )]
    pub action_type: Option<String>,
    /// Target image ID, if the action references an image.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "target_image_id"
    )]
    pub target_image_id: Option<String>,
    /// Target image name, if the action references an image.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "target_image_name"
    )]
    pub target_image_name: Option<String>,
    /// Check type for verification steps.
    #[serde(default, skip_serializing_if = "Option::is_none", alias = "check_type")]
    pub check_type: Option<String>,
    /// Timeout in seconds.
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        alias = "timeout_seconds"
    )]
    pub timeout_seconds: Option<u64>,
    /// Additional step-specific configuration fields. Mirrors the TS index
    /// signature `[key: string]: unknown`.
    #[serde(flatten)]
    pub extra: HashMap<String, Value>,
}

/// Result of a single step within a verification phase.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct VerificationStepResult {
    /// Zero-based index of the step within the phase.
    #[serde(alias = "step_index")]
    pub step_index: u32,
    /// Free-form step type label.
    #[serde(alias = "step_type")]
    pub step_type: String,
    /// Display name of the step.
    #[serde(alias = "step_name")]
    pub step_name: String,
    /// ID of the step, if assigned.
    #[serde(default, alias = "step_id")]
    pub step_id: Option<String>,
    /// Whether the step succeeded.
    #[serde(alias = "success")]
    pub success: bool,
    /// Error message if the step failed.
    #[serde(default, alias = "error")]
    pub error: Option<String>,
    /// Path to a screenshot captured for the step.
    #[serde(default, alias = "screenshot_path")]
    pub screenshot_path: Option<String>,
    /// ISO 8601 timestamp when the step started.
    #[serde(default, alias = "started_at")]
    pub started_at: Option<String>,
    /// ISO 8601 timestamp when the step ended.
    #[serde(default, alias = "ended_at")]
    pub ended_at: Option<String>,
    /// Step duration in milliseconds.
    #[serde(alias = "duration_ms")]
    pub duration_ms: u64,
    /// Execution config for the step.
    #[serde(alias = "config")]
    pub config: StepExecutionConfig,
    /// Detailed captured output, if any.
    #[serde(default, alias = "verification_details")]
    pub verification_details: Option<VerificationStepDetails>,
    /// Arbitrary structured output produced by the step.
    #[serde(default, alias = "output_data")]
    pub output_data: Option<HashMap<String, Value>>,
}

/// Result of evaluating a named gate across a set of steps.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct GateEvaluationResult {
    /// Name of the gate.
    #[serde(alias = "gate_name")]
    pub gate_name: String,
    /// IDs of steps the gate required.
    #[serde(default, alias = "required_step_ids")]
    pub required_step_ids: Vec<String>,
    /// IDs of required steps that passed.
    #[serde(default, alias = "passed_step_ids")]
    pub passed_step_ids: Vec<String>,
    /// IDs of required steps that failed.
    #[serde(default, alias = "failed_step_ids")]
    pub failed_step_ids: Vec<String>,
    /// IDs of required steps that were missing.
    #[serde(default, alias = "missing_step_ids")]
    pub missing_step_ids: Vec<String>,
    /// Whether the gate passed overall.
    #[serde(alias = "passed")]
    pub passed: bool,
}

/// Result of a single iteration of the verification phase.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct VerificationPhaseResult {
    /// 1-based iteration index within the workflow run.
    #[serde(alias = "iteration")]
    pub iteration: u32,
    /// Whether all steps passed.
    #[serde(alias = "all_passed")]
    pub all_passed: bool,
    /// Total number of steps executed.
    #[serde(alias = "total_steps")]
    pub total_steps: u32,
    /// Number of steps that passed.
    #[serde(alias = "passed_steps")]
    pub passed_steps: u32,
    /// Number of steps that failed.
    #[serde(alias = "failed_steps")]
    pub failed_steps: u32,
    /// Number of steps that were skipped.
    #[serde(alias = "skipped_steps")]
    pub skipped_steps: u32,
    /// Total duration of the phase in milliseconds.
    #[serde(alias = "total_duration_ms")]
    pub total_duration_ms: u64,
    /// Per-step results.
    #[serde(default, alias = "step_results")]
    pub step_results: Vec<VerificationStepResult>,
    /// Whether a critical step failure short-circuited the phase.
    #[serde(alias = "critical_failure")]
    pub critical_failure: bool,
    /// Per-gate evaluation results.
    #[serde(default, alias = "gate_results")]
    pub gate_results: Vec<GateEvaluationResult>,
    /// Whether pass/fail is determined by gates rather than overall step counts.
    #[serde(alias = "gate_based_evaluation")]
    pub gate_based_evaluation: bool,
}

/// Response record for a single stored verification result.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct VerificationResultResponse {
    /// Unique identifier (UUID v4 string).
    #[serde(alias = "id")]
    pub id: String,
    /// ID of the owning task run.
    #[serde(alias = "task_run_id")]
    pub task_run_id: String,
    /// 1-based iteration index within the workflow run.
    #[serde(alias = "iteration")]
    pub iteration: u32,
    /// Whether all steps passed.
    #[serde(alias = "all_passed")]
    pub all_passed: bool,
    /// Total number of steps executed.
    #[serde(alias = "total_steps")]
    pub total_steps: u32,
    /// Number of steps that passed.
    #[serde(alias = "passed_steps")]
    pub passed_steps: u32,
    /// Number of steps that failed.
    #[serde(alias = "failed_steps")]
    pub failed_steps: u32,
    /// Number of steps that were skipped.
    #[serde(alias = "skipped_steps")]
    pub skipped_steps: u32,
    /// Total duration of the phase in milliseconds.
    #[serde(alias = "total_duration_ms")]
    pub total_duration_ms: u64,
    /// Whether a critical step failure short-circuited the phase.
    #[serde(alias = "critical_failure")]
    pub critical_failure: bool,
    /// Full typed verification result payload.
    #[serde(alias = "result_json")]
    pub result_json: VerificationPhaseResult,
    /// ISO 8601 timestamp when the record was created.
    #[serde(alias = "created_at")]
    pub created_at: String,
}

/// Response for listing verification results for a task run.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
#[schemars(deny_unknown_fields)]
pub struct VerificationResultsListResponse {
    /// ID of the owning task run.
    #[serde(alias = "task_run_id")]
    pub task_run_id: String,
    /// All verification results for the task run.
    #[serde(default, alias = "results")]
    pub results: Vec<VerificationResultResponse>,
    /// Total number of verification results.
    #[serde(alias = "count")]
    pub count: u32,
    /// Number of iterations that passed.
    #[serde(alias = "passed_iterations")]
    pub passed_iterations: u32,
    /// Number of iterations that failed.
    #[serde(alias = "failed_iterations")]
    pub failed_iterations: u32,
}