@forge/cli-shared 2.2.2-next.1 → 2.2.2-next.2
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
|
@@ -4915,6 +4915,9 @@ export declare type DevOpsTool = {
|
|
|
4915
4915
|
name: Scalars['String'];
|
|
4916
4916
|
productKey: Scalars['String'];
|
|
4917
4917
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4918
|
+
group: DevOpsToolGroup;
|
|
4919
|
+
supportsContainers: Scalars['Boolean'];
|
|
4920
|
+
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
4918
4921
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4919
4922
|
};
|
|
4920
4923
|
export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
@@ -4923,6 +4926,9 @@ export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
|
4923
4926
|
name: Scalars['String'];
|
|
4924
4927
|
productKey: Scalars['String'];
|
|
4925
4928
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4929
|
+
group: DevOpsToolGroup;
|
|
4930
|
+
supportsContainers: Scalars['Boolean'];
|
|
4931
|
+
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
4926
4932
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4927
4933
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
4928
4934
|
};
|
|
@@ -4972,6 +4978,22 @@ export declare type DevOpsToolContainerEdge = {
|
|
|
4972
4978
|
cursor: Scalars['String'];
|
|
4973
4979
|
node?: Maybe<DevOpsToolContainer>;
|
|
4974
4980
|
};
|
|
4981
|
+
export declare type DevOpsToolContainerIntegration = {
|
|
4982
|
+
containerType: Scalars['String'];
|
|
4983
|
+
};
|
|
4984
|
+
export declare type DevOpsToolContainerIntegrationApp = DevOpsToolContainerIntegration & {
|
|
4985
|
+
__typename?: 'DevOpsToolContainerIntegrationApp';
|
|
4986
|
+
containerType: Scalars['String'];
|
|
4987
|
+
appKey: Scalars['String'];
|
|
4988
|
+
installed: Scalars['Boolean'];
|
|
4989
|
+
oauthUrl?: Maybe<Scalars['String']>;
|
|
4990
|
+
};
|
|
4991
|
+
export declare type DevOpsToolContainerIntegrationProduct = DevOpsToolContainerIntegration & {
|
|
4992
|
+
__typename?: 'DevOpsToolContainerIntegrationProduct';
|
|
4993
|
+
containerType: Scalars['String'];
|
|
4994
|
+
productKey: Scalars['String'];
|
|
4995
|
+
available: Scalars['Boolean'];
|
|
4996
|
+
};
|
|
4975
4997
|
export declare enum DevOpsToolContainerType {
|
|
4976
4998
|
Repository = "REPOSITORY",
|
|
4977
4999
|
DocumentsSpace = "DOCUMENTS_SPACE",
|
|
@@ -4982,6 +5004,11 @@ export declare type DevOpsToolEdge = {
|
|
|
4982
5004
|
cursor: Scalars['String'];
|
|
4983
5005
|
node?: Maybe<DevOpsTool>;
|
|
4984
5006
|
};
|
|
5007
|
+
export declare type DevOpsToolGroup = {
|
|
5008
|
+
__typename?: 'DevOpsToolGroup';
|
|
5009
|
+
groupId: Scalars['String'];
|
|
5010
|
+
groupName: Scalars['String'];
|
|
5011
|
+
};
|
|
4985
5012
|
export declare type DevOpsToolInstallationInfo = {
|
|
4986
5013
|
__typename?: 'DevOpsToolInstallationInfo';
|
|
4987
5014
|
oauthUrl?: Maybe<Scalars['URL']>;
|
|
@@ -5034,6 +5061,9 @@ export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
|
5034
5061
|
name: Scalars['String'];
|
|
5035
5062
|
productKey: Scalars['String'];
|
|
5036
5063
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
5064
|
+
group: DevOpsToolGroup;
|
|
5065
|
+
supportsContainers: Scalars['Boolean'];
|
|
5066
|
+
containerIntegration?: Maybe<DevOpsToolContainerIntegration>;
|
|
5037
5067
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
5038
5068
|
install: DevOpsToolInstallationInfo;
|
|
5039
5069
|
};
|
|
@@ -5351,6 +5381,7 @@ export declare type ForgeMetricsQueryErrorsArgs = {
|
|
|
5351
5381
|
};
|
|
5352
5382
|
export declare type ForgeMetricsQueryFilters = {
|
|
5353
5383
|
environment?: Maybe<Scalars['ID']>;
|
|
5384
|
+
contextAris?: Maybe<Array<Scalars['ID']>>;
|
|
5354
5385
|
interval: ForgeMetricsIntervalInput;
|
|
5355
5386
|
};
|
|
5356
5387
|
export declare type ForgeMetricsQueryInput = {
|
|
@@ -6909,6 +6940,17 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
6909
6940
|
id: Scalars['ID'];
|
|
6910
6941
|
group: JiraGroup;
|
|
6911
6942
|
};
|
|
6943
|
+
export declare type JiraInvalidJqlError = {
|
|
6944
|
+
__typename?: 'JiraInvalidJqlError';
|
|
6945
|
+
messages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6946
|
+
};
|
|
6947
|
+
export declare type JiraInvalidSyntaxError = {
|
|
6948
|
+
__typename?: 'JiraInvalidSyntaxError';
|
|
6949
|
+
message?: Maybe<Scalars['String']>;
|
|
6950
|
+
errorType?: Maybe<JiraJqlSyntaxError>;
|
|
6951
|
+
line?: Maybe<Scalars['Int']>;
|
|
6952
|
+
column?: Maybe<Scalars['Int']>;
|
|
6953
|
+
};
|
|
6912
6954
|
export declare type JiraIssue = Node & {
|
|
6913
6955
|
__typename?: 'JiraIssue';
|
|
6914
6956
|
id: Scalars['ID'];
|
|
@@ -6921,6 +6963,7 @@ export declare type JiraIssue = Node & {
|
|
|
6921
6963
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
6922
6964
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
6923
6965
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6966
|
+
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
6924
6967
|
childIssues?: Maybe<JiraChildIssues>;
|
|
6925
6968
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6926
6969
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
@@ -6962,6 +7005,14 @@ export declare type JiraIssueFieldSetsArgs = {
|
|
|
6962
7005
|
last?: Maybe<Scalars['Int']>;
|
|
6963
7006
|
before?: Maybe<Scalars['String']>;
|
|
6964
7007
|
};
|
|
7008
|
+
export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
7009
|
+
namespace?: Maybe<Scalars['String']>;
|
|
7010
|
+
viewId?: Maybe<Scalars['String']>;
|
|
7011
|
+
first?: Maybe<Scalars['Int']>;
|
|
7012
|
+
after?: Maybe<Scalars['String']>;
|
|
7013
|
+
last?: Maybe<Scalars['Int']>;
|
|
7014
|
+
before?: Maybe<Scalars['String']>;
|
|
7015
|
+
};
|
|
6965
7016
|
export declare type JiraIssueBranchDevSummary = {
|
|
6966
7017
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
6967
7018
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -7001,6 +7052,9 @@ export declare type JiraIssueConnection = {
|
|
|
7001
7052
|
pageInfo: PageInfo;
|
|
7002
7053
|
jql?: Maybe<Scalars['String']>;
|
|
7003
7054
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
7055
|
+
issueSearchError?: Maybe<JiraIssueSearchError>;
|
|
7056
|
+
totalIssueSearchResultCount?: Maybe<Scalars['Int']>;
|
|
7057
|
+
isCappingIssueSearchResult?: Maybe<Scalars['Boolean']>;
|
|
7004
7058
|
};
|
|
7005
7059
|
export declare type JiraIssueDeploymentEnvironment = {
|
|
7006
7060
|
__typename?: 'JiraIssueDeploymentEnvironment';
|
|
@@ -7403,6 +7457,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
7403
7457
|
before?: Maybe<Scalars['String']>;
|
|
7404
7458
|
after?: Maybe<Scalars['String']>;
|
|
7405
7459
|
};
|
|
7460
|
+
export declare type JiraIssueSearchError = JiraInvalidJqlError | JiraInvalidSyntaxError;
|
|
7406
7461
|
export declare type JiraIssueSearchFieldConfigSet = {
|
|
7407
7462
|
__typename?: 'JiraIssueSearchFieldConfigSet';
|
|
7408
7463
|
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
@@ -7431,6 +7486,10 @@ export declare type JiraIssueSearchFieldConfigSetsFilter = {
|
|
|
7431
7486
|
searchString?: Maybe<Scalars['String']>;
|
|
7432
7487
|
fieldConfigSetSelectedState?: Maybe<JiraIssueSearchFieldConfigSetSelectedState>;
|
|
7433
7488
|
};
|
|
7489
|
+
export declare type JiraIssueSearchInput = {
|
|
7490
|
+
jql?: Maybe<Scalars['String']>;
|
|
7491
|
+
filterId?: Maybe<Scalars['String']>;
|
|
7492
|
+
};
|
|
7434
7493
|
export declare type JiraIssueSearchResult = {
|
|
7435
7494
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
7436
7495
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
@@ -7878,6 +7937,29 @@ export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
|
|
|
7878
7937
|
displayName: Scalars['String'];
|
|
7879
7938
|
statusCategory: JiraStatusCategory;
|
|
7880
7939
|
};
|
|
7940
|
+
export declare enum JiraJqlSyntaxError {
|
|
7941
|
+
ReservedWord = "RESERVED_WORD",
|
|
7942
|
+
IllegalEscape = "ILLEGAL_ESCAPE",
|
|
7943
|
+
UnfinishedString = "UNFINISHED_STRING",
|
|
7944
|
+
IllegalCharacter = "ILLEGAL_CHARACTER",
|
|
7945
|
+
ReservedCharacter = "RESERVED_CHARACTER",
|
|
7946
|
+
Unknown = "UNKNOWN",
|
|
7947
|
+
IllegalNumber = "ILLEGAL_NUMBER",
|
|
7948
|
+
EmptyField = "EMPTY_FIELD",
|
|
7949
|
+
EmptyFunction = "EMPTY_FUNCTION",
|
|
7950
|
+
MissingFieldName = "MISSING_FIELD_NAME",
|
|
7951
|
+
NoOrder = "NO_ORDER",
|
|
7952
|
+
UnexpectedText = "UNEXPECTED_TEXT",
|
|
7953
|
+
NoOperator = "NO_OPERATOR",
|
|
7954
|
+
BadFieldId = "BAD_FIELD_ID",
|
|
7955
|
+
BadPropertyId = "BAD_PROPERTY_ID",
|
|
7956
|
+
BadFunctionArgument = "BAD_FUNCTION_ARGUMENT",
|
|
7957
|
+
EmptyFunctionArgument = "EMPTY_FUNCTION_ARGUMENT",
|
|
7958
|
+
MissingLogicalOperator = "MISSING_LOGICAL_OPERATOR",
|
|
7959
|
+
BadOperator = "BAD_OPERATOR",
|
|
7960
|
+
PredicateUnsupported = "PREDICATE_UNSUPPORTED",
|
|
7961
|
+
OperandUnsupported = "OPERAND_UNSUPPORTED"
|
|
7962
|
+
}
|
|
7881
7963
|
export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
7882
7964
|
__typename?: 'JiraJqlUserFieldValue';
|
|
7883
7965
|
jqlTerm: Scalars['String'];
|
|
@@ -8824,6 +8906,8 @@ export declare type JiraQuery = {
|
|
|
8824
8906
|
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
8825
8907
|
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
8826
8908
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
8909
|
+
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
8910
|
+
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
8827
8911
|
issueByKey?: Maybe<JiraIssue>;
|
|
8828
8912
|
issueById?: Maybe<JiraIssue>;
|
|
8829
8913
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
@@ -8879,6 +8963,19 @@ export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
|
8879
8963
|
export declare type JiraQueryIssueSearchViewArgs = {
|
|
8880
8964
|
id: Scalars['ID'];
|
|
8881
8965
|
};
|
|
8966
|
+
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
8967
|
+
cloudId: Scalars['ID'];
|
|
8968
|
+
namespace?: Maybe<Scalars['String']>;
|
|
8969
|
+
viewId?: Maybe<Scalars['String']>;
|
|
8970
|
+
};
|
|
8971
|
+
export declare type JiraQueryIssueSearchStableArgs = {
|
|
8972
|
+
cloudId: Scalars['ID'];
|
|
8973
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
8974
|
+
first?: Maybe<Scalars['Int']>;
|
|
8975
|
+
after?: Maybe<Scalars['String']>;
|
|
8976
|
+
last?: Maybe<Scalars['Int']>;
|
|
8977
|
+
before?: Maybe<Scalars['String']>;
|
|
8978
|
+
};
|
|
8882
8979
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
8883
8980
|
key: Scalars['String'];
|
|
8884
8981
|
cloudId: Scalars['ID'];
|
|
@@ -10703,6 +10800,7 @@ export declare type Mutation = {
|
|
|
10703
10800
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
10704
10801
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
10705
10802
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
10803
|
+
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
10706
10804
|
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
10707
10805
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
10708
10806
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -10920,6 +11018,9 @@ export declare type MutationRankCardParentArgs = {
|
|
|
10920
11018
|
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
10921
11019
|
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
10922
11020
|
};
|
|
11021
|
+
export declare type MutationToggleBoardFeatureArgs = {
|
|
11022
|
+
input?: Maybe<ToggleBoardFeatureInput>;
|
|
11023
|
+
};
|
|
10923
11024
|
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
10924
11025
|
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
10925
11026
|
};
|
|
@@ -14319,6 +14420,18 @@ export declare type TimeSeriesPoint = {
|
|
|
14319
14420
|
x: Scalars['DateTime'];
|
|
14320
14421
|
y: Scalars['Int'];
|
|
14321
14422
|
};
|
|
14423
|
+
export declare type ToggleBoardFeatureInput = {
|
|
14424
|
+
featureId: Scalars['String'];
|
|
14425
|
+
enabled: Scalars['Boolean'];
|
|
14426
|
+
};
|
|
14427
|
+
export declare type ToggleBoardFeatureOutput = MutationResponse & {
|
|
14428
|
+
__typename?: 'ToggleBoardFeatureOutput';
|
|
14429
|
+
featureGroups: BoardFeatureGroupConnection;
|
|
14430
|
+
statusCode: Scalars['Int'];
|
|
14431
|
+
success: Scalars['Boolean'];
|
|
14432
|
+
message: Scalars['String'];
|
|
14433
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
14434
|
+
};
|
|
14322
14435
|
export declare type TownsquareComment = Node & {
|
|
14323
14436
|
__typename?: 'TownsquareComment';
|
|
14324
14437
|
creator?: Maybe<User>;
|