@forge/cli-shared 2.1.4 → 2.1.5-next.3
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,34 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.1.5-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [dec8066]
|
|
8
|
+
- @forge/manifest@2.5.0-next.3
|
|
9
|
+
|
|
10
|
+
## 2.1.5-next.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [755e35e]
|
|
15
|
+
- Updated dependencies [f013199]
|
|
16
|
+
- @forge/manifest@2.5.0-next.2
|
|
17
|
+
|
|
18
|
+
## 2.1.5-next.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [66f60f9]
|
|
23
|
+
- @forge/manifest@2.5.0-next.1
|
|
24
|
+
|
|
25
|
+
## 2.1.5-next.0
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [bc0c83b]
|
|
30
|
+
- @forge/manifest@2.4.1-next.0
|
|
31
|
+
|
|
3
32
|
## 2.1.4
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
|
@@ -203,6 +203,10 @@ export declare type ActivityTransition = {
|
|
|
203
203
|
from?: Maybe<Scalars['String']>;
|
|
204
204
|
to?: Maybe<Scalars['String']>;
|
|
205
205
|
};
|
|
206
|
+
export declare type ActivityUser = {
|
|
207
|
+
__typename?: 'ActivityUser';
|
|
208
|
+
accountId: Scalars['ID'];
|
|
209
|
+
};
|
|
206
210
|
export declare type AddCompassComponentLabelsInput = {
|
|
207
211
|
componentId: Scalars['ID'];
|
|
208
212
|
labelNames: Array<Scalars['String']>;
|
|
@@ -1744,6 +1748,13 @@ export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
|
1744
1748
|
errors?: Maybe<Array<MutationError>>;
|
|
1745
1749
|
createdTeamCheckin?: Maybe<CompassTeamCheckin>;
|
|
1746
1750
|
};
|
|
1751
|
+
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
1752
|
+
Equals = "EQUALS",
|
|
1753
|
+
GreaterThan = "GREATER_THAN",
|
|
1754
|
+
LessThan = "LESS_THAN",
|
|
1755
|
+
GreaterThanOrEqualTo = "GREATER_THAN_OR_EQUAL_TO",
|
|
1756
|
+
LessThanOrEqualTo = "LESS_THAN_OR_EQUAL_TO"
|
|
1757
|
+
}
|
|
1747
1758
|
export declare type CompassDeleteAnnouncementInput = {
|
|
1748
1759
|
cloudId: Scalars['ID'];
|
|
1749
1760
|
id: Scalars['ID'];
|
|
@@ -1945,6 +1956,18 @@ export declare type CompassHasLinkScorecardCriteria = CompassScorecardCriteria &
|
|
|
1945
1956
|
export declare type CompassHasLinkScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
1946
1957
|
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
1947
1958
|
};
|
|
1959
|
+
export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCriteria & {
|
|
1960
|
+
__typename?: 'CompassHasMetricValueScorecardCriteria';
|
|
1961
|
+
id: Scalars['ID'];
|
|
1962
|
+
weight: Scalars['Int'];
|
|
1963
|
+
comparatorValue: Scalars['Float'];
|
|
1964
|
+
metricDefinitionName: Scalars['String'];
|
|
1965
|
+
comparator: CompassCriteriaNumberComparatorOptions;
|
|
1966
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
1967
|
+
};
|
|
1968
|
+
export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
1969
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
1970
|
+
};
|
|
1948
1971
|
export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria & {
|
|
1949
1972
|
__typename?: 'CompassHasOwnerScorecardCriteria';
|
|
1950
1973
|
id: Scalars['ID'];
|
|
@@ -2530,6 +2553,12 @@ export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
|
2530
2553
|
weight: Scalars['Int'];
|
|
2531
2554
|
linkType: CompassLinkType;
|
|
2532
2555
|
};
|
|
2556
|
+
export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
2557
|
+
weight: Scalars['Int'];
|
|
2558
|
+
metricDefinitionName: Scalars['String'];
|
|
2559
|
+
comparatorValue: Scalars['Float'];
|
|
2560
|
+
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2561
|
+
};
|
|
2533
2562
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
2534
2563
|
weight: Scalars['Int'];
|
|
2535
2564
|
};
|
|
@@ -2554,6 +2583,7 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
2554
2583
|
hasField?: Maybe<CreateCompassHasFieldScorecardCriteriaInput>;
|
|
2555
2584
|
hasDescription?: Maybe<CreateCompassHasDescriptionScorecardCriteriaInput>;
|
|
2556
2585
|
hasOwner?: Maybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
2586
|
+
hasMetricValue?: Maybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
2557
2587
|
};
|
|
2558
2588
|
export declare type CreateCompassScorecardCriteriasInput = {
|
|
2559
2589
|
criterias: Array<CreateCompassScorecardCriteriaInput>;
|
|
@@ -3870,11 +3900,6 @@ export declare type EditSprintInput = {
|
|
|
3870
3900
|
startDate?: Maybe<Scalars['String']>;
|
|
3871
3901
|
endDate?: Maybe<Scalars['String']>;
|
|
3872
3902
|
};
|
|
3873
|
-
export declare enum EpicView {
|
|
3874
|
-
All = "ALL",
|
|
3875
|
-
Completed = "COMPLETED",
|
|
3876
|
-
Incomplete = "INCOMPLETE"
|
|
3877
|
-
}
|
|
3878
3903
|
export declare type ErrorDetails = {
|
|
3879
3904
|
__typename?: 'ErrorDetails';
|
|
3880
3905
|
code: Scalars['String'];
|
|
@@ -5413,6 +5438,7 @@ export declare type JiraIssue = Node & {
|
|
|
5413
5438
|
comments?: Maybe<JiraCommentConnection>;
|
|
5414
5439
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
5415
5440
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
5441
|
+
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
5416
5442
|
};
|
|
5417
5443
|
export declare type JiraIssueFieldsArgs = {
|
|
5418
5444
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -5482,6 +5508,7 @@ export declare type JiraIssueConnection = {
|
|
|
5482
5508
|
__typename?: 'JiraIssueConnection';
|
|
5483
5509
|
totalCount?: Maybe<Scalars['Int']>;
|
|
5484
5510
|
pageInfo: PageInfo;
|
|
5511
|
+
jql?: Maybe<Scalars['String']>;
|
|
5485
5512
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
5486
5513
|
};
|
|
5487
5514
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
@@ -8156,6 +8183,15 @@ export declare type JiraVersion = Node & {
|
|
|
8156
8183
|
description?: Maybe<Scalars['String']>;
|
|
8157
8184
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
8158
8185
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
8186
|
+
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
8187
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
8188
|
+
};
|
|
8189
|
+
export declare type JiraVersionIssuesArgs = {
|
|
8190
|
+
first?: Maybe<Scalars['Int']>;
|
|
8191
|
+
after?: Maybe<Scalars['String']>;
|
|
8192
|
+
last?: Maybe<Scalars['Int']>;
|
|
8193
|
+
before?: Maybe<Scalars['String']>;
|
|
8194
|
+
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
8159
8195
|
};
|
|
8160
8196
|
export declare type JiraVersionConnection = {
|
|
8161
8197
|
__typename?: 'JiraVersionConnection';
|
|
@@ -8190,6 +8226,15 @@ export declare type JiraVersionEdge = {
|
|
|
8190
8226
|
node?: Maybe<JiraVersion>;
|
|
8191
8227
|
cursor: Scalars['String'];
|
|
8192
8228
|
};
|
|
8229
|
+
export declare enum JiraVersionIssuesFilter {
|
|
8230
|
+
All = "ALL",
|
|
8231
|
+
Todo = "TODO",
|
|
8232
|
+
InProgress = "IN_PROGRESS",
|
|
8233
|
+
Done = "DONE",
|
|
8234
|
+
UnreviewedCode = "UNREVIEWED_CODE",
|
|
8235
|
+
OpenPullRequest = "OPEN_PULL_REQUEST",
|
|
8236
|
+
FailingBuild = "FAILING_BUILD"
|
|
8237
|
+
}
|
|
8193
8238
|
export declare type JiraVersionResult = JiraVersion | QueryError;
|
|
8194
8239
|
export declare enum JiraVersionStatus {
|
|
8195
8240
|
Released = "RELEASED",
|
|
@@ -10257,7 +10302,6 @@ export declare type Query = {
|
|
|
10257
10302
|
appHostServices?: Maybe<Array<AppHostService>>;
|
|
10258
10303
|
boardScope?: Maybe<BoardScope>;
|
|
10259
10304
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
10260
|
-
roadmaps?: Maybe<RoadmapsQuery>;
|
|
10261
10305
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
10262
10306
|
search?: Maybe<SearchQueryApi>;
|
|
10263
10307
|
me: AuthenticationContext;
|
|
@@ -10289,6 +10333,7 @@ export declare type Query = {
|
|
|
10289
10333
|
node?: Maybe<Node>;
|
|
10290
10334
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
10291
10335
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
10336
|
+
roadmaps?: Maybe<RoadmapsQuery>;
|
|
10292
10337
|
team?: Maybe<TeamQuery>;
|
|
10293
10338
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
10294
10339
|
testing?: Maybe<Testing>;
|
|
@@ -10729,6 +10774,7 @@ export declare type RoadmapConfiguration = {
|
|
|
10729
10774
|
export declare type RoadmapCreationPreferences = {
|
|
10730
10775
|
__typename?: 'RoadmapCreationPreferences';
|
|
10731
10776
|
projectId?: Maybe<Scalars['Long']>;
|
|
10777
|
+
itemTypes: Scalars['JSON'];
|
|
10732
10778
|
};
|
|
10733
10779
|
export declare type RoadmapDependencyConfiguration = {
|
|
10734
10780
|
__typename?: 'RoadmapDependencyConfiguration';
|
|
@@ -10742,6 +10788,11 @@ export declare type RoadmapDetails = {
|
|
|
10742
10788
|
roadmapItems?: Maybe<RoadmapItemConnection>;
|
|
10743
10789
|
metadata?: Maybe<RoadmapMetadata>;
|
|
10744
10790
|
};
|
|
10791
|
+
export declare enum RoadmapEpicView {
|
|
10792
|
+
All = "ALL",
|
|
10793
|
+
Completed = "COMPLETED",
|
|
10794
|
+
Incomplete = "INCOMPLETE"
|
|
10795
|
+
}
|
|
10745
10796
|
export declare type RoadmapExternalConfiguration = {
|
|
10746
10797
|
__typename?: 'RoadmapExternalConfiguration';
|
|
10747
10798
|
externalSystem: Scalars['ID'];
|
|
@@ -10875,6 +10926,7 @@ export declare type RoadmapProjectValidation = {
|
|
|
10875
10926
|
hasAllFieldAssociations: Scalars['Boolean'];
|
|
10876
10927
|
hasEpicIssueType: Scalars['Boolean'];
|
|
10877
10928
|
hasValidHierarchy: Scalars['Boolean'];
|
|
10929
|
+
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
10878
10930
|
};
|
|
10879
10931
|
export declare type RoadmapSprint = {
|
|
10880
10932
|
__typename?: 'RoadmapSprint';
|
|
@@ -10908,7 +10960,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
10908
10960
|
isProgressVisible: Scalars['Boolean'];
|
|
10909
10961
|
listWidth: Scalars['Long'];
|
|
10910
10962
|
timelineMode: RoadmapTimelineMode;
|
|
10911
|
-
epicView:
|
|
10963
|
+
epicView: RoadmapEpicView;
|
|
10912
10964
|
};
|
|
10913
10965
|
export declare type RoadmapVersion = {
|
|
10914
10966
|
__typename?: 'RoadmapVersion';
|
|
@@ -11721,7 +11773,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
11721
11773
|
name: Scalars['String'];
|
|
11722
11774
|
uuid: Scalars['String'];
|
|
11723
11775
|
owner?: Maybe<User>;
|
|
11724
|
-
url
|
|
11776
|
+
url?: Maybe<Scalars['String']>;
|
|
11725
11777
|
};
|
|
11726
11778
|
export declare type TownsquareGoalConnection = {
|
|
11727
11779
|
__typename?: 'TownsquareGoalConnection';
|
|
@@ -11742,7 +11794,7 @@ export declare type TownsquareProject = Node & {
|
|
|
11742
11794
|
name: Scalars['String'];
|
|
11743
11795
|
uuid: Scalars['String'];
|
|
11744
11796
|
owner?: Maybe<User>;
|
|
11745
|
-
url
|
|
11797
|
+
url?: Maybe<Scalars['String']>;
|
|
11746
11798
|
};
|
|
11747
11799
|
export declare type TownsquareProjectConnection = {
|
|
11748
11800
|
__typename?: 'TownsquareProjectConnection';
|
|
@@ -11898,6 +11950,13 @@ export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
|
11898
11950
|
weight?: Maybe<Scalars['Int']>;
|
|
11899
11951
|
linkType?: Maybe<CompassLinkType>;
|
|
11900
11952
|
};
|
|
11953
|
+
export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
11954
|
+
id: Scalars['ID'];
|
|
11955
|
+
weight?: Maybe<Scalars['Int']>;
|
|
11956
|
+
metricDefinitionName?: Maybe<Scalars['String']>;
|
|
11957
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
11958
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
11959
|
+
};
|
|
11901
11960
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
11902
11961
|
id: Scalars['ID'];
|
|
11903
11962
|
weight?: Maybe<Scalars['Int']>;
|
|
@@ -11913,6 +11972,7 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
11913
11972
|
hasField?: Maybe<UpdateCompassHasFieldScorecardCriteriaInput>;
|
|
11914
11973
|
hasDescription?: Maybe<UpdateCompassHasDescriptionScorecardCriteriaInput>;
|
|
11915
11974
|
hasOwner?: Maybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
11975
|
+
hasMetricValue?: Maybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
11916
11976
|
};
|
|
11917
11977
|
export declare type UpdateCompassScorecardCriteriasInput = {
|
|
11918
11978
|
criterias: Array<UpdateCompassScorecardCriteriaInput>;
|
|
@@ -12249,7 +12309,7 @@ export declare type UserGrant = {
|
|
|
12249
12309
|
id: Scalars['ID'];
|
|
12250
12310
|
accountId: Scalars['ID'];
|
|
12251
12311
|
oauthClientId: Scalars['ID'];
|
|
12252
|
-
appId
|
|
12312
|
+
appId?: Maybe<Scalars['ID']>;
|
|
12253
12313
|
appDetails?: Maybe<UserGrantAppDetails>;
|
|
12254
12314
|
scopes: Array<Maybe<AppHostServiceScope>>;
|
|
12255
12315
|
};
|