@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
15 lines (14 loc) • 492 B
text/typescript
export interface AddAtlassianTeam {
/** The ID of the plan. */
planId: number;
/** 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 must be "Scrum" or "Kanban". */
planningStyle: 'Scrum' | 'Kanban' | string;
/** The sprint length for the Atlassian team. */
sprintLength?: number;
}