@forge/cli-shared 3.18.0-next.4 → 3.18.0-next.6
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
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.18.0-next.6
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 424cf45e: Use CDN packaged wrapper script for the node runtime
|
|
8
|
+
|
|
9
|
+
## 3.18.0-next.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [b9a5a33a]
|
|
14
|
+
- @forge/manifest@4.20.0-next.3
|
|
15
|
+
|
|
3
16
|
## 3.18.0-next.4
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -7529,6 +7529,7 @@ export type DevOps = {
|
|
|
7529
7529
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
7530
7530
|
providers?: Maybe<DevOpsProviders>;
|
|
7531
7531
|
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
7532
|
+
providersByDomain?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
7532
7533
|
ariGraph?: Maybe<AriGraph>;
|
|
7533
7534
|
graph?: Maybe<Graph>;
|
|
7534
7535
|
toolchain?: Maybe<Toolchain>;
|
|
@@ -7551,6 +7552,11 @@ export type DevOpsProvidersByIdsArgs = {
|
|
|
7551
7552
|
providerIds?: Maybe<Array<Scalars['String']>>;
|
|
7552
7553
|
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
7553
7554
|
};
|
|
7555
|
+
export type DevOpsProvidersByDomainArgs = {
|
|
7556
|
+
id: Scalars['ID'];
|
|
7557
|
+
providerDomain: Scalars['String'];
|
|
7558
|
+
providerTypes?: Maybe<Array<DevOpsProviderType>>;
|
|
7559
|
+
};
|
|
7554
7560
|
export type DevOpsAvatar = {
|
|
7555
7561
|
__typename?: 'DevOpsAvatar';
|
|
7556
7562
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -13724,6 +13730,7 @@ export type JiraIssue = Node & {
|
|
|
13724
13730
|
isResolved?: Maybe<Scalars['Boolean']>;
|
|
13725
13731
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
13726
13732
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
13733
|
+
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
13727
13734
|
comments?: Maybe<JiraCommentConnection>;
|
|
13728
13735
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
13729
13736
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
@@ -13761,6 +13768,10 @@ export type JiraIssueFieldsByIdArgs = {
|
|
|
13761
13768
|
last?: Maybe<Scalars['Int']>;
|
|
13762
13769
|
before?: Maybe<Scalars['String']>;
|
|
13763
13770
|
};
|
|
13771
|
+
export type JiraIssueFieldsByIdOrAliasArgs = {
|
|
13772
|
+
idsOrAliases: Array<Maybe<Scalars['String']>>;
|
|
13773
|
+
ignoreMissingFields?: Maybe<Scalars['Boolean']>;
|
|
13774
|
+
};
|
|
13764
13775
|
export type JiraIssueCommentsArgs = {
|
|
13765
13776
|
first?: Maybe<Scalars['Int']>;
|
|
13766
13777
|
after?: Maybe<Scalars['String']>;
|
|
@@ -14546,6 +14557,9 @@ export type JiraIssueSearchViewPayload = Payload & {
|
|
|
14546
14557
|
errors?: Maybe<Array<MutationError>>;
|
|
14547
14558
|
view?: Maybe<JiraIssueSearchView>;
|
|
14548
14559
|
};
|
|
14560
|
+
export type JiraIssueTransitionFieldLevelInput = {
|
|
14561
|
+
JiraSingleSelectField?: Maybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
14562
|
+
};
|
|
14549
14563
|
export declare enum JiraIssueTransitionLayoutMessageType {
|
|
14550
14564
|
Error = "ERROR",
|
|
14551
14565
|
Warn = "WARN",
|
|
@@ -14567,6 +14581,11 @@ export type JiraIssueTransitionModal = {
|
|
|
14567
14581
|
messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
|
|
14568
14582
|
issue?: Maybe<JiraIssue>;
|
|
14569
14583
|
};
|
|
14584
|
+
export type JiraIssueTransitionResponse = Payload & {
|
|
14585
|
+
__typename?: 'JiraIssueTransitionResponse';
|
|
14586
|
+
success: Scalars['Boolean'];
|
|
14587
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14588
|
+
};
|
|
14570
14589
|
export type JiraIssueType = Node & {
|
|
14571
14590
|
__typename?: 'JiraIssueType';
|
|
14572
14591
|
id: Scalars['ID'];
|
|
@@ -15444,6 +15463,7 @@ export type JiraMutation = {
|
|
|
15444
15463
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
15445
15464
|
updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
|
|
15446
15465
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
15466
|
+
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
15447
15467
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
15448
15468
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
15449
15469
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
@@ -15568,6 +15588,9 @@ export type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
|
15568
15588
|
id: Scalars['ID'];
|
|
15569
15589
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
15570
15590
|
};
|
|
15591
|
+
export type JiraMutationMakeTransitionArgs = {
|
|
15592
|
+
input: JiraUpdateIssueTransitionInput;
|
|
15593
|
+
};
|
|
15571
15594
|
export type JiraMutationUserPreferencesArgs = {
|
|
15572
15595
|
cloudId: Scalars['ID'];
|
|
15573
15596
|
};
|
|
@@ -19370,6 +19393,11 @@ export type JiraUpdateGlobalPreferencesPayload = Payload & {
|
|
|
19370
19393
|
errors?: Maybe<Array<MutationError>>;
|
|
19371
19394
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
19372
19395
|
};
|
|
19396
|
+
export type JiraUpdateIssueTransitionInput = {
|
|
19397
|
+
issueId: Scalars['ID'];
|
|
19398
|
+
transitionId: Scalars['Int'];
|
|
19399
|
+
fieldInputs?: Maybe<JiraIssueTransitionFieldLevelInput>;
|
|
19400
|
+
};
|
|
19373
19401
|
export type JiraUpdateLabelsFieldInput = {
|
|
19374
19402
|
id: Scalars['ID'];
|
|
19375
19403
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -26741,6 +26769,12 @@ export type SupportRequestHierarchyRequests = {
|
|
|
26741
26769
|
total: Scalars['Int'];
|
|
26742
26770
|
page: Array<SupportRequestHierarchyRequest>;
|
|
26743
26771
|
};
|
|
26772
|
+
export type SupportRequestIdentityUser = {
|
|
26773
|
+
__typename?: 'SupportRequestIdentityUser';
|
|
26774
|
+
accountId?: Maybe<Scalars['ID']>;
|
|
26775
|
+
name: Scalars['String'];
|
|
26776
|
+
picture?: Maybe<Scalars['String']>;
|
|
26777
|
+
};
|
|
26744
26778
|
export type SupportRequestLastComment = {
|
|
26745
26779
|
__typename?: 'SupportRequestLastComment';
|
|
26746
26780
|
offset: Scalars['Int'];
|
|
@@ -26883,7 +26917,7 @@ export type SupportRequestUpdateInput = {
|
|
|
26883
26917
|
};
|
|
26884
26918
|
export type SupportRequestUser = {
|
|
26885
26919
|
__typename?: 'SupportRequestUser';
|
|
26886
|
-
user?: Maybe<
|
|
26920
|
+
user?: Maybe<SupportRequestIdentityUser>;
|
|
26887
26921
|
username?: Maybe<Scalars['String']>;
|
|
26888
26922
|
email?: Maybe<Scalars['String']>;
|
|
26889
26923
|
displayName?: Maybe<Scalars['String']>;
|