@@ -61,19 +61,23 @@ const ( MergedState State = "merged" ) // ListOptions are options for list operations. type ListOptions struct { State StateFilter Filter StateFilter } // StateFilter is a filter by state. type StateFilter State type StateFilter string const ( // AllStates is a state filter that includes all issues. AllStates StateFilter = "all" // FilterOpen is a state filter that includes open changes. FilterOpen StateFilter = "open" // FilterClosedMerged is a state filter that includes closed and merged changes. FilterClosedMerged StateFilter = "closed|merged" // FilterAll is a state filter that includes all changes. FilterAll StateFilter = "all" ) type GetDiffOptions struct { // Commit is the commit ID of the commit to fetch. Commit string