-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17e1f44
commit c9da957
Showing
35 changed files
with
764 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** Details of an issue resolution. */ | ||
export interface CreateResolutionDetails { | ||
/** The name of the resolution. Must be unique (case-insensitive). */ | ||
name: string; | ||
/** The description of the resolution. */ | ||
description?: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Resolution } from './resolution'; | ||
|
||
/** A page of items. */ | ||
export interface PageResolution { | ||
/** The URL of the page. */ | ||
self?: string; | ||
/** If there is another page of results, the URL of the next page. */ | ||
nextPage?: string; | ||
/** The maximum number of items that could be returned. */ | ||
maxResults?: number; | ||
/** The index of the first item returned. */ | ||
startAt?: number; | ||
/** The number of items returned. */ | ||
total?: number; | ||
/** Whether this is the last page. */ | ||
isLast?: boolean; | ||
/** The list of items. */ | ||
values?: Resolution[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** Change the order of issue resolutions. */ | ||
export interface ReorderIssueResolutionsRequest { | ||
/** The list of resolution IDs to be reordered. Cannot contain duplicates nor after ID. */ | ||
ids: string[]; | ||
/** The ID of the resolution. Required if `position` isn't provided. */ | ||
after?: string; | ||
/** The position for issue resolutions to be moved to. Required if `after` isn't provided. */ | ||
position?: string; | ||
} |
Oops, something went wrong.