@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.
28 lines (26 loc) • 937 B
text/typescript
import type {
CreateCrossProjectReleaseRequest,
CreateCustomFieldRequest,
CreateExclusionRulesRequest,
CreateIssueSourceRequest,
CreatePermissionRequest,
CreateSchedulingRequest,
} from '../models';
export interface CreatePlan {
/** Whether to accept group IDs instead of group names. Group names are deprecated. */
useGroupId?: boolean;
/** The cross-project releases to include in the plan. */
crossProjectReleases?: CreateCrossProjectReleaseRequest[];
/** The custom fields for the plan. */
customFields?: CreateCustomFieldRequest[];
exclusionRules?: CreateExclusionRulesRequest;
/** The issue sources to include in the plan. */
issueSources: CreateIssueSourceRequest[];
/** The account ID of the plan lead. */
leadAccountId?: string;
/** The plan name. */
name: string;
/** The permissions for the plan. */
permissions?: CreatePermissionRequest[];
scheduling?: CreateSchedulingRequest;
}