-
Notifications
You must be signed in to change notification settings - Fork 56
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
63214a8
commit 570fbfa
Showing
48 changed files
with
1,561 additions
and
45 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
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,12 @@ | ||
export interface GetAtlassianTeamResponse { | ||
/** The capacity for the Atlassian team. */ | ||
capacity?: number; | ||
/** The Atlassian team ID. */ | ||
id: string; | ||
/** The ID of the issue source for the Atlassian team. */ | ||
issueSourceId?: number; | ||
/** The planning style for the Atlassian team. This is "Scrum" or "Kanban". */ | ||
planningStyle: 'Scrum' | 'Kanban' | string; | ||
/** The sprint length for the Atlassian team. */ | ||
sprintLength?: number; | ||
} |
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,16 @@ | ||
export interface GetPlanOnlyTeamResponse { | ||
/** The capacity for the plan-only team. */ | ||
capacity?: number; | ||
/** The plan-only team ID. */ | ||
id: number; | ||
/** The ID of the issue source for the plan-only team. */ | ||
issueSourceId?: number; | ||
/** The account IDs of the plan-only team members. */ | ||
memberAccountIds?: string[]; | ||
/** The plan-only team name. */ | ||
name: string; | ||
/** The planning style for the plan-only team. This is "Scrum" or "Kanban". */ | ||
planningStyle: 'Scrum' | 'Kanban' | string; | ||
/** The sprint length for the plan-only team. */ | ||
sprintLength?: number; | ||
} |
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
10 changes: 10 additions & 0 deletions
10
src/version3/models/pageWithCursorGetPlanResponseForPage.ts
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,10 @@ | ||
import { GetPlanResponseForPage } from './getPlanResponseForPage'; | ||
|
||
export interface PageWithCursorGetPlanResponseForPage { | ||
cursor?: string; | ||
last?: boolean; | ||
nextPageCursor?: string; | ||
size?: number; | ||
total?: number; | ||
values?: GetPlanResponseForPage[]; | ||
} |
10 changes: 10 additions & 0 deletions
10
src/version3/models/pageWithCursorGetTeamResponseForPage.ts
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,10 @@ | ||
import { GetTeamResponseForPage } from './getTeamResponseForPage'; | ||
|
||
export interface PageWithCursorGetTeamResponseForPage { | ||
cursor?: string; | ||
last?: boolean; | ||
nextPageCursor?: string; | ||
size?: number; | ||
total?: number; | ||
values?: GetTeamResponseForPage[]; | ||
} |
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,29 @@ | ||
import { GetCrossProjectReleaseResponse } from './getCrossProjectReleaseResponse'; | ||
import { GetCustomFieldResponse } from './getCustomFieldResponse'; | ||
import { GetExclusionRulesResponse } from './getExclusionRulesResponse'; | ||
import { GetIssueSourceResponse } from './getIssueSourceResponse'; | ||
import { GetPermissionResponse } from './getPermissionResponse'; | ||
import { GetSchedulingResponse } from './getSchedulingResponse'; | ||
|
||
export interface Plan { | ||
/** The cross-project releases included in the plan. */ | ||
crossProjectReleases?: GetCrossProjectReleaseResponse[]; | ||
/** The custom fields for the plan. */ | ||
customFields?: GetCustomFieldResponse[]; | ||
exclusionRules?: GetExclusionRulesResponse; | ||
/** The plan ID. */ | ||
id: number; | ||
/** The issue sources included in the plan. */ | ||
issueSources?: GetIssueSourceResponse[]; | ||
/** The date when the plan was last saved in UTC. */ | ||
lastSaved?: string; | ||
/** The account ID of the plan lead. */ | ||
leadAccountId?: string; | ||
/** The plan name. */ | ||
name?: string; | ||
/** The permissions for the plan. */ | ||
permissions?: GetPermissionResponse[]; | ||
scheduling?: GetSchedulingResponse; | ||
/** The plan status. This is "Active", "Trashed" or "Archived". */ | ||
status: 'Active' | 'Trashed' | 'Archived' | 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { TaskProgressBeanJsonNode } from './taskProgressBeanJsonNode'; | ||
|
||
/** The ID of a priority scheme. */ | ||
export interface PrioritySchemeId { | ||
/** The ID of the priority scheme. */ | ||
id?: string; | ||
task?: TaskProgressBeanJsonNode; | ||
} |
20 changes: 20 additions & 0 deletions
20
src/version3/models/prioritySchemeWithPaginatedPrioritiesAndProjects.ts
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,20 @@ | ||
import { PageBeanPriorityWithSequence } from './pageBeanPriorityWithSequence'; | ||
import { PageBeanProjectDetails } from './pageBeanProjectDetails'; | ||
|
||
/** A priority scheme with paginated priorities and projects. */ | ||
export interface PrioritySchemeWithPaginatedPrioritiesAndProjects { | ||
default?: boolean; | ||
/** The ID of the default issue priority. */ | ||
defaultPriorityId?: string; | ||
/** The description of the priority scheme */ | ||
description?: string; | ||
/** The ID of the priority scheme. */ | ||
id: string; | ||
isDefault?: boolean; | ||
/** The name of the priority scheme */ | ||
name: string; | ||
priorities?: PageBeanPriorityWithSequence; | ||
projects?: PageBeanProjectDetails; | ||
/** The URL of the priority scheme. */ | ||
self?: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** An issue priority with sequence information. */ | ||
export interface PriorityWithSequence { | ||
/** The description of the issue priority. */ | ||
description?: string; | ||
/** The URL of the icon for the issue priority. */ | ||
iconUrl?: string; | ||
/** The ID of the issue priority. */ | ||
id?: string; | ||
/** Whether this priority is the default. */ | ||
isDefault?: boolean; | ||
/** The name of the issue priority. */ | ||
name?: string; | ||
/** The URL of the issue priority. */ | ||
self?: string; | ||
/** The sequence of the issue priority. */ | ||
sequence?: string; | ||
/** The color used to indicate the issue priority. */ | ||
statusColor?: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { ServiceRegistryTier } from './serviceRegistryTier'; | ||
|
||
export interface ServiceRegistry { | ||
/** Service description */ | ||
description?: string; | ||
/** Service ID */ | ||
id?: string; | ||
/** Service name */ | ||
name?: string; | ||
/** Organization ID */ | ||
organizationId?: string; | ||
/** Service revision */ | ||
revision?: string; | ||
serviceTier?: ServiceRegistryTier; | ||
} |
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,14 @@ | ||
import { SuggestedMappingsForPrioritiesRequestBean } from './suggestedMappingsForPrioritiesRequestBean'; | ||
import { SuggestedMappingsForProjectsRequestBean } from './suggestedMappingsForProjectsRequestBean'; | ||
|
||
/** Details of changes to a priority scheme that require suggested priority mappings. */ | ||
export interface SuggestedMappingsRequest { | ||
/** The maximum number of results that could be on the page. */ | ||
maxResults?: number; | ||
priorities?: SuggestedMappingsForPrioritiesRequestBean; | ||
projects?: SuggestedMappingsForProjectsRequestBean; | ||
/** The id of the priority scheme. */ | ||
schemeId?: number; | ||
/** The index of the first item returned on the page. */ | ||
startAt?: number; | ||
} |
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,16 @@ | ||
import { PriorityMapping } from './priorityMapping'; | ||
import { UpdatePrioritiesInSchemeRequestBean } from './updatePrioritiesInSchemeRequestBean'; | ||
import { UpdateProjectsInSchemeRequestBean } from './updateProjectsInSchemeRequestBean'; | ||
|
||
/** Details of a priority scheme. */ | ||
export interface UpdatePrioritySchemeRequest { | ||
/** The default priority of the scheme. */ | ||
defaultPriorityId?: number; | ||
/** The description of the priority scheme. */ | ||
description?: string; | ||
mappings?: PriorityMapping; | ||
/** The name of the priority scheme. Must be unique. */ | ||
name?: string; | ||
priorities?: UpdatePrioritiesInSchemeRequestBean; | ||
projects?: UpdateProjectsInSchemeRequestBean; | ||
} |
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,8 @@ | ||
import { PrioritySchemeWithPaginatedPrioritiesAndProjects } from './prioritySchemeWithPaginatedPrioritiesAndProjects'; | ||
import { TaskProgressBeanJsonNode } from './taskProgressBeanJsonNode'; | ||
|
||
/** Details of the updated priority scheme. */ | ||
export interface UpdatePrioritySchemeResponse { | ||
priorityScheme?: PrioritySchemeWithPaginatedPrioritiesAndProjects; | ||
task?: TaskProgressBeanJsonNode; | ||
} |
Oops, something went wrong.