@forge/cli-shared 2.1.6-next.3 → 2.1.6-next.4
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
|
@@ -1567,6 +1567,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1567
1567
|
starredComponents?: Maybe<CompassStarredComponentQueryResult>;
|
|
1568
1568
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1569
1569
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1570
|
+
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1570
1571
|
};
|
|
1571
1572
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1572
1573
|
id: Scalars['ID'];
|
|
@@ -1605,6 +1606,10 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
1605
1606
|
export declare type CompassCatalogQueryApiMetricDefinitionsArgs = {
|
|
1606
1607
|
query: CompassMetricDefinitionsQuery;
|
|
1607
1608
|
};
|
|
1609
|
+
export declare type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
1610
|
+
cloudId: Scalars['ID'];
|
|
1611
|
+
metricDefinitionId: Scalars['ID'];
|
|
1612
|
+
};
|
|
1608
1613
|
export declare type CompassChangeMetadata = {
|
|
1609
1614
|
__typename?: 'CompassChangeMetadata';
|
|
1610
1615
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -1766,9 +1771,9 @@ export declare type CompassDeleteMetricSourceInput = {
|
|
|
1766
1771
|
};
|
|
1767
1772
|
export declare type CompassDeleteMetricSourcePayload = Payload & {
|
|
1768
1773
|
__typename?: 'CompassDeleteMetricSourcePayload';
|
|
1769
|
-
deletedMetricSourceId?: Maybe<Scalars['ID']>;
|
|
1770
1774
|
success: Scalars['Boolean'];
|
|
1771
1775
|
errors?: Maybe<Array<MutationError>>;
|
|
1776
|
+
deletedMetricSourceId?: Maybe<Scalars['ID']>;
|
|
1772
1777
|
};
|
|
1773
1778
|
export declare type CompassDeleteTeamCheckinActionInput = {
|
|
1774
1779
|
id: Scalars['ID'];
|
|
@@ -1996,6 +2001,10 @@ export declare type CompassMetricDefinition = {
|
|
|
1996
2001
|
name?: Maybe<Scalars['String']>;
|
|
1997
2002
|
description?: Maybe<Scalars['String']>;
|
|
1998
2003
|
format?: Maybe<CompassMetricDefinitionFormat>;
|
|
2004
|
+
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
2005
|
+
};
|
|
2006
|
+
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
2007
|
+
query?: Maybe<CompassMetricSourcesQuery>;
|
|
1999
2008
|
};
|
|
2000
2009
|
export declare type CompassMetricDefinitionEdge = {
|
|
2001
2010
|
__typename?: 'CompassMetricDefinitionEdge';
|
|
@@ -2013,6 +2022,7 @@ export declare type CompassMetricDefinitionFormatSuffix = {
|
|
|
2013
2022
|
export declare type CompassMetricDefinitionFormatSuffixInput = {
|
|
2014
2023
|
suffix: Scalars['String'];
|
|
2015
2024
|
};
|
|
2025
|
+
export declare type CompassMetricDefinitionResult = CompassMetricDefinition | QueryError;
|
|
2016
2026
|
export declare type CompassMetricDefinitionsConnection = {
|
|
2017
2027
|
__typename?: 'CompassMetricDefinitionsConnection';
|
|
2018
2028
|
edges?: Maybe<Array<CompassMetricDefinitionEdge>>;
|
|
@@ -2032,6 +2042,7 @@ export declare type CompassMetricSource = {
|
|
|
2032
2042
|
externalMetricSourceId?: Maybe<Scalars['ID']>;
|
|
2033
2043
|
url?: Maybe<Scalars['String']>;
|
|
2034
2044
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
2045
|
+
component?: Maybe<CompassComponent>;
|
|
2035
2046
|
};
|
|
2036
2047
|
export declare type CompassMetricSourceValuesArgs = {
|
|
2037
2048
|
query?: Maybe<CompassMetricSourceValuesQuery>;
|
|
@@ -2052,6 +2063,17 @@ export declare type CompassMetricSourceValuesQuery = {
|
|
|
2052
2063
|
after?: Maybe<Scalars['String']>;
|
|
2053
2064
|
};
|
|
2054
2065
|
export declare type CompassMetricSourceValuesQueryResult = CompassMetricSourceValuesConnection | QueryError;
|
|
2066
|
+
export declare type CompassMetricSourcesConnection = {
|
|
2067
|
+
__typename?: 'CompassMetricSourcesConnection';
|
|
2068
|
+
edges?: Maybe<Array<CompassMetricSourceEdge>>;
|
|
2069
|
+
nodes?: Maybe<Array<CompassMetricSource>>;
|
|
2070
|
+
pageInfo: PageInfo;
|
|
2071
|
+
};
|
|
2072
|
+
export declare type CompassMetricSourcesQuery = {
|
|
2073
|
+
first?: Maybe<Scalars['Int']>;
|
|
2074
|
+
after?: Maybe<Scalars['String']>;
|
|
2075
|
+
};
|
|
2076
|
+
export declare type CompassMetricSourcesQueryResult = CompassMetricSourcesConnection | QueryError;
|
|
2055
2077
|
export declare type CompassMetricValue = {
|
|
2056
2078
|
__typename?: 'CompassMetricValue';
|
|
2057
2079
|
timestamp?: Maybe<Scalars['DateTime']>;
|
|
@@ -3903,12 +3925,17 @@ export declare type DevOpsTool = {
|
|
|
3903
3925
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
3904
3926
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
3905
3927
|
};
|
|
3906
|
-
export declare type DevOpsToolAvailable = DevOpsTool & {
|
|
3928
|
+
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
3907
3929
|
__typename?: 'DevOpsToolAvailable';
|
|
3908
3930
|
id: Scalars['ID'];
|
|
3909
3931
|
name: Scalars['String'];
|
|
3910
3932
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
3911
3933
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
3934
|
+
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
3935
|
+
};
|
|
3936
|
+
export declare type DevOpsToolAvailableNamespacesArgs = {
|
|
3937
|
+
first?: Maybe<Scalars['Int']>;
|
|
3938
|
+
after?: Maybe<Scalars['String']>;
|
|
3912
3939
|
};
|
|
3913
3940
|
export declare type DevOpsToolAvatar = {
|
|
3914
3941
|
__typename?: 'DevOpsToolAvatar';
|
|
@@ -3925,7 +3952,7 @@ export declare type DevOpsToolConnection = {
|
|
|
3925
3952
|
nodes?: Maybe<Array<Maybe<DevOpsTool>>>;
|
|
3926
3953
|
pageInfo: PageInfo;
|
|
3927
3954
|
};
|
|
3928
|
-
export declare type DevOpsToolContainer = {
|
|
3955
|
+
export declare type DevOpsToolContainer = Node & {
|
|
3929
3956
|
__typename?: 'DevOpsToolContainer';
|
|
3930
3957
|
id: Scalars['ID'];
|
|
3931
3958
|
displayName: Scalars['String'];
|
|
@@ -3957,11 +3984,16 @@ export declare type DevOpsToolInstallationInfo = {
|
|
|
3957
3984
|
oauthUrl?: Maybe<Scalars['URL']>;
|
|
3958
3985
|
webUrl: Scalars['URL'];
|
|
3959
3986
|
};
|
|
3960
|
-
export declare type DevOpsToolNamespace = {
|
|
3987
|
+
export declare type DevOpsToolNamespace = Node & {
|
|
3961
3988
|
__typename?: 'DevOpsToolNamespace';
|
|
3962
3989
|
id: Scalars['ID'];
|
|
3963
3990
|
displayName: Scalars['String'];
|
|
3964
3991
|
canCreateContainer: Scalars['Boolean'];
|
|
3992
|
+
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
3993
|
+
};
|
|
3994
|
+
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
3995
|
+
first?: Maybe<Scalars['Int']>;
|
|
3996
|
+
after?: Maybe<Scalars['String']>;
|
|
3965
3997
|
};
|
|
3966
3998
|
export declare type DevOpsToolNamespaceConnection = {
|
|
3967
3999
|
__typename?: 'DevOpsToolNamespaceConnection';
|
|
@@ -3979,7 +4011,7 @@ export declare type DevOpsToolSupportedContainerType = {
|
|
|
3979
4011
|
category: DevOpsToolCategory;
|
|
3980
4012
|
type: DevOpsToolContainerType;
|
|
3981
4013
|
};
|
|
3982
|
-
export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
4014
|
+
export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
3983
4015
|
__typename?: 'DevOpsToolUnavailable';
|
|
3984
4016
|
id: Scalars['ID'];
|
|
3985
4017
|
name: Scalars['String'];
|
|
@@ -3990,27 +4022,23 @@ export declare type DevOpsToolUnavailable = DevOpsTool & {
|
|
|
3990
4022
|
export declare type DevOpsTools = {
|
|
3991
4023
|
__typename?: 'DevOpsTools';
|
|
3992
4024
|
tools?: Maybe<DevOpsToolConnection>;
|
|
3993
|
-
|
|
3994
|
-
|
|
4025
|
+
tool?: Maybe<DevOpsTool>;
|
|
4026
|
+
namespace?: Maybe<DevOpsToolNamespace>;
|
|
4027
|
+
container?: Maybe<DevOpsToolContainer>;
|
|
3995
4028
|
};
|
|
3996
4029
|
export declare type DevOpsToolsToolsArgs = {
|
|
3997
4030
|
cloudId: Scalars['ID'];
|
|
3998
4031
|
first?: Maybe<Scalars['Int']>;
|
|
3999
4032
|
after?: Maybe<Scalars['String']>;
|
|
4000
4033
|
};
|
|
4001
|
-
export declare type
|
|
4002
|
-
|
|
4003
|
-
toolId: Scalars['String'];
|
|
4004
|
-
first?: Maybe<Scalars['Int']>;
|
|
4005
|
-
after?: Maybe<Scalars['String']>;
|
|
4034
|
+
export declare type DevOpsToolsToolArgs = {
|
|
4035
|
+
id: Scalars['ID'];
|
|
4006
4036
|
};
|
|
4007
|
-
export declare type
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
first?: Maybe<Scalars['Int']>;
|
|
4013
|
-
after?: Maybe<Scalars['String']>;
|
|
4037
|
+
export declare type DevOpsToolsNamespaceArgs = {
|
|
4038
|
+
id: Scalars['ID'];
|
|
4039
|
+
};
|
|
4040
|
+
export declare type DevOpsToolsContainerArgs = {
|
|
4041
|
+
id: Scalars['ID'];
|
|
4014
4042
|
};
|
|
4015
4043
|
export declare type DevStatus = {
|
|
4016
4044
|
__typename?: 'DevStatus';
|