@forge/cli-shared 2.3.0-next.5 → 2.3.0-next.8
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 +22 -0
- package/out/graphql/graphql-types.d.ts +43 -16
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.0-next.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8e35955]
|
|
8
|
+
- @forge/manifest@3.3.0-next.7
|
|
9
|
+
|
|
10
|
+
## 2.3.0-next.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [ad94136]
|
|
15
|
+
- @forge/manifest@3.3.0-next.6
|
|
16
|
+
|
|
17
|
+
## 2.3.0-next.6
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [e95919f]
|
|
22
|
+
- Updated dependencies [f894871]
|
|
23
|
+
- @forge/manifest@3.3.0-next.5
|
|
24
|
+
|
|
3
25
|
## 2.3.0-next.5
|
|
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>;
|
|
@@ -1855,8 +1859,8 @@ export declare type CompassCreateAlertEventInput = {
|
|
|
1855
1859
|
displayName: Scalars['String'];
|
|
1856
1860
|
lastUpdated: Scalars['DateTime'];
|
|
1857
1861
|
updateSequenceNumber: Scalars['Long'];
|
|
1858
|
-
description
|
|
1859
|
-
url
|
|
1862
|
+
description: Scalars['String'];
|
|
1863
|
+
url: Scalars['URL'];
|
|
1860
1864
|
externalEventSourceId: Scalars['ID'];
|
|
1861
1865
|
alertProperties: CompassAlertEventPropertiesInput;
|
|
1862
1866
|
};
|
|
@@ -1876,8 +1880,8 @@ export declare type CompassCreateBuildEventInput = {
|
|
|
1876
1880
|
displayName: Scalars['String'];
|
|
1877
1881
|
lastUpdated: Scalars['DateTime'];
|
|
1878
1882
|
updateSequenceNumber: Scalars['Long'];
|
|
1879
|
-
description
|
|
1880
|
-
url
|
|
1883
|
+
description: Scalars['String'];
|
|
1884
|
+
url: Scalars['URL'];
|
|
1881
1885
|
externalEventSourceId: Scalars['ID'];
|
|
1882
1886
|
buildProperties: CompassBuildEventPropertiesInput;
|
|
1883
1887
|
};
|
|
@@ -1885,8 +1889,8 @@ export declare type CompassCreateCustomEventInput = {
|
|
|
1885
1889
|
displayName: Scalars['String'];
|
|
1886
1890
|
lastUpdated: Scalars['DateTime'];
|
|
1887
1891
|
updateSequenceNumber: Scalars['Long'];
|
|
1888
|
-
description
|
|
1889
|
-
url
|
|
1892
|
+
description: Scalars['String'];
|
|
1893
|
+
url: Scalars['URL'];
|
|
1890
1894
|
externalEventSourceId: Scalars['ID'];
|
|
1891
1895
|
customEventProperties: CompassCustomEventPropertiesInput;
|
|
1892
1896
|
};
|
|
@@ -1918,8 +1922,8 @@ export declare type CompassCreateFlagEventInput = {
|
|
|
1918
1922
|
displayName: Scalars['String'];
|
|
1919
1923
|
lastUpdated: Scalars['DateTime'];
|
|
1920
1924
|
updateSequenceNumber: Scalars['Long'];
|
|
1921
|
-
description
|
|
1922
|
-
url
|
|
1925
|
+
description: Scalars['String'];
|
|
1926
|
+
url: Scalars['URL'];
|
|
1923
1927
|
externalEventSourceId: Scalars['ID'];
|
|
1924
1928
|
flagProperties: CompassCreateFlagEventPropertiesInput;
|
|
1925
1929
|
};
|
|
@@ -1931,8 +1935,8 @@ export declare type CompassCreateIncidentEventInput = {
|
|
|
1931
1935
|
displayName: Scalars['String'];
|
|
1932
1936
|
lastUpdated: Scalars['DateTime'];
|
|
1933
1937
|
updateSequenceNumber: Scalars['Long'];
|
|
1934
|
-
description
|
|
1935
|
-
url
|
|
1938
|
+
description: Scalars['String'];
|
|
1939
|
+
url: Scalars['URL'];
|
|
1936
1940
|
externalEventSourceId: Scalars['ID'];
|
|
1937
1941
|
incidentProperties: CompassCreateIncidentEventPropertiesInput;
|
|
1938
1942
|
};
|
|
@@ -1944,8 +1948,8 @@ export declare type CompassCreateLifecycleEventInput = {
|
|
|
1944
1948
|
displayName: Scalars['String'];
|
|
1945
1949
|
lastUpdated: Scalars['DateTime'];
|
|
1946
1950
|
updateSequenceNumber: Scalars['Long'];
|
|
1947
|
-
description
|
|
1948
|
-
url
|
|
1951
|
+
description: Scalars['String'];
|
|
1952
|
+
url: Scalars['URL'];
|
|
1949
1953
|
externalEventSourceId: Scalars['ID'];
|
|
1950
1954
|
lifecycleProperties: CompassLifecycleEventInputProperties;
|
|
1951
1955
|
};
|
|
@@ -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'];
|
|
@@ -10454,6 +10472,7 @@ export declare type JiraVersion = Node & {
|
|
|
10454
10472
|
startDate?: Maybe<Scalars['DateTime']>;
|
|
10455
10473
|
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
10456
10474
|
warningConfig?: Maybe<JiraVersionWarningConfig>;
|
|
10475
|
+
connectAddonIframeData?: Maybe<Array<Maybe<JiraVersionConnectAddonIframeData>>>;
|
|
10457
10476
|
issues?: Maybe<JiraIssueConnection>;
|
|
10458
10477
|
};
|
|
10459
10478
|
export declare type JiraVersionIssuesArgs = {
|
|
@@ -10463,6 +10482,14 @@ export declare type JiraVersionIssuesArgs = {
|
|
|
10463
10482
|
before?: Maybe<Scalars['String']>;
|
|
10464
10483
|
filter?: Maybe<JiraVersionIssuesFilter>;
|
|
10465
10484
|
};
|
|
10485
|
+
export declare type JiraVersionConnectAddonIframeData = {
|
|
10486
|
+
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
10487
|
+
appKey?: Maybe<Scalars['String']>;
|
|
10488
|
+
moduleKey?: Maybe<Scalars['String']>;
|
|
10489
|
+
appName?: Maybe<Scalars['String']>;
|
|
10490
|
+
location?: Maybe<Scalars['String']>;
|
|
10491
|
+
options?: Maybe<Scalars['JSON']>;
|
|
10492
|
+
};
|
|
10466
10493
|
export declare type JiraVersionConnection = {
|
|
10467
10494
|
__typename?: 'JiraVersionConnection';
|
|
10468
10495
|
totalCount?: Maybe<Scalars['Int']>;
|
|
@@ -13706,11 +13733,11 @@ export declare type RoadmapsMutation = {
|
|
|
13706
13733
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13707
13734
|
};
|
|
13708
13735
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13709
|
-
input
|
|
13736
|
+
input: RoadmapFeatureToggleInput;
|
|
13710
13737
|
};
|
|
13711
13738
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13712
|
-
|
|
13713
|
-
|
|
13739
|
+
sourceARI: Scalars['ID'];
|
|
13740
|
+
input: RoadmapAddItemInput;
|
|
13714
13741
|
};
|
|
13715
13742
|
export declare type RoadmapsMutationUpdateRoadmapItemArgs = {
|
|
13716
13743
|
sourceARI: Scalars['ID'];
|