@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.
13 lines (12 loc) • 452 B
text/typescript
export interface AddAtlassianTeamRequest {
/** 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;
}