@forge/cli-shared 3.18.0-next.4 → 3.18.0-next.5
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
|
@@ -13724,6 +13724,7 @@ export type JiraIssue = Node & {
|
|
|
13724
13724
|
isResolved?: Maybe<Scalars['Boolean']>;
|
|
13725
13725
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
13726
13726
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
13727
|
+
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
13727
13728
|
comments?: Maybe<JiraCommentConnection>;
|
|
13728
13729
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
13729
13730
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
@@ -13761,6 +13762,10 @@ export type JiraIssueFieldsByIdArgs = {
|
|
|
13761
13762
|
last?: Maybe<Scalars['Int']>;
|
|
13762
13763
|
before?: Maybe<Scalars['String']>;
|
|
13763
13764
|
};
|
|
13765
|
+
export type JiraIssueFieldsByIdOrAliasArgs = {
|
|
13766
|
+
idsOrAliases: Array<Maybe<Scalars['String']>>;
|
|
13767
|
+
ignoreMissingFields?: Maybe<Scalars['Boolean']>;
|
|
13768
|
+
};
|
|
13764
13769
|
export type JiraIssueCommentsArgs = {
|
|
13765
13770
|
first?: Maybe<Scalars['Int']>;
|
|
13766
13771
|
after?: Maybe<Scalars['String']>;
|
|
@@ -14546,6 +14551,9 @@ export type JiraIssueSearchViewPayload = Payload & {
|
|
|
14546
14551
|
errors?: Maybe<Array<MutationError>>;
|
|
14547
14552
|
view?: Maybe<JiraIssueSearchView>;
|
|
14548
14553
|
};
|
|
14554
|
+
export type JiraIssueTransitionFieldLevelInput = {
|
|
14555
|
+
JiraSingleSelectField?: Maybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
14556
|
+
};
|
|
14549
14557
|
export declare enum JiraIssueTransitionLayoutMessageType {
|
|
14550
14558
|
Error = "ERROR",
|
|
14551
14559
|
Warn = "WARN",
|
|
@@ -14567,6 +14575,11 @@ export type JiraIssueTransitionModal = {
|
|
|
14567
14575
|
messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
|
|
14568
14576
|
issue?: Maybe<JiraIssue>;
|
|
14569
14577
|
};
|
|
14578
|
+
export type JiraIssueTransitionResponse = Payload & {
|
|
14579
|
+
__typename?: 'JiraIssueTransitionResponse';
|
|
14580
|
+
success: Scalars['Boolean'];
|
|
14581
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14582
|
+
};
|
|
14570
14583
|
export type JiraIssueType = Node & {
|
|
14571
14584
|
__typename?: 'JiraIssueType';
|
|
14572
14585
|
id: Scalars['ID'];
|
|
@@ -15444,6 +15457,7 @@ export type JiraMutation = {
|
|
|
15444
15457
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
15445
15458
|
updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
|
|
15446
15459
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
15460
|
+
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
15447
15461
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
15448
15462
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
15449
15463
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
@@ -15568,6 +15582,9 @@ export type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
15568
15582
|
id: Scalars['ID'];
|
|
15569
15583
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
15570
15584
|
};
|
|
15585
|
+
export type JiraMutationMakeTransitionArgs = {
|
|
15586
|
+
input: JiraUpdateIssueTransitionInput;
|
|
15587
|
+
};
|
|
15571
15588
|
export type JiraMutationUserPreferencesArgs = {
|
|
15572
15589
|
cloudId: Scalars['ID'];
|
|
15573
15590
|
};
|
|
@@ -19370,6 +19387,11 @@ export type JiraUpdateGlobalPreferencesPayload = Payload & {
|
|
|
19370
19387
|
errors?: Maybe<Array<MutationError>>;
|
|
19371
19388
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
19372
19389
|
};
|
|
19390
|
+
export type JiraUpdateIssueTransitionInput = {
|
|
19391
|
+
issueId: Scalars['ID'];
|
|
19392
|
+
transitionId: Scalars['Int'];
|
|
19393
|
+
fieldInputs?: Maybe<JiraIssueTransitionFieldLevelInput>;
|
|
19394
|
+
};
|
|
19373
19395
|
export type JiraUpdateLabelsFieldInput = {
|
|
19374
19396
|
id: Scalars['ID'];
|
|
19375
19397
|
operations: Array<JiraLabelsFieldOperationInput>;
|