@forge/cli-shared 5.5.0-next.8 → 5.5.0-next.8-experimental-c7a7d36
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 +23 -0
- package/out/graphql/graphql-types.d.ts +315 -3
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +58 -17
- package/package.json +2 -2
|
@@ -4275,6 +4275,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
4275
4275
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
4276
4276
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4277
4277
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4278
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4278
4279
|
weight: Scalars['Int']['input'];
|
|
4279
4280
|
};
|
|
4280
4281
|
export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
@@ -4282,6 +4283,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
4282
4283
|
collectionComparatorValue: Array<Scalars['ID']['input']>;
|
|
4283
4284
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4284
4285
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4286
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4285
4287
|
weight: Scalars['Int']['input'];
|
|
4286
4288
|
};
|
|
4287
4289
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
@@ -4289,6 +4291,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
4289
4291
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4290
4292
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
4291
4293
|
numberComparatorValue: Scalars['Float']['input'];
|
|
4294
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4292
4295
|
weight: Scalars['Int']['input'];
|
|
4293
4296
|
};
|
|
4294
4297
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
@@ -4296,11 +4299,13 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
4296
4299
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
4297
4300
|
membershipComparatorValue: Array<Scalars['ID']['input']>;
|
|
4298
4301
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4302
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4299
4303
|
weight: Scalars['Int']['input'];
|
|
4300
4304
|
};
|
|
4301
4305
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
4302
4306
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4303
4307
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4308
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4304
4309
|
weight: Scalars['Int']['input'];
|
|
4305
4310
|
};
|
|
4306
4311
|
export declare type CompassCreateIncidentEventInput = {
|
|
@@ -4396,6 +4401,10 @@ export declare type CompassCreatePushEventInput = {
|
|
|
4396
4401
|
updateSequenceNumber: Scalars['Long']['input'];
|
|
4397
4402
|
url: Scalars['URL']['input'];
|
|
4398
4403
|
};
|
|
4404
|
+
export declare type CompassCreateScorecardCriteriaScoringStrategyRulesInput = {
|
|
4405
|
+
onFalse?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
4406
|
+
onTrue?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
4407
|
+
};
|
|
4399
4408
|
export declare type CompassCreateTeamCheckinActionInput = {
|
|
4400
4409
|
actionText: Scalars['String']['input'];
|
|
4401
4410
|
completed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -4552,6 +4561,7 @@ export declare type CompassCustomFieldScorecardCriteria = {
|
|
|
4552
4561
|
id: Scalars['ID']['output'];
|
|
4553
4562
|
name?: Maybe<Scalars['String']['output']>;
|
|
4554
4563
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4564
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
4555
4565
|
weight: Scalars['Int']['output'];
|
|
4556
4566
|
};
|
|
4557
4567
|
export declare type CompassCustomFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5064,6 +5074,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCusto
|
|
|
5064
5074
|
id: Scalars['ID']['output'];
|
|
5065
5075
|
name?: Maybe<Scalars['String']['output']>;
|
|
5066
5076
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5077
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5067
5078
|
weight: Scalars['Int']['output'];
|
|
5068
5079
|
};
|
|
5069
5080
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5078,6 +5089,7 @@ export declare type CompassHasCustomMultiSelectFieldScorecardCriteria = CompassC
|
|
|
5078
5089
|
id: Scalars['ID']['output'];
|
|
5079
5090
|
name?: Maybe<Scalars['String']['output']>;
|
|
5080
5091
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5092
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5081
5093
|
weight: Scalars['Int']['output'];
|
|
5082
5094
|
};
|
|
5083
5095
|
export declare type CompassHasCustomMultiSelectFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5091,6 +5103,7 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustom
|
|
|
5091
5103
|
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
5092
5104
|
numberComparatorValue?: Maybe<Scalars['Float']['output']>;
|
|
5093
5105
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5106
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5094
5107
|
weight: Scalars['Int']['output'];
|
|
5095
5108
|
};
|
|
5096
5109
|
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5105,6 +5118,7 @@ export declare type CompassHasCustomSingleSelectFieldScorecardCriteria = Compass
|
|
|
5105
5118
|
membershipComparatorValue: Array<Scalars['ID']['output']>;
|
|
5106
5119
|
name?: Maybe<Scalars['String']['output']>;
|
|
5107
5120
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5121
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5108
5122
|
weight: Scalars['Int']['output'];
|
|
5109
5123
|
};
|
|
5110
5124
|
export declare type CompassHasCustomSingleSelectFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5116,6 +5130,7 @@ export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFi
|
|
|
5116
5130
|
id: Scalars['ID']['output'];
|
|
5117
5131
|
name?: Maybe<Scalars['String']['output']>;
|
|
5118
5132
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5133
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5119
5134
|
weight: Scalars['Int']['output'];
|
|
5120
5135
|
};
|
|
5121
5136
|
export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5126,6 +5141,7 @@ export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCri
|
|
|
5126
5141
|
id: Scalars['ID']['output'];
|
|
5127
5142
|
name?: Maybe<Scalars['String']['output']>;
|
|
5128
5143
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5144
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5129
5145
|
weight: Scalars['Int']['output'];
|
|
5130
5146
|
};
|
|
5131
5147
|
export declare type CompassHasDescriptionScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5137,6 +5153,7 @@ export declare type CompassHasFieldScorecardCriteria = CompassScorecardCriteria
|
|
|
5137
5153
|
id: Scalars['ID']['output'];
|
|
5138
5154
|
name?: Maybe<Scalars['String']['output']>;
|
|
5139
5155
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5156
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5140
5157
|
weight: Scalars['Int']['output'];
|
|
5141
5158
|
};
|
|
5142
5159
|
export declare type CompassHasFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5148,6 +5165,7 @@ export declare type CompassHasLinkScorecardCriteria = CompassScorecardCriteria &
|
|
|
5148
5165
|
linkType: CompassLinkType;
|
|
5149
5166
|
name?: Maybe<Scalars['String']['output']>;
|
|
5150
5167
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5168
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5151
5169
|
textComparator?: Maybe<CompassCriteriaTextComparatorOptions>;
|
|
5152
5170
|
textComparatorValue?: Maybe<Scalars['String']['output']>;
|
|
5153
5171
|
weight: Scalars['Int']['output'];
|
|
@@ -5165,6 +5183,7 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
5165
5183
|
metricDefinitionId: Scalars['ID']['output'];
|
|
5166
5184
|
name?: Maybe<Scalars['String']['output']>;
|
|
5167
5185
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5186
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5168
5187
|
weight: Scalars['Int']['output'];
|
|
5169
5188
|
};
|
|
5170
5189
|
export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5175,6 +5194,7 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
5175
5194
|
id: Scalars['ID']['output'];
|
|
5176
5195
|
name?: Maybe<Scalars['String']['output']>;
|
|
5177
5196
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5197
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5178
5198
|
weight: Scalars['Int']['output'];
|
|
5179
5199
|
};
|
|
5180
5200
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5683,6 +5703,7 @@ export declare type CompassScorecard = Node & {
|
|
|
5683
5703
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
5684
5704
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
5685
5705
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
5706
|
+
scoringStrategyType?: Maybe<Scalars['String']['output']>;
|
|
5686
5707
|
type: Scalars['String']['output'];
|
|
5687
5708
|
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
5688
5709
|
};
|
|
@@ -5800,6 +5821,7 @@ export declare type CompassScorecardCriteria = {
|
|
|
5800
5821
|
id: Scalars['ID']['output'];
|
|
5801
5822
|
name?: Maybe<Scalars['String']['output']>;
|
|
5802
5823
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5824
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5803
5825
|
weight: Scalars['Int']['output'];
|
|
5804
5826
|
};
|
|
5805
5827
|
export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5868,6 +5890,16 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter =
|
|
|
5868
5890
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
5869
5891
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
5870
5892
|
};
|
|
5893
|
+
export declare enum CompassScorecardCriteriaScoringStrategyRuleAction {
|
|
5894
|
+
MarkAsFailed = "MARK_AS_FAILED",
|
|
5895
|
+
MarkAsPassed = "MARK_AS_PASSED",
|
|
5896
|
+
MarkAsSkipped = "MARK_AS_SKIPPED"
|
|
5897
|
+
}
|
|
5898
|
+
export declare type CompassScorecardCriteriaScoringStrategyRules = {
|
|
5899
|
+
__typename?: 'CompassScorecardCriteriaScoringStrategyRules';
|
|
5900
|
+
onFalse?: Maybe<Scalars['String']['output']>;
|
|
5901
|
+
onTrue?: Maybe<Scalars['String']['output']>;
|
|
5902
|
+
};
|
|
5871
5903
|
export declare type CompassScorecardCriterionScore = {
|
|
5872
5904
|
criterionId: Scalars['ID']['output'];
|
|
5873
5905
|
explanation: Scalars['String']['output'];
|
|
@@ -6062,6 +6094,10 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
6062
6094
|
__typename?: 'CompassScorecardScoreStatusDuration';
|
|
6063
6095
|
since: Scalars['DateTime']['output'];
|
|
6064
6096
|
};
|
|
6097
|
+
export declare enum CompassScorecardScoringStrategyType {
|
|
6098
|
+
PointBased = "POINT_BASED",
|
|
6099
|
+
WeightBased = "WEIGHT_BASED"
|
|
6100
|
+
}
|
|
6065
6101
|
export declare type CompassScorecardTypesFilter = {
|
|
6066
6102
|
in: Array<Scalars['String']['input']>;
|
|
6067
6103
|
};
|
|
@@ -6385,6 +6421,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
6385
6421
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6386
6422
|
id: Scalars['ID']['input'];
|
|
6387
6423
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6424
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6388
6425
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6389
6426
|
};
|
|
6390
6427
|
export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
@@ -6393,6 +6430,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
6393
6430
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6394
6431
|
id: Scalars['ID']['input'];
|
|
6395
6432
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6433
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6396
6434
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6397
6435
|
};
|
|
6398
6436
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
@@ -6401,6 +6439,7 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
6401
6439
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6402
6440
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
6403
6441
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
6442
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6404
6443
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6405
6444
|
};
|
|
6406
6445
|
export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
@@ -6409,12 +6448,14 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
6409
6448
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
6410
6449
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6411
6450
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6451
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6412
6452
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6413
6453
|
};
|
|
6414
6454
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
6415
6455
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6416
6456
|
id: Scalars['ID']['input'];
|
|
6417
6457
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6458
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6418
6459
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6419
6460
|
};
|
|
6420
6461
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
@@ -6437,6 +6478,10 @@ export declare type CompassUpdatePermissionConfigsPayload = Payload & {
|
|
|
6437
6478
|
success: Scalars['Boolean']['output'];
|
|
6438
6479
|
updatedCustomPermissionConfigs?: Maybe<CompassCustomPermissionConfigs>;
|
|
6439
6480
|
};
|
|
6481
|
+
export declare type CompassUpdateScorecardCriteriaScoringStrategyRulesInput = {
|
|
6482
|
+
onFalse?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
6483
|
+
onTrue?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
6484
|
+
};
|
|
6440
6485
|
export declare type CompassUpdateTeamCheckinActionInput = {
|
|
6441
6486
|
actionText?: InputMaybe<Scalars['String']['input']>;
|
|
6442
6487
|
completed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -15268,16 +15313,19 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
15268
15313
|
};
|
|
15269
15314
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
15270
15315
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15316
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15271
15317
|
weight: Scalars['Int']['input'];
|
|
15272
15318
|
};
|
|
15273
15319
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
15274
15320
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
15275
15321
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15322
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15276
15323
|
weight: Scalars['Int']['input'];
|
|
15277
15324
|
};
|
|
15278
15325
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
15279
15326
|
linkType: CompassLinkType;
|
|
15280
15327
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15328
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15281
15329
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
15282
15330
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
15283
15331
|
weight: Scalars['Int']['input'];
|
|
@@ -15292,6 +15340,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
15292
15340
|
};
|
|
15293
15341
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
15294
15342
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15343
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15295
15344
|
weight: Scalars['Int']['input'];
|
|
15296
15345
|
};
|
|
15297
15346
|
export declare type CreateCompassLinkInput = {
|
|
@@ -15333,6 +15382,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
15333
15382
|
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15334
15383
|
name: Scalars['String']['input'];
|
|
15335
15384
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
15385
|
+
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
15336
15386
|
};
|
|
15337
15387
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
15338
15388
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -19291,6 +19341,7 @@ export declare type ExternalAttachment = {
|
|
|
19291
19341
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19292
19342
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19293
19343
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
19344
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
19294
19345
|
url?: Maybe<Scalars['String']['output']>;
|
|
19295
19346
|
};
|
|
19296
19347
|
export declare type ExternalAuthCredentialsInput = {
|
|
@@ -25072,6 +25123,7 @@ export declare type GraphStoreContentReferencedEntityBatchArgs = {
|
|
|
25072
25123
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25073
25124
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25074
25125
|
ids: Array<Scalars['ID']['input']>;
|
|
25126
|
+
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
25075
25127
|
};
|
|
25076
25128
|
export declare type GraphStoreContentReferencedEntityInverseArgs = {
|
|
25077
25129
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25083,6 +25135,7 @@ export declare type GraphStoreContentReferencedEntityInverseBatchArgs = {
|
|
|
25083
25135
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25084
25136
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25085
25137
|
ids: Array<Scalars['ID']['input']>;
|
|
25138
|
+
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
25086
25139
|
};
|
|
25087
25140
|
export declare type GraphStoreContentReferencedEntityInverseRelationshipArgs = {
|
|
25088
25141
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25110,6 +25163,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectBatchArgs = {
|
|
|
25110
25163
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25111
25164
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25112
25165
|
ids: Array<Scalars['ID']['input']>;
|
|
25166
|
+
sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
|
|
25113
25167
|
};
|
|
25114
25168
|
export declare type GraphStoreFocusAreaAssociatedToProjectInverseArgs = {
|
|
25115
25169
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25121,6 +25175,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectInverseBatchArgs = {
|
|
|
25121
25175
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25122
25176
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25123
25177
|
ids: Array<Scalars['ID']['input']>;
|
|
25178
|
+
sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
|
|
25124
25179
|
};
|
|
25125
25180
|
export declare type GraphStoreFocusAreaHasAtlasGoalArgs = {
|
|
25126
25181
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25132,6 +25187,7 @@ export declare type GraphStoreFocusAreaHasAtlasGoalBatchArgs = {
|
|
|
25132
25187
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25133
25188
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25134
25189
|
ids: Array<Scalars['ID']['input']>;
|
|
25190
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
25135
25191
|
};
|
|
25136
25192
|
export declare type GraphStoreFocusAreaHasAtlasGoalInverseArgs = {
|
|
25137
25193
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25143,6 +25199,7 @@ export declare type GraphStoreFocusAreaHasAtlasGoalInverseBatchArgs = {
|
|
|
25143
25199
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25144
25200
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25145
25201
|
ids: Array<Scalars['ID']['input']>;
|
|
25202
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
25146
25203
|
};
|
|
25147
25204
|
export declare type GraphStoreFocusAreaHasFocusAreaArgs = {
|
|
25148
25205
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25154,6 +25211,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaBatchArgs = {
|
|
|
25154
25211
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25155
25212
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25156
25213
|
ids: Array<Scalars['ID']['input']>;
|
|
25214
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
25157
25215
|
};
|
|
25158
25216
|
export declare type GraphStoreFocusAreaHasFocusAreaInverseArgs = {
|
|
25159
25217
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25165,6 +25223,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
|
|
|
25165
25223
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25166
25224
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25167
25225
|
ids: Array<Scalars['ID']['input']>;
|
|
25226
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
25168
25227
|
};
|
|
25169
25228
|
export declare type GraphStoreFocusAreaHasProjectArgs = {
|
|
25170
25229
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25176,6 +25235,7 @@ export declare type GraphStoreFocusAreaHasProjectBatchArgs = {
|
|
|
25176
25235
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25177
25236
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25178
25237
|
ids: Array<Scalars['ID']['input']>;
|
|
25238
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
25179
25239
|
};
|
|
25180
25240
|
export declare type GraphStoreFocusAreaHasProjectInverseArgs = {
|
|
25181
25241
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25187,6 +25247,7 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
25187
25247
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25188
25248
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25189
25249
|
ids: Array<Scalars['ID']['input']>;
|
|
25250
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
25190
25251
|
};
|
|
25191
25252
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
25192
25253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25198,6 +25259,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewBatchArgs = {
|
|
|
25198
25259
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25199
25260
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25200
25261
|
ids: Array<Scalars['ID']['input']>;
|
|
25262
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
25201
25263
|
};
|
|
25202
25264
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseArgs = {
|
|
25203
25265
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25209,6 +25271,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseBatchAr
|
|
|
25209
25271
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25210
25272
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25211
25273
|
ids: Array<Scalars['ID']['input']>;
|
|
25274
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
25212
25275
|
};
|
|
25213
25276
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseRelationshipArgs = {
|
|
25214
25277
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25225,6 +25288,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkBatchArgs
|
|
|
25225
25288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25226
25289
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25227
25290
|
ids: Array<Scalars['ID']['input']>;
|
|
25291
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
25228
25292
|
};
|
|
25229
25293
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseArgs = {
|
|
25230
25294
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25236,6 +25300,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseBat
|
|
|
25236
25300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25237
25301
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25238
25302
|
ids: Array<Scalars['ID']['input']>;
|
|
25303
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
25239
25304
|
};
|
|
25240
25305
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseRelationshipArgs = {
|
|
25241
25306
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25262,6 +25327,7 @@ export declare type GraphStoreIncidentHasActionItemBatchArgs = {
|
|
|
25262
25327
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25263
25328
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25264
25329
|
ids: Array<Scalars['ID']['input']>;
|
|
25330
|
+
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
25265
25331
|
};
|
|
25266
25332
|
export declare type GraphStoreIncidentHasActionItemInverseArgs = {
|
|
25267
25333
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25273,6 +25339,7 @@ export declare type GraphStoreIncidentHasActionItemInverseBatchArgs = {
|
|
|
25273
25339
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25274
25340
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25275
25341
|
ids: Array<Scalars['ID']['input']>;
|
|
25342
|
+
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
25276
25343
|
};
|
|
25277
25344
|
export declare type GraphStoreIncidentHasActionItemInverseRelationshipArgs = {
|
|
25278
25345
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25294,6 +25361,7 @@ export declare type GraphStoreIncidentLinkedJswIssueBatchArgs = {
|
|
|
25294
25361
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25295
25362
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25296
25363
|
ids: Array<Scalars['ID']['input']>;
|
|
25364
|
+
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
25297
25365
|
};
|
|
25298
25366
|
export declare type GraphStoreIncidentLinkedJswIssueInverseArgs = {
|
|
25299
25367
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25305,6 +25373,7 @@ export declare type GraphStoreIncidentLinkedJswIssueInverseBatchArgs = {
|
|
|
25305
25373
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25306
25374
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25307
25375
|
ids: Array<Scalars['ID']['input']>;
|
|
25376
|
+
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
25308
25377
|
};
|
|
25309
25378
|
export declare type GraphStoreIncidentLinkedJswIssueInverseRelationshipArgs = {
|
|
25310
25379
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25336,6 +25405,7 @@ export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
|
25336
25405
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25337
25406
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25338
25407
|
ids: Array<Scalars['ID']['input']>;
|
|
25408
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
25339
25409
|
};
|
|
25340
25410
|
export declare type GraphStoreIssueAssociatedBuildInverseArgs = {
|
|
25341
25411
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25347,6 +25417,7 @@ export declare type GraphStoreIssueAssociatedBuildInverseBatchArgs = {
|
|
|
25347
25417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25348
25418
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25349
25419
|
ids: Array<Scalars['ID']['input']>;
|
|
25420
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
25350
25421
|
};
|
|
25351
25422
|
export declare type GraphStoreIssueAssociatedBuildInverseRelationshipArgs = {
|
|
25352
25423
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25376,35 +25447,45 @@ export declare type GraphStoreIssueAssociatedCommitRelationshipArgs = {
|
|
|
25376
25447
|
};
|
|
25377
25448
|
export declare type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
25378
25449
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25450
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25379
25451
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25380
25452
|
id: Scalars['ID']['input'];
|
|
25381
25453
|
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25382
25454
|
};
|
|
25383
25455
|
export declare type GraphStoreIssueAssociatedDeploymentBatchArgs = {
|
|
25384
25456
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25457
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25385
25458
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25386
25459
|
ids: Array<Scalars['ID']['input']>;
|
|
25460
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25387
25461
|
};
|
|
25388
25462
|
export declare type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
25389
25463
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25464
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25390
25465
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25391
25466
|
id: Scalars['ID']['input'];
|
|
25392
25467
|
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25393
25468
|
};
|
|
25394
25469
|
export declare type GraphStoreIssueAssociatedDeploymentInverseBatchArgs = {
|
|
25395
25470
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25471
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25396
25472
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25397
25473
|
ids: Array<Scalars['ID']['input']>;
|
|
25474
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25398
25475
|
};
|
|
25399
25476
|
export declare type GraphStoreIssueAssociatedDeploymentInverseRelationshipArgs = {
|
|
25400
25477
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25478
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25401
25479
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25402
25480
|
id: Scalars['ID']['input'];
|
|
25481
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25403
25482
|
};
|
|
25404
25483
|
export declare type GraphStoreIssueAssociatedDeploymentRelationshipArgs = {
|
|
25405
25484
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25485
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25406
25486
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25407
25487
|
id: Scalars['ID']['input'];
|
|
25488
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25408
25489
|
};
|
|
25409
25490
|
export declare type GraphStoreIssueAssociatedDesignArgs = {
|
|
25410
25491
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25460,6 +25541,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkBatchArgs = {
|
|
|
25460
25541
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25461
25542
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25462
25543
|
ids: Array<Scalars['ID']['input']>;
|
|
25544
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
25463
25545
|
};
|
|
25464
25546
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseArgs = {
|
|
25465
25547
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25471,6 +25553,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseBatchArgs = {
|
|
|
25471
25553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25472
25554
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25473
25555
|
ids: Array<Scalars['ID']['input']>;
|
|
25556
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
25474
25557
|
};
|
|
25475
25558
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseRelationshipArgs = {
|
|
25476
25559
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25684,6 +25767,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceBatchArgs = {
|
|
|
25684
25767
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25685
25768
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25686
25769
|
ids: Array<Scalars['ID']['input']>;
|
|
25770
|
+
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
25687
25771
|
};
|
|
25688
25772
|
export declare type GraphStoreJsmProjectAssociatedServiceInverseArgs = {
|
|
25689
25773
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25695,6 +25779,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceInverseBatchArgs = {
|
|
|
25695
25779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25696
25780
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25697
25781
|
ids: Array<Scalars['ID']['input']>;
|
|
25782
|
+
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
25698
25783
|
};
|
|
25699
25784
|
export declare type GraphStoreJsmProjectAssociatedServiceInverseRelationshipArgs = {
|
|
25700
25785
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25810,11 +25895,13 @@ export declare type GraphStoreMediaAttachedToContentBatchArgs = {
|
|
|
25810
25895
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25811
25896
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25812
25897
|
ids: Array<Scalars['ID']['input']>;
|
|
25898
|
+
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
25813
25899
|
};
|
|
25814
25900
|
export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
25815
25901
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25816
25902
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25817
25903
|
ids: Array<Scalars['ID']['input']>;
|
|
25904
|
+
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
25818
25905
|
};
|
|
25819
25906
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
25820
25907
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26451,11 +26538,13 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityBatchArg
|
|
|
26451
26538
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26452
26539
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26453
26540
|
ids: Array<Scalars['ID']['input']>;
|
|
26541
|
+
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
26454
26542
|
};
|
|
26455
26543
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseBatchArgs = {
|
|
26456
26544
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26457
26545
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26458
26546
|
ids: Array<Scalars['ID']['input']>;
|
|
26547
|
+
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
26459
26548
|
};
|
|
26460
26549
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseRelationshipArgs = {
|
|
26461
26550
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26781,6 +26870,7 @@ export declare type GraphStoreTestPerfhammerRelationshipBatchArgs = {
|
|
|
26781
26870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26782
26871
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26783
26872
|
ids: Array<Scalars['ID']['input']>;
|
|
26873
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
26784
26874
|
};
|
|
26785
26875
|
export declare type GraphStoreTestPerfhammerRelationshipInverseArgs = {
|
|
26786
26876
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26792,6 +26882,7 @@ export declare type GraphStoreTestPerfhammerRelationshipInverseBatchArgs = {
|
|
|
26792
26882
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26793
26883
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26794
26884
|
ids: Array<Scalars['ID']['input']>;
|
|
26885
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
26795
26886
|
};
|
|
26796
26887
|
export declare type GraphStoreTestPerfhammerRelationshipInverseRelationshipArgs = {
|
|
26797
26888
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31829,9 +31920,53 @@ export declare type GraphStoreIssueAssociatedBuildSortInput = {
|
|
|
31829
31920
|
export declare type GraphStoreIssueAssociatedCommitSortInput = {
|
|
31830
31921
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
31831
31922
|
};
|
|
31923
|
+
export declare type GraphStoreIssueAssociatedDeploymentAuthorFilterInput = {
|
|
31924
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
|
|
31925
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
31926
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
|
|
31927
|
+
};
|
|
31832
31928
|
export declare type GraphStoreIssueAssociatedDeploymentAuthorSortInput = {
|
|
31833
31929
|
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
31834
31930
|
};
|
|
31931
|
+
export declare type GraphStoreIssueAssociatedDeploymentConditionalFilterInput = {
|
|
31932
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
31933
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
31934
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
31935
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
31936
|
+
to_author?: InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>;
|
|
31937
|
+
to_environmentType?: InputMaybe<GraphStoreIssueAssociatedDeploymentEnvironmentTypeFilterInput>;
|
|
31938
|
+
to_state?: InputMaybe<GraphStoreIssueAssociatedDeploymentDeploymentStateFilterInput>;
|
|
31939
|
+
};
|
|
31940
|
+
export declare enum GraphStoreIssueAssociatedDeploymentDeploymentState {
|
|
31941
|
+
Cancelled = "CANCELLED",
|
|
31942
|
+
Failed = "FAILED",
|
|
31943
|
+
InProgress = "IN_PROGRESS",
|
|
31944
|
+
NotSet = "NOT_SET",
|
|
31945
|
+
Pending = "PENDING",
|
|
31946
|
+
RolledBack = "ROLLED_BACK",
|
|
31947
|
+
Successful = "SUCCESSFUL",
|
|
31948
|
+
Unknown = "UNKNOWN"
|
|
31949
|
+
}
|
|
31950
|
+
export declare type GraphStoreIssueAssociatedDeploymentDeploymentStateFilterInput = {
|
|
31951
|
+
is?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentDeploymentState>>;
|
|
31952
|
+
isNot?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentDeploymentState>>;
|
|
31953
|
+
};
|
|
31954
|
+
export declare enum GraphStoreIssueAssociatedDeploymentEnvironmentType {
|
|
31955
|
+
Development = "DEVELOPMENT",
|
|
31956
|
+
NotSet = "NOT_SET",
|
|
31957
|
+
Production = "PRODUCTION",
|
|
31958
|
+
Staging = "STAGING",
|
|
31959
|
+
Testing = "TESTING",
|
|
31960
|
+
Unmapped = "UNMAPPED"
|
|
31961
|
+
}
|
|
31962
|
+
export declare type GraphStoreIssueAssociatedDeploymentEnvironmentTypeFilterInput = {
|
|
31963
|
+
is?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentEnvironmentType>>;
|
|
31964
|
+
isNot?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentEnvironmentType>>;
|
|
31965
|
+
};
|
|
31966
|
+
export declare type GraphStoreIssueAssociatedDeploymentFilterInput = {
|
|
31967
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentConditionalFilterInput>>>;
|
|
31968
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentConditionalFilterInput>>>;
|
|
31969
|
+
};
|
|
31835
31970
|
export declare type GraphStoreIssueAssociatedDeploymentSortInput = {
|
|
31836
31971
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
31837
31972
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -36441,6 +36576,7 @@ export declare type HelpCenterPortal = {
|
|
|
36441
36576
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
36442
36577
|
name?: Maybe<Scalars['String']['output']>;
|
|
36443
36578
|
portalBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
36579
|
+
projectType?: Maybe<HelpCenterProjectType>;
|
|
36444
36580
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
36445
36581
|
};
|
|
36446
36582
|
export declare type HelpCenterPortalFilter = {
|
|
@@ -36481,6 +36617,10 @@ export declare type HelpCenterProjectMappingUpdatePayload = Payload & {
|
|
|
36481
36617
|
errors?: Maybe<Array<MutationError>>;
|
|
36482
36618
|
success: Scalars['Boolean']['output'];
|
|
36483
36619
|
};
|
|
36620
|
+
export declare enum HelpCenterProjectType {
|
|
36621
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
36622
|
+
ServiceDesk = "SERVICE_DESK"
|
|
36623
|
+
}
|
|
36484
36624
|
export declare type HelpCenterQueryApi = {
|
|
36485
36625
|
__typename?: 'HelpCenterQueryApi';
|
|
36486
36626
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
@@ -37156,6 +37296,7 @@ export declare type HelpLayoutPortalCard = {
|
|
|
37156
37296
|
name?: Maybe<Scalars['String']['output']>;
|
|
37157
37297
|
portalBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
37158
37298
|
portalId?: Maybe<Scalars['String']['output']>;
|
|
37299
|
+
projectType?: Maybe<HelpLayoutProjectType>;
|
|
37159
37300
|
};
|
|
37160
37301
|
export declare type HelpLayoutPortalsListData = {
|
|
37161
37302
|
__typename?: 'HelpLayoutPortalsListData';
|
|
@@ -37172,6 +37313,10 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
37172
37313
|
export declare type HelpLayoutPortalsListInput = {
|
|
37173
37314
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
37174
37315
|
};
|
|
37316
|
+
export declare enum HelpLayoutProjectType {
|
|
37317
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
37318
|
+
ServiceDesk = "SERVICE_DESK"
|
|
37319
|
+
}
|
|
37175
37320
|
export declare type HelpLayoutQueryApi = {
|
|
37176
37321
|
__typename?: 'HelpLayoutQueryApi';
|
|
37177
37322
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -37491,6 +37636,7 @@ export declare type HelpObjectStoreSearchInput = {
|
|
|
37491
37636
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
37492
37637
|
cloudId: Scalars['ID']['input'];
|
|
37493
37638
|
entityType: HelpObjectStoreSearchEntityType;
|
|
37639
|
+
highlightArticles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37494
37640
|
portalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
37495
37641
|
queryTerm: Scalars['String']['input'];
|
|
37496
37642
|
resultLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -41458,6 +41604,7 @@ export declare type JiraDevOpsPullRequestDetails = {
|
|
|
41458
41604
|
export declare type JiraDevOpsQuery = {
|
|
41459
41605
|
__typename?: 'JiraDevOpsQuery';
|
|
41460
41606
|
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
41607
|
+
autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
|
|
41461
41608
|
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
41462
41609
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
41463
41610
|
configState?: Maybe<JiraAppConfigState>;
|
|
@@ -41470,6 +41617,9 @@ export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
|
41470
41617
|
issueAri: Scalars['ID']['input'];
|
|
41471
41618
|
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
41472
41619
|
};
|
|
41620
|
+
export declare type JiraDevOpsQueryAutodevJobsByIssuesArgs = {
|
|
41621
|
+
issueAris: Array<Scalars['ID']['input']>;
|
|
41622
|
+
};
|
|
41473
41623
|
export declare type JiraDevOpsQueryAutofixJobsArgs = {
|
|
41474
41624
|
issueAri: Scalars['ID']['input'];
|
|
41475
41625
|
};
|
|
@@ -41796,6 +41946,16 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
41796
41946
|
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
41797
41947
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
41798
41948
|
};
|
|
41949
|
+
export declare type JiraFieldConnection = {
|
|
41950
|
+
__typename?: 'JiraFieldConnection';
|
|
41951
|
+
edges?: Maybe<Array<Maybe<JiraFieldEdge>>>;
|
|
41952
|
+
pageInfo: PageInfo;
|
|
41953
|
+
};
|
|
41954
|
+
export declare type JiraFieldEdge = {
|
|
41955
|
+
__typename?: 'JiraFieldEdge';
|
|
41956
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41957
|
+
node?: Maybe<JiraField>;
|
|
41958
|
+
};
|
|
41799
41959
|
export declare type JiraFieldNonEditableReason = {
|
|
41800
41960
|
__typename?: 'JiraFieldNonEditableReason';
|
|
41801
41961
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -44645,6 +44805,22 @@ export declare type JiraMediaUploadToken = {
|
|
|
44645
44805
|
tokenDurationInMin?: Maybe<Scalars['Int']['output']>;
|
|
44646
44806
|
};
|
|
44647
44807
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
44808
|
+
export declare type JiraMentionable = {
|
|
44809
|
+
__typename?: 'JiraMentionable';
|
|
44810
|
+
team?: Maybe<JiraTeamView>;
|
|
44811
|
+
user?: Maybe<User>;
|
|
44812
|
+
};
|
|
44813
|
+
export declare type JiraMentionableConnection = {
|
|
44814
|
+
__typename?: 'JiraMentionableConnection';
|
|
44815
|
+
edges?: Maybe<Array<Maybe<JiraMentionableEdge>>>;
|
|
44816
|
+
errors?: Maybe<Array<QueryError>>;
|
|
44817
|
+
pageInfo?: Maybe<PageInfo>;
|
|
44818
|
+
};
|
|
44819
|
+
export declare type JiraMentionableEdge = {
|
|
44820
|
+
__typename?: 'JiraMentionableEdge';
|
|
44821
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44822
|
+
node?: Maybe<JiraMentionable>;
|
|
44823
|
+
};
|
|
44648
44824
|
export declare type JiraMergeVersionInput = {
|
|
44649
44825
|
id: Scalars['ID']['input'];
|
|
44650
44826
|
targetVersionId: Scalars['ID']['input'];
|
|
@@ -46469,6 +46645,7 @@ export declare type JiraProject = Node & {
|
|
|
46469
46645
|
action?: Maybe<JiraProjectAction>;
|
|
46470
46646
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
46471
46647
|
associatedComponents?: Maybe<GraphGenericConnection>;
|
|
46648
|
+
associatedIssueLayoutFields?: Maybe<JiraFieldConnection>;
|
|
46472
46649
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
46473
46650
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
46474
46651
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -46546,6 +46723,9 @@ export declare type JiraProjectAssociatedComponentsArgs = {
|
|
|
46546
46723
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46547
46724
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46548
46725
|
};
|
|
46726
|
+
export declare type JiraProjectAssociatedIssueLayoutFieldsArgs = {
|
|
46727
|
+
input?: InputMaybe<JiraProjectAssociatedFieldsInput>;
|
|
46728
|
+
};
|
|
46549
46729
|
export declare type JiraProjectBoardsArgs = {
|
|
46550
46730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46551
46731
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46758,6 +46938,9 @@ export declare type JiraProjectAndRepositoryRelationshipSort = {
|
|
|
46758
46938
|
export declare enum JiraProjectAndRepositoryRelationshipSortBy {
|
|
46759
46939
|
LastInferredAt = "LAST_INFERRED_AT"
|
|
46760
46940
|
}
|
|
46941
|
+
export declare type JiraProjectAssociatedFieldsInput = {
|
|
46942
|
+
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
46943
|
+
};
|
|
46761
46944
|
export declare type JiraProjectCategory = Node & {
|
|
46762
46945
|
__typename?: 'JiraProjectCategory';
|
|
46763
46946
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -47356,6 +47539,7 @@ export declare type JiraQuery = {
|
|
|
47356
47539
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
47357
47540
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
47358
47541
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
47542
|
+
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
47359
47543
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
47360
47544
|
sprintById?: Maybe<JiraSprint>;
|
|
47361
47545
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -48110,6 +48294,14 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
48110
48294
|
export declare type JiraQuerySearchUnsplashImagesArgs = {
|
|
48111
48295
|
input: JiraUnsplashSearchInput;
|
|
48112
48296
|
};
|
|
48297
|
+
export declare type JiraQuerySearchUserTeamMentionArgs = {
|
|
48298
|
+
cloudId: Scalars['ID']['input'];
|
|
48299
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
48300
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
48301
|
+
organizationId?: InputMaybe<Scalars['String']['input']>;
|
|
48302
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
48303
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
48304
|
+
};
|
|
48113
48305
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
48114
48306
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
48115
48307
|
cloudId: Scalars['ID']['input'];
|
|
@@ -49472,11 +49664,16 @@ export declare type JiraServiceManagementMultipleSelectUserPickerFieldUsersArgs
|
|
|
49472
49664
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49473
49665
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49474
49666
|
};
|
|
49475
|
-
export declare type JiraServiceManagementOrganization = {
|
|
49667
|
+
export declare type JiraServiceManagementOrganization = JiraSelectableValue & {
|
|
49476
49668
|
__typename?: 'JiraServiceManagementOrganization';
|
|
49477
49669
|
domain?: Maybe<Scalars['String']['output']>;
|
|
49670
|
+
id: Scalars['ID']['output'];
|
|
49478
49671
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
49479
49672
|
organizationName?: Maybe<Scalars['String']['output']>;
|
|
49673
|
+
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
49674
|
+
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
49675
|
+
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
49676
|
+
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
49480
49677
|
};
|
|
49481
49678
|
export declare type JiraServiceManagementOrganizationConnection = {
|
|
49482
49679
|
__typename?: 'JiraServiceManagementOrganizationConnection';
|
|
@@ -49490,7 +49687,7 @@ export declare type JiraServiceManagementOrganizationEdge = {
|
|
|
49490
49687
|
cursor: Scalars['String']['output'];
|
|
49491
49688
|
node?: Maybe<JiraServiceManagementOrganization>;
|
|
49492
49689
|
};
|
|
49493
|
-
export declare type JiraServiceManagementOrganizationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49690
|
+
export declare type JiraServiceManagementOrganizationField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49494
49691
|
__typename?: 'JiraServiceManagementOrganizationField';
|
|
49495
49692
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
49496
49693
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -49502,8 +49699,10 @@ export declare type JiraServiceManagementOrganizationField = JiraIssueField & Ji
|
|
|
49502
49699
|
name: Scalars['String']['output'];
|
|
49503
49700
|
organizations?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
49504
49701
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49702
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
49505
49703
|
selectedOrganizations?: Maybe<Array<Maybe<JiraServiceManagementOrganization>>>;
|
|
49506
49704
|
selectedOrganizationsConnection?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
49705
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
49507
49706
|
type: Scalars['String']['output'];
|
|
49508
49707
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
49509
49708
|
};
|
|
@@ -49515,12 +49714,27 @@ export declare type JiraServiceManagementOrganizationFieldOrganizationsArgs = {
|
|
|
49515
49714
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49516
49715
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49517
49716
|
};
|
|
49717
|
+
export declare type JiraServiceManagementOrganizationFieldSelectableValueOptionsArgs = {
|
|
49718
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
49719
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
49720
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
49721
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49722
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49723
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49724
|
+
};
|
|
49518
49725
|
export declare type JiraServiceManagementOrganizationFieldSelectedOrganizationsConnectionArgs = {
|
|
49519
49726
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49520
49727
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49521
49728
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49522
49729
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49523
49730
|
};
|
|
49731
|
+
export declare type JiraServiceManagementOrganizationFieldSelectedValuesArgs = {
|
|
49732
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
49733
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
49734
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49735
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49736
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49737
|
+
};
|
|
49524
49738
|
export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49525
49739
|
__typename?: 'JiraServiceManagementPeopleField';
|
|
49526
49740
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -54277,6 +54491,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
54277
54491
|
hosting: MarketplaceConsoleHosting;
|
|
54278
54492
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
54279
54493
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
54494
|
+
pricingParentSoftware?: Maybe<MarketplaceConsolePricingParentSoftware>;
|
|
54280
54495
|
};
|
|
54281
54496
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
54282
54497
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
@@ -54306,11 +54521,21 @@ export declare type MarketplaceConsoleAppSoftwareVersionCompatibility = {
|
|
|
54306
54521
|
parentSoftware?: Maybe<MarketplaceConsoleParentSoftware>;
|
|
54307
54522
|
parentSoftwareId: Scalars['ID']['output'];
|
|
54308
54523
|
};
|
|
54524
|
+
export declare type MarketplaceConsoleAppSoftwareVersionCompatibilityInput = {
|
|
54525
|
+
hosting: MarketplaceConsoleHosting;
|
|
54526
|
+
maxBuildNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
54527
|
+
minBuildNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
54528
|
+
parentSoftwareId: Scalars['ID']['input'];
|
|
54529
|
+
};
|
|
54309
54530
|
export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetails = {
|
|
54310
54531
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionFrameworkDetails';
|
|
54311
54532
|
attributes: MarketplaceConsoleFrameworkAttributes;
|
|
54312
54533
|
frameworkId: Scalars['ID']['output'];
|
|
54313
54534
|
};
|
|
54535
|
+
export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput = {
|
|
54536
|
+
attributes: MarketplaceConsoleFrameworkAttributesInput;
|
|
54537
|
+
frameworkId: Scalars['ID']['input'];
|
|
54538
|
+
};
|
|
54314
54539
|
export declare type MarketplaceConsoleAppSoftwareVersionLicenseType = {
|
|
54315
54540
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionLicenseType';
|
|
54316
54541
|
id: MarketplaceConsoleAppSoftwareVersionLicenseTypeId;
|
|
@@ -54371,6 +54596,12 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
54371
54596
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
54372
54597
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
54373
54598
|
};
|
|
54599
|
+
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
54600
|
+
buildNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
54601
|
+
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
54602
|
+
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
54603
|
+
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
54604
|
+
};
|
|
54374
54605
|
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
54375
54606
|
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
54376
54607
|
appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -54387,6 +54618,11 @@ export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
|
54387
54618
|
descriptorId: Scalars['ID']['output'];
|
|
54388
54619
|
scopes: Array<Scalars['String']['output']>;
|
|
54389
54620
|
};
|
|
54621
|
+
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
54622
|
+
descriptorId: Scalars['String']['input'];
|
|
54623
|
+
href: Scalars['String']['input'];
|
|
54624
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
54625
|
+
};
|
|
54390
54626
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
54391
54627
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
54392
54628
|
body: Scalars['String']['output'];
|
|
@@ -54520,6 +54756,11 @@ export declare type MarketplaceConsoleExternalFrameworkAttributes = {
|
|
|
54520
54756
|
authorization: Scalars['Boolean']['output'];
|
|
54521
54757
|
binaryUrl?: Maybe<Scalars['String']['output']>;
|
|
54522
54758
|
};
|
|
54759
|
+
export declare type MarketplaceConsoleExternalFrameworkAttributesInput = {
|
|
54760
|
+
authorization: Scalars['Boolean']['input'];
|
|
54761
|
+
binaryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54762
|
+
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54763
|
+
};
|
|
54523
54764
|
export declare type MarketplaceConsoleFeature = {
|
|
54524
54765
|
__typename?: 'MarketplaceConsoleFeature';
|
|
54525
54766
|
description: Scalars['String']['output'];
|
|
@@ -54539,7 +54780,19 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
|
54539
54780
|
envId: Scalars['ID']['output'];
|
|
54540
54781
|
versionId: Scalars['String']['output'];
|
|
54541
54782
|
};
|
|
54783
|
+
export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
54784
|
+
appId: Scalars['String']['input'];
|
|
54785
|
+
envId: Scalars['String']['input'];
|
|
54786
|
+
versionId: Scalars['String']['input'];
|
|
54787
|
+
};
|
|
54542
54788
|
export declare type MarketplaceConsoleFrameworkAttributes = MarketplaceConsoleConnectFrameworkAttributes | MarketplaceConsoleExternalFrameworkAttributes | MarketplaceConsoleForgeFrameworkAttributes | MarketplaceConsolePluginsFrameworkAttributes | MarketplaceConsoleWorkflowFrameworkAttributes;
|
|
54789
|
+
export declare type MarketplaceConsoleFrameworkAttributesInput = {
|
|
54790
|
+
connect?: InputMaybe<MarketplaceConsoleConnectFrameworkAttributesInput>;
|
|
54791
|
+
external?: InputMaybe<MarketplaceConsoleExternalFrameworkAttributesInput>;
|
|
54792
|
+
forge?: InputMaybe<MarketplaceConsoleForgeFrameworkAttributesInput>;
|
|
54793
|
+
plugins?: InputMaybe<MarketplaceConsolePluginsFrameworkAttributesInput>;
|
|
54794
|
+
workflow?: InputMaybe<MarketplaceConsoleWorkflowFrameworkAttributesInput>;
|
|
54795
|
+
};
|
|
54543
54796
|
export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
|
|
54544
54797
|
__typename?: 'MarketplaceConsoleGenericError';
|
|
54545
54798
|
message: Scalars['String']['output'];
|
|
@@ -54622,6 +54875,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
54622
54875
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
54623
54876
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
54624
54877
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
54878
|
+
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54625
54879
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54626
54880
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54627
54881
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
@@ -54634,6 +54888,10 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
54634
54888
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
54635
54889
|
appSoftwareId: Scalars['String']['input'];
|
|
54636
54890
|
};
|
|
54891
|
+
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
54892
|
+
appKey: Scalars['ID']['input'];
|
|
54893
|
+
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
54894
|
+
};
|
|
54637
54895
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
54638
54896
|
appSoftwareId: Scalars['String']['input'];
|
|
54639
54897
|
token: Scalars['String']['input'];
|
|
@@ -54708,6 +54966,10 @@ export declare type MarketplaceConsolePluginsFrameworkAttributes = {
|
|
|
54708
54966
|
__typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
|
|
54709
54967
|
artifactId: Scalars['ID']['output'];
|
|
54710
54968
|
};
|
|
54969
|
+
export declare type MarketplaceConsolePluginsFrameworkAttributesInput = {
|
|
54970
|
+
artifactId: Scalars['String']['input'];
|
|
54971
|
+
href: Scalars['String']['input'];
|
|
54972
|
+
};
|
|
54711
54973
|
export declare enum MarketplaceConsolePricingCurrency {
|
|
54712
54974
|
Jpy = "JPY",
|
|
54713
54975
|
Usd = "USD"
|
|
@@ -54723,6 +54985,11 @@ export declare type MarketplaceConsolePricingItemInput = {
|
|
|
54723
54985
|
ceiling: Scalars['Float']['input'];
|
|
54724
54986
|
floor: Scalars['Float']['input'];
|
|
54725
54987
|
};
|
|
54988
|
+
export declare type MarketplaceConsolePricingParentSoftware = {
|
|
54989
|
+
__typename?: 'MarketplaceConsolePricingParentSoftware';
|
|
54990
|
+
parentSoftwareId: Scalars['ID']['output'];
|
|
54991
|
+
parentSoftwareName?: Maybe<Scalars['String']['output']>;
|
|
54992
|
+
};
|
|
54726
54993
|
export declare type MarketplaceConsolePricingPlan = {
|
|
54727
54994
|
__typename?: 'MarketplaceConsolePricingPlan';
|
|
54728
54995
|
currency: MarketplaceConsolePricingCurrency;
|
|
@@ -54919,6 +55186,10 @@ export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
|
54919
55186
|
__typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
|
|
54920
55187
|
artifactId: Scalars['ID']['output'];
|
|
54921
55188
|
};
|
|
55189
|
+
export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
|
|
55190
|
+
artifactId: Scalars['String']['input'];
|
|
55191
|
+
href: Scalars['String']['input'];
|
|
55192
|
+
};
|
|
54922
55193
|
export declare enum MarketplaceEntityStatus {
|
|
54923
55194
|
Active = "ACTIVE",
|
|
54924
55195
|
Archived = "ARCHIVED"
|
|
@@ -63325,6 +63596,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
63325
63596
|
contentStatuses?: InputMaybe<Array<SearchConfluenceDocumentStatus>>;
|
|
63326
63597
|
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
63327
63598
|
creatorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
63599
|
+
isVerified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63328
63600
|
labelsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
63329
63601
|
pageStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
63330
63602
|
range?: InputMaybe<Array<InputMaybe<SearchConfluenceRangeFilter>>>;
|
|
@@ -63587,7 +63859,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
63587
63859
|
type: SearchResultType;
|
|
63588
63860
|
url: Scalars['URL']['output'];
|
|
63589
63861
|
};
|
|
63590
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace |
|
|
63862
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
63591
63863
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
63592
63864
|
__typename?: 'SearchResultGoogleDocument';
|
|
63593
63865
|
bodyText: Scalars['String']['output'];
|
|
@@ -68047,6 +68319,7 @@ export declare type TrelloMutationApi = {
|
|
|
68047
68319
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
68048
68320
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
68049
68321
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
68322
|
+
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
68050
68323
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
68051
68324
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
68052
68325
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
@@ -68074,6 +68347,9 @@ export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
|
68074
68347
|
export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
68075
68348
|
input: TrelloWatchCardInput;
|
|
68076
68349
|
};
|
|
68350
|
+
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
68351
|
+
input: TrelloUpdateBoardIsTemplateInput;
|
|
68352
|
+
};
|
|
68077
68353
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
68078
68354
|
input: TrelloUpdateBoardNameInput;
|
|
68079
68355
|
};
|
|
@@ -68389,6 +68665,16 @@ export declare type TrelloUnarchiveCardPayload = Payload & {
|
|
|
68389
68665
|
errors?: Maybe<Array<MutationError>>;
|
|
68390
68666
|
success: Scalars['Boolean']['output'];
|
|
68391
68667
|
};
|
|
68668
|
+
export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
68669
|
+
boardId: Scalars['ID']['input'];
|
|
68670
|
+
value: Scalars['Boolean']['input'];
|
|
68671
|
+
};
|
|
68672
|
+
export declare type TrelloUpdateBoardIsTemplatePayload = Payload & {
|
|
68673
|
+
__typename?: 'TrelloUpdateBoardIsTemplatePayload';
|
|
68674
|
+
board?: Maybe<TrelloBoard>;
|
|
68675
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68676
|
+
success: Scalars['Boolean']['output'];
|
|
68677
|
+
};
|
|
68392
68678
|
export declare type TrelloUpdateBoardNameInput = {
|
|
68393
68679
|
boardId: Scalars['ID']['input'];
|
|
68394
68680
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69185,18 +69471,21 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
69185
69471
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
69186
69472
|
id: Scalars['ID']['input'];
|
|
69187
69473
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69474
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
69188
69475
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
69189
69476
|
};
|
|
69190
69477
|
export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
69191
69478
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
69192
69479
|
id: Scalars['ID']['input'];
|
|
69193
69480
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69481
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
69194
69482
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
69195
69483
|
};
|
|
69196
69484
|
export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
69197
69485
|
id: Scalars['ID']['input'];
|
|
69198
69486
|
linkType?: InputMaybe<CompassLinkType>;
|
|
69199
69487
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69488
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
69200
69489
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
69201
69490
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
69202
69491
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -69208,11 +69497,13 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
69208
69497
|
id: Scalars['ID']['input'];
|
|
69209
69498
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
69210
69499
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69500
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
69211
69501
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
69212
69502
|
};
|
|
69213
69503
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
69214
69504
|
id: Scalars['ID']['input'];
|
|
69215
69505
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69506
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
69216
69507
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
69217
69508
|
};
|
|
69218
69509
|
export declare type UpdateCompassLinkInput = {
|
|
@@ -69245,6 +69536,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
69245
69536
|
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69246
69537
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69247
69538
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
69539
|
+
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
69248
69540
|
updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
69249
69541
|
};
|
|
69250
69542
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
@@ -70312,6 +70604,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
70312
70604
|
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
70313
70605
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
70314
70606
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
70607
|
+
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
70315
70608
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
70316
70609
|
};
|
|
70317
70610
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
@@ -70555,6 +70848,20 @@ export declare type WorkSuggestionsPrCommentsTask = WorkSuggestionsPeriscopeTask
|
|
|
70555
70848
|
title: Scalars['String']['output'];
|
|
70556
70849
|
url: Scalars['String']['output'];
|
|
70557
70850
|
};
|
|
70851
|
+
export declare type WorkSuggestionsPrMergeableTask = WorkSuggestionsPeriscopeTask & {
|
|
70852
|
+
__typename?: 'WorkSuggestionsPRMergeableTask';
|
|
70853
|
+
approvalsCount: Scalars['Int']['output'];
|
|
70854
|
+
commentCount: Scalars['Int']['output'];
|
|
70855
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
70856
|
+
id: Scalars['String']['output'];
|
|
70857
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
70858
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
70859
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
70860
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
70861
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
70862
|
+
title: Scalars['String']['output'];
|
|
70863
|
+
url: Scalars['String']['output'];
|
|
70864
|
+
};
|
|
70558
70865
|
export declare type WorkSuggestionsPeriscopeTask = {
|
|
70559
70866
|
id: Scalars['String']['output'];
|
|
70560
70867
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
@@ -70593,6 +70900,11 @@ export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon
|
|
|
70593
70900
|
title: Scalars['String']['output'];
|
|
70594
70901
|
url: Scalars['String']['output'];
|
|
70595
70902
|
};
|
|
70903
|
+
export declare type WorkSuggestionsPullRequestSuggestionsResponse = {
|
|
70904
|
+
__typename?: 'WorkSuggestionsPullRequestSuggestionsResponse';
|
|
70905
|
+
mergeableSuggestions?: Maybe<Array<WorkSuggestionsPrMergeableTask>>;
|
|
70906
|
+
newCommentsSuggestions?: Maybe<Array<WorkSuggestionsPrCommentsTask>>;
|
|
70907
|
+
};
|
|
70596
70908
|
export declare type WorkSuggestionsPurgeUserActionStateInput = {
|
|
70597
70909
|
cloudId: Scalars['ID']['input'];
|
|
70598
70910
|
};
|