@forge/cli-shared 6.3.0 → 6.3.1-next.1
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 +14 -0
- package/out/graphql/graphql-types.d.ts +113 -36
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.3.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f5a52b8]
|
|
8
|
+
- @forge/manifest@8.0.1-next.1
|
|
9
|
+
|
|
10
|
+
## 6.3.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [4e23811]
|
|
15
|
+
- @forge/manifest@8.0.1-next.0
|
|
16
|
+
|
|
3
17
|
## 6.3.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -140,6 +140,8 @@ export declare type ActionsAction = {
|
|
|
140
140
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
141
141
|
isConsequential: Scalars['Boolean']['output'];
|
|
142
142
|
name?: Maybe<Scalars['String']['output']>;
|
|
143
|
+
outputs?: Maybe<Array<ActionsActionTypeOutputTuple>>;
|
|
144
|
+
target?: Maybe<ActionsTargetInputs>;
|
|
143
145
|
};
|
|
144
146
|
export declare type ActionsActionInput = {
|
|
145
147
|
__typename?: 'ActionsActionInput';
|
|
@@ -267,6 +269,31 @@ export declare type ActionsMutationExecuteBulkArgs = {
|
|
|
267
269
|
filter: ActionsExecuteActionFilter;
|
|
268
270
|
workspace?: InputMaybe<Scalars['String']['input']>;
|
|
269
271
|
};
|
|
272
|
+
export declare type ActionsTargetAri = {
|
|
273
|
+
__typename?: 'ActionsTargetAri';
|
|
274
|
+
ati?: Maybe<Scalars['String']['output']>;
|
|
275
|
+
description?: Maybe<ActionsDescription>;
|
|
276
|
+
};
|
|
277
|
+
export declare type ActionsTargetAriInput = {
|
|
278
|
+
__typename?: 'ActionsTargetAriInput';
|
|
279
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
280
|
+
value?: Maybe<ActionsTargetAri>;
|
|
281
|
+
};
|
|
282
|
+
export declare type ActionsTargetId = {
|
|
283
|
+
__typename?: 'ActionsTargetId';
|
|
284
|
+
description?: Maybe<ActionsDescription>;
|
|
285
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
286
|
+
};
|
|
287
|
+
export declare type ActionsTargetIdInput = {
|
|
288
|
+
__typename?: 'ActionsTargetIdInput';
|
|
289
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
290
|
+
value?: Maybe<ActionsTargetId>;
|
|
291
|
+
};
|
|
292
|
+
export declare type ActionsTargetInputs = {
|
|
293
|
+
__typename?: 'ActionsTargetInputs';
|
|
294
|
+
ari?: Maybe<Array<Maybe<ActionsTargetAriInput>>>;
|
|
295
|
+
id?: Maybe<Array<Maybe<ActionsTargetIdInput>>>;
|
|
296
|
+
};
|
|
270
297
|
export declare type Activities = {
|
|
271
298
|
__typename?: 'Activities';
|
|
272
299
|
all: ActivitiesConnection;
|
|
@@ -6101,6 +6128,7 @@ export declare type CompassScorecard = Node & {
|
|
|
6101
6128
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
6102
6129
|
scoringStrategyType?: Maybe<Scalars['String']['output']>;
|
|
6103
6130
|
state?: Maybe<Scalars['String']['output']>;
|
|
6131
|
+
statusConfig?: Maybe<CompassScorecardStatusConfig>;
|
|
6104
6132
|
type: Scalars['String']['output'];
|
|
6105
6133
|
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
6106
6134
|
};
|
|
@@ -6404,6 +6432,7 @@ export declare type CompassScorecardScore = {
|
|
|
6404
6432
|
__typename?: 'CompassScorecardScore';
|
|
6405
6433
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
|
|
6406
6434
|
maxTotalScore: Scalars['Int']['output'];
|
|
6435
|
+
status?: Maybe<CompassScorecardScoreStatus>;
|
|
6407
6436
|
statusDuration?: Maybe<CompassScorecardScoreStatusDuration>;
|
|
6408
6437
|
totalScore: Scalars['Int']['output'];
|
|
6409
6438
|
};
|
|
@@ -6505,6 +6534,26 @@ export declare enum CompassScorecardScoringStrategyType {
|
|
|
6505
6534
|
PointBased = "POINT_BASED",
|
|
6506
6535
|
WeightBased = "WEIGHT_BASED"
|
|
6507
6536
|
}
|
|
6537
|
+
export declare type CompassScorecardStatusConfig = {
|
|
6538
|
+
__typename?: 'CompassScorecardStatusConfig';
|
|
6539
|
+
failing: CompassScorecardStatusThreshold;
|
|
6540
|
+
needsAttention: CompassScorecardStatusThreshold;
|
|
6541
|
+
passing: CompassScorecardStatusThreshold;
|
|
6542
|
+
};
|
|
6543
|
+
export declare type CompassScorecardStatusConfigInput = {
|
|
6544
|
+
failing: CompassScorecardStatusThresholdInput;
|
|
6545
|
+
needsAttention: CompassScorecardStatusThresholdInput;
|
|
6546
|
+
passing: CompassScorecardStatusThresholdInput;
|
|
6547
|
+
};
|
|
6548
|
+
export declare type CompassScorecardStatusThreshold = {
|
|
6549
|
+
__typename?: 'CompassScorecardStatusThreshold';
|
|
6550
|
+
lowerBound: Scalars['Int']['output'];
|
|
6551
|
+
upperBound: Scalars['Int']['output'];
|
|
6552
|
+
};
|
|
6553
|
+
export declare type CompassScorecardStatusThresholdInput = {
|
|
6554
|
+
lowerBound: Scalars['Int']['input'];
|
|
6555
|
+
upperBound: Scalars['Int']['input'];
|
|
6556
|
+
};
|
|
6508
6557
|
export declare type CompassScorecardTypesFilter = {
|
|
6509
6558
|
in: Array<Scalars['String']['input']>;
|
|
6510
6559
|
};
|
|
@@ -15925,6 +15974,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
15925
15974
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
15926
15975
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
15927
15976
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
15977
|
+
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
15928
15978
|
};
|
|
15929
15979
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
15930
15980
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -28145,7 +28195,7 @@ export declare type GraphStoreBatchContentReferencedEntityEdge = {
|
|
|
28145
28195
|
__typename?: 'GraphStoreBatchContentReferencedEntityEdge';
|
|
28146
28196
|
node: GraphStoreBatchContentReferencedEntityInnerConnection;
|
|
28147
28197
|
};
|
|
28148
|
-
export declare type GraphStoreBatchContentReferencedEntityEndNode =
|
|
28198
|
+
export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
28149
28199
|
__typename?: 'GraphStoreBatchContentReferencedEntityEndNode';
|
|
28150
28200
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
28151
28201
|
id: Scalars['ID']['output'];
|
|
@@ -28170,7 +28220,7 @@ export declare type GraphStoreBatchContentReferencedEntityNode = Node & {
|
|
|
28170
28220
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28171
28221
|
to: GraphStoreBatchContentReferencedEntityEndNode;
|
|
28172
28222
|
};
|
|
28173
|
-
export declare type GraphStoreBatchContentReferencedEntityStartNode =
|
|
28223
|
+
export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
28174
28224
|
__typename?: 'GraphStoreBatchContentReferencedEntityStartNode';
|
|
28175
28225
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
28176
28226
|
id: Scalars['ID']['output'];
|
|
@@ -28186,7 +28236,7 @@ export declare type GraphStoreBatchFocusAreaAssociatedToProjectEdge = {
|
|
|
28186
28236
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEdge';
|
|
28187
28237
|
node: GraphStoreBatchFocusAreaAssociatedToProjectInnerConnection;
|
|
28188
28238
|
};
|
|
28189
|
-
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndNode =
|
|
28239
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectEndNode = {
|
|
28190
28240
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectEndNode';
|
|
28191
28241
|
data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEndUnion>;
|
|
28192
28242
|
id: Scalars['ID']['output'];
|
|
@@ -28211,7 +28261,7 @@ export declare type GraphStoreBatchFocusAreaAssociatedToProjectNode = Node & {
|
|
|
28211
28261
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28212
28262
|
to: GraphStoreBatchFocusAreaAssociatedToProjectEndNode;
|
|
28213
28263
|
};
|
|
28214
|
-
export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartNode =
|
|
28264
|
+
export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartNode = {
|
|
28215
28265
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectStartNode';
|
|
28216
28266
|
data?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectStartUnion>;
|
|
28217
28267
|
id: Scalars['ID']['output'];
|
|
@@ -28227,7 +28277,7 @@ export declare type GraphStoreBatchFocusAreaHasAtlasGoalEdge = {
|
|
|
28227
28277
|
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalEdge';
|
|
28228
28278
|
node: GraphStoreBatchFocusAreaHasAtlasGoalInnerConnection;
|
|
28229
28279
|
};
|
|
28230
|
-
export declare type GraphStoreBatchFocusAreaHasAtlasGoalEndNode =
|
|
28280
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalEndNode = {
|
|
28231
28281
|
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalEndNode';
|
|
28232
28282
|
data?: Maybe<GraphStoreBatchFocusAreaHasAtlasGoalEndUnion>;
|
|
28233
28283
|
id: Scalars['ID']['output'];
|
|
@@ -28252,7 +28302,7 @@ export declare type GraphStoreBatchFocusAreaHasAtlasGoalNode = Node & {
|
|
|
28252
28302
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28253
28303
|
to: GraphStoreBatchFocusAreaHasAtlasGoalEndNode;
|
|
28254
28304
|
};
|
|
28255
|
-
export declare type GraphStoreBatchFocusAreaHasAtlasGoalStartNode =
|
|
28305
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalStartNode = {
|
|
28256
28306
|
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalStartNode';
|
|
28257
28307
|
data?: Maybe<GraphStoreBatchFocusAreaHasAtlasGoalStartUnion>;
|
|
28258
28308
|
id: Scalars['ID']['output'];
|
|
@@ -28268,7 +28318,7 @@ export declare type GraphStoreBatchFocusAreaHasFocusAreaEdge = {
|
|
|
28268
28318
|
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaEdge';
|
|
28269
28319
|
node: GraphStoreBatchFocusAreaHasFocusAreaInnerConnection;
|
|
28270
28320
|
};
|
|
28271
|
-
export declare type GraphStoreBatchFocusAreaHasFocusAreaEndNode =
|
|
28321
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaEndNode = {
|
|
28272
28322
|
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaEndNode';
|
|
28273
28323
|
data?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaEndUnion>;
|
|
28274
28324
|
id: Scalars['ID']['output'];
|
|
@@ -28293,7 +28343,7 @@ export declare type GraphStoreBatchFocusAreaHasFocusAreaNode = Node & {
|
|
|
28293
28343
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28294
28344
|
to: GraphStoreBatchFocusAreaHasFocusAreaEndNode;
|
|
28295
28345
|
};
|
|
28296
|
-
export declare type GraphStoreBatchFocusAreaHasFocusAreaStartNode =
|
|
28346
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaStartNode = {
|
|
28297
28347
|
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaStartNode';
|
|
28298
28348
|
data?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaStartUnion>;
|
|
28299
28349
|
id: Scalars['ID']['output'];
|
|
@@ -28309,7 +28359,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectEdge = {
|
|
|
28309
28359
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectEdge';
|
|
28310
28360
|
node: GraphStoreBatchFocusAreaHasProjectInnerConnection;
|
|
28311
28361
|
};
|
|
28312
|
-
export declare type GraphStoreBatchFocusAreaHasProjectEndNode =
|
|
28362
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndNode = {
|
|
28313
28363
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectEndNode';
|
|
28314
28364
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
|
|
28315
28365
|
id: Scalars['ID']['output'];
|
|
@@ -28334,7 +28384,7 @@ export declare type GraphStoreBatchFocusAreaHasProjectNode = Node & {
|
|
|
28334
28384
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28335
28385
|
to: GraphStoreBatchFocusAreaHasProjectEndNode;
|
|
28336
28386
|
};
|
|
28337
|
-
export declare type GraphStoreBatchFocusAreaHasProjectStartNode =
|
|
28387
|
+
export declare type GraphStoreBatchFocusAreaHasProjectStartNode = {
|
|
28338
28388
|
__typename?: 'GraphStoreBatchFocusAreaHasProjectStartNode';
|
|
28339
28389
|
data?: Maybe<GraphStoreBatchFocusAreaHasProjectStartUnion>;
|
|
28340
28390
|
id: Scalars['ID']['output'];
|
|
@@ -28350,7 +28400,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge = {
|
|
|
28350
28400
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge';
|
|
28351
28401
|
node: GraphStoreBatchIncidentAssociatedPostIncidentReviewInnerConnection;
|
|
28352
28402
|
};
|
|
28353
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode =
|
|
28403
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode = {
|
|
28354
28404
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode';
|
|
28355
28405
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEndUnion>;
|
|
28356
28406
|
id: Scalars['ID']['output'];
|
|
@@ -28377,7 +28427,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEdge
|
|
|
28377
28427
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEdge';
|
|
28378
28428
|
node: GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkInnerConnection;
|
|
28379
28429
|
};
|
|
28380
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNode =
|
|
28430
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNode = {
|
|
28381
28431
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNode';
|
|
28382
28432
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndUnion>;
|
|
28383
28433
|
id: Scalars['ID']['output'];
|
|
@@ -28402,7 +28452,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkNode
|
|
|
28402
28452
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28403
28453
|
to: GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNode;
|
|
28404
28454
|
};
|
|
28405
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode =
|
|
28455
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode = {
|
|
28406
28456
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartNode';
|
|
28407
28457
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartUnion>;
|
|
28408
28458
|
id: Scalars['ID']['output'];
|
|
@@ -28416,7 +28466,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewNode = No
|
|
|
28416
28466
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28417
28467
|
to: GraphStoreBatchIncidentAssociatedPostIncidentReviewEndNode;
|
|
28418
28468
|
};
|
|
28419
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode =
|
|
28469
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode = {
|
|
28420
28470
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewStartNode';
|
|
28421
28471
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewStartUnion>;
|
|
28422
28472
|
id: Scalars['ID']['output'];
|
|
@@ -28432,7 +28482,7 @@ export declare type GraphStoreBatchIncidentHasActionItemEdge = {
|
|
|
28432
28482
|
__typename?: 'GraphStoreBatchIncidentHasActionItemEdge';
|
|
28433
28483
|
node: GraphStoreBatchIncidentHasActionItemInnerConnection;
|
|
28434
28484
|
};
|
|
28435
|
-
export declare type GraphStoreBatchIncidentHasActionItemEndNode =
|
|
28485
|
+
export declare type GraphStoreBatchIncidentHasActionItemEndNode = {
|
|
28436
28486
|
__typename?: 'GraphStoreBatchIncidentHasActionItemEndNode';
|
|
28437
28487
|
data?: Maybe<GraphStoreBatchIncidentHasActionItemEndUnion>;
|
|
28438
28488
|
id: Scalars['ID']['output'];
|
|
@@ -28457,7 +28507,7 @@ export declare type GraphStoreBatchIncidentHasActionItemNode = Node & {
|
|
|
28457
28507
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28458
28508
|
to: GraphStoreBatchIncidentHasActionItemEndNode;
|
|
28459
28509
|
};
|
|
28460
|
-
export declare type GraphStoreBatchIncidentHasActionItemStartNode =
|
|
28510
|
+
export declare type GraphStoreBatchIncidentHasActionItemStartNode = {
|
|
28461
28511
|
__typename?: 'GraphStoreBatchIncidentHasActionItemStartNode';
|
|
28462
28512
|
data?: Maybe<GraphStoreBatchIncidentHasActionItemStartUnion>;
|
|
28463
28513
|
id: Scalars['ID']['output'];
|
|
@@ -28473,7 +28523,7 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueEdge = {
|
|
|
28473
28523
|
__typename?: 'GraphStoreBatchIncidentLinkedJswIssueEdge';
|
|
28474
28524
|
node: GraphStoreBatchIncidentLinkedJswIssueInnerConnection;
|
|
28475
28525
|
};
|
|
28476
|
-
export declare type GraphStoreBatchIncidentLinkedJswIssueEndNode =
|
|
28526
|
+
export declare type GraphStoreBatchIncidentLinkedJswIssueEndNode = {
|
|
28477
28527
|
__typename?: 'GraphStoreBatchIncidentLinkedJswIssueEndNode';
|
|
28478
28528
|
data?: Maybe<GraphStoreBatchIncidentLinkedJswIssueEndUnion>;
|
|
28479
28529
|
id: Scalars['ID']['output'];
|
|
@@ -28498,7 +28548,7 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueNode = Node & {
|
|
|
28498
28548
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28499
28549
|
to: GraphStoreBatchIncidentLinkedJswIssueEndNode;
|
|
28500
28550
|
};
|
|
28501
|
-
export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode =
|
|
28551
|
+
export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode = {
|
|
28502
28552
|
__typename?: 'GraphStoreBatchIncidentLinkedJswIssueStartNode';
|
|
28503
28553
|
data?: Maybe<GraphStoreBatchIncidentLinkedJswIssueStartUnion>;
|
|
28504
28554
|
id: Scalars['ID']['output'];
|
|
@@ -28514,7 +28564,7 @@ export declare type GraphStoreBatchIssueAssociatedBuildEdge = {
|
|
|
28514
28564
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildEdge';
|
|
28515
28565
|
node: GraphStoreBatchIssueAssociatedBuildInnerConnection;
|
|
28516
28566
|
};
|
|
28517
|
-
export declare type GraphStoreBatchIssueAssociatedBuildEndNode =
|
|
28567
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEndNode = {
|
|
28518
28568
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildEndNode';
|
|
28519
28569
|
id: Scalars['ID']['output'];
|
|
28520
28570
|
};
|
|
@@ -28537,7 +28587,7 @@ export declare type GraphStoreBatchIssueAssociatedBuildNode = Node & {
|
|
|
28537
28587
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28538
28588
|
to: GraphStoreBatchIssueAssociatedBuildEndNode;
|
|
28539
28589
|
};
|
|
28540
|
-
export declare type GraphStoreBatchIssueAssociatedBuildStartNode =
|
|
28590
|
+
export declare type GraphStoreBatchIssueAssociatedBuildStartNode = {
|
|
28541
28591
|
__typename?: 'GraphStoreBatchIssueAssociatedBuildStartNode';
|
|
28542
28592
|
data?: Maybe<GraphStoreBatchIssueAssociatedBuildStartUnion>;
|
|
28543
28593
|
id: Scalars['ID']['output'];
|
|
@@ -28553,7 +28603,7 @@ export declare type GraphStoreBatchIssueAssociatedDeploymentEdge = {
|
|
|
28553
28603
|
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEdge';
|
|
28554
28604
|
node: GraphStoreBatchIssueAssociatedDeploymentInnerConnection;
|
|
28555
28605
|
};
|
|
28556
|
-
export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode =
|
|
28606
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode = {
|
|
28557
28607
|
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEndNode';
|
|
28558
28608
|
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentEndUnion>;
|
|
28559
28609
|
id: Scalars['ID']['output'];
|
|
@@ -28578,7 +28628,7 @@ export declare type GraphStoreBatchIssueAssociatedDeploymentNode = Node & {
|
|
|
28578
28628
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28579
28629
|
to: GraphStoreBatchIssueAssociatedDeploymentEndNode;
|
|
28580
28630
|
};
|
|
28581
|
-
export declare type GraphStoreBatchIssueAssociatedDeploymentStartNode =
|
|
28631
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentStartNode = {
|
|
28582
28632
|
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentStartNode';
|
|
28583
28633
|
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentStartUnion>;
|
|
28584
28634
|
id: Scalars['ID']['output'];
|
|
@@ -28594,7 +28644,7 @@ export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge = {
|
|
|
28594
28644
|
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge';
|
|
28595
28645
|
node: GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerConnection;
|
|
28596
28646
|
};
|
|
28597
|
-
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode =
|
|
28647
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode = {
|
|
28598
28648
|
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode';
|
|
28599
28649
|
data?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkEndUnion>;
|
|
28600
28650
|
id: Scalars['ID']['output'];
|
|
@@ -28619,7 +28669,7 @@ export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkNode = Node & {
|
|
|
28619
28669
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28620
28670
|
to: GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode;
|
|
28621
28671
|
};
|
|
28622
|
-
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode =
|
|
28672
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode = {
|
|
28623
28673
|
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode';
|
|
28624
28674
|
data?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkStartUnion>;
|
|
28625
28675
|
id: Scalars['ID']['output'];
|
|
@@ -28635,7 +28685,7 @@ export declare type GraphStoreBatchJsmProjectAssociatedServiceEdge = {
|
|
|
28635
28685
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceEdge';
|
|
28636
28686
|
node: GraphStoreBatchJsmProjectAssociatedServiceInnerConnection;
|
|
28637
28687
|
};
|
|
28638
|
-
export declare type GraphStoreBatchJsmProjectAssociatedServiceEndNode =
|
|
28688
|
+
export declare type GraphStoreBatchJsmProjectAssociatedServiceEndNode = {
|
|
28639
28689
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceEndNode';
|
|
28640
28690
|
data?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceEndUnion>;
|
|
28641
28691
|
id: Scalars['ID']['output'];
|
|
@@ -28660,7 +28710,7 @@ export declare type GraphStoreBatchJsmProjectAssociatedServiceNode = Node & {
|
|
|
28660
28710
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28661
28711
|
to: GraphStoreBatchJsmProjectAssociatedServiceEndNode;
|
|
28662
28712
|
};
|
|
28663
|
-
export declare type GraphStoreBatchJsmProjectAssociatedServiceStartNode =
|
|
28713
|
+
export declare type GraphStoreBatchJsmProjectAssociatedServiceStartNode = {
|
|
28664
28714
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceStartNode';
|
|
28665
28715
|
data?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceStartUnion>;
|
|
28666
28716
|
id: Scalars['ID']['output'];
|
|
@@ -28676,7 +28726,7 @@ export declare type GraphStoreBatchMediaAttachedToContentEdge = {
|
|
|
28676
28726
|
__typename?: 'GraphStoreBatchMediaAttachedToContentEdge';
|
|
28677
28727
|
node: GraphStoreBatchMediaAttachedToContentInnerConnection;
|
|
28678
28728
|
};
|
|
28679
|
-
export declare type GraphStoreBatchMediaAttachedToContentEndNode =
|
|
28729
|
+
export declare type GraphStoreBatchMediaAttachedToContentEndNode = {
|
|
28680
28730
|
__typename?: 'GraphStoreBatchMediaAttachedToContentEndNode';
|
|
28681
28731
|
data?: Maybe<GraphStoreBatchMediaAttachedToContentEndUnion>;
|
|
28682
28732
|
id: Scalars['ID']['output'];
|
|
@@ -28701,7 +28751,7 @@ export declare type GraphStoreBatchMediaAttachedToContentNode = Node & {
|
|
|
28701
28751
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28702
28752
|
to: GraphStoreBatchMediaAttachedToContentEndNode;
|
|
28703
28753
|
};
|
|
28704
|
-
export declare type GraphStoreBatchMediaAttachedToContentStartNode =
|
|
28754
|
+
export declare type GraphStoreBatchMediaAttachedToContentStartNode = {
|
|
28705
28755
|
__typename?: 'GraphStoreBatchMediaAttachedToContentStartNode';
|
|
28706
28756
|
id: Scalars['ID']['output'];
|
|
28707
28757
|
};
|
|
@@ -28715,7 +28765,7 @@ export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdg
|
|
|
28715
28765
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge';
|
|
28716
28766
|
node: GraphStoreBatchSecurityContainerAssociatedToVulnerabilityInnerConnection;
|
|
28717
28767
|
};
|
|
28718
|
-
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndNode =
|
|
28768
|
+
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndNode = {
|
|
28719
28769
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndNode';
|
|
28720
28770
|
data?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndUnion>;
|
|
28721
28771
|
id: Scalars['ID']['output'];
|
|
@@ -28740,7 +28790,7 @@ export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityNod
|
|
|
28740
28790
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28741
28791
|
to: GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEndNode;
|
|
28742
28792
|
};
|
|
28743
|
-
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode =
|
|
28793
|
+
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode = {
|
|
28744
28794
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode';
|
|
28745
28795
|
id: Scalars['ID']['output'];
|
|
28746
28796
|
};
|
|
@@ -28754,7 +28804,7 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipEdge = {
|
|
|
28754
28804
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEdge';
|
|
28755
28805
|
node: GraphStoreBatchTestPerfhammerRelationshipInnerConnection;
|
|
28756
28806
|
};
|
|
28757
|
-
export declare type GraphStoreBatchTestPerfhammerRelationshipEndNode =
|
|
28807
|
+
export declare type GraphStoreBatchTestPerfhammerRelationshipEndNode = {
|
|
28758
28808
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEndNode';
|
|
28759
28809
|
id: Scalars['ID']['output'];
|
|
28760
28810
|
};
|
|
@@ -28777,7 +28827,7 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipNode = Node & {
|
|
|
28777
28827
|
lastUpdated: Scalars['DateTime']['output'];
|
|
28778
28828
|
to: GraphStoreBatchTestPerfhammerRelationshipEndNode;
|
|
28779
28829
|
};
|
|
28780
|
-
export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode =
|
|
28830
|
+
export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
|
|
28781
28831
|
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipStartNode';
|
|
28782
28832
|
data?: Maybe<GraphStoreBatchTestPerfhammerRelationshipStartUnion>;
|
|
28783
28833
|
id: Scalars['ID']['output'];
|
|
@@ -40778,6 +40828,7 @@ export declare type JiraAutodevJobJobLogsArgs = {
|
|
|
40778
40828
|
cloudId: Scalars['ID']['input'];
|
|
40779
40829
|
excludePriorities?: InputMaybe<Array<InputMaybe<DevAiAutodevLogPriority>>>;
|
|
40780
40830
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40831
|
+
minPriority?: InputMaybe<DevAiAutodevLogPriority>;
|
|
40781
40832
|
};
|
|
40782
40833
|
export declare type JiraAutodevJobConnection = {
|
|
40783
40834
|
__typename?: 'JiraAutodevJobConnection';
|
|
@@ -42864,6 +42915,7 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
42864
42915
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
42865
42916
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
42866
42917
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42918
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
42867
42919
|
};
|
|
42868
42920
|
export declare type JiraDevInfoConfigError = {
|
|
42869
42921
|
__typename?: 'JiraDevInfoConfigError';
|
|
@@ -44215,7 +44267,7 @@ export declare type JiraGroupGrantTypeValue = Node & {
|
|
|
44215
44267
|
export declare type JiraGroupInput = {
|
|
44216
44268
|
groupName: Scalars['ID']['input'];
|
|
44217
44269
|
};
|
|
44218
|
-
export declare type JiraGroupedListView = JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
|
|
44270
|
+
export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
|
|
44219
44271
|
__typename?: 'JiraGroupedListView';
|
|
44220
44272
|
error?: Maybe<QueryError>;
|
|
44221
44273
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -44223,6 +44275,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewType & JiraSpreadsh
|
|
|
44223
44275
|
groups?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
44224
44276
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
44225
44277
|
id: Scalars['ID']['output'];
|
|
44278
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
44226
44279
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
44227
44280
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
44228
44281
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
@@ -45536,7 +45589,7 @@ export declare type JiraIssueSearchStatus = {
|
|
|
45536
45589
|
__typename?: 'JiraIssueSearchStatus';
|
|
45537
45590
|
functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
|
|
45538
45591
|
};
|
|
45539
|
-
export declare type JiraIssueSearchView = Node & {
|
|
45592
|
+
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
45540
45593
|
__typename?: 'JiraIssueSearchView';
|
|
45541
45594
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
45542
45595
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -45611,6 +45664,22 @@ export declare type JiraIssueSearchViewInput = {
|
|
|
45611
45664
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
45612
45665
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
45613
45666
|
};
|
|
45667
|
+
export declare type JiraIssueSearchViewMetadata = {
|
|
45668
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
45669
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
45670
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
45671
|
+
id: Scalars['ID']['output'];
|
|
45672
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
45673
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
45674
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
45675
|
+
};
|
|
45676
|
+
export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
45677
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45678
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
45679
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
45680
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45681
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45682
|
+
};
|
|
45614
45683
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
45615
45684
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
45616
45685
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -46574,13 +46643,14 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
46574
46643
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
46575
46644
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
46576
46645
|
};
|
|
46577
|
-
export declare type JiraListView = JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
|
|
46646
|
+
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraIssueSearchViewType & JiraSpreadsheetView & JiraView & Node & {
|
|
46578
46647
|
__typename?: 'JiraListView';
|
|
46579
46648
|
error?: Maybe<QueryError>;
|
|
46580
46649
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
46581
46650
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
46582
46651
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
46583
46652
|
id: Scalars['ID']['output'];
|
|
46653
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
46584
46654
|
issues?: Maybe<JiraIssueConnection>;
|
|
46585
46655
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
46586
46656
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
@@ -49515,6 +49585,7 @@ export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
|
49515
49585
|
export declare type JiraQueryAllJiraJourneyConfigurationsArgs = {
|
|
49516
49586
|
cloudId: Scalars['ID']['input'];
|
|
49517
49587
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49588
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
49518
49589
|
};
|
|
49519
49590
|
export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
49520
49591
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -52661,6 +52732,7 @@ export declare type JiraSpreadsheetView = {
|
|
|
52661
52732
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
52662
52733
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
52663
52734
|
id: Scalars['ID']['output'];
|
|
52735
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
52664
52736
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
52665
52737
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
52666
52738
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
@@ -53187,6 +53259,7 @@ export declare type JiraTeamView = {
|
|
|
53187
53259
|
jiraMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
53188
53260
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
53189
53261
|
jiraSuppliedId: Scalars['ID']['output'];
|
|
53262
|
+
jiraSuppliedIsVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
53190
53263
|
jiraSuppliedName?: Maybe<Scalars['String']['output']>;
|
|
53191
53264
|
jiraSuppliedTeamId: Scalars['String']['output'];
|
|
53192
53265
|
jiraSuppliedVisibility?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -57500,12 +57573,14 @@ export declare type MarketplaceConsolePricingPlan = {
|
|
|
57500
57573
|
__typename?: 'MarketplaceConsolePricingPlan';
|
|
57501
57574
|
currency: MarketplaceConsolePricingCurrency;
|
|
57502
57575
|
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
57576
|
+
isDefaultPricing?: Maybe<Scalars['Boolean']['output']>;
|
|
57503
57577
|
status: MarketplaceConsolePricingPlanStatus;
|
|
57504
57578
|
tieredPricing: Array<MarketplaceConsolePricingItem>;
|
|
57505
57579
|
};
|
|
57506
57580
|
export declare type MarketplaceConsolePricingPlanInput = {
|
|
57507
57581
|
currency: MarketplaceConsolePricingCurrency;
|
|
57508
57582
|
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
57583
|
+
isDefaultPricing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57509
57584
|
status: MarketplaceConsolePricingPlanStatus;
|
|
57510
57585
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
57511
57586
|
};
|
|
@@ -64218,7 +64293,7 @@ export declare type QueryDevOpsServicesByIdArgs = {
|
|
|
64218
64293
|
ids: Array<Scalars['ID']['input']>;
|
|
64219
64294
|
};
|
|
64220
64295
|
export declare type QueryDevai_AutodevIssueScopingArgs = {
|
|
64221
|
-
issueDescription
|
|
64296
|
+
issueDescription?: InputMaybe<Scalars['String']['input']>;
|
|
64222
64297
|
issueId: Scalars['ID']['input'];
|
|
64223
64298
|
issueSummary: Scalars['String']['input'];
|
|
64224
64299
|
};
|
|
@@ -64241,6 +64316,7 @@ export declare type QueryDevai_AutodevJobLogsArgs = {
|
|
|
64241
64316
|
excludePriorities?: InputMaybe<Array<InputMaybe<DevAiAutodevLogPriority>>>;
|
|
64242
64317
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64243
64318
|
jobId: Scalars['ID']['input'];
|
|
64319
|
+
minPriority?: InputMaybe<DevAiAutodevLogPriority>;
|
|
64244
64320
|
};
|
|
64245
64321
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
64246
64322
|
appId: Scalars['ID']['input'];
|
|
@@ -72760,6 +72836,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
72760
72836
|
repositoryValues?: InputMaybe<CompassRepositoryValueInput>;
|
|
72761
72837
|
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
72762
72838
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
72839
|
+
statusConfig?: InputMaybe<CompassScorecardStatusConfigInput>;
|
|
72763
72840
|
updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
72764
72841
|
};
|
|
72765
72842
|
export declare type UpdateCompassScorecardPayload = Payload & {
|