@forge/cli-shared 3.17.1-next.7 → 3.17.1-next.9
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,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.17.1-next.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a30d4a3: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @types/ignore-walk
|
|
10
|
+
|
|
11
|
+
## 3.17.1-next.8
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- a777103: Minor refactoring
|
|
16
|
+
- Updated dependencies [161031c]
|
|
17
|
+
- @forge/manifest@4.19.0-next.4
|
|
18
|
+
|
|
3
19
|
## 3.17.1-next.7
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -9,7 +9,7 @@ class ConfigFileSectionReader {
|
|
|
9
9
|
}
|
|
10
10
|
async readConfigSection(key, schema) {
|
|
11
11
|
const config = await this.configReader.readConfig();
|
|
12
|
-
const keyedSchema = t.
|
|
12
|
+
const keyedSchema = t.type({ [key]: schema });
|
|
13
13
|
if (keyedSchema.is(config)) {
|
|
14
14
|
return config[key];
|
|
15
15
|
}
|
|
@@ -9249,6 +9249,7 @@ export type ForgeAuditLogsContributorActivity = {
|
|
|
9249
9249
|
publicName: Scalars['String'];
|
|
9250
9250
|
status: Scalars['String'];
|
|
9251
9251
|
lastActive?: Maybe<Scalars['String']>;
|
|
9252
|
+
role?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
9252
9253
|
};
|
|
9253
9254
|
export type ForgeAuditLogsContributorsActivityData = {
|
|
9254
9255
|
__typename?: 'ForgeAuditLogsContributorsActivityData';
|
|
@@ -9674,6 +9675,10 @@ export type Graph = {
|
|
|
9674
9675
|
sprintRetrospectivePageInverse?: Maybe<GraphJiraSprintConnection>;
|
|
9675
9676
|
sprintRetrospectivePageRelationship?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
|
|
9676
9677
|
sprintRetrospectivePageRelationshipInverse?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
|
|
9678
|
+
projectAssociatedVulnerability?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
9679
|
+
projectAssociatedVulnerabilityInverse?: Maybe<GraphJiraProjectConnection>;
|
|
9680
|
+
projectAssociatedVulnerabilityRelationship?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
9681
|
+
projectAssociatedVulnerabilityRelationshipInverse?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
9677
9682
|
};
|
|
9678
9683
|
export type GraphParentDocumentHasChildDocumentArgs = {
|
|
9679
9684
|
after?: Maybe<Scalars['String']>;
|
|
@@ -9764,6 +9769,30 @@ export type GraphSprintRetrospectivePageRelationshipInverseArgs = {
|
|
|
9764
9769
|
first?: Maybe<Scalars['Int']>;
|
|
9765
9770
|
to: Scalars['ID'];
|
|
9766
9771
|
};
|
|
9772
|
+
export type GraphProjectAssociatedVulnerabilityArgs = {
|
|
9773
|
+
after?: Maybe<Scalars['String']>;
|
|
9774
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
9775
|
+
first?: Maybe<Scalars['Int']>;
|
|
9776
|
+
from: Scalars['ID'];
|
|
9777
|
+
};
|
|
9778
|
+
export type GraphProjectAssociatedVulnerabilityInverseArgs = {
|
|
9779
|
+
after?: Maybe<Scalars['String']>;
|
|
9780
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
9781
|
+
first?: Maybe<Scalars['Int']>;
|
|
9782
|
+
to: Scalars['ID'];
|
|
9783
|
+
};
|
|
9784
|
+
export type GraphProjectAssociatedVulnerabilityRelationshipArgs = {
|
|
9785
|
+
after?: Maybe<Scalars['String']>;
|
|
9786
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
9787
|
+
first?: Maybe<Scalars['Int']>;
|
|
9788
|
+
from: Scalars['ID'];
|
|
9789
|
+
};
|
|
9790
|
+
export type GraphProjectAssociatedVulnerabilityRelationshipInverseArgs = {
|
|
9791
|
+
after?: Maybe<Scalars['String']>;
|
|
9792
|
+
filter?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInput>;
|
|
9793
|
+
first?: Maybe<Scalars['Int']>;
|
|
9794
|
+
to: Scalars['ID'];
|
|
9795
|
+
};
|
|
9767
9796
|
export type GraphConfluencePage = Node & {
|
|
9768
9797
|
__typename?: 'GraphConfluencePage';
|
|
9769
9798
|
id: Scalars['ID'];
|
|
@@ -9822,6 +9851,40 @@ export declare enum GraphCreateMetadataProjectAssociatedPrJiraPullRequestOutputR
|
|
|
9822
9851
|
NotSet = "NOT_SET",
|
|
9823
9852
|
Unapproved = "UNAPPROVED"
|
|
9824
9853
|
}
|
|
9854
|
+
export type GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutput = {
|
|
9855
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutput';
|
|
9856
|
+
container?: Maybe<GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputContainer>;
|
|
9857
|
+
severity?: Maybe<GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputVulnerabilitySeverityEnum>;
|
|
9858
|
+
status?: Maybe<GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputVulnerabilityStatusEnum>;
|
|
9859
|
+
type?: Maybe<GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputVulnerabilityTypeEnum>;
|
|
9860
|
+
};
|
|
9861
|
+
export type GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputContainer = {
|
|
9862
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputContainer';
|
|
9863
|
+
containerAri?: Maybe<GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputContainerAri>;
|
|
9864
|
+
};
|
|
9865
|
+
export type GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputContainerAri = {
|
|
9866
|
+
__typename?: 'GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputContainerAri';
|
|
9867
|
+
value?: Maybe<Scalars['String']>;
|
|
9868
|
+
};
|
|
9869
|
+
export declare enum GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputVulnerabilitySeverityEnum {
|
|
9870
|
+
Critical = "CRITICAL",
|
|
9871
|
+
High = "HIGH",
|
|
9872
|
+
Low = "LOW",
|
|
9873
|
+
Medium = "MEDIUM",
|
|
9874
|
+
Unknown = "UNKNOWN"
|
|
9875
|
+
}
|
|
9876
|
+
export declare enum GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputVulnerabilityStatusEnum {
|
|
9877
|
+
Closed = "CLOSED",
|
|
9878
|
+
Ignored = "IGNORED",
|
|
9879
|
+
Open = "OPEN",
|
|
9880
|
+
Unknown = "UNKNOWN"
|
|
9881
|
+
}
|
|
9882
|
+
export declare enum GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutputVulnerabilityTypeEnum {
|
|
9883
|
+
Dast = "DAST",
|
|
9884
|
+
Sast = "SAST",
|
|
9885
|
+
Sca = "SCA",
|
|
9886
|
+
Unknown = "UNKNOWN"
|
|
9887
|
+
}
|
|
9825
9888
|
export type GraphCreateParentDocumentHasChildDocumentInput = {
|
|
9826
9889
|
from: Scalars['ID'];
|
|
9827
9890
|
sequenceNumber?: Maybe<Scalars['Long']>;
|
|
@@ -9943,6 +10006,21 @@ export type GraphJiraSprintEdge = {
|
|
|
9943
10006
|
cursor?: Maybe<Scalars['String']>;
|
|
9944
10007
|
node: GraphJiraSprint;
|
|
9945
10008
|
};
|
|
10009
|
+
export type GraphJiraVulnerability = Node & {
|
|
10010
|
+
__typename?: 'GraphJiraVulnerability';
|
|
10011
|
+
id: Scalars['ID'];
|
|
10012
|
+
vulnerability?: Maybe<DevOpsSecurityVulnerabilityDetails>;
|
|
10013
|
+
};
|
|
10014
|
+
export type GraphJiraVulnerabilityConnection = {
|
|
10015
|
+
__typename?: 'GraphJiraVulnerabilityConnection';
|
|
10016
|
+
edges: Array<Maybe<GraphJiraVulnerabilityEdge>>;
|
|
10017
|
+
pageInfo: PageInfo;
|
|
10018
|
+
};
|
|
10019
|
+
export type GraphJiraVulnerabilityEdge = {
|
|
10020
|
+
__typename?: 'GraphJiraVulnerabilityEdge';
|
|
10021
|
+
cursor?: Maybe<Scalars['String']>;
|
|
10022
|
+
node: GraphJiraVulnerability;
|
|
10023
|
+
};
|
|
9946
10024
|
export type GraphMutation = {
|
|
9947
10025
|
__typename?: 'GraphMutation';
|
|
9948
10026
|
createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
|
|
@@ -9995,6 +10073,24 @@ export type GraphProjectAssociatedPrRelationshipEdge = {
|
|
|
9995
10073
|
cursor?: Maybe<Scalars['String']>;
|
|
9996
10074
|
node: GraphProjectAssociatedPrRelationship;
|
|
9997
10075
|
};
|
|
10076
|
+
export type GraphProjectAssociatedVulnerabilityRelationship = Node & {
|
|
10077
|
+
__typename?: 'GraphProjectAssociatedVulnerabilityRelationship';
|
|
10078
|
+
from: GraphJiraProject;
|
|
10079
|
+
id: Scalars['ID'];
|
|
10080
|
+
lastUpdated: Scalars['DateTime'];
|
|
10081
|
+
to: GraphJiraVulnerability;
|
|
10082
|
+
toMetadata?: Maybe<GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnerabilityOutput>;
|
|
10083
|
+
};
|
|
10084
|
+
export type GraphProjectAssociatedVulnerabilityRelationshipConnection = {
|
|
10085
|
+
__typename?: 'GraphProjectAssociatedVulnerabilityRelationshipConnection';
|
|
10086
|
+
edges: Array<Maybe<GraphProjectAssociatedVulnerabilityRelationshipEdge>>;
|
|
10087
|
+
pageInfo: PageInfo;
|
|
10088
|
+
};
|
|
10089
|
+
export type GraphProjectAssociatedVulnerabilityRelationshipEdge = {
|
|
10090
|
+
__typename?: 'GraphProjectAssociatedVulnerabilityRelationshipEdge';
|
|
10091
|
+
cursor?: Maybe<Scalars['String']>;
|
|
10092
|
+
node: GraphProjectAssociatedVulnerabilityRelationship;
|
|
10093
|
+
};
|
|
9998
10094
|
export type GraphQueryMetadataProjectAssociatedPrInput = {
|
|
9999
10095
|
and?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputAnd>>;
|
|
10000
10096
|
or?: Maybe<Array<GraphQueryMetadataProjectAssociatedPrInputOr>>;
|
|
@@ -10145,6 +10241,133 @@ export type GraphQueryMetadataProjectAssociatedPrInputToTaskCountRangeField = {
|
|
|
10145
10241
|
lt?: Maybe<Scalars['Int']>;
|
|
10146
10242
|
lte?: Maybe<Scalars['Int']>;
|
|
10147
10243
|
};
|
|
10244
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInput = {
|
|
10245
|
+
and?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputAnd>>;
|
|
10246
|
+
or?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputOr>>;
|
|
10247
|
+
};
|
|
10248
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputAnd = {
|
|
10249
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputCreatedAt>;
|
|
10250
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputLastUpdated>;
|
|
10251
|
+
or?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputOrInner>>;
|
|
10252
|
+
to_container?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainer>;
|
|
10253
|
+
to_severity?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToSeverity>;
|
|
10254
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToStatus>;
|
|
10255
|
+
to_type?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToType>;
|
|
10256
|
+
};
|
|
10257
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputAndInner = {
|
|
10258
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputCreatedAt>;
|
|
10259
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputLastUpdated>;
|
|
10260
|
+
to_container?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainer>;
|
|
10261
|
+
to_severity?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToSeverity>;
|
|
10262
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToStatus>;
|
|
10263
|
+
to_type?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToType>;
|
|
10264
|
+
};
|
|
10265
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputCreatedAt = {
|
|
10266
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputCreatedAtRangeField>;
|
|
10267
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputCreatedAtMetadataSortField>;
|
|
10268
|
+
};
|
|
10269
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputCreatedAtMetadataSortField = {
|
|
10270
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10271
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10272
|
+
};
|
|
10273
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputCreatedAtRangeField = {
|
|
10274
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
10275
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
10276
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
10277
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
10278
|
+
};
|
|
10279
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputLastUpdated = {
|
|
10280
|
+
range?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputLastUpdatedRangeField>;
|
|
10281
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputLastUpdatedMetadataSortField>;
|
|
10282
|
+
};
|
|
10283
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputLastUpdatedMetadataSortField = {
|
|
10284
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10285
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10286
|
+
};
|
|
10287
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputLastUpdatedRangeField = {
|
|
10288
|
+
gt?: Maybe<Scalars['DateTime']>;
|
|
10289
|
+
gte?: Maybe<Scalars['DateTime']>;
|
|
10290
|
+
lt?: Maybe<Scalars['DateTime']>;
|
|
10291
|
+
lte?: Maybe<Scalars['DateTime']>;
|
|
10292
|
+
};
|
|
10293
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputOr = {
|
|
10294
|
+
and?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputAndInner>>;
|
|
10295
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputCreatedAt>;
|
|
10296
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputLastUpdated>;
|
|
10297
|
+
to_container?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainer>;
|
|
10298
|
+
to_severity?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToSeverity>;
|
|
10299
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToStatus>;
|
|
10300
|
+
to_type?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToType>;
|
|
10301
|
+
};
|
|
10302
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputOrInner = {
|
|
10303
|
+
createdAt?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputCreatedAt>;
|
|
10304
|
+
lastUpdated?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputLastUpdated>;
|
|
10305
|
+
to_container?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainer>;
|
|
10306
|
+
to_severity?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToSeverity>;
|
|
10307
|
+
to_status?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToStatus>;
|
|
10308
|
+
to_type?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToType>;
|
|
10309
|
+
};
|
|
10310
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainer = {
|
|
10311
|
+
containerAri?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainerAri>;
|
|
10312
|
+
};
|
|
10313
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainerAri = {
|
|
10314
|
+
value?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainerAriValue>;
|
|
10315
|
+
};
|
|
10316
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainerAriValue = {
|
|
10317
|
+
notValues?: Maybe<Array<Scalars['String']>>;
|
|
10318
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainerAriValueMetadataSortField>;
|
|
10319
|
+
values?: Maybe<Array<Scalars['String']>>;
|
|
10320
|
+
};
|
|
10321
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToContainerAriValueMetadataSortField = {
|
|
10322
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10323
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10324
|
+
};
|
|
10325
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToSeverity = {
|
|
10326
|
+
notValues?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulnerabilitySeverityEnum>>;
|
|
10327
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToSeverityMetadataSortField>;
|
|
10328
|
+
values?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulnerabilitySeverityEnum>>;
|
|
10329
|
+
};
|
|
10330
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToSeverityMetadataSortField = {
|
|
10331
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10332
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10333
|
+
};
|
|
10334
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToStatus = {
|
|
10335
|
+
notValues?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulnerabilityStatusEnum>>;
|
|
10336
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToStatusMetadataSortField>;
|
|
10337
|
+
values?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulnerabilityStatusEnum>>;
|
|
10338
|
+
};
|
|
10339
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToStatusMetadataSortField = {
|
|
10340
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10341
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10342
|
+
};
|
|
10343
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToType = {
|
|
10344
|
+
notValues?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulnerabilityTypeEnum>>;
|
|
10345
|
+
sort?: Maybe<GraphQueryMetadataProjectAssociatedVulnerabilityInputToTypeMetadataSortField>;
|
|
10346
|
+
values?: Maybe<Array<GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulnerabilityTypeEnum>>;
|
|
10347
|
+
};
|
|
10348
|
+
export type GraphQueryMetadataProjectAssociatedVulnerabilityInputToTypeMetadataSortField = {
|
|
10349
|
+
order?: Maybe<GraphQueryMetadataSortEnum>;
|
|
10350
|
+
priority?: Maybe<Scalars['Int']>;
|
|
10351
|
+
};
|
|
10352
|
+
export declare enum GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulnerabilitySeverityEnum {
|
|
10353
|
+
Critical = "CRITICAL",
|
|
10354
|
+
High = "HIGH",
|
|
10355
|
+
Low = "LOW",
|
|
10356
|
+
Medium = "MEDIUM",
|
|
10357
|
+
Unknown = "UNKNOWN"
|
|
10358
|
+
}
|
|
10359
|
+
export declare enum GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulnerabilityStatusEnum {
|
|
10360
|
+
Closed = "CLOSED",
|
|
10361
|
+
Ignored = "IGNORED",
|
|
10362
|
+
Open = "OPEN",
|
|
10363
|
+
Unknown = "UNKNOWN"
|
|
10364
|
+
}
|
|
10365
|
+
export declare enum GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulnerabilityTypeEnum {
|
|
10366
|
+
Dast = "DAST",
|
|
10367
|
+
Sast = "SAST",
|
|
10368
|
+
Sca = "SCA",
|
|
10369
|
+
Unknown = "UNKNOWN"
|
|
10370
|
+
}
|
|
10148
10371
|
export declare enum GraphQueryMetadataSortEnum {
|
|
10149
10372
|
Asc = "ASC",
|
|
10150
10373
|
Desc = "DESC"
|
|
@@ -10378,11 +10601,15 @@ export type HelpLayout = Node & {
|
|
|
10378
10601
|
__typename?: 'HelpLayout';
|
|
10379
10602
|
id: Scalars['ID'];
|
|
10380
10603
|
sections?: Maybe<HelpLayoutSectionConnection>;
|
|
10604
|
+
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
10381
10605
|
};
|
|
10382
10606
|
export type HelpLayoutSectionsArgs = {
|
|
10383
10607
|
first?: Maybe<Scalars['Int']>;
|
|
10384
10608
|
after?: Maybe<Scalars['String']>;
|
|
10385
10609
|
};
|
|
10610
|
+
export type HelpLayoutMediaConfigArgs = {
|
|
10611
|
+
parentAri: Scalars['ID'];
|
|
10612
|
+
};
|
|
10386
10613
|
export type HelpLayoutAtomicElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
10387
10614
|
export type HelpLayoutAtomicElementInput = {
|
|
10388
10615
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
@@ -10475,7 +10702,7 @@ export type HelpLayoutHeadingAtomicElementConfig = {
|
|
|
10475
10702
|
export type HelpLayoutHeadingConfigInput = {
|
|
10476
10703
|
text: Scalars['String'];
|
|
10477
10704
|
headingType: HelpLayoutHeadingType;
|
|
10478
|
-
visualConfig
|
|
10705
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
10479
10706
|
};
|
|
10480
10707
|
export declare enum HelpLayoutHeadingType {
|
|
10481
10708
|
H1 = "h1",
|
|
@@ -10514,7 +10741,7 @@ export type HelpLayoutImageConfigInput = {
|
|
|
10514
10741
|
fit?: Maybe<Scalars['String']>;
|
|
10515
10742
|
position?: Maybe<Scalars['String']>;
|
|
10516
10743
|
scale?: Maybe<Scalars['Int']>;
|
|
10517
|
-
visualConfig
|
|
10744
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
10518
10745
|
};
|
|
10519
10746
|
export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLayoutCompositeElement & Node & {
|
|
10520
10747
|
__typename?: 'HelpLayoutLinkCardCompositeElement';
|
|
@@ -10527,7 +10754,7 @@ export type HelpLayoutLinkCardCompositeElement = HelpLayoutVisualEntity & HelpLa
|
|
|
10527
10754
|
export type HelpLayoutLinkCardInput = {
|
|
10528
10755
|
children: Array<HelpLayoutAtomicElementInput>;
|
|
10529
10756
|
type: HelpLayoutCompositeElementKey;
|
|
10530
|
-
visualConfig
|
|
10757
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
10531
10758
|
config: Scalars['String'];
|
|
10532
10759
|
};
|
|
10533
10760
|
export type HelpLayoutMediaConfig = {
|
|
@@ -10565,7 +10792,7 @@ export type HelpLayoutParagraphAtomicElementConfig = {
|
|
|
10565
10792
|
};
|
|
10566
10793
|
export type HelpLayoutParagraphConfigInput = {
|
|
10567
10794
|
adf: Scalars['String'];
|
|
10568
|
-
visualConfig
|
|
10795
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
10569
10796
|
};
|
|
10570
10797
|
export type HelpLayoutQueryApi = {
|
|
10571
10798
|
__typename?: 'HelpLayoutQueryApi';
|
|
@@ -10589,7 +10816,7 @@ export type HelpLayoutSearchAtomicElementConfig = {
|
|
|
10589
10816
|
};
|
|
10590
10817
|
export type HelpLayoutSearchConfigInput = {
|
|
10591
10818
|
placeHolderText: Scalars['String'];
|
|
10592
|
-
visualConfig
|
|
10819
|
+
visualConfig?: Maybe<Scalars['String']>;
|
|
10593
10820
|
};
|
|
10594
10821
|
export type HelpLayoutSection = Node & {
|
|
10595
10822
|
__typename?: 'HelpLayoutSection';
|
|
@@ -15895,6 +16122,7 @@ export type JiraProject = Node & {
|
|
|
15895
16122
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
15896
16123
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
15897
16124
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
16125
|
+
totalLinkedSecurityVulnerabilityCount?: Maybe<Scalars['Int']>;
|
|
15898
16126
|
totalLinkedSecurityContainerCount?: Maybe<Scalars['Int']>;
|
|
15899
16127
|
linkedSecurityVulnerabilities?: Maybe<AriGraphRelationshipConnection>;
|
|
15900
16128
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -16451,6 +16679,7 @@ export type JiraQuery = {
|
|
|
16451
16679
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
16452
16680
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
16453
16681
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
16682
|
+
isIssueViewEditorAiEnabled?: Maybe<Scalars['Boolean']>;
|
|
16454
16683
|
issueNavigatorUserJQLHistory?: Maybe<JiraJqlHistoryConnection>;
|
|
16455
16684
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
16456
16685
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
@@ -16834,6 +17063,10 @@ export type JiraQueryFieldsArgs = {
|
|
|
16834
17063
|
after?: Maybe<Scalars['String']>;
|
|
16835
17064
|
viewContext?: Maybe<JiraJqlViewContext>;
|
|
16836
17065
|
};
|
|
17066
|
+
export type JiraQueryIsIssueViewEditorAiEnabledArgs = {
|
|
17067
|
+
jiraProjectType: JiraProjectType;
|
|
17068
|
+
cloudId: Scalars['ID'];
|
|
17069
|
+
};
|
|
16837
17070
|
export type JiraQueryIssueNavigatorUserJqlHistoryArgs = {
|
|
16838
17071
|
cloudId: Scalars['ID'];
|
|
16839
17072
|
first?: Maybe<Scalars['Int']>;
|