@forge/cli-shared 2.3.0-next.4 → 2.3.0-next.7
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,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.0-next.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [ad94136]
|
|
8
|
+
- @forge/manifest@3.3.0-next.6
|
|
9
|
+
|
|
10
|
+
## 2.3.0-next.6
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [e95919f]
|
|
15
|
+
- Updated dependencies [f894871]
|
|
16
|
+
- @forge/manifest@3.3.0-next.5
|
|
17
|
+
|
|
18
|
+
## 2.3.0-next.5
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [ae111cd]
|
|
23
|
+
- @forge/manifest@3.3.0-next.4
|
|
24
|
+
|
|
3
25
|
## 2.3.0-next.4
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -1569,6 +1569,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
1569
1569
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
1570
1570
|
deleteMetricSource?: Maybe<CompassDeleteMetricSourcePayload>;
|
|
1571
1571
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
1572
|
+
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
1572
1573
|
};
|
|
1573
1574
|
export declare type CompassCatalogMutationApiCreateComponentArgs = {
|
|
1574
1575
|
cloudId: Scalars['ID'];
|
|
@@ -1715,6 +1716,9 @@ export declare type CompassCatalogMutationApiDeleteMetricSourceArgs = {
|
|
|
1715
1716
|
export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
1716
1717
|
input: CompassInsertMetricValueInput;
|
|
1717
1718
|
};
|
|
1719
|
+
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
1720
|
+
input?: Maybe<CompassSynchronizeLinkAssociationsInput>;
|
|
1721
|
+
};
|
|
1718
1722
|
export declare type CompassCatalogQueryApi = {
|
|
1719
1723
|
__typename?: 'CompassCatalogQueryApi';
|
|
1720
1724
|
component?: Maybe<CompassComponentResult>;
|
|
@@ -2661,6 +2665,15 @@ export declare type CompassStarredComponentQuery = {
|
|
|
2661
2665
|
after?: Maybe<Scalars['String']>;
|
|
2662
2666
|
};
|
|
2663
2667
|
export declare type CompassStarredComponentQueryResult = CompassStarredComponentConnection | QueryError;
|
|
2668
|
+
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
2669
|
+
cloudId: Scalars['ID'];
|
|
2670
|
+
forgeAppId: Scalars['ID'];
|
|
2671
|
+
};
|
|
2672
|
+
export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
|
|
2673
|
+
__typename?: 'CompassSynchronizeLinkAssociationsPayload';
|
|
2674
|
+
success: Scalars['Boolean'];
|
|
2675
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2676
|
+
};
|
|
2664
2677
|
export declare type CompassTeamCheckin = {
|
|
2665
2678
|
__typename?: 'CompassTeamCheckin';
|
|
2666
2679
|
teamId?: Maybe<Scalars['ID']>;
|
|
@@ -8895,6 +8908,7 @@ export declare type JiraProject = Node & {
|
|
|
8895
8908
|
projectType?: Maybe<JiraProjectType>;
|
|
8896
8909
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
8897
8910
|
status?: Maybe<JiraProjectStatus>;
|
|
8911
|
+
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
8898
8912
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
8899
8913
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
8900
8914
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -9968,7 +9982,7 @@ export declare type JiraServiceManagementRequestLanguageField = Node & JiraIssue
|
|
|
9968
9982
|
export declare type JiraServiceManagementRequestType = Node & {
|
|
9969
9983
|
__typename?: 'JiraServiceManagementRequestType';
|
|
9970
9984
|
id: Scalars['ID'];
|
|
9971
|
-
requestTypeId: Scalars['
|
|
9985
|
+
requestTypeId: Scalars['String'];
|
|
9972
9986
|
name?: Maybe<Scalars['String']>;
|
|
9973
9987
|
key?: Maybe<Scalars['String']>;
|
|
9974
9988
|
description?: Maybe<Scalars['String']>;
|
|
@@ -10067,6 +10081,10 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
10067
10081
|
key: Scalars['String'];
|
|
10068
10082
|
value: Scalars['String'];
|
|
10069
10083
|
};
|
|
10084
|
+
export declare type JiraSimilarIssues = {
|
|
10085
|
+
__typename?: 'JiraSimilarIssues';
|
|
10086
|
+
featureEnabled: Scalars['Boolean'];
|
|
10087
|
+
};
|
|
10070
10088
|
export declare type JiraSingleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10071
10089
|
__typename?: 'JiraSingleGroupPickerField';
|
|
10072
10090
|
id: Scalars['ID'];
|
|
@@ -13706,11 +13724,11 @@ export declare type RoadmapsMutation = {
|
|
|
13706
13724
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13707
13725
|
};
|
|
13708
13726
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13709
|
-
input
|
|
13727
|
+
input: RoadmapFeatureToggleInput;
|
|
13710
13728
|
};
|
|
13711
13729
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13712
|
-
|
|
13713
|
-
|
|
13730
|
+
sourceARI: Scalars['ID'];
|
|
13731
|
+
input: RoadmapAddItemInput;
|
|
13714
13732
|
};
|
|
13715
13733
|
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
13716
13734
|
sourceARI: Scalars['ID'];
|