@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 (11 loc) • 641 B
text/typescript
import type { CreateDateFieldRequest } from './createDateFieldRequest';
export interface CreateSchedulingRequest {
/** The dependencies for the plan. This must be "Sequential" or "Concurrent". */
dependencies?: 'Sequential' | 'Concurrent' | string;
endDate?: CreateDateFieldRequest;
/** The estimation unit for the plan. This must be "StoryPoints", "Days" or "Hours". */
estimation: 'StoryPoints' | 'Days' | 'Hours' | string;
/** The inferred dates for the plan. This must be "None", "SprintDates" or "ReleaseDates". */
inferredDates?: 'None' | 'SprintDates' | 'ReleaseDates' | string;
startDate?: CreateDateFieldRequest;
}