@forge/cli-shared 3.23.2-next.0 → 3.23.2-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -29164,6 +29164,7 @@ export declare type JiraMutation = {
|
|
|
29164
29164
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
29165
29165
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
29166
29166
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
29167
|
+
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
29167
29168
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
29168
29169
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
29169
29170
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -29328,6 +29329,9 @@ export declare type JiraMutationMakeTransitionArgs = {
|
|
|
29328
29329
|
export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
29329
29330
|
input: JiraMoveIssuesToFixVersionInput;
|
|
29330
29331
|
};
|
|
29332
|
+
export declare type JiraMutationRankIssuesArgs = {
|
|
29333
|
+
rankInput: JiraRankMutationInput;
|
|
29334
|
+
};
|
|
29331
29335
|
export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
29332
29336
|
input: JiraRemoveIssuesFromAllFixVersionsInput;
|
|
29333
29337
|
};
|
|
@@ -29594,11 +29598,14 @@ export declare type JiraNotificationPreferences = {
|
|
|
29594
29598
|
commentCreated?: Maybe<JiraNotificationPreference>;
|
|
29595
29599
|
commentDeleted?: Maybe<JiraNotificationPreference>;
|
|
29596
29600
|
commentEdited?: Maybe<JiraNotificationPreference>;
|
|
29597
|
-
commentReacted?: Maybe<JiraNotificationPreference>;
|
|
29598
29601
|
issueAssigned?: Maybe<JiraNotificationPreference>;
|
|
29602
|
+
issueCreated?: Maybe<JiraNotificationPreference>;
|
|
29599
29603
|
issueDeleted?: Maybe<JiraNotificationPreference>;
|
|
29600
29604
|
issueMentioned?: Maybe<JiraNotificationPreference>;
|
|
29605
|
+
issueMoved?: Maybe<JiraNotificationPreference>;
|
|
29601
29606
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
29607
|
+
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
29608
|
+
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
29602
29609
|
};
|
|
29603
29610
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
29604
29611
|
__typename?: 'JiraNotificationProjectPreferenceConnection';
|
|
@@ -29617,8 +29624,12 @@ export declare enum JiraNotificationType {
|
|
|
29617
29624
|
CommentDeleted = "COMMENT_DELETED",
|
|
29618
29625
|
CommentEdited = "COMMENT_EDITED",
|
|
29619
29626
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
29627
|
+
IssueCreated = "ISSUE_CREATED",
|
|
29620
29628
|
IssueDeleted = "ISSUE_DELETED",
|
|
29621
|
-
|
|
29629
|
+
IssueMoved = "ISSUE_MOVED",
|
|
29630
|
+
IssueUpdated = "ISSUE_UPDATED",
|
|
29631
|
+
MentionsCombined = "MENTIONS_COMBINED",
|
|
29632
|
+
WorklogCombined = "WORKLOG_COMBINED"
|
|
29622
29633
|
}
|
|
29623
29634
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
29624
29635
|
__typename?: 'JiraNumberField';
|
|
@@ -30408,6 +30419,7 @@ export declare enum JiraProjectActionType {
|
|
|
30408
30419
|
EditProjectConfig = "EDIT_PROJECT_CONFIG",
|
|
30409
30420
|
LinkIssues = "LINK_ISSUES",
|
|
30410
30421
|
ScheduleIssues = "SCHEDULE_ISSUES",
|
|
30422
|
+
TransitionIssues = "TRANSITION_ISSUES",
|
|
30411
30423
|
ViewIssues = "VIEW_ISSUES"
|
|
30412
30424
|
}
|
|
30413
30425
|
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
@@ -31481,6 +31493,20 @@ export declare type JiraRadioSelectFieldPayload = Payload & {
|
|
|
31481
31493
|
field?: Maybe<JiraRadioSelectField>;
|
|
31482
31494
|
success: Scalars['Boolean']['output'];
|
|
31483
31495
|
};
|
|
31496
|
+
export declare enum JiraRankMutationEdge {
|
|
31497
|
+
Bottom = "BOTTOM",
|
|
31498
|
+
Top = "TOP"
|
|
31499
|
+
}
|
|
31500
|
+
export declare type JiraRankMutationInput = {
|
|
31501
|
+
edge: JiraRankMutationEdge;
|
|
31502
|
+
issues: Array<Scalars['ID']['input']>;
|
|
31503
|
+
relativeToIssue: Scalars['ID']['input'];
|
|
31504
|
+
};
|
|
31505
|
+
export declare type JiraRankMutationPayload = Payload & {
|
|
31506
|
+
__typename?: 'JiraRankMutationPayload';
|
|
31507
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31508
|
+
success: Scalars['Boolean']['output'];
|
|
31509
|
+
};
|
|
31484
31510
|
export declare type JiraReleaseNotesConfiguration = {
|
|
31485
31511
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
31486
31512
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|