github-bot-sdk 0.2.1

A comprehensive Rust SDK for GitHub App integration with authentication, webhooks, and API client
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
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
// Spec: docs/specs/interfaces/issue-operations.md, labels-client.md,
//       milestones-client.md, reactions.md
// Issue, labels-on-issue, comments, reactions, assignees, lock, timeline,
// and milestone-definition operations.

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

use crate::client::{parse_link_header, InstallationClient, PagedResponse};
use crate::error::ApiError;

/// Milestone state.
///
/// See docs/specs/interfaces/milestones-client.md
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum MilestoneState {
    Open,
    Closed,
}

/// GitHub issue.
///
/// Represents a GitHub issue with all its metadata.
///
/// See docs/specs/interfaces/issue-operations.md
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Issue {
    /// Unique issue identifier
    pub id: u64,

    /// Node ID for GraphQL API
    pub node_id: String,

    /// Issue number (repository-specific)
    pub number: u64,

    /// Issue title
    pub title: String,

    /// Issue body content (Markdown)
    pub body: Option<String>,

    /// Issue state
    pub state: String, // "open" | "closed"

    /// Whether the issue is locked
    #[serde(default)]
    pub locked: bool,

    /// User who created the issue
    pub user: IssueUser,

    /// Assigned users
    pub assignees: Vec<IssueUser>,

    /// Applied labels
    pub labels: Vec<Label>,

    /// Milestone
    pub milestone: Option<Milestone>,

    /// Number of comments
    pub comments: u64,

    /// Creation timestamp
    pub created_at: DateTime<Utc>,

    /// Last update timestamp
    pub updated_at: DateTime<Utc>,

    /// Close timestamp
    pub closed_at: Option<DateTime<Utc>>,

    /// Issue URL
    pub html_url: String,
}

/// User associated with an issue.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct IssueUser {
    /// User login name
    pub login: String,

    /// User ID
    pub id: u64,

    /// User node ID
    pub node_id: String,

    /// User type
    #[serde(rename = "type")]
    pub user_type: String,
}

/// Milestone associated with an issue or pull request.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Milestone {
    /// Unique milestone identifier
    pub id: u64,

    /// Node ID for GraphQL API
    pub node_id: String,

    /// Milestone number (repository-specific)
    pub number: u64,

    /// Milestone title
    pub title: String,

    /// Milestone description
    pub description: Option<String>,

    /// Milestone state
    pub state: MilestoneState,

    /// Number of open issues
    pub open_issues: u32,

    /// Number of closed issues
    pub closed_issues: u32,

    /// Due date
    pub due_on: Option<DateTime<Utc>>,

    /// Creation timestamp
    pub created_at: DateTime<Utc>,

    /// Last update timestamp
    pub updated_at: DateTime<Utc>,

    /// Close timestamp
    pub closed_at: Option<DateTime<Utc>>,
}

/// GitHub label.
///
/// Labels are used to categorize issues and pull requests.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Label {
    /// Unique label identifier
    pub id: u64,

    /// Node ID for GraphQL API
    pub node_id: String,

    /// Label name
    pub name: String,

    /// Label description
    pub description: Option<String>,

    /// Label color (6-digit hex code without #)
    pub color: String,

    /// Whether this is a default label
    pub default: bool,
}

/// Comment on an issue.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Comment {
    /// Unique comment identifier
    pub id: u64,

    /// Node ID for GraphQL API
    pub node_id: String,

    /// Comment body content (Markdown)
    pub body: String,

    /// User who created the comment
    pub user: IssueUser,

    /// Creation timestamp
    pub created_at: DateTime<Utc>,

    /// Last update timestamp
    pub updated_at: DateTime<Utc>,

    /// Comment URL
    pub html_url: String,
}

/// Request to create a new issue.
#[derive(Debug, Clone, Serialize)]
pub struct CreateIssueRequest {
    /// Issue title (required)
    pub title: String,

    /// Issue body content (Markdown)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub body: Option<String>,

    /// Usernames to assign
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignees: Option<Vec<String>>,

