-
Notifications
You must be signed in to change notification settings - Fork 55
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
0186b1f
commit 05dcf60
Showing
2 changed files
with
33 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,29 @@ | ||
import { | ||
CreateCrossProjectReleaseRequest, | ||
CreateCustomFieldRequest, | ||
CreateExclusionRulesRequest, | ||
CreateIssueSourceRequest, | ||
CreatePermissionRequest, | ||
CreateSchedulingRequest, | ||
} from '@jirajs/version3/models'; | ||
|
||
export interface UpdatePlan { | ||
/** The ID of the plan. */ | ||
planId: number; | ||
/** 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; | ||
} |
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