@@ -130,9 +130,9 @@ deleteLabel auth user repo lbl =
130130
131131-- | Delete a label.
132132-- See <https://developer.github.com/v3/issues/labels/#delete-a-label>
133- deleteLabelR :: Name Owner -> Name Repo -> Name IssueLabel -> Request 'RW ()
133+ deleteLabelR :: Name Owner -> Name Repo -> Name IssueLabel -> GenRequest 'MtUnit 'RW ()
134134deleteLabelR user repo lbl =
135- command Delete [" repos" , toPathPart user, toPathPart repo, " labels" , toPathPart lbl] mempty
135+ Command Delete [" repos" , toPathPart user, toPathPart repo, " labels" , toPathPart lbl] mempty
136136
137137-- | The labels on an issue in a repo.
138138--
@@ -188,9 +188,9 @@ removeLabelFromIssue auth user repo iid lbl =
188188
189189-- | Remove a label from an issue.
190190-- See <https://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue>
191- removeLabelFromIssueR :: Name Owner -> Name Repo -> Id Issue -> Name IssueLabel -> Request 'RW ()
191+ removeLabelFromIssueR :: Name Owner -> Name Repo -> Id Issue -> Name IssueLabel -> GenRequest 'MtUnit 'RW ()
192192removeLabelFromIssueR user repo iid lbl =
193- command Delete [" repos" , toPathPart user, toPathPart repo, " issues" , toPathPart iid, " labels" , toPathPart lbl] mempty
193+ Command Delete [" repos" , toPathPart user, toPathPart repo, " issues" , toPathPart iid, " labels" , toPathPart lbl] mempty
194194
195195-- | Replace all labels on an issue. Sending an empty list will remove all labels from the issue.
196196--
@@ -229,9 +229,9 @@ removeAllLabelsFromIssue auth user repo iid =
229229
230230-- | Remove all labels from an issue.
231231-- See <https://developer.github.com/v3/issues/labels/#remove-all-labels-from-an-issue>
232- removeAllLabelsFromIssueR :: Name Owner -> Name Repo -> Id Issue -> Request 'RW ()
232+ removeAllLabelsFromIssueR :: Name Owner -> Name Repo -> Id Issue -> GenRequest 'MtUnit 'RW ()
233233removeAllLabelsFromIssueR user repo iid =
234- command Delete [" repos" , toPathPart user, toPathPart repo, " issues" , toPathPart iid, " labels" ] mempty
234+ Command Delete [" repos" , toPathPart user, toPathPart repo, " issues" , toPathPart iid, " labels" ] mempty
235235
236236-- | All the labels on a repo's milestone given the milestone ID.
237237--
0 commit comments