    /// Milestone number
    #[serde(skip_serializing_if = "Option::is_none")]
    pub milestone: Option<u64>,

    /// Label names to apply
    #[serde(skip_serializing_if = "Option::is_none")]
    pub labels: Option<Vec<String>>,
}

/// Request to update an existing issue.
#[derive(Debug, Clone, Serialize, Default)]
pub struct UpdateIssueRequest {
    /// Issue title
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,

    /// Issue body content (Markdown)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub body: Option<String>,

    /// Issue state
    #[serde(skip_serializing_if = "Option::is_none")]
    pub state: Option<String>, // "open" or "closed"

    /// Usernames to assign (replaces existing assignees)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub assignees: Option<Vec<String>>,

    /// Milestone number (None to clear milestone)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub milestone: Option<u64>,

    /// Label names (replaces existing labels)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub labels: Option<Vec<String>>,
}

/// Request to create a label.
#[derive(Debug, Clone, Serialize)]
pub struct CreateLabelRequest {
    /// Label name (required)
    pub name: String,

    /// Label color (6-digit hex code without #)
    pub color: String,

    /// Label description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
}

/// Request to update a label.
#[derive(Debug, Clone, Serialize, Default)]
pub struct UpdateLabelRequest {
    /// New label name. The JSON key sent to GitHub is `"name"`.
    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
    pub new_name: Option<String>,

    /// Label color (6-digit hex code without #)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub color: Option<String>,

    /// Label description
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
}

/// Request to create a comment.
#[derive(Debug, Clone, Serialize)]
pub struct CreateCommentRequest {
    /// Comment body content (Markdown, required)
    pub body: String,
}

/// Request to update a comment.
#[derive(Debug, Clone, Serialize)]
pub struct UpdateCommentRequest {
    /// Comment body content (Markdown, required)
    pub body: String,
}

// ============================================================================
// New types introduced by ADR-003 spec
// ============================================================================

/// Reason used when locking an issue.
///
/// See docs/specs/interfaces/issue-operations.md
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub enum LockReason {
    OffTopic,
    TooHeated,
    Resolved,
    Spam,
}

/// A discrete activity event recorded on an issue.
///
/// Returned by the issue events REST endpoint — different from webhook events.
///
/// See docs/specs/interfaces/issue-operations.md
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct IssueActivityEvent {
    pub id: u64,
    pub event: String, // "labeled", "assigned", "closed", etc.
    pub actor: IssueUser,
    pub created_at: DateTime<Utc>,
    pub label: Option<Label>,
    pub assignee: Option<IssueUser>,
    pub milestone: Option<MilestoneSummary>,
    pub rename: Option<IssueRename>,
}

/// Brief milestone reference used inside activity events.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MilestoneSummary {
    pub title: String,
}

/// Issue rename payload inside activity events.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct IssueRename {
    pub from: String,
    pub to: String,
}

/// A single item in an issue's full timeline.
///
/// The `event` field drives deserialization.  Unknown event kinds map to
/// `TimelineEvent::Unknown` without error (via `#[serde(other)]`).
///
/// See docs/specs/interfaces/issue-operations.md
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "event", rename_all = "snake_case")]
pub enum TimelineEvent {
    /// A comment posted on the issue. Note: GitHub returns comment objects
    /// here (with `user`, not `actor`) so this variant is structurally
    /// different from the other event kinds.
    #[serde(rename = "commented")]
    Commented {
        id: u64,
        user: IssueUser,
        body: Option<String>,
        created_at: DateTime<Utc>,
        updated_at: DateTime<Utc>,
        html_url: String,
    },
    Labeled {
        id: u64,
        actor: IssueUser,
        label: Label,
        created_at: DateTime<Utc>,
    },
    Unlabeled {
        id: u64,
        actor: IssueUser,
        label: Label,
        created_at: DateTime<Utc>,
    },
    Assigned {
        id: u64,
        actor: IssueUser,
        assignee: IssueUser,
        created_at: DateTime<Utc>,
    },
    Unassigned {
        id: u64,
        actor: IssueUser,
        assignee: IssueUser,
        created_at: DateTime<Utc>,
    },
    Milestoned {
        id: u64,
        actor: IssueUser,
        milestone: MilestoneSummary,
        created_at: DateTime<Utc>,
    },
    Demilestoned {
        id: u64,
        actor: IssueUser,
        milestone: MilestoneSummary,
        created_at: DateTime<Utc>,
    },
    Closed {
        id: u64,
        actor: IssueUser,
        created_at: DateTime<Utc>,
    },
    Reopened {
        id: u64,
        actor: IssueUser,
        created_at: DateTime<Utc>,
    },
    Locked {
        id: u64,
        actor: IssueUser,
        lock_reason: Option<String>,
        created_at: DateTime<Utc>,
    },
    Unlocked {
        id: u64,
        actor: IssueUser,
        created_at: DateTime<Utc>,
    },
    Renamed {
        id: u64,
        actor: IssueUser,
        rename: IssueRename,
        created_at: DateTime<Utc>,
    },
    Referenced {
        id: u64,
        actor: IssueUser,
        created_at: DateTime<Utc>,
    },
    /// Catch-all: unknown event kind — must not cause a deserialization error.
    #[serde(other)]
    Unknown,
}

