This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(workitemtypes): WorkItemTypes are now retrieves using jsonapi. (#…
…1068) * feat(workitemtypes): WorkItemTypes are now retrieves using jsonapi. * fix(workitemtypes): added proper type descriptions.
- Loading branch information
1 parent
44dbeb5
commit 6ee510e
Showing
8 changed files
with
632 additions
and
432 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,13 +1,21 @@ | ||
export class WorkItemType { | ||
name: string; | ||
version: number; | ||
fields: | ||
{ | ||
'system.assignee': {}, | ||
'system.creator': {}, | ||
'system.description': {}, | ||
'system.remote_item_id': {}, | ||
'system.state': {}, | ||
'system.title': {}, | ||
id: string; | ||
type: string; | ||
attributes: { | ||
name: string; | ||
version: number; | ||
description: string; | ||
fields: | ||
{ | ||
'system.area': {}, | ||
'system.created_at': {}, | ||
'system.assignee': {}, | ||
'system.creator': {}, | ||
'system.description': {}, | ||
'system.iteration': {}, | ||
'system.remote_item_id': {}, | ||
'system.state': {}, | ||
'system.title': {}, | ||
}; | ||
}; | ||
} |
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