/// Emoji content for a GitHub reaction.
///
/// The `+1` and `-1` variants require explicit `#[serde(rename)]` because
/// their GitHub API names start with symbols.
///
/// See docs/specs/interfaces/reactions.md
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum ReactionContent {
    /// 👍
    #[serde(rename = "+1")]
    PlusOne,
    /// 👎
    #[serde(rename = "-1")]
    MinusOne,
    /// 😄
    Laugh,
    /// 😕
    Confused,
    /// ❤️
    Heart,
    /// 🎉
    Hooray,
    /// 🚀
    Rocket,
    /// 👀
    Eyes,
}

/// A single reaction on an issue or issue comment.
///
/// See docs/specs/interfaces/reactions.md
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Reaction {
    pub id: u64,
    pub node_id: String,
    pub user: IssueUser,
    pub content: ReactionContent,
    pub created_at: DateTime<Utc>,
}

// ============================================================================
// Milestone-management types (MilestonesClient)
// ============================================================================

/// Sort direction for list queries.
///
/// See docs/specs/interfaces/milestones-client.md
#[derive(Debug, Clone)]
pub enum SortDirection {
    Asc,
    Desc,
}

/// Sort field for milestone list queries.
///
/// See docs/specs/interfaces/milestones-client.md
#[derive(Debug, Clone)]
pub enum MilestoneSortField {
    DueOn,
    Completeness,
}

/// Filter and sort options for listing milestones.
///
/// See docs/specs/interfaces/milestones-client.md
#[derive(Debug, Clone, Default)]
pub struct ListMilestonesQuery {
    pub state: Option<MilestoneState>,
    pub sort: Option<MilestoneSortField>,
    pub direction: Option<SortDirection>,
}

/// Request to create a new milestone.
///
/// See docs/specs/interfaces/milestones-client.md
#[derive(Debug, Clone, Serialize)]
pub struct CreateMilestoneRequest {
    pub title: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub state: Option<MilestoneState>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub due_on: Option<DateTime<Utc>>,
}

/// Request to update an existing milestone.
///
/// See docs/specs/interfaces/milestones-client.md
#[derive(Debug, Clone, Default, Serialize)]
pub struct UpdateMilestoneRequest {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub title: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub state: Option<MilestoneState>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub description: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub due_on: Option<DateTime<Utc>>,
}

// ============================================================================
// Private request body helpers (not part of the public API)
// ============================================================================

#[derive(Debug, Clone, Serialize)]
pub(crate) struct LabelsRequest {
    pub(crate) labels: Vec<String>,
}

#[derive(Debug, Clone, Serialize)]
struct LockIssueRequest {
    #[serde(skip_serializing_if = "Option::is_none")]
    lock_reason: Option<LockReason>,
}

#[derive(Debug, Clone, Serialize)]
struct AssigneesRequest {
    assignees: Vec<String>,
}

#[derive(Debug, Clone, Serialize)]
struct CreateReactionRequest {
    content: ReactionContent,
}

// ============================================================================
// IssuesClient
// ============================================================================

/// Domain client for GitHub issue operations.
///
/// Obtained via [`InstallationClient::issues()`].  Cheap to clone (Arc-backed).
///
/// Covers issue CRUD, comment CRUD, reactions, label application, assignees,
/// lock/unlock, and timeline queries.
///
/// See docs/specs/interfaces/issue-operations.md
#[derive(Debug, Clone)]
pub struct IssuesClient {
    client: InstallationClient,
}

impl IssuesClient {
    pub(crate) fn new(client: InstallationClient) -> Self {
        Self { client }
    }

    // --- Issue CRUD ---

    /// List issues in a repository (manual pagination).
    ///
    /// # Arguments
    /// * `state` — `"open"` (default), `"closed"`, or `"all"`
    /// * `page` — 1-indexed page number; omit for first page
    pub async fn list(
        &self,
        owner: &str,
        repo: &str,
        state: Option<&str>,
        page: Option<u32>,
    ) -> Result<PagedResponse<Issue>, ApiError> {
        let mut path = format!("/repos/{}/{}/issues", owner, repo);
        let mut params: Vec<String> = Vec::new();
        if let Some(s) = state {
            params.push(format!("state={}", s));
        }
        if let Some(p) = page {
            params.push(format!("page={}", p));
        }
        if !params.is_empty() {
            path = format!("{}?{}", path, params.join("&"));
        }

        let response = self.client.get(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }

        let pagination = response
            .headers()
            .get("Link")
            .and_then(|h| h.to_str().ok())
            .map(|h| parse_link_header(Some(h)))
            .unwrap_or_default();

        let items: Vec<Issue> = response.json().await.map_err(ApiError::from)?;
        Ok(PagedResponse {
            items,
            total_count: None,
            pagination,
        })
    }

    /// Get a single issue by number.
    ///
    /// # Errors
    /// * `ApiError::NotFound` — issue does not exist
    pub async fn get(&self, owner: &str, repo: &str, issue_number: u64) -> Result<Issue, ApiError> {
        let path = format!("/repos/{}/{}/issues/{}", owner, repo, issue_number);
        let response = self.client.get(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Create a new issue.
    ///
    /// # Errors
    /// * `ApiError::InvalidRequest` — validation failed (empty title, etc.)
    pub async fn create(
        &self,
        owner: &str,
        repo: &str,
        request: CreateIssueRequest,
    ) -> Result<Issue, ApiError> {
        let path = format!("/repos/{}/{}/issues", owner, repo);
        let response = self.client.post(&path, &request).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Update an existing issue (patch semantics — only set fields are changed).
    ///
    /// # Errors
    /// * `ApiError::NotFound` — issue does not exist
    pub async fn update(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        request: UpdateIssueRequest,
    ) -> Result<Issue, ApiError> {
        let path = format!("/repos/{}/{}/issues/{}", owner, repo, issue_number);
        let response = self.client.patch(&path, &request).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Set (or clear) the milestone on an issue.
    ///
    /// Pass `None` to remove the milestone.
    pub async fn set_milestone(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        milestone_number: Option<u64>,
    ) -> Result<Issue, ApiError> {
        self.update(
            owner,
            repo,
            issue_number,
            UpdateIssueRequest {
                milestone: milestone_number,
                ..Default::default()
            },
        )
        .await
    }

    // --- Comment operations ---

    /// List all comments on an issue.
    ///
    /// Auto-paginates with `per_page=100` (ADR-002).  Oldest comments first.
    ///
    /// # Errors
    /// * `ApiError::NotFound` — issue does not exist (no partial list returned)
    pub async fn list_comments(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
    ) -> Result<Vec<Comment>, ApiError> {
        let base = format!("/repos/{}/{}/issues/{}/comments", owner, repo, issue_number);
        self.fetch_all(&base).await
    }

    /// Get a single comment by its repository-scoped ID.
    pub async fn get_comment(
        &self,
        owner: &str,
        repo: &str,
        comment_id: u64,
    ) -> Result<Comment, ApiError> {
        let path = format!("/repos/{}/{}/issues/comments/{}", owner, repo, comment_id);
        let response = self.client.get(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Create a comment on an issue.
    pub async fn create_comment(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        request: CreateCommentRequest,
    ) -> Result<Comment, ApiError> {
        let path = format!("/repos/{}/{}/issues/{}/comments", owner, repo, issue_number);
        let response = self.client.post(&path, &request).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Update an existing comment.
    pub async fn update_comment(
        &self,
        owner: &str,
        repo: &str,
        comment_id: u64,
        request: UpdateCommentRequest,
    ) -> Result<Comment, ApiError> {
        let path = format!("/repos/{}/{}/issues/comments/{}", owner, repo, comment_id);
        let response = self.client.patch(&path, &request).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Delete a comment.
    pub async fn delete_comment(
        &self,
        owner: &str,
        repo: &str,
        comment_id: u64,
    ) -> Result<(), ApiError> {
        let path = format!("/repos/{}/{}/issues/comments/{}", owner, repo, comment_id);
        let response = self.client.delete(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        Ok(())
    }

    // --- Label application on issue ---

    /// List all labels applied to an issue (auto-paginated).
    pub async fn list_labels(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
    ) -> Result<Vec<Label>, ApiError> {
        let base = format!("/repos/{}/{}/issues/{}/labels", owner, repo, issue_number);
        self.fetch_all(&base).await
    }

    /// Add one or more labels to an issue (idempotent — duplicates ignored).
    ///
    /// Returns the updated label list on the issue.
    pub async fn add_labels(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        labels: Vec<String>,
    ) -> Result<Vec<Label>, ApiError> {
        let path = format!("/repos/{}/{}/issues/{}/labels", owner, repo, issue_number);
        let body = LabelsRequest { labels };
        let response = self.client.post(&path, &body).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Remove a single label from an issue.
    ///
    /// Returns the remaining label list.
    ///
    /// # Errors
    /// * `ApiError::NotFound` — label is not applied to this issue
    pub async fn remove_label(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        label_name: &str,
    ) -> Result<Vec<Label>, ApiError> {
        let path = format!(
            "/repos/{}/{}/issues/{}/labels/{}",
            owner,
            repo,
            issue_number,
            urlencoding::encode(label_name)
        );
        let response = self.client.delete(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Replace all labels on an issue atomically.
    ///
    /// Any labels not in `labels` are removed.  Pass an empty vec to remove all labels.
    /// Returns the new label list as applied by GitHub.
    pub async fn replace_labels(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        labels: Vec<String>,
    ) -> Result<Vec<Label>, ApiError> {
        let path = format!("/repos/{}/{}/issues/{}/labels", owner, repo, issue_number);
        let body = LabelsRequest { labels };
        let response = self.client.put(&path, &body).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    // --- Reactions ---

    /// List all reactions on an issue (auto-paginated).
    pub async fn list_reactions(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
    ) -> Result<Vec<Reaction>, ApiError> {
        let base = format!(
            "/repos/{}/{}/issues/{}/reactions",
            owner, repo, issue_number
        );
        self.fetch_all(&base).await
    }

    /// Add a reaction to an issue.
    ///
    /// If the same user has already reacted with this emoji, GitHub returns the
    /// existing reaction (HTTP 200). Both 200 and 201 map to `Ok(Reaction)`.
    pub async fn create_reaction(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        content: ReactionContent,
    ) -> Result<Reaction, ApiError> {
        let path = format!(
            "/repos/{}/{}/issues/{}/reactions",
            owner, repo, issue_number
        );
        let body = CreateReactionRequest { content };
        let response = self.client.post(&path, &body).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Remove a reaction from an issue.
    pub async fn delete_reaction(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        reaction_id: u64,
    ) -> Result<(), ApiError> {
        let path = format!(
            "/repos/{}/{}/issues/{}/reactions/{}",
            owner, repo, issue_number, reaction_id
        );
        let response = self.client.delete(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        Ok(())
    }

    /// List all reactions on an issue comment (auto-paginated).
    pub async fn list_comment_reactions(
        &self,
        owner: &str,
        repo: &str,
        comment_id: u64,
    ) -> Result<Vec<Reaction>, ApiError> {
        let base = format!(
            "/repos/{}/{}/issues/comments/{}/reactions",
            owner, repo, comment_id
        );
        self.fetch_all(&base).await
    }

    /// Add a reaction to an issue comment.
    pub async fn create_comment_reaction(
        &self,
        owner: &str,
        repo: &str,
        comment_id: u64,
        content: ReactionContent,
    ) -> Result<Reaction, ApiError> {
        let path = format!(
            "/repos/{}/{}/issues/comments/{}/reactions",
            owner, repo, comment_id
        );
        let body = CreateReactionRequest { content };
        let response = self.client.post(&path, &body).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Remove a reaction from an issue comment.
    pub async fn delete_comment_reaction(
        &self,
        owner: &str,
        repo: &str,
        comment_id: u64,
        reaction_id: u64,
    ) -> Result<(), ApiError> {
        let path = format!(
            "/repos/{}/{}/issues/comments/{}/reactions/{}",
            owner, repo, comment_id, reaction_id
        );
        let response = self.client.delete(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        Ok(())
    }

    // --- Assignees ---

    /// List all users eligible to be assigned in this repository (auto-paginated).
    pub async fn list_available_assignees(
        &self,
        owner: &str,
        repo: &str,
    ) -> Result<Vec<IssueUser>, ApiError> {
        let base = format!("/repos/{}/{}/assignees", owner, repo);
        self.fetch_all(&base).await
    }

    /// Add assignees to an issue.
    ///
    /// GitHub silently ignores users who are not eligible.
    /// Returns the updated issue with the new assignee list.
    pub async fn add_assignees(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        assignees: Vec<String>,
    ) -> Result<Issue, ApiError> {
        let path = format!(
            "/repos/{}/{}/issues/{}/assignees",
            owner, repo, issue_number
        );
        let body = AssigneesRequest { assignees };
        let response = self.client.post(&path, &body).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Remove assignees from an issue.
    ///
    /// GitHub silently ignores users not currently assigned.
    /// Returns the updated issue with the revised assignee list.
    pub async fn remove_assignees(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        assignees: Vec<String>,
    ) -> Result<Issue, ApiError> {
        let path = format!(
            "/repos/{}/{}/issues/{}/assignees",
            owner, repo, issue_number
        );
        let body = AssigneesRequest { assignees };
        let response = self.client.delete_with_body(&path, &body).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    // --- Lock / Unlock ---

    /// Lock an issue, preventing non-collaborator comments.
    ///
    /// # Arguments
    /// * `reason` — optional lock reason shown to users attempting to comment
    ///
    /// # Errors
    /// * `ApiError::AuthorizationFailed` — requires admin or maintain permission
    pub async fn lock(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
        reason: Option<LockReason>,
    ) -> Result<(), ApiError> {
        let path = format!("/repos/{}/{}/issues/{}/lock", owner, repo, issue_number);
        let body = LockIssueRequest {
            lock_reason: reason,
        };
        let response = self.client.put(&path, &body).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        Ok(())
    }

    /// Unlock a previously locked issue.
    ///
    /// # Errors
    /// * `ApiError::AuthorizationFailed` — requires admin or maintain permission
    pub async fn unlock(&self, owner: &str, repo: &str, issue_number: u64) -> Result<(), ApiError> {
        let path = format!("/repos/{}/{}/issues/{}/lock", owner, repo, issue_number);
        let response = self.client.delete(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        Ok(())
    }

    // --- Activity events & timeline ---

    /// List all discrete activity events on an issue (auto-paginated).
    ///
    /// Returns events in ascending chronological order (oldest first).
    pub async fn list_activity_events(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
    ) -> Result<Vec<IssueActivityEvent>, ApiError> {
        let base = format!("/repos/{}/{}/issues/{}/events", owner, repo, issue_number);
        self.fetch_all(&base).await
    }

    /// List the complete timeline of an issue (auto-paginated).
    ///
    /// Superset of [`list_activity_events`]: also includes comments and
    /// cross-references.  Unknown event kinds yield `TimelineEvent::Unknown`.
    pub async fn list_timeline(
        &self,
        owner: &str,
        repo: &str,
        issue_number: u64,
    ) -> Result<Vec<TimelineEvent>, ApiError> {
        let base = format!("/repos/{}/{}/issues/{}/timeline", owner, repo, issue_number);
        self.fetch_all(&base).await
    }

    // --- Private: auto-pagination ---

    /// Fetch all pages of a GET endpoint that returns `Vec<T>`.
    ///
    /// Delegates to [`InstallationClient::fetch_all_pages`] with `per_page=100`
    /// appended to `base_path` (ADR-002).
    async fn fetch_all<T: serde::de::DeserializeOwned>(
        &self,
        base_path: &str,
    ) -> Result<Vec<T>, ApiError> {
        let first_page = format!("{}?per_page=100", base_path);
        self.client.fetch_all_pages(&first_page).await
    }
}

// ============================================================================
// LabelsClient
// ============================================================================

/// Domain client for repository-level label catalogue operations.
///
/// Obtained via [`InstallationClient::labels()`].  Cheap to clone (Arc-backed).
///
/// Manages label *definitions*.  To apply labels to a specific issue use
/// [`IssuesClient`]; to a PR use `PullRequestsClient`.
///
/// See docs/specs/interfaces/labels-client.md
#[derive(Debug, Clone)]
pub struct LabelsClient {
    client: InstallationClient,
}

impl LabelsClient {
    pub(crate) fn new(client: InstallationClient) -> Self {
        Self { client }
    }

    /// List all label definitions in a repository (auto-paginated).
    ///
    /// # Errors
    /// * `ApiError::NotFound` — repository does not exist
    pub async fn list(&self, owner: &str, repo: &str) -> Result<Vec<Label>, ApiError> {
        let first_page = format!("/repos/{}/{}/labels?per_page=100", owner, repo);
        self.client.fetch_all_pages(&first_page).await
    }

    /// Get a single label definition by name.
    ///
    /// # Errors
    /// * `ApiError::NotFound` — label does not exist
    pub async fn get(&self, owner: &str, repo: &str, name: &str) -> Result<Label, ApiError> {
        let path = format!(
            "/repos/{}/{}/labels/{}",
            owner,
            repo,
            urlencoding::encode(name)
        );
        let response = self.client.get(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Create a new label definition.
    ///
    /// # Errors
    /// * `ApiError::InvalidRequest` — name already exists (422)
    /// * `ApiError::AuthorizationFailed` — missing `issues: write`
    pub async fn create(
        &self,
        owner: &str,
        repo: &str,
        request: CreateLabelRequest,
    ) -> Result<Label, ApiError> {
        let path = format!("/repos/{}/{}/labels", owner, repo);
        let response = self.client.post(&path, &request).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Update an existing label definition.
    ///
    /// Renaming via `new_name` updates all existing issue/PR references.
    ///
    /// # Errors
    /// * `ApiError::NotFound` — label does not exist
    /// * `ApiError::AuthorizationFailed` — missing `issues: write`
    pub async fn update(
        &self,
        owner: &str,
        repo: &str,
        name: &str,
        request: UpdateLabelRequest,
    ) -> Result<Label, ApiError> {
        let path = format!(
            "/repos/{}/{}/labels/{}",
            owner,
            repo,
            urlencoding::encode(name)
        );
        let response = self.client.patch(&path, &request).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Delete a label definition.
    ///
    /// Deleting a label removes it from all issues and PRs it was applied to.
    ///
    /// # Errors
    /// * `ApiError::NotFound` — label does not exist
    /// * `ApiError::AuthorizationFailed` — missing `issues: write`
    pub async fn delete(&self, owner: &str, repo: &str, name: &str) -> Result<(), ApiError> {
        let path = format!(
            "/repos/{}/{}/labels/{}",
            owner,
            repo,
            urlencoding::encode(name)
        );
        let response = self.client.delete(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        Ok(())
    }
}

// ============================================================================
// MilestonesClient
// ============================================================================

/// Domain client for milestone lifecycle operations.
///
/// Obtained via [`InstallationClient::milestones()`].  Cheap to clone (Arc-backed).
///
/// Manages milestone *definitions*.  To assign a milestone to a specific issue
/// use [`IssuesClient::set_milestone`]; for a PR use `PullRequestsClient::set_milestone`.
///
/// See docs/specs/interfaces/milestones-client.md
#[derive(Debug, Clone)]
pub struct MilestonesClient {
    client: InstallationClient,
}

impl MilestonesClient {
    pub(crate) fn new(client: InstallationClient) -> Self {
        Self { client }
    }

    /// List all milestones in a repository (auto-paginated).
    ///
    /// # Errors
    /// * `ApiError::NotFound` — repository does not exist
    pub async fn list(
        &self,
        owner: &str,
        repo: &str,
        query: Option<ListMilestonesQuery>,
    ) -> Result<Vec<Milestone>, ApiError> {
        let base = format!("/repos/{}/{}/milestones", owner, repo);
        let mut params: Vec<String> = vec!["per_page=100".to_string()];

        if let Some(q) = query {
            if let Some(state) = q.state {
                let s = match state {
                    MilestoneState::Open => "open",
                    MilestoneState::Closed => "closed",
                };
                params.push(format!("state={}", s));
            }
            if let Some(sort) = q.sort {
                let s = match sort {
                    MilestoneSortField::DueOn => "due_on",
                    MilestoneSortField::Completeness => "completeness",
                };
                params.push(format!("sort={}", s));
            }
            if let Some(dir) = q.direction {
                let d = match dir {
                    SortDirection::Asc => "asc",
                    SortDirection::Desc => "desc",
                };
                params.push(format!("direction={}", d));
            }
        }

        let first_page = format!("{}?{}", base, params.join("&"));
        self.client.fetch_all_pages(&first_page).await
    }

    /// Get a single milestone by its repository-scoped number.
    ///
    /// # Errors
    /// * `ApiError::NotFound` — milestone does not exist
    pub async fn get(
        &self,
        owner: &str,
        repo: &str,
        milestone_number: u64,
    ) -> Result<Milestone, ApiError> {
        let path = format!("/repos/{}/{}/milestones/{}", owner, repo, milestone_number);
        let response = self.client.get(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Create a new milestone.
    ///
    /// # Errors
    /// * `ApiError::InvalidRequest` — title is empty
    /// * `ApiError::AuthorizationFailed` — missing `issues: write`
    pub async fn create(
        &self,
        owner: &str,
        repo: &str,
        request: CreateMilestoneRequest,
    ) -> Result<Milestone, ApiError> {
        let path = format!("/repos/{}/{}/milestones", owner, repo);
        let response = self.client.post(&path, &request).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Update an existing milestone.
    ///
    /// # Errors
    /// * `ApiError::NotFound` — milestone does not exist
    /// * `ApiError::AuthorizationFailed` — missing `issues: write`
    pub async fn update(
        &self,
        owner: &str,
        repo: &str,
        milestone_number: u64,
        request: UpdateMilestoneRequest,
    ) -> Result<Milestone, ApiError> {
        let path = format!("/repos/{}/{}/milestones/{}", owner, repo, milestone_number);
        let response = self.client.patch(&path, &request).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        response.json().await.map_err(ApiError::from)
    }

    /// Delete a milestone.
    ///
    /// Issues assigned to the deleted milestone are unlinked but otherwise unaffected.
    ///
    /// # Errors
    /// * `ApiError::NotFound` — milestone does not exist
    /// * `ApiError::AuthorizationFailed` — missing `issues: write`
    pub async fn delete(
        &self,
        owner: &str,
        repo: &str,
        milestone_number: u64,
    ) -> Result<(), ApiError> {
        let path = format!("/repos/{}/{}/milestones/{}", owner, repo, milestone_number);
        let response = self.client.delete(&path).await?;
        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }
        Ok(())
    }
}

#[cfg(test)]
#[path = "issue_tests.rs"]
mod tests;