@forge/cli-shared 5.4.1-next.4 → 5.5.0-next.10
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 +46 -0
- package/out/config/config-file.d.ts +1 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +1 -1
- package/out/graphql/graphql-types.d.ts +1083 -160
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +85 -19
- package/package.json +2 -2
|
@@ -4085,6 +4085,7 @@ export declare type CompassComponentTypeEdge = {
|
|
|
4085
4085
|
};
|
|
4086
4086
|
export declare type CompassComponentTypeObject = {
|
|
4087
4087
|
__typename?: 'CompassComponentTypeObject';
|
|
4088
|
+
componentCount?: Maybe<Scalars['Int']['output']>;
|
|
4088
4089
|
description?: Maybe<Scalars['String']['output']>;
|
|
4089
4090
|
fieldDefinitions?: Maybe<CompassFieldDefinitionsResult>;
|
|
4090
4091
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -4274,6 +4275,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
4274
4275
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
4275
4276
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4276
4277
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4278
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4277
4279
|
weight: Scalars['Int']['input'];
|
|
4278
4280
|
};
|
|
4279
4281
|
export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
@@ -4281,6 +4283,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
4281
4283
|
collectionComparatorValue: Array<Scalars['ID']['input']>;
|
|
4282
4284
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4283
4285
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4286
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4284
4287
|
weight: Scalars['Int']['input'];
|
|
4285
4288
|
};
|
|
4286
4289
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
@@ -4288,6 +4291,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
4288
4291
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4289
4292
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
4290
4293
|
numberComparatorValue: Scalars['Float']['input'];
|
|
4294
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4291
4295
|
weight: Scalars['Int']['input'];
|
|
4292
4296
|
};
|
|
4293
4297
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
@@ -4295,11 +4299,13 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
4295
4299
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
4296
4300
|
membershipComparatorValue: Array<Scalars['ID']['input']>;
|
|
4297
4301
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4302
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4298
4303
|
weight: Scalars['Int']['input'];
|
|
4299
4304
|
};
|
|
4300
4305
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
4301
4306
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4302
4307
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4308
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4303
4309
|
weight: Scalars['Int']['input'];
|
|
4304
4310
|
};
|
|
4305
4311
|
export declare type CompassCreateIncidentEventInput = {
|
|
@@ -4395,6 +4401,10 @@ export declare type CompassCreatePushEventInput = {
|
|
|
4395
4401
|
updateSequenceNumber: Scalars['Long']['input'];
|
|
4396
4402
|
url: Scalars['URL']['input'];
|
|
4397
4403
|
};
|
|
4404
|
+
export declare type CompassCreateScorecardCriteriaScoringStrategyRulesInput = {
|
|
4405
|
+
onFalse?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
4406
|
+
onTrue?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
4407
|
+
};
|
|
4398
4408
|
export declare type CompassCreateTeamCheckinActionInput = {
|
|
4399
4409
|
actionText: Scalars['String']['input'];
|
|
4400
4410
|
completed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -4551,6 +4561,7 @@ export declare type CompassCustomFieldScorecardCriteria = {
|
|
|
4551
4561
|
id: Scalars['ID']['output'];
|
|
4552
4562
|
name?: Maybe<Scalars['String']['output']>;
|
|
4553
4563
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4564
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
4554
4565
|
weight: Scalars['Int']['output'];
|
|
4555
4566
|
};
|
|
4556
4567
|
export declare type CompassCustomFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5063,6 +5074,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCusto
|
|
|
5063
5074
|
id: Scalars['ID']['output'];
|
|
5064
5075
|
name?: Maybe<Scalars['String']['output']>;
|
|
5065
5076
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5077
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5066
5078
|
weight: Scalars['Int']['output'];
|
|
5067
5079
|
};
|
|
5068
5080
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5077,6 +5089,7 @@ export declare type CompassHasCustomMultiSelectFieldScorecardCriteria = CompassC
|
|
|
5077
5089
|
id: Scalars['ID']['output'];
|
|
5078
5090
|
name?: Maybe<Scalars['String']['output']>;
|
|
5079
5091
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5092
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5080
5093
|
weight: Scalars['Int']['output'];
|
|
5081
5094
|
};
|
|
5082
5095
|
export declare type CompassHasCustomMultiSelectFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5090,6 +5103,7 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustom
|
|
|
5090
5103
|
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
5091
5104
|
numberComparatorValue?: Maybe<Scalars['Float']['output']>;
|
|
5092
5105
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5106
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5093
5107
|
weight: Scalars['Int']['output'];
|
|
5094
5108
|
};
|
|
5095
5109
|
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5104,6 +5118,7 @@ export declare type CompassHasCustomSingleSelectFieldScorecardCriteria = Compass
|
|
|
5104
5118
|
membershipComparatorValue: Array<Scalars['ID']['output']>;
|
|
5105
5119
|
name?: Maybe<Scalars['String']['output']>;
|
|
5106
5120
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5121
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5107
5122
|
weight: Scalars['Int']['output'];
|
|
5108
5123
|
};
|
|
5109
5124
|
export declare type CompassHasCustomSingleSelectFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5115,6 +5130,7 @@ export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFi
|
|
|
5115
5130
|
id: Scalars['ID']['output'];
|
|
5116
5131
|
name?: Maybe<Scalars['String']['output']>;
|
|
5117
5132
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5133
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5118
5134
|
weight: Scalars['Int']['output'];
|
|
5119
5135
|
};
|
|
5120
5136
|
export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5125,6 +5141,7 @@ export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCri
|
|
|
5125
5141
|
id: Scalars['ID']['output'];
|
|
5126
5142
|
name?: Maybe<Scalars['String']['output']>;
|
|
5127
5143
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5144
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5128
5145
|
weight: Scalars['Int']['output'];
|
|
5129
5146
|
};
|
|
5130
5147
|
export declare type CompassHasDescriptionScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5136,6 +5153,7 @@ export declare type CompassHasFieldScorecardCriteria = CompassScorecardCriteria
|
|
|
5136
5153
|
id: Scalars['ID']['output'];
|
|
5137
5154
|
name?: Maybe<Scalars['String']['output']>;
|
|
5138
5155
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5156
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5139
5157
|
weight: Scalars['Int']['output'];
|
|
5140
5158
|
};
|
|
5141
5159
|
export declare type CompassHasFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5147,6 +5165,7 @@ export declare type CompassHasLinkScorecardCriteria = CompassScorecardCriteria &
|
|
|
5147
5165
|
linkType: CompassLinkType;
|
|
5148
5166
|
name?: Maybe<Scalars['String']['output']>;
|
|
5149
5167
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5168
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5150
5169
|
textComparator?: Maybe<CompassCriteriaTextComparatorOptions>;
|
|
5151
5170
|
textComparatorValue?: Maybe<Scalars['String']['output']>;
|
|
5152
5171
|
weight: Scalars['Int']['output'];
|
|
@@ -5164,6 +5183,7 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
5164
5183
|
metricDefinitionId: Scalars['ID']['output'];
|
|
5165
5184
|
name?: Maybe<Scalars['String']['output']>;
|
|
5166
5185
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5186
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5167
5187
|
weight: Scalars['Int']['output'];
|
|
5168
5188
|
};
|
|
5169
5189
|
export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5174,6 +5194,7 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
5174
5194
|
id: Scalars['ID']['output'];
|
|
5175
5195
|
name?: Maybe<Scalars['String']['output']>;
|
|
5176
5196
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5197
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5177
5198
|
weight: Scalars['Int']['output'];
|
|
5178
5199
|
};
|
|
5179
5200
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5682,6 +5703,7 @@ export declare type CompassScorecard = Node & {
|
|
|
5682
5703
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
5683
5704
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
5684
5705
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
5706
|
+
scoringStrategyType?: Maybe<Scalars['String']['output']>;
|
|
5685
5707
|
type: Scalars['String']['output'];
|
|
5686
5708
|
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
5687
5709
|
};
|
|
@@ -5799,6 +5821,7 @@ export declare type CompassScorecardCriteria = {
|
|
|
5799
5821
|
id: Scalars['ID']['output'];
|
|
5800
5822
|
name?: Maybe<Scalars['String']['output']>;
|
|
5801
5823
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5824
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5802
5825
|
weight: Scalars['Int']['output'];
|
|
5803
5826
|
};
|
|
5804
5827
|
export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5867,6 +5890,16 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter =
|
|
|
5867
5890
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
5868
5891
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
5869
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
|
+
};
|
|
5870
5903
|
export declare type CompassScorecardCriterionScore = {
|
|
5871
5904
|
criterionId: Scalars['ID']['output'];
|
|
5872
5905
|
explanation: Scalars['String']['output'];
|
|
@@ -6061,6 +6094,10 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
6061
6094
|
__typename?: 'CompassScorecardScoreStatusDuration';
|
|
6062
6095
|
since: Scalars['DateTime']['output'];
|
|
6063
6096
|
};
|
|
6097
|
+
export declare enum CompassScorecardScoringStrategyType {
|
|
6098
|
+
PointBased = "POINT_BASED",
|
|
6099
|
+
WeightBased = "WEIGHT_BASED"
|
|
6100
|
+
}
|
|
6064
6101
|
export declare type CompassScorecardTypesFilter = {
|
|
6065
6102
|
in: Array<Scalars['String']['input']>;
|
|
6066
6103
|
};
|
|
@@ -6384,6 +6421,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
6384
6421
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6385
6422
|
id: Scalars['ID']['input'];
|
|
6386
6423
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6424
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6387
6425
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6388
6426
|
};
|
|
6389
6427
|
export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
@@ -6392,6 +6430,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
6392
6430
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6393
6431
|
id: Scalars['ID']['input'];
|
|
6394
6432
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6433
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6395
6434
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6396
6435
|
};
|
|
6397
6436
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
@@ -6400,6 +6439,7 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
6400
6439
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6401
6440
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
6402
6441
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
6442
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6403
6443
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6404
6444
|
};
|
|
6405
6445
|
export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
@@ -6408,12 +6448,14 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
6408
6448
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
6409
6449
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6410
6450
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6451
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6411
6452
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6412
6453
|
};
|
|
6413
6454
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
6414
6455
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6415
6456
|
id: Scalars['ID']['input'];
|
|
6416
6457
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6458
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6417
6459
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6418
6460
|
};
|
|
6419
6461
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
@@ -6436,6 +6478,10 @@ export declare type CompassUpdatePermissionConfigsPayload = Payload & {
|
|
|
6436
6478
|
success: Scalars['Boolean']['output'];
|
|
6437
6479
|
updatedCustomPermissionConfigs?: Maybe<CompassCustomPermissionConfigs>;
|
|
6438
6480
|
};
|
|
6481
|
+
export declare type CompassUpdateScorecardCriteriaScoringStrategyRulesInput = {
|
|
6482
|
+
onFalse?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
6483
|
+
onTrue?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
6484
|
+
};
|
|
6439
6485
|
export declare type CompassUpdateTeamCheckinActionInput = {
|
|
6440
6486
|
actionText?: InputMaybe<Scalars['String']['input']>;
|
|
6441
6487
|
completed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -15267,16 +15313,19 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
15267
15313
|
};
|
|
15268
15314
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
15269
15315
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15316
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15270
15317
|
weight: Scalars['Int']['input'];
|
|
15271
15318
|
};
|
|
15272
15319
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
15273
15320
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
15274
15321
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15322
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15275
15323
|
weight: Scalars['Int']['input'];
|
|
15276
15324
|
};
|
|
15277
15325
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
15278
15326
|
linkType: CompassLinkType;
|
|
15279
15327
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15328
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15280
15329
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
15281
15330
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
15282
15331
|
weight: Scalars['Int']['input'];
|
|
@@ -15291,6 +15340,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
15291
15340
|
};
|
|
15292
15341
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
15293
15342
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15343
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15294
15344
|
weight: Scalars['Int']['input'];
|
|
15295
15345
|
};
|
|
15296
15346
|
export declare type CreateCompassLinkInput = {
|
|
@@ -15332,6 +15382,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
15332
15382
|
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15333
15383
|
name: Scalars['String']['input'];
|
|
15334
15384
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
15385
|
+
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
15335
15386
|
};
|
|
15336
15387
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
15337
15388
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -19290,6 +19341,7 @@ export declare type ExternalAttachment = {
|
|
|
19290
19341
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19291
19342
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19292
19343
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
19344
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
19293
19345
|
url?: Maybe<Scalars['String']['output']>;
|
|
19294
19346
|
};
|
|
19295
19347
|
export declare type ExternalAuthCredentialsInput = {
|
|
@@ -19500,6 +19552,7 @@ export declare type ExternalDocument = Node & {
|
|
|
19500
19552
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19501
19553
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19502
19554
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19555
|
+
parent?: Maybe<ExternalEntity>;
|
|
19503
19556
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19504
19557
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19505
19558
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -19647,6 +19700,7 @@ export declare type ExternalMessage = Node & {
|
|
|
19647
19700
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19648
19701
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19649
19702
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19703
|
+
parent?: Maybe<ExternalEntity>;
|
|
19650
19704
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19651
19705
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19652
19706
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -24564,6 +24618,7 @@ export declare type GraphStore = {
|
|
|
24564
24618
|
atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
24565
24619
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
24566
24620
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
24621
|
+
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
24567
24622
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
24568
24623
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
24569
24624
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
@@ -24586,6 +24641,18 @@ export declare type GraphStore = {
|
|
|
24586
24641
|
focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
24587
24642
|
focusAreaAssociatedToProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection>;
|
|
24588
24643
|
focusAreaAssociatedToProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
24644
|
+
focusAreaHasAtlasGoal?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection>;
|
|
24645
|
+
focusAreaHasAtlasGoalBatch?: Maybe<GraphStoreBatchFocusAreaHasAtlasGoalConnection>;
|
|
24646
|
+
focusAreaHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection>;
|
|
24647
|
+
focusAreaHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasAtlasGoalConnection>;
|
|
24648
|
+
focusAreaHasFocusArea?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaConnection>;
|
|
24649
|
+
focusAreaHasFocusAreaBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
24650
|
+
focusAreaHasFocusAreaInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaInverseConnection>;
|
|
24651
|
+
focusAreaHasFocusAreaInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaConnection>;
|
|
24652
|
+
focusAreaHasProject?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectConnection>;
|
|
24653
|
+
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
24654
|
+
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
24655
|
+
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
24589
24656
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
24590
24657
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
24591
24658
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -24648,6 +24715,7 @@ export declare type GraphStore = {
|
|
|
24648
24715
|
issueAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection>;
|
|
24649
24716
|
issueAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
24650
24717
|
issueAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
24718
|
+
issueChangesComponent?: Maybe<GraphStoreSimplifiedIssueChangesComponentConnection>;
|
|
24651
24719
|
issueChangesComponentInverse?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseConnection>;
|
|
24652
24720
|
issueChangesComponentInverseRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
24653
24721
|
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
@@ -24812,6 +24880,8 @@ export declare type GraphStore = {
|
|
|
24812
24880
|
securityContainerAssociatedToVulnerabilityInverseBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
24813
24881
|
securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
24814
24882
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
24883
|
+
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
24884
|
+
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
24815
24885
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
24816
24886
|
serviceLinkedIncidentInverse?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseConnection>;
|
|
24817
24887
|
serviceLinkedIncidentInverseRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
@@ -24849,6 +24919,7 @@ export declare type GraphStore = {
|
|
|
24849
24919
|
sprintRetrospectiveWhiteboard?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection>;
|
|
24850
24920
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
24851
24921
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
24922
|
+
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
24852
24923
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
24853
24924
|
teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
24854
24925
|
teamWorksOnProjectRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
@@ -24865,8 +24936,6 @@ export declare type GraphStore = {
|
|
|
24865
24936
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
24866
24937
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
24867
24938
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
24868
|
-
userIsInTeamInverseRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
24869
|
-
userIsInTeamRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
24870
24939
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
24871
24940
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
24872
24941
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -24952,31 +25021,25 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalRelationshipArgs
|
|
|
24952
25021
|
};
|
|
24953
25022
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicArgs = {
|
|
24954
25023
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24955
|
-
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24956
25024
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24957
25025
|
id: Scalars['ID']['input'];
|
|
24958
25026
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24959
25027
|
};
|
|
24960
25028
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseArgs = {
|
|
24961
25029
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24962
|
-
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24963
25030
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24964
25031
|
id: Scalars['ID']['input'];
|
|
24965
25032
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24966
25033
|
};
|
|
24967
25034
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseRelationshipArgs = {
|
|
24968
25035
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24969
|
-
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24970
25036
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24971
25037
|
id: Scalars['ID']['input'];
|
|
24972
|
-
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24973
25038
|
};
|
|
24974
25039
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs = {
|
|
24975
25040
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24976
|
-
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24977
25041
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24978
25042
|
id: Scalars['ID']['input'];
|
|
24979
|
-
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24980
25043
|
};
|
|
24981
25044
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
24982
25045
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -24984,6 +25047,12 @@ export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
|
24984
25047
|
id: Scalars['ID']['input'];
|
|
24985
25048
|
sort?: InputMaybe<GraphStoreComponentAssociatedDocumentSortInput>;
|
|
24986
25049
|
};
|
|
25050
|
+
export declare type GraphStoreComponentAssociatedDocumentInverseArgs = {
|
|
25051
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25052
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25053
|
+
id: Scalars['ID']['input'];
|
|
25054
|
+
sort?: InputMaybe<GraphStoreComponentAssociatedDocumentSortInput>;
|
|
25055
|
+
};
|
|
24987
25056
|
export declare type GraphStoreComponentAssociatedDocumentInverseRelationshipArgs = {
|
|
24988
25057
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24989
25058
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -25054,6 +25123,7 @@ export declare type GraphStoreContentReferencedEntityBatchArgs = {
|
|
|
25054
25123
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25055
25124
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25056
25125
|
ids: Array<Scalars['ID']['input']>;
|
|
25126
|
+
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
25057
25127
|
};
|
|
25058
25128
|
export declare type GraphStoreContentReferencedEntityInverseArgs = {
|
|
25059
25129
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25065,6 +25135,7 @@ export declare type GraphStoreContentReferencedEntityInverseBatchArgs = {
|
|
|
25065
25135
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25066
25136
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25067
25137
|
ids: Array<Scalars['ID']['input']>;
|
|
25138
|
+
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
25068
25139
|
};
|
|
25069
25140
|
export declare type GraphStoreContentReferencedEntityInverseRelationshipArgs = {
|
|
25070
25141
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25092,6 +25163,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectBatchArgs = {
|
|
|
25092
25163
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25093
25164
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25094
25165
|
ids: Array<Scalars['ID']['input']>;
|
|
25166
|
+
sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
|
|
25095
25167
|
};
|
|
25096
25168
|
export declare type GraphStoreFocusAreaAssociatedToProjectInverseArgs = {
|
|
25097
25169
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25103,6 +25175,79 @@ export declare type GraphStoreFocusAreaAssociatedToProjectInverseBatchArgs = {
|
|
|
25103
25175
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25104
25176
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25105
25177
|
ids: Array<Scalars['ID']['input']>;
|
|
25178
|
+
sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
|
|
25179
|
+
};
|
|
25180
|
+
export declare type GraphStoreFocusAreaHasAtlasGoalArgs = {
|
|
25181
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25182
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25183
|
+
id: Scalars['ID']['input'];
|
|
25184
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
25185
|
+
};
|
|
25186
|
+
export declare type GraphStoreFocusAreaHasAtlasGoalBatchArgs = {
|
|
25187
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25188
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25189
|
+
ids: Array<Scalars['ID']['input']>;
|
|
25190
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
25191
|
+
};
|
|
25192
|
+
export declare type GraphStoreFocusAreaHasAtlasGoalInverseArgs = {
|
|
25193
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25194
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25195
|
+
id: Scalars['ID']['input'];
|
|
25196
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
25197
|
+
};
|
|
25198
|
+
export declare type GraphStoreFocusAreaHasAtlasGoalInverseBatchArgs = {
|
|
25199
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25200
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25201
|
+
ids: Array<Scalars['ID']['input']>;
|
|
25202
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
25203
|
+
};
|
|
25204
|
+
export declare type GraphStoreFocusAreaHasFocusAreaArgs = {
|
|
25205
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25206
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25207
|
+
id: Scalars['ID']['input'];
|
|
25208
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
25209
|
+
};
|
|
25210
|
+
export declare type GraphStoreFocusAreaHasFocusAreaBatchArgs = {
|
|
25211
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25212
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25213
|
+
ids: Array<Scalars['ID']['input']>;
|
|
25214
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
25215
|
+
};
|
|
25216
|
+
export declare type GraphStoreFocusAreaHasFocusAreaInverseArgs = {
|
|
25217
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25218
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25219
|
+
id: Scalars['ID']['input'];
|
|
25220
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
25221
|
+
};
|
|
25222
|
+
export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
|
|
25223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25224
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25225
|
+
ids: Array<Scalars['ID']['input']>;
|
|
25226
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
25227
|
+
};
|
|
25228
|
+
export declare type GraphStoreFocusAreaHasProjectArgs = {
|
|
25229
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25230
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25231
|
+
id: Scalars['ID']['input'];
|
|
25232
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
25233
|
+
};
|
|
25234
|
+
export declare type GraphStoreFocusAreaHasProjectBatchArgs = {
|
|
25235
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25236
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25237
|
+
ids: Array<Scalars['ID']['input']>;
|
|
25238
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
25239
|
+
};
|
|
25240
|
+
export declare type GraphStoreFocusAreaHasProjectInverseArgs = {
|
|
25241
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25242
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25243
|
+
id: Scalars['ID']['input'];
|
|
25244
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
25245
|
+
};
|
|
25246
|
+
export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
25247
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25248
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25249
|
+
ids: Array<Scalars['ID']['input']>;
|
|
25250
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
25106
25251
|
};
|
|
25107
25252
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
25108
25253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25114,6 +25259,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewBatchArgs = {
|
|
|
25114
25259
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25115
25260
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25116
25261
|
ids: Array<Scalars['ID']['input']>;
|
|
25262
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
25117
25263
|
};
|
|
25118
25264
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseArgs = {
|
|
25119
25265
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25125,6 +25271,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseBatchAr
|
|
|
25125
25271
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25126
25272
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25127
25273
|
ids: Array<Scalars['ID']['input']>;
|
|
25274
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
25128
25275
|
};
|
|
25129
25276
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseRelationshipArgs = {
|
|
25130
25277
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25141,6 +25288,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkBatchArgs
|
|
|
25141
25288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25142
25289
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25143
25290
|
ids: Array<Scalars['ID']['input']>;
|
|
25291
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
25144
25292
|
};
|
|
25145
25293
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseArgs = {
|
|
25146
25294
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25152,6 +25300,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseBat
|
|
|
25152
25300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25153
25301
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25154
25302
|
ids: Array<Scalars['ID']['input']>;
|
|
25303
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
25155
25304
|
};
|
|
25156
25305
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseRelationshipArgs = {
|
|
25157
25306
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25178,6 +25327,7 @@ export declare type GraphStoreIncidentHasActionItemBatchArgs = {
|
|
|
25178
25327
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25179
25328
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25180
25329
|
ids: Array<Scalars['ID']['input']>;
|
|
25330
|
+
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
25181
25331
|
};
|
|
25182
25332
|
export declare type GraphStoreIncidentHasActionItemInverseArgs = {
|
|
25183
25333
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25189,6 +25339,7 @@ export declare type GraphStoreIncidentHasActionItemInverseBatchArgs = {
|
|
|
25189
25339
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25190
25340
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25191
25341
|
ids: Array<Scalars['ID']['input']>;
|
|
25342
|
+
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
25192
25343
|
};
|
|
25193
25344
|
export declare type GraphStoreIncidentHasActionItemInverseRelationshipArgs = {
|
|
25194
25345
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25210,6 +25361,7 @@ export declare type GraphStoreIncidentLinkedJswIssueBatchArgs = {
|
|
|
25210
25361
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25211
25362
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25212
25363
|
ids: Array<Scalars['ID']['input']>;
|
|
25364
|
+
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
25213
25365
|
};
|
|
25214
25366
|
export declare type GraphStoreIncidentLinkedJswIssueInverseArgs = {
|
|
25215
25367
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25221,6 +25373,7 @@ export declare type GraphStoreIncidentLinkedJswIssueInverseBatchArgs = {
|
|
|
25221
25373
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25222
25374
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25223
25375
|
ids: Array<Scalars['ID']['input']>;
|
|
25376
|
+
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
25224
25377
|
};
|
|
25225
25378
|
export declare type GraphStoreIncidentLinkedJswIssueInverseRelationshipArgs = {
|
|
25226
25379
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25252,6 +25405,7 @@ export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
|
25252
25405
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25253
25406
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25254
25407
|
ids: Array<Scalars['ID']['input']>;
|
|
25408
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
25255
25409
|
};
|
|
25256
25410
|
export declare type GraphStoreIssueAssociatedBuildInverseArgs = {
|
|
25257
25411
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25263,6 +25417,7 @@ export declare type GraphStoreIssueAssociatedBuildInverseBatchArgs = {
|
|
|
25263
25417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25264
25418
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25265
25419
|
ids: Array<Scalars['ID']['input']>;
|
|
25420
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
25266
25421
|
};
|
|
25267
25422
|
export declare type GraphStoreIssueAssociatedBuildInverseRelationshipArgs = {
|
|
25268
25423
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25292,35 +25447,45 @@ export declare type GraphStoreIssueAssociatedCommitRelationshipArgs = {
|
|
|
25292
25447
|
};
|
|
25293
25448
|
export declare type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
25294
25449
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25450
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25295
25451
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25296
25452
|
id: Scalars['ID']['input'];
|
|
25297
25453
|
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25298
25454
|
};
|
|
25299
25455
|
export declare type GraphStoreIssueAssociatedDeploymentBatchArgs = {
|
|
25300
25456
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25457
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25301
25458
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25302
25459
|
ids: Array<Scalars['ID']['input']>;
|
|
25460
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25303
25461
|
};
|
|
25304
25462
|
export declare type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
25305
25463
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25464
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25306
25465
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25307
25466
|
id: Scalars['ID']['input'];
|
|
25308
25467
|
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25309
25468
|
};
|
|
25310
25469
|
export declare type GraphStoreIssueAssociatedDeploymentInverseBatchArgs = {
|
|
25311
25470
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25471
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25312
25472
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25313
25473
|
ids: Array<Scalars['ID']['input']>;
|
|
25474
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25314
25475
|
};
|
|
25315
25476
|
export declare type GraphStoreIssueAssociatedDeploymentInverseRelationshipArgs = {
|
|
25316
25477
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25478
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25317
25479
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25318
25480
|
id: Scalars['ID']['input'];
|
|
25481
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25319
25482
|
};
|
|
25320
25483
|
export declare type GraphStoreIssueAssociatedDeploymentRelationshipArgs = {
|
|
25321
25484
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25485
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25322
25486
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25323
25487
|
id: Scalars['ID']['input'];
|
|
25488
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25324
25489
|
};
|
|
25325
25490
|
export declare type GraphStoreIssueAssociatedDesignArgs = {
|
|
25326
25491
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25376,6 +25541,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkBatchArgs = {
|
|
|
25376
25541
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25377
25542
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25378
25543
|
ids: Array<Scalars['ID']['input']>;
|
|
25544
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
25379
25545
|
};
|
|
25380
25546
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseArgs = {
|
|
25381
25547
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25387,6 +25553,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseBatchArgs = {
|
|
|
25387
25553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25388
25554
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25389
25555
|
ids: Array<Scalars['ID']['input']>;
|
|
25556
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
25390
25557
|
};
|
|
25391
25558
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseRelationshipArgs = {
|
|
25392
25559
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25436,6 +25603,12 @@ export declare type GraphStoreIssueAssociatedRemoteLinkRelationshipArgs = {
|
|
|
25436
25603
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25437
25604
|
id: Scalars['ID']['input'];
|
|
25438
25605
|
};
|
|
25606
|
+
export declare type GraphStoreIssueChangesComponentArgs = {
|
|
25607
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25608
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25609
|
+
id: Scalars['ID']['input'];
|
|
25610
|
+
sort?: InputMaybe<GraphStoreIssueChangesComponentSortInput>;
|
|
25611
|
+
};
|
|
25439
25612
|
export declare type GraphStoreIssueChangesComponentInverseArgs = {
|
|
25440
25613
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25441
25614
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -25594,6 +25767,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceBatchArgs = {
|
|
|
25594
25767
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25595
25768
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25596
25769
|
ids: Array<Scalars['ID']['input']>;
|
|
25770
|
+
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
25597
25771
|
};
|
|
25598
25772
|
export declare type GraphStoreJsmProjectAssociatedServiceInverseArgs = {
|
|
25599
25773
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25605,6 +25779,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceInverseBatchArgs = {
|
|
|
25605
25779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25606
25780
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25607
25781
|
ids: Array<Scalars['ID']['input']>;
|
|
25782
|
+
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
25608
25783
|
};
|
|
25609
25784
|
export declare type GraphStoreJsmProjectAssociatedServiceInverseRelationshipArgs = {
|
|
25610
25785
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25720,11 +25895,13 @@ export declare type GraphStoreMediaAttachedToContentBatchArgs = {
|
|
|
25720
25895
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25721
25896
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25722
25897
|
ids: Array<Scalars['ID']['input']>;
|
|
25898
|
+
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
25723
25899
|
};
|
|
25724
25900
|
export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
25725
25901
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25726
25902
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25727
25903
|
ids: Array<Scalars['ID']['input']>;
|
|
25904
|
+
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
25728
25905
|
};
|
|
25729
25906
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
25730
25907
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26361,11 +26538,13 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityBatchArg
|
|
|
26361
26538
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26362
26539
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26363
26540
|
ids: Array<Scalars['ID']['input']>;
|
|
26541
|
+
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
26364
26542
|
};
|
|
26365
26543
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseBatchArgs = {
|
|
26366
26544
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26367
26545
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26368
26546
|
ids: Array<Scalars['ID']['input']>;
|
|
26547
|
+
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
26369
26548
|
};
|
|
26370
26549
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseRelationshipArgs = {
|
|
26371
26550
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26377,6 +26556,18 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityRelation
|
|
|
26377
26556
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26378
26557
|
id: Scalars['ID']['input'];
|
|
26379
26558
|
};
|
|
26559
|
+
export declare type GraphStoreServiceAssociatedDeploymentArgs = {
|
|
26560
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26561
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26562
|
+
id: Scalars['ID']['input'];
|
|
26563
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
26564
|
+
};
|
|
26565
|
+
export declare type GraphStoreServiceAssociatedDeploymentInverseArgs = {
|
|
26566
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26567
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26568
|
+
id: Scalars['ID']['input'];
|
|
26569
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
26570
|
+
};
|
|
26380
26571
|
export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
26381
26572
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26382
26573
|
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
@@ -26611,6 +26802,12 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
|
|
|
26611
26802
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26612
26803
|
id: Scalars['ID']['input'];
|
|
26613
26804
|
};
|
|
26805
|
+
export declare type GraphStoreTeamOwnsComponentArgs = {
|
|
26806
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26807
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26808
|
+
id: Scalars['ID']['input'];
|
|
26809
|
+
sort?: InputMaybe<GraphStoreTeamOwnsComponentSortInput>;
|
|
26810
|
+
};
|
|
26614
26811
|
export declare type GraphStoreTeamWorksOnProjectArgs = {
|
|
26615
26812
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26616
26813
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -26673,6 +26870,7 @@ export declare type GraphStoreTestPerfhammerRelationshipBatchArgs = {
|
|
|
26673
26870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26674
26871
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26675
26872
|
ids: Array<Scalars['ID']['input']>;
|
|
26873
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
26676
26874
|
};
|
|
26677
26875
|
export declare type GraphStoreTestPerfhammerRelationshipInverseArgs = {
|
|
26678
26876
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26684,6 +26882,7 @@ export declare type GraphStoreTestPerfhammerRelationshipInverseBatchArgs = {
|
|
|
26684
26882
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26685
26883
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26686
26884
|
ids: Array<Scalars['ID']['input']>;
|
|
26885
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
26687
26886
|
};
|
|
26688
26887
|
export declare type GraphStoreTestPerfhammerRelationshipInverseRelationshipArgs = {
|
|
26689
26888
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26695,16 +26894,6 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
26695
26894
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26696
26895
|
id: Scalars['ID']['input'];
|
|
26697
26896
|
};
|
|
26698
|
-
export declare type GraphStoreUserIsInTeamInverseRelationshipArgs = {
|
|
26699
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
26700
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26701
|
-
id: Scalars['ID']['input'];
|
|
26702
|
-
};
|
|
26703
|
-
export declare type GraphStoreUserIsInTeamRelationshipArgs = {
|
|
26704
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
26705
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26706
|
-
id: Scalars['ID']['input'];
|
|
26707
|
-
};
|
|
26708
26897
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
26709
26898
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26710
26899
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -26962,25 +27151,8 @@ export declare type GraphStoreAtiFilterInput = {
|
|
|
26962
27151
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
26963
27152
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
26964
27153
|
};
|
|
26965
|
-
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput = {
|
|
26966
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
26967
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
26968
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
26969
|
-
relationship_syncLabels?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
26970
|
-
relationship_synced?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
26971
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
26972
|
-
};
|
|
26973
|
-
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput = {
|
|
26974
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput>>>;
|
|
26975
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput>>>;
|
|
26976
|
-
};
|
|
26977
27154
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
26978
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
26979
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
26980
27155
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
26981
|
-
relationship_syncLabels?: InputMaybe<GraphStoreSortInput>;
|
|
26982
|
-
relationship_synced?: InputMaybe<GraphStoreSortInput>;
|
|
26983
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
26984
27156
|
};
|
|
26985
27157
|
export declare type GraphStoreBatchContentReferencedEntityConnection = HasPageInfo & {
|
|
26986
27158
|
__typename?: 'GraphStoreBatchContentReferencedEntityConnection';
|
|
@@ -26997,7 +27169,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = Node & {
|
|
|
26997
27169
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
26998
27170
|
id: Scalars['ID']['output'];
|
|
26999
27171
|
};
|
|
27000
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = ConfluencePage | JiraIssue;
|
|
27172
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
27001
27173
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
27002
27174
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
27003
27175
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -27064,6 +27236,129 @@ export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartNode = Node
|
|
|
27064
27236
|
id: Scalars['ID']['output'];
|
|
27065
27237
|
};
|
|
27066
27238
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartUnion = MercuryFocusArea;
|
|
27239
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalConnection = HasPageInfo & {
|
|
27240
|
+
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalConnection';
|
|
27241
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasAtlasGoalEdge>>;
|
|
27242
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasAtlasGoalNode>>;
|
|
27243
|
+
pageInfo: PageInfo;
|
|
27244
|
+
};
|
|
27245
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalEdge = {
|
|
27246
|
+
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalEdge';
|
|
27247
|
+
node: GraphStoreBatchFocusAreaHasAtlasGoalInnerConnection;
|
|
27248
|
+
};
|
|
27249
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalEndNode = Node & {
|
|
27250
|
+
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalEndNode';
|
|
27251
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasAtlasGoalEndUnion>;
|
|
27252
|
+
id: Scalars['ID']['output'];
|
|
27253
|
+
};
|
|
27254
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalEndUnion = TownsquareGoal;
|
|
27255
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalInnerConnection = {
|
|
27256
|
+
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalInnerConnection';
|
|
27257
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasAtlasGoalInnerEdge>>;
|
|
27258
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasAtlasGoalNode>>;
|
|
27259
|
+
requestedId: Scalars['ID']['output'];
|
|
27260
|
+
};
|
|
27261
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalInnerEdge = {
|
|
27262
|
+
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalInnerEdge';
|
|
27263
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
27264
|
+
node: GraphStoreBatchFocusAreaHasAtlasGoalNode;
|
|
27265
|
+
};
|
|
27266
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalNode = Node & {
|
|
27267
|
+
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalNode';
|
|
27268
|
+
createdAt: Scalars['DateTime']['output'];
|
|
27269
|
+
from: GraphStoreBatchFocusAreaHasAtlasGoalStartNode;
|
|
27270
|
+
id: Scalars['ID']['output'];
|
|
27271
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
27272
|
+
to: GraphStoreBatchFocusAreaHasAtlasGoalEndNode;
|
|
27273
|
+
};
|
|
27274
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalStartNode = Node & {
|
|
27275
|
+
__typename?: 'GraphStoreBatchFocusAreaHasAtlasGoalStartNode';
|
|
27276
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasAtlasGoalStartUnion>;
|
|
27277
|
+
id: Scalars['ID']['output'];
|
|
27278
|
+
};
|
|
27279
|
+
export declare type GraphStoreBatchFocusAreaHasAtlasGoalStartUnion = MercuryFocusArea;
|
|
27280
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaConnection = HasPageInfo & {
|
|
27281
|
+
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaConnection';
|
|
27282
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasFocusAreaEdge>>;
|
|
27283
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasFocusAreaNode>>;
|
|
27284
|
+
pageInfo: PageInfo;
|
|
27285
|
+
};
|
|
27286
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaEdge = {
|
|
27287
|
+
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaEdge';
|
|
27288
|
+
node: GraphStoreBatchFocusAreaHasFocusAreaInnerConnection;
|
|
27289
|
+
};
|
|
27290
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaEndNode = Node & {
|
|
27291
|
+
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaEndNode';
|
|
27292
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaEndUnion>;
|
|
27293
|
+
id: Scalars['ID']['output'];
|
|
27294
|
+
};
|
|
27295
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaEndUnion = MercuryFocusArea;
|
|
27296
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaInnerConnection = {
|
|
27297
|
+
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaInnerConnection';
|
|
27298
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasFocusAreaInnerEdge>>;
|
|
27299
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasFocusAreaNode>>;
|
|
27300
|
+
requestedId: Scalars['ID']['output'];
|
|
27301
|
+
};
|
|
27302
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaInnerEdge = {
|
|
27303
|
+
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaInnerEdge';
|
|
27304
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
27305
|
+
node: GraphStoreBatchFocusAreaHasFocusAreaNode;
|
|
27306
|
+
};
|
|
27307
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaNode = Node & {
|
|
27308
|
+
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaNode';
|
|
27309
|
+
createdAt: Scalars['DateTime']['output'];
|
|
27310
|
+
from: GraphStoreBatchFocusAreaHasFocusAreaStartNode;
|
|
27311
|
+
id: Scalars['ID']['output'];
|
|
27312
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
27313
|
+
to: GraphStoreBatchFocusAreaHasFocusAreaEndNode;
|
|
27314
|
+
};
|
|
27315
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaStartNode = Node & {
|
|
27316
|
+
__typename?: 'GraphStoreBatchFocusAreaHasFocusAreaStartNode';
|
|
27317
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasFocusAreaStartUnion>;
|
|
27318
|
+
id: Scalars['ID']['output'];
|
|
27319
|
+
};
|
|
27320
|
+
export declare type GraphStoreBatchFocusAreaHasFocusAreaStartUnion = MercuryFocusArea;
|
|
27321
|
+
export declare type GraphStoreBatchFocusAreaHasProjectConnection = HasPageInfo & {
|
|
27322
|
+
__typename?: 'GraphStoreBatchFocusAreaHasProjectConnection';
|
|
27323
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasProjectEdge>>;
|
|
27324
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasProjectNode>>;
|
|
27325
|
+
pageInfo: PageInfo;
|
|
27326
|
+
};
|
|
27327
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEdge = {
|
|
27328
|
+
__typename?: 'GraphStoreBatchFocusAreaHasProjectEdge';
|
|
27329
|
+
node: GraphStoreBatchFocusAreaHasProjectInnerConnection;
|
|
27330
|
+
};
|
|
27331
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndNode = Node & {
|
|
27332
|
+
__typename?: 'GraphStoreBatchFocusAreaHasProjectEndNode';
|
|
27333
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasProjectEndUnion>;
|
|
27334
|
+
id: Scalars['ID']['output'];
|
|
27335
|
+
};
|
|
27336
|
+
export declare type GraphStoreBatchFocusAreaHasProjectEndUnion = JiraIssue | TownsquareProject;
|
|
27337
|
+
export declare type GraphStoreBatchFocusAreaHasProjectInnerConnection = {
|
|
27338
|
+
__typename?: 'GraphStoreBatchFocusAreaHasProjectInnerConnection';
|
|
27339
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaHasProjectInnerEdge>>;
|
|
27340
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaHasProjectNode>>;
|
|
27341
|
+
requestedId: Scalars['ID']['output'];
|
|
27342
|
+
};
|
|
27343
|
+
export declare type GraphStoreBatchFocusAreaHasProjectInnerEdge = {
|
|
27344
|
+
__typename?: 'GraphStoreBatchFocusAreaHasProjectInnerEdge';
|
|
27345
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
27346
|
+
node: GraphStoreBatchFocusAreaHasProjectNode;
|
|
27347
|
+
};
|
|
27348
|
+
export declare type GraphStoreBatchFocusAreaHasProjectNode = Node & {
|
|
27349
|
+
__typename?: 'GraphStoreBatchFocusAreaHasProjectNode';
|
|
27350
|
+
createdAt: Scalars['DateTime']['output'];
|
|
27351
|
+
from: GraphStoreBatchFocusAreaHasProjectStartNode;
|
|
27352
|
+
id: Scalars['ID']['output'];
|
|
27353
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
27354
|
+
to: GraphStoreBatchFocusAreaHasProjectEndNode;
|
|
27355
|
+
};
|
|
27356
|
+
export declare type GraphStoreBatchFocusAreaHasProjectStartNode = Node & {
|
|
27357
|
+
__typename?: 'GraphStoreBatchFocusAreaHasProjectStartNode';
|
|
27358
|
+
data?: Maybe<GraphStoreBatchFocusAreaHasProjectStartUnion>;
|
|
27359
|
+
id: Scalars['ID']['output'];
|
|
27360
|
+
};
|
|
27361
|
+
export declare type GraphStoreBatchFocusAreaHasProjectStartUnion = MercuryFocusArea;
|
|
27067
27362
|
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
27068
27363
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
|
|
27069
27364
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -27568,6 +27863,20 @@ export declare type GraphStoreCreateComponentImpactedByIncidentRelationshipObjec
|
|
|
27568
27863
|
reporterAri?: InputMaybe<Scalars['String']['input']>;
|
|
27569
27864
|
status?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentJiraIncidentStatusInput>;
|
|
27570
27865
|
};
|
|
27866
|
+
export declare type GraphStoreCreateFocusAreaHasAtlasGoalInput = {
|
|
27867
|
+
relationships: Array<GraphStoreCreateFocusAreaHasAtlasGoalRelationshipInput>;
|
|
27868
|
+
};
|
|
27869
|
+
export declare type GraphStoreCreateFocusAreaHasAtlasGoalPayload = Payload & {
|
|
27870
|
+
__typename?: 'GraphStoreCreateFocusAreaHasAtlasGoalPayload';
|
|
27871
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27872
|
+
success: Scalars['Boolean']['output'];
|
|
27873
|
+
};
|
|
27874
|
+
export declare type GraphStoreCreateFocusAreaHasAtlasGoalRelationshipInput = {
|
|
27875
|
+
from: Scalars['ID']['input'];
|
|
27876
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
27877
|
+
to: Scalars['ID']['input'];
|
|
27878
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27879
|
+
};
|
|
27571
27880
|
export declare type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
27572
27881
|
relationships: Array<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
27573
27882
|
};
|
|
@@ -27764,20 +28073,6 @@ export declare type GraphStoreCreateProjectHasVersionRelationshipInput = {
|
|
|
27764
28073
|
to: Scalars['ID']['input'];
|
|
27765
28074
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27766
28075
|
};
|
|
27767
|
-
export declare type GraphStoreCreateSpaceAssociatedWithProjectInput = {
|
|
27768
|
-
relationships: Array<GraphStoreCreateSpaceAssociatedWithProjectRelationshipInput>;
|
|
27769
|
-
};
|
|
27770
|
-
export declare type GraphStoreCreateSpaceAssociatedWithProjectPayload = Payload & {
|
|
27771
|
-
__typename?: 'GraphStoreCreateSpaceAssociatedWithProjectPayload';
|
|
27772
|
-
errors?: Maybe<Array<MutationError>>;
|
|
27773
|
-
success: Scalars['Boolean']['output'];
|
|
27774
|
-
};
|
|
27775
|
-
export declare type GraphStoreCreateSpaceAssociatedWithProjectRelationshipInput = {
|
|
27776
|
-
from: Scalars['ID']['input'];
|
|
27777
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
27778
|
-
to: Scalars['ID']['input'];
|
|
27779
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27780
|
-
};
|
|
27781
28076
|
export declare type GraphStoreCreateSprintRetrospectivePageInput = {
|
|
27782
28077
|
relationships: Array<GraphStoreCreateSprintRetrospectivePageRelationshipInput>;
|
|
27783
28078
|
};
|
|
@@ -27916,6 +28211,18 @@ export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput
|
|
|
27916
28211
|
from: Scalars['ID']['input'];
|
|
27917
28212
|
to: Scalars['ID']['input'];
|
|
27918
28213
|
};
|
|
28214
|
+
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalInput = {
|
|
28215
|
+
relationships: Array<GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput>;
|
|
28216
|
+
};
|
|
28217
|
+
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalPayload = Payload & {
|
|
28218
|
+
__typename?: 'GraphStoreDeleteFocusAreaHasAtlasGoalPayload';
|
|
28219
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28220
|
+
success: Scalars['Boolean']['output'];
|
|
28221
|
+
};
|
|
28222
|
+
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput = {
|
|
28223
|
+
from: Scalars['ID']['input'];
|
|
28224
|
+
to: Scalars['ID']['input'];
|
|
28225
|
+
};
|
|
27919
28226
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
27920
28227
|
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
27921
28228
|
};
|
|
@@ -28084,18 +28391,6 @@ export declare type GraphStoreDeleteProjectHasVersionRelationshipInput = {
|
|
|
28084
28391
|
from: Scalars['ID']['input'];
|
|
28085
28392
|
to: Scalars['ID']['input'];
|
|
28086
28393
|
};
|
|
28087
|
-
export declare type GraphStoreDeleteSpaceAssociatedWithProjectInput = {
|
|
28088
|
-
relationships: Array<GraphStoreDeleteSpaceAssociatedWithProjectRelationshipInput>;
|
|
28089
|
-
};
|
|
28090
|
-
export declare type GraphStoreDeleteSpaceAssociatedWithProjectPayload = Payload & {
|
|
28091
|
-
__typename?: 'GraphStoreDeleteSpaceAssociatedWithProjectPayload';
|
|
28092
|
-
errors?: Maybe<Array<MutationError>>;
|
|
28093
|
-
success: Scalars['Boolean']['output'];
|
|
28094
|
-
};
|
|
28095
|
-
export declare type GraphStoreDeleteSpaceAssociatedWithProjectRelationshipInput = {
|
|
28096
|
-
from: Scalars['ID']['input'];
|
|
28097
|
-
to: Scalars['ID']['input'];
|
|
28098
|
-
};
|
|
28099
28394
|
export declare type GraphStoreDeleteSprintRetrospectivePageInput = {
|
|
28100
28395
|
relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
|
|
28101
28396
|
};
|
|
@@ -28179,6 +28474,18 @@ export declare type GraphStoreFloatFilterInput = {
|
|
|
28179
28474
|
export declare type GraphStoreFocusAreaAssociatedToProjectSortInput = {
|
|
28180
28475
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28181
28476
|
};
|
|
28477
|
+
export declare type GraphStoreFocusAreaHasAtlasGoalSortInput = {
|
|
28478
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
28479
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
28480
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28481
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
28482
|
+
};
|
|
28483
|
+
export declare type GraphStoreFocusAreaHasFocusAreaSortInput = {
|
|
28484
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28485
|
+
};
|
|
28486
|
+
export declare type GraphStoreFocusAreaHasProjectSortInput = {
|
|
28487
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28488
|
+
};
|
|
28182
28489
|
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection = HasPageInfo & {
|
|
28183
28490
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection';
|
|
28184
28491
|
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEdge>>;
|
|
@@ -28328,8 +28635,10 @@ export declare type GraphStoreFullComponentAssociatedDocumentNode = Node & {
|
|
|
28328
28635
|
};
|
|
28329
28636
|
export declare type GraphStoreFullComponentAssociatedDocumentStartNode = {
|
|
28330
28637
|
__typename?: 'GraphStoreFullComponentAssociatedDocumentStartNode';
|
|
28638
|
+
data?: Maybe<GraphStoreFullComponentAssociatedDocumentStartUnion>;
|
|
28331
28639
|
id: Scalars['ID']['output'];
|
|
28332
28640
|
};
|
|
28641
|
+
export declare type GraphStoreFullComponentAssociatedDocumentStartUnion = CompassComponent;
|
|
28333
28642
|
export declare type GraphStoreFullComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
28334
28643
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentConnection';
|
|
28335
28644
|
edges: Array<Maybe<GraphStoreFullComponentImpactedByIncidentEdge>>;
|
|
@@ -28387,7 +28696,7 @@ export declare type GraphStoreFullComponentImpactedByIncidentStartNode = {
|
|
|
28387
28696
|
data?: Maybe<GraphStoreFullComponentImpactedByIncidentStartUnion>;
|
|
28388
28697
|
id: Scalars['ID']['output'];
|
|
28389
28698
|
};
|
|
28390
|
-
export declare type GraphStoreFullComponentImpactedByIncidentStartUnion = DevOpsOperationsComponentDetails;
|
|
28699
|
+
export declare type GraphStoreFullComponentImpactedByIncidentStartUnion = CompassComponent | DevOpsOperationsComponentDetails;
|
|
28391
28700
|
export declare type GraphStoreFullComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
28392
28701
|
__typename?: 'GraphStoreFullComponentLinkedJswIssueConnection';
|
|
28393
28702
|
edges: Array<Maybe<GraphStoreFullComponentLinkedJswIssueEdge>>;
|
|
@@ -28420,7 +28729,7 @@ export declare type GraphStoreFullComponentLinkedJswIssueStartNode = {
|
|
|
28420
28729
|
data?: Maybe<GraphStoreFullComponentLinkedJswIssueStartUnion>;
|
|
28421
28730
|
id: Scalars['ID']['output'];
|
|
28422
28731
|
};
|
|
28423
|
-
export declare type GraphStoreFullComponentLinkedJswIssueStartUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
28732
|
+
export declare type GraphStoreFullComponentLinkedJswIssueStartUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
28424
28733
|
export declare type GraphStoreFullContentReferencedEntityConnection = HasPageInfo & {
|
|
28425
28734
|
__typename?: 'GraphStoreFullContentReferencedEntityConnection';
|
|
28426
28735
|
edges: Array<Maybe<GraphStoreFullContentReferencedEntityEdge>>;
|
|
@@ -28437,7 +28746,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
28437
28746
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
28438
28747
|
id: Scalars['ID']['output'];
|
|
28439
28748
|
};
|
|
28440
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = ConfluencePage | JiraIssue;
|
|
28749
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
28441
28750
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
28442
28751
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
28443
28752
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -28697,11 +29006,13 @@ export declare type GraphStoreFullIssueAssociatedDeploymentAuthorOutput = {
|
|
|
28697
29006
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentAuthorOutput';
|
|
28698
29007
|
authorAri?: Maybe<Scalars['String']['output']>;
|
|
28699
29008
|
};
|
|
28700
|
-
export declare type GraphStoreFullIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
29009
|
+
export declare type GraphStoreFullIssueAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
28701
29010
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentConnection';
|
|
28702
29011
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentEdge>>;
|
|
29012
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
28703
29013
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentNode>>;
|
|
28704
29014
|
pageInfo: PageInfo;
|
|
29015
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
28705
29016
|
};
|
|
28706
29017
|
export declare enum GraphStoreFullIssueAssociatedDeploymentDeploymentStateOutput {
|
|
28707
29018
|
Cancelled = "CANCELLED",
|
|
@@ -29013,8 +29324,10 @@ export declare type GraphStoreFullIssueChangesComponentEdge = {
|
|
|
29013
29324
|
};
|
|
29014
29325
|
export declare type GraphStoreFullIssueChangesComponentEndNode = {
|
|
29015
29326
|
__typename?: 'GraphStoreFullIssueChangesComponentEndNode';
|
|
29327
|
+
data?: Maybe<GraphStoreFullIssueChangesComponentEndUnion>;
|
|
29016
29328
|
id: Scalars['ID']['output'];
|
|
29017
29329
|
};
|
|
29330
|
+
export declare type GraphStoreFullIssueChangesComponentEndUnion = CompassComponent;
|
|
29018
29331
|
export declare type GraphStoreFullIssueChangesComponentNode = Node & {
|
|
29019
29332
|
__typename?: 'GraphStoreFullIssueChangesComponentNode';
|
|
29020
29333
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -29276,7 +29589,7 @@ export declare type GraphStoreFullJswProjectAssociatedComponentEndNode = {
|
|
|
29276
29589
|
data?: Maybe<GraphStoreFullJswProjectAssociatedComponentEndUnion>;
|
|
29277
29590
|
id: Scalars['ID']['output'];
|
|
29278
29591
|
};
|
|
29279
|
-
export declare type GraphStoreFullJswProjectAssociatedComponentEndUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
29592
|
+
export declare type GraphStoreFullJswProjectAssociatedComponentEndUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
29280
29593
|
export declare type GraphStoreFullJswProjectAssociatedComponentNode = Node & {
|
|
29281
29594
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentNode';
|
|
29282
29595
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -31158,33 +31471,6 @@ export declare type GraphStoreFullTestPerfhammerRelationshipStartNode = {
|
|
|
31158
31471
|
id: Scalars['ID']['output'];
|
|
31159
31472
|
};
|
|
31160
31473
|
export declare type GraphStoreFullTestPerfhammerRelationshipStartUnion = JiraIssue;
|
|
31161
|
-
export declare type GraphStoreFullUserIsInTeamConnection = HasPageInfo & {
|
|
31162
|
-
__typename?: 'GraphStoreFullUserIsInTeamConnection';
|
|
31163
|
-
edges: Array<Maybe<GraphStoreFullUserIsInTeamEdge>>;
|
|
31164
|
-
nodes: Array<Maybe<GraphStoreFullUserIsInTeamNode>>;
|
|
31165
|
-
pageInfo: PageInfo;
|
|
31166
|
-
};
|
|
31167
|
-
export declare type GraphStoreFullUserIsInTeamEdge = {
|
|
31168
|
-
__typename?: 'GraphStoreFullUserIsInTeamEdge';
|
|
31169
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
31170
|
-
node: GraphStoreFullUserIsInTeamNode;
|
|
31171
|
-
};
|
|
31172
|
-
export declare type GraphStoreFullUserIsInTeamEndNode = {
|
|
31173
|
-
__typename?: 'GraphStoreFullUserIsInTeamEndNode';
|
|
31174
|
-
id: Scalars['ID']['output'];
|
|
31175
|
-
};
|
|
31176
|
-
export declare type GraphStoreFullUserIsInTeamNode = Node & {
|
|
31177
|
-
__typename?: 'GraphStoreFullUserIsInTeamNode';
|
|
31178
|
-
createdAt: Scalars['DateTime']['output'];
|
|
31179
|
-
from: GraphStoreFullUserIsInTeamStartNode;
|
|
31180
|
-
id: Scalars['ID']['output'];
|
|
31181
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
31182
|
-
to: GraphStoreFullUserIsInTeamEndNode;
|
|
31183
|
-
};
|
|
31184
|
-
export declare type GraphStoreFullUserIsInTeamStartNode = {
|
|
31185
|
-
__typename?: 'GraphStoreFullUserIsInTeamStartNode';
|
|
31186
|
-
id: Scalars['ID']['output'];
|
|
31187
|
-
};
|
|
31188
31474
|
export declare type GraphStoreFullVersionAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
31189
31475
|
__typename?: 'GraphStoreFullVersionAssociatedBranchConnection';
|
|
31190
31476
|
edges: Array<Maybe<GraphStoreFullVersionAssociatedBranchEdge>>;
|
|
@@ -31634,8 +31920,61 @@ export declare type GraphStoreIssueAssociatedBuildSortInput = {
|
|
|
31634
31920
|
export declare type GraphStoreIssueAssociatedCommitSortInput = {
|
|
31635
31921
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
31636
31922
|
};
|
|
31923
|
+
export declare type GraphStoreIssueAssociatedDeploymentAuthorFilterInput = {
|
|
31924
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
|
|
31925
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
31926
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
|
|
31927
|
+
};
|
|
31928
|
+
export declare type GraphStoreIssueAssociatedDeploymentAuthorSortInput = {
|
|
31929
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
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
|
+
};
|
|
31637
31970
|
export declare type GraphStoreIssueAssociatedDeploymentSortInput = {
|
|
31971
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
31972
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
31638
31973
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
31974
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
31975
|
+
to_author?: InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorSortInput>;
|
|
31976
|
+
to_environmentType?: InputMaybe<GraphStoreSortInput>;
|
|
31977
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
31639
31978
|
};
|
|
31640
31979
|
export declare type GraphStoreIssueAssociatedDesignSortInput = {
|
|
31641
31980
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -31782,6 +32121,7 @@ export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
|
31782
32121
|
export declare type GraphStoreMutation = {
|
|
31783
32122
|
__typename?: 'GraphStoreMutation';
|
|
31784
32123
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
32124
|
+
createFocusAreaHasAtlasGoal?: Maybe<GraphStoreCreateFocusAreaHasAtlasGoalPayload>;
|
|
31785
32125
|
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
31786
32126
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
31787
32127
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
@@ -31796,7 +32136,6 @@ export declare type GraphStoreMutation = {
|
|
|
31796
32136
|
createProjectHasRelatedWorkWithProject?: Maybe<GraphStoreCreateProjectHasRelatedWorkWithProjectPayload>;
|
|
31797
32137
|
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
31798
32138
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
31799
|
-
createSpaceAssociatedWithProject?: Maybe<GraphStoreCreateSpaceAssociatedWithProjectPayload>;
|
|
31800
32139
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
31801
32140
|
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
31802
32141
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
@@ -31804,6 +32143,7 @@ export declare type GraphStoreMutation = {
|
|
|
31804
32143
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
31805
32144
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
31806
32145
|
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
32146
|
+
deleteFocusAreaHasAtlasGoal?: Maybe<GraphStoreDeleteFocusAreaHasAtlasGoalPayload>;
|
|
31807
32147
|
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
31808
32148
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
31809
32149
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
@@ -31818,7 +32158,6 @@ export declare type GraphStoreMutation = {
|
|
|
31818
32158
|
deleteProjectHasRelatedWorkWithProject?: Maybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload>;
|
|
31819
32159
|
deleteProjectHasSharedVersionWith?: Maybe<GraphStoreDeleteProjectHasSharedVersionWithPayload>;
|
|
31820
32160
|
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
31821
|
-
deleteSpaceAssociatedWithProject?: Maybe<GraphStoreDeleteSpaceAssociatedWithProjectPayload>;
|
|
31822
32161
|
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
31823
32162
|
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
31824
32163
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
@@ -31829,6 +32168,9 @@ export declare type GraphStoreMutation = {
|
|
|
31829
32168
|
export declare type GraphStoreMutationCreateComponentImpactedByIncidentArgs = {
|
|
31830
32169
|
input?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentInput>;
|
|
31831
32170
|
};
|
|
32171
|
+
export declare type GraphStoreMutationCreateFocusAreaHasAtlasGoalArgs = {
|
|
32172
|
+
input?: InputMaybe<GraphStoreCreateFocusAreaHasAtlasGoalInput>;
|
|
32173
|
+
};
|
|
31832
32174
|
export declare type GraphStoreMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
31833
32175
|
input?: InputMaybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
31834
32176
|
};
|
|
@@ -31871,9 +32213,6 @@ export declare type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
|
31871
32213
|
export declare type GraphStoreMutationCreateProjectHasVersionArgs = {
|
|
31872
32214
|
input?: InputMaybe<GraphStoreCreateProjectHasVersionInput>;
|
|
31873
32215
|
};
|
|
31874
|
-
export declare type GraphStoreMutationCreateSpaceAssociatedWithProjectArgs = {
|
|
31875
|
-
input?: InputMaybe<GraphStoreCreateSpaceAssociatedWithProjectInput>;
|
|
31876
|
-
};
|
|
31877
32216
|
export declare type GraphStoreMutationCreateSprintRetrospectivePageArgs = {
|
|
31878
32217
|
input?: InputMaybe<GraphStoreCreateSprintRetrospectivePageInput>;
|
|
31879
32218
|
};
|
|
@@ -31895,6 +32234,9 @@ export declare type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
|
31895
32234
|
export declare type GraphStoreMutationDeleteComponentImpactedByIncidentArgs = {
|
|
31896
32235
|
input?: InputMaybe<GraphStoreDeleteComponentImpactedByIncidentInput>;
|
|
31897
32236
|
};
|
|
32237
|
+
export declare type GraphStoreMutationDeleteFocusAreaHasAtlasGoalArgs = {
|
|
32238
|
+
input?: InputMaybe<GraphStoreDeleteFocusAreaHasAtlasGoalInput>;
|
|
32239
|
+
};
|
|
31898
32240
|
export declare type GraphStoreMutationDeleteIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
31899
32241
|
input?: InputMaybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
31900
32242
|
};
|
|
@@ -31937,9 +32279,6 @@ export declare type GraphStoreMutationDeleteProjectHasSharedVersionWithArgs = {
|
|
|
31937
32279
|
export declare type GraphStoreMutationDeleteProjectHasVersionArgs = {
|
|
31938
32280
|
input?: InputMaybe<GraphStoreDeleteProjectHasVersionInput>;
|
|
31939
32281
|
};
|
|
31940
|
-
export declare type GraphStoreMutationDeleteSpaceAssociatedWithProjectArgs = {
|
|
31941
|
-
input?: InputMaybe<GraphStoreDeleteSpaceAssociatedWithProjectInput>;
|
|
31942
|
-
};
|
|
31943
32282
|
export declare type GraphStoreMutationDeleteSprintRetrospectivePageArgs = {
|
|
31944
32283
|
input?: InputMaybe<GraphStoreDeleteSprintRetrospectivePageInput>;
|
|
31945
32284
|
};
|
|
@@ -32408,6 +32747,9 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
32408
32747
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
32409
32748
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32410
32749
|
};
|
|
32750
|
+
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
32751
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32752
|
+
};
|
|
32411
32753
|
export declare type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
32412
32754
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
32413
32755
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -32505,12 +32847,10 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInvers
|
|
|
32505
32847
|
};
|
|
32506
32848
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseUnion = TownsquareProject;
|
|
32507
32849
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalUnion = TownsquareGoal;
|
|
32508
|
-
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo &
|
|
32850
|
+
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo & {
|
|
32509
32851
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection';
|
|
32510
32852
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge>>>;
|
|
32511
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
32512
32853
|
pageInfo: PageInfo;
|
|
32513
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
32514
32854
|
};
|
|
32515
32855
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
32516
32856
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge';
|
|
@@ -32520,12 +32860,10 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
|
32520
32860
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32521
32861
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion>;
|
|
32522
32862
|
};
|
|
32523
|
-
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection = HasPageInfo &
|
|
32863
|
+
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection = HasPageInfo & {
|
|
32524
32864
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection';
|
|
32525
32865
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge>>>;
|
|
32526
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
32527
32866
|
pageInfo: PageInfo;
|
|
32528
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
32529
32867
|
};
|
|
32530
32868
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge = {
|
|
32531
32869
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge';
|
|
@@ -32550,6 +32888,20 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentEdge = {
|
|
|
32550
32888
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32551
32889
|
node?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentUnion>;
|
|
32552
32890
|
};
|
|
32891
|
+
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection = HasPageInfo & {
|
|
32892
|
+
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection';
|
|
32893
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge>>>;
|
|
32894
|
+
pageInfo: PageInfo;
|
|
32895
|
+
};
|
|
32896
|
+
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge = {
|
|
32897
|
+
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentInverseEdge';
|
|
32898
|
+
createdAt: Scalars['DateTime']['output'];
|
|
32899
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
32900
|
+
id: Scalars['ID']['output'];
|
|
32901
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
32902
|
+
node?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion>;
|
|
32903
|
+
};
|
|
32904
|
+
export declare type GraphStoreSimplifiedComponentAssociatedDocumentInverseUnion = CompassComponent;
|
|
32553
32905
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument;
|
|
32554
32906
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
32555
32907
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
@@ -32577,7 +32929,7 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge =
|
|
|
32577
32929
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32578
32930
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion>;
|
|
32579
32931
|
};
|
|
32580
|
-
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion = DevOpsOperationsComponentDetails;
|
|
32932
|
+
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion = CompassComponent | DevOpsOperationsComponentDetails;
|
|
32581
32933
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
32582
32934
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectConnection = HasPageInfo & {
|
|
32583
32935
|
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectConnection';
|
|
@@ -32623,7 +32975,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
32623
32975
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32624
32976
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion>;
|
|
32625
32977
|
};
|
|
32626
|
-
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
32978
|
+
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
32627
32979
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
32628
32980
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
32629
32981
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
@@ -32652,7 +33004,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
32652
33004
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
32653
33005
|
};
|
|
32654
33006
|
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
|
|
32655
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = ConfluencePage | JiraIssue;
|
|
33007
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
32656
33008
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
32657
33009
|
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
32658
33010
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge>>>;
|
|
@@ -32681,6 +33033,94 @@ export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge
|
|
|
32681
33033
|
};
|
|
32682
33034
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseUnion = MercuryFocusArea;
|
|
32683
33035
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectUnion = DevOpsProjectDetails;
|
|
33036
|
+
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection = HasPageInfo & HasTotal & {
|
|
33037
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection';
|
|
33038
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalEdge>>>;
|
|
33039
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33040
|
+
pageInfo: PageInfo;
|
|
33041
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33042
|
+
};
|
|
33043
|
+
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalEdge = {
|
|
33044
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasAtlasGoalEdge';
|
|
33045
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33046
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33047
|
+
id: Scalars['ID']['output'];
|
|
33048
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33049
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalUnion>;
|
|
33050
|
+
};
|
|
33051
|
+
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection = HasPageInfo & HasTotal & {
|
|
33052
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection';
|
|
33053
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseEdge>>>;
|
|
33054
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33055
|
+
pageInfo: PageInfo;
|
|
33056
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33057
|
+
};
|
|
33058
|
+
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseEdge = {
|
|
33059
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseEdge';
|
|
33060
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33061
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33062
|
+
id: Scalars['ID']['output'];
|
|
33063
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33064
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseUnion>;
|
|
33065
|
+
};
|
|
33066
|
+
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseUnion = MercuryFocusArea;
|
|
33067
|
+
export declare type GraphStoreSimplifiedFocusAreaHasAtlasGoalUnion = TownsquareGoal;
|
|
33068
|
+
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaConnection = HasPageInfo & {
|
|
33069
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasFocusAreaConnection';
|
|
33070
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaEdge>>>;
|
|
33071
|
+
pageInfo: PageInfo;
|
|
33072
|
+
};
|
|
33073
|
+
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaEdge = {
|
|
33074
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasFocusAreaEdge';
|
|
33075
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33076
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33077
|
+
id: Scalars['ID']['output'];
|
|
33078
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33079
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaUnion>;
|
|
33080
|
+
};
|
|
33081
|
+
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseConnection = HasPageInfo & {
|
|
33082
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasFocusAreaInverseConnection';
|
|
33083
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge>>>;
|
|
33084
|
+
pageInfo: PageInfo;
|
|
33085
|
+
};
|
|
33086
|
+
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge = {
|
|
33087
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasFocusAreaInverseEdge';
|
|
33088
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33089
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33090
|
+
id: Scalars['ID']['output'];
|
|
33091
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33092
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion>;
|
|
33093
|
+
};
|
|
33094
|
+
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaInverseUnion = MercuryFocusArea;
|
|
33095
|
+
export declare type GraphStoreSimplifiedFocusAreaHasFocusAreaUnion = MercuryFocusArea;
|
|
33096
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectConnection = HasPageInfo & {
|
|
33097
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectConnection';
|
|
33098
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectEdge>>>;
|
|
33099
|
+
pageInfo: PageInfo;
|
|
33100
|
+
};
|
|
33101
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectEdge = {
|
|
33102
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectEdge';
|
|
33103
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33104
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33105
|
+
id: Scalars['ID']['output'];
|
|
33106
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33107
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectUnion>;
|
|
33108
|
+
};
|
|
33109
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseConnection = HasPageInfo & {
|
|
33110
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectInverseConnection';
|
|
33111
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseEdge>>>;
|
|
33112
|
+
pageInfo: PageInfo;
|
|
33113
|
+
};
|
|
33114
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
33115
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaHasProjectInverseEdge';
|
|
33116
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33117
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33118
|
+
id: Scalars['ID']['output'];
|
|
33119
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33120
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseUnion>;
|
|
33121
|
+
};
|
|
33122
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
33123
|
+
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraIssue | TownsquareProject;
|
|
32684
33124
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
32685
33125
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
32686
33126
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -32851,10 +33291,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
|
32851
33291
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseUnion>;
|
|
32852
33292
|
};
|
|
32853
33293
|
export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseUnion = JiraIssue;
|
|
32854
|
-
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
33294
|
+
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
32855
33295
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentConnection';
|
|
32856
33296
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentEdge>>>;
|
|
33297
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
32857
33298
|
pageInfo: PageInfo;
|
|
33299
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
32858
33300
|
};
|
|
32859
33301
|
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentEdge = {
|
|
32860
33302
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentEdge';
|
|
@@ -32864,10 +33306,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentEdge = {
|
|
|
32864
33306
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32865
33307
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentUnion>;
|
|
32866
33308
|
};
|
|
32867
|
-
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection = HasPageInfo & {
|
|
33309
|
+
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection = HasPageInfo & HasTotal & {
|
|
32868
33310
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection';
|
|
32869
33311
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge>>>;
|
|
33312
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
32870
33313
|
pageInfo: PageInfo;
|
|
33314
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
32871
33315
|
};
|
|
32872
33316
|
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
32873
33317
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge';
|
|
@@ -33005,6 +33449,21 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
|
33005
33449
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion>;
|
|
33006
33450
|
};
|
|
33007
33451
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion = JiraIssue;
|
|
33452
|
+
export declare type GraphStoreSimplifiedIssueChangesComponentConnection = HasPageInfo & HasTotal & {
|
|
33453
|
+
__typename?: 'GraphStoreSimplifiedIssueChangesComponentConnection';
|
|
33454
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueChangesComponentEdge>>>;
|
|
33455
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
33456
|
+
pageInfo: PageInfo;
|
|
33457
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
33458
|
+
};
|
|
33459
|
+
export declare type GraphStoreSimplifiedIssueChangesComponentEdge = {
|
|
33460
|
+
__typename?: 'GraphStoreSimplifiedIssueChangesComponentEdge';
|
|
33461
|
+
createdAt: Scalars['DateTime']['output'];
|
|
33462
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
33463
|
+
id: Scalars['ID']['output'];
|
|
33464
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
33465
|
+
node?: Maybe<GraphStoreSimplifiedIssueChangesComponentUnion>;
|
|
33466
|
+
};
|
|
33008
33467
|
export declare type GraphStoreSimplifiedIssueChangesComponentInverseConnection = HasPageInfo & HasTotal & {
|
|
33009
33468
|
__typename?: 'GraphStoreSimplifiedIssueChangesComponentInverseConnection';
|
|
33010
33469
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueChangesComponentInverseEdge>>>;
|
|
@@ -33021,6 +33480,7 @@ export declare type GraphStoreSimplifiedIssueChangesComponentInverseEdge = {
|
|
|
33021
33480
|
node?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseUnion>;
|
|
33022
33481
|
};
|
|
33023
33482
|
export declare type GraphStoreSimplifiedIssueChangesComponentInverseUnion = JiraIssue;
|
|
33483
|
+
export declare type GraphStoreSimplifiedIssueChangesComponentUnion = CompassComponent;
|
|
33024
33484
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
33025
33485
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection';
|
|
33026
33486
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge>>>;
|
|
@@ -33272,7 +33732,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge
|
|
|
33272
33732
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion>;
|
|
33273
33733
|
};
|
|
33274
33734
|
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion = JiraProject;
|
|
33275
|
-
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
33735
|
+
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
33276
33736
|
export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentConnection = HasPageInfo & HasTotal & {
|
|
33277
33737
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentConnection';
|
|
33278
33738
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentEdge>>>;
|
|
@@ -34253,6 +34713,34 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
34253
34713
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
34254
34714
|
};
|
|
34255
34715
|
export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion = DevOpsSecurityVulnerabilityDetails;
|
|
34716
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentConnection = HasPageInfo & {
|
|
34717
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentConnection';
|
|
34718
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentEdge>>>;
|
|
34719
|
+
pageInfo: PageInfo;
|
|
34720
|
+
};
|
|
34721
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentEdge = {
|
|
34722
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentEdge';
|
|
34723
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34724
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34725
|
+
id: Scalars['ID']['output'];
|
|
34726
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34727
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentUnion>;
|
|
34728
|
+
};
|
|
34729
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection = HasPageInfo & {
|
|
34730
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection';
|
|
34731
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge>>>;
|
|
34732
|
+
pageInfo: PageInfo;
|
|
34733
|
+
};
|
|
34734
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge = {
|
|
34735
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge';
|
|
34736
|
+
createdAt: Scalars['DateTime']['output'];
|
|
34737
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34738
|
+
id: Scalars['ID']['output'];
|
|
34739
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
34740
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseUnion>;
|
|
34741
|
+
};
|
|
34742
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseUnion = DevOpsService;
|
|
34743
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentUnion = DeploymentSummary;
|
|
34256
34744
|
export declare type GraphStoreSimplifiedServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
34257
34745
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentConnection';
|
|
34258
34746
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceLinkedIncidentEdge>>>;
|
|
@@ -34405,12 +34893,10 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdg
|
|
|
34405
34893
|
};
|
|
34406
34894
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion = DevOpsPullRequestDetails;
|
|
34407
34895
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageUnion = ConfluencePage;
|
|
34408
|
-
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectConnection = HasPageInfo &
|
|
34896
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectConnection = HasPageInfo & {
|
|
34409
34897
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectConnection';
|
|
34410
34898
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectEdge>>>;
|
|
34411
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
34412
34899
|
pageInfo: PageInfo;
|
|
34413
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
34414
34900
|
};
|
|
34415
34901
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectEdge = {
|
|
34416
34902
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectEdge';
|
|
@@ -34420,12 +34906,10 @@ export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectEdge = {
|
|
|
34420
34906
|
lastUpdated: Scalars['DateTime']['output'];
|
|
34421
34907
|
node?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectUnion>;
|
|
34422
34908
|
};
|
|
34423
|
-
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection = HasPageInfo &
|
|
34909
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection = HasPageInfo & {
|
|
34424
34910
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection';
|
|
34425
34911
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge>>>;
|
|
34426
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
34427
34912
|
pageInfo: PageInfo;
|
|
34428
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
34429
34913
|
};
|
|
34430
34914
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge = {
|
|
34431
34915
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge';
|
|
@@ -34549,6 +35033,20 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
|
34549
35033
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
34550
35034
|
};
|
|
34551
35035
|
export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion = ConfluenceWhiteboard;
|
|
35036
|
+
export declare type GraphStoreSimplifiedTeamOwnsComponentConnection = HasPageInfo & {
|
|
35037
|
+
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentConnection';
|
|
35038
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamOwnsComponentEdge>>>;
|
|
35039
|
+
pageInfo: PageInfo;
|
|
35040
|
+
};
|
|
35041
|
+
export declare type GraphStoreSimplifiedTeamOwnsComponentEdge = {
|
|
35042
|
+
__typename?: 'GraphStoreSimplifiedTeamOwnsComponentEdge';
|
|
35043
|
+
createdAt: Scalars['DateTime']['output'];
|
|
35044
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35045
|
+
id: Scalars['ID']['output'];
|
|
35046
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
35047
|
+
node?: Maybe<GraphStoreSimplifiedTeamOwnsComponentUnion>;
|
|
35048
|
+
};
|
|
35049
|
+
export declare type GraphStoreSimplifiedTeamOwnsComponentUnion = CompassComponent;
|
|
34552
35050
|
export declare type GraphStoreSimplifiedTeamWorksOnProjectConnection = HasPageInfo & HasTotal & {
|
|
34553
35051
|
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectConnection';
|
|
34554
35052
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamWorksOnProjectEdge>>>;
|
|
@@ -34898,10 +35396,7 @@ export declare type GraphStoreSortInput = {
|
|
|
34898
35396
|
priority: Scalars['Int']['input'];
|
|
34899
35397
|
};
|
|
34900
35398
|
export declare type GraphStoreSpaceAssociatedWithProjectSortInput = {
|
|
34901
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34902
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34903
35399
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34904
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34905
35400
|
};
|
|
34906
35401
|
export declare enum GraphStoreSprintAssociatedBuildBuildState {
|
|
34907
35402
|
Cancelled = "CANCELLED",
|
|
@@ -35224,6 +35719,9 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardSortInput = {
|
|
|
35224
35719
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35225
35720
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
35226
35721
|
};
|
|
35722
|
+
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
35723
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35724
|
+
};
|
|
35227
35725
|
export declare type GraphStoreTeamWorksOnProjectSortInput = {
|
|
35228
35726
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
35229
35727
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -36078,6 +36576,7 @@ export declare type HelpCenterPortal = {
|
|
|
36078
36576
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
36079
36577
|
name?: Maybe<Scalars['String']['output']>;
|
|
36080
36578
|
portalBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
36579
|
+
projectType?: Maybe<HelpCenterProjectType>;
|
|
36081
36580
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
36082
36581
|
};
|
|
36083
36582
|
export declare type HelpCenterPortalFilter = {
|
|
@@ -36118,6 +36617,10 @@ export declare type HelpCenterProjectMappingUpdatePayload = Payload & {
|
|
|
36118
36617
|
errors?: Maybe<Array<MutationError>>;
|
|
36119
36618
|
success: Scalars['Boolean']['output'];
|
|
36120
36619
|
};
|
|
36620
|
+
export declare enum HelpCenterProjectType {
|
|
36621
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
36622
|
+
ServiceDesk = "SERVICE_DESK"
|
|
36623
|
+
}
|
|
36121
36624
|
export declare type HelpCenterQueryApi = {
|
|
36122
36625
|
__typename?: 'HelpCenterQueryApi';
|
|
36123
36626
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
@@ -36508,6 +37011,7 @@ export declare type HelpLayoutConnectElement = HelpLayoutVisualEntity & Node & {
|
|
|
36508
37011
|
connectElementType: HelpLayoutConnectElementType;
|
|
36509
37012
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
36510
37013
|
id: Scalars['ID']['output'];
|
|
37014
|
+
isInstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
36511
37015
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
36512
37016
|
};
|
|
36513
37017
|
export declare enum HelpLayoutConnectElementPages {
|
|
@@ -36608,6 +37112,7 @@ export declare type HelpLayoutForgeElement = HelpLayoutVisualEntity & Node & {
|
|
|
36608
37112
|
forgeElementPage: HelpLayoutForgeElementPages;
|
|
36609
37113
|
forgeElementType: HelpLayoutForgeElementType;
|
|
36610
37114
|
id: Scalars['ID']['output'];
|
|
37115
|
+
isInstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
36611
37116
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
36612
37117
|
};
|
|
36613
37118
|
export declare enum HelpLayoutForgeElementPages {
|
|
@@ -36791,6 +37296,7 @@ export declare type HelpLayoutPortalCard = {
|
|
|
36791
37296
|
name?: Maybe<Scalars['String']['output']>;
|
|
36792
37297
|
portalBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
36793
37298
|
portalId?: Maybe<Scalars['String']['output']>;
|
|
37299
|
+
projectType?: Maybe<HelpLayoutProjectType>;
|
|
36794
37300
|
};
|
|
36795
37301
|
export declare type HelpLayoutPortalsListData = {
|
|
36796
37302
|
__typename?: 'HelpLayoutPortalsListData';
|
|
@@ -36807,6 +37313,10 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
36807
37313
|
export declare type HelpLayoutPortalsListInput = {
|
|
36808
37314
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
36809
37315
|
};
|
|
37316
|
+
export declare enum HelpLayoutProjectType {
|
|
37317
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
37318
|
+
ServiceDesk = "SERVICE_DESK"
|
|
37319
|
+
}
|
|
36810
37320
|
export declare type HelpLayoutQueryApi = {
|
|
36811
37321
|
__typename?: 'HelpLayoutQueryApi';
|
|
36812
37322
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -37126,9 +37636,11 @@ export declare type HelpObjectStoreSearchInput = {
|
|
|
37126
37636
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
37127
37637
|
cloudId: Scalars['ID']['input'];
|
|
37128
37638
|
entityType: HelpObjectStoreSearchEntityType;
|
|
37639
|
+
highlightArticles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37129
37640
|
portalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
37130
37641
|
queryTerm: Scalars['String']['input'];
|
|
37131
37642
|
resultLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
37643
|
+
skipSearchingRestrictedPages?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37132
37644
|
};
|
|
37133
37645
|
export declare type HelpObjectStoreSearchMetaData = {
|
|
37134
37646
|
__typename?: 'HelpObjectStoreSearchMetaData';
|
|
@@ -37740,6 +38252,7 @@ export declare type InstallationSummaryApp = {
|
|
|
37740
38252
|
installationId?: Maybe<Scalars['ID']['output']>;
|
|
37741
38253
|
isSystemApp?: Maybe<Scalars['Boolean']['output']>;
|
|
37742
38254
|
name?: Maybe<Scalars['String']['output']>;
|
|
38255
|
+
oauthClientId?: Maybe<Scalars['String']['output']>;
|
|
37743
38256
|
};
|
|
37744
38257
|
export declare type InstallationSummaryAppEnvironment = {
|
|
37745
38258
|
__typename?: 'InstallationSummaryAppEnvironment';
|
|
@@ -38286,6 +38799,7 @@ export declare type JiraAdditionalIssueFields = {
|
|
|
38286
38799
|
export declare type JiraAdditionalIssueFieldsConnection = {
|
|
38287
38800
|
__typename?: 'JiraAdditionalIssueFieldsConnection';
|
|
38288
38801
|
edges?: Maybe<Array<Maybe<JiraAdditionalIssueFieldsEdge>>>;
|
|
38802
|
+
errors?: Maybe<Array<QueryError>>;
|
|
38289
38803
|
pageInfo: PageInfo;
|
|
38290
38804
|
totalCount: Scalars['Int']['output'];
|
|
38291
38805
|
};
|
|
@@ -38342,6 +38856,7 @@ export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldC
|
|
|
38342
38856
|
fieldId: Scalars['String']['output'];
|
|
38343
38857
|
id: Scalars['ID']['output'];
|
|
38344
38858
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
38859
|
+
issue?: Maybe<JiraIssue>;
|
|
38345
38860
|
name: Scalars['String']['output'];
|
|
38346
38861
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38347
38862
|
selectedAffectedServices?: Maybe<Array<Maybe<JiraAffectedService>>>;
|
|
@@ -38603,6 +39118,7 @@ export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
38603
39118
|
fieldId: Scalars['String']['output'];
|
|
38604
39119
|
id: Scalars['ID']['output'];
|
|
38605
39120
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39121
|
+
issue?: Maybe<JiraIssue>;
|
|
38606
39122
|
name: Scalars['String']['output'];
|
|
38607
39123
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38608
39124
|
selectedAssets?: Maybe<Array<Maybe<JiraAsset>>>;
|
|
@@ -38683,6 +39199,7 @@ export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConf
|
|
|
38683
39199
|
fieldId: Scalars['String']['output'];
|
|
38684
39200
|
id: Scalars['ID']['output'];
|
|
38685
39201
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39202
|
+
issue?: Maybe<JiraIssue>;
|
|
38686
39203
|
name: Scalars['String']['output'];
|
|
38687
39204
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38688
39205
|
selectedTeam?: Maybe<JiraAtlassianTeam>;
|
|
@@ -38715,6 +39232,7 @@ export declare type JiraAttachment = {
|
|
|
38715
39232
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
38716
39233
|
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
38717
39234
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
39235
|
+
parent?: Maybe<JiraAttachmentParentName>;
|
|
38718
39236
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
38719
39237
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
38720
39238
|
};
|
|
@@ -38759,6 +39277,15 @@ export declare type JiraAttachmentFilterInput = {
|
|
|
38759
39277
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
38760
39278
|
mimeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
38761
39279
|
};
|
|
39280
|
+
export declare enum JiraAttachmentParentName {
|
|
39281
|
+
Comment = "COMMENT",
|
|
39282
|
+
Customfield = "CUSTOMFIELD",
|
|
39283
|
+
Description = "DESCRIPTION",
|
|
39284
|
+
Environment = "ENVIRONMENT",
|
|
39285
|
+
Form = "FORM",
|
|
39286
|
+
Issue = "ISSUE",
|
|
39287
|
+
Worklog = "WORKLOG"
|
|
39288
|
+
}
|
|
38762
39289
|
export declare type JiraAttachmentSearchViewContext = {
|
|
38763
39290
|
__typename?: 'JiraAttachmentSearchViewContext';
|
|
38764
39291
|
matchesSearch: Scalars['Boolean']['output'];
|
|
@@ -38790,6 +39317,7 @@ export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
38790
39317
|
fieldId: Scalars['String']['output'];
|
|
38791
39318
|
id: Scalars['ID']['output'];
|
|
38792
39319
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39320
|
+
issue?: Maybe<JiraIssue>;
|
|
38793
39321
|
maxAllowedTotalAttachmentsSize?: Maybe<Scalars['Long']['output']>;
|
|
38794
39322
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
38795
39323
|
name: Scalars['String']['output'];
|
|
@@ -38868,6 +39396,7 @@ export declare type JiraAutodevJob = {
|
|
|
38868
39396
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
38869
39397
|
id: Scalars['ID']['output'];
|
|
38870
39398
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
39399
|
+
phase?: Maybe<JiraAutodevPhase>;
|
|
38871
39400
|
plan?: Maybe<JiraAutodevPlan>;
|
|
38872
39401
|
progressText?: Maybe<Scalars['String']['output']>;
|
|
38873
39402
|
pullRequests?: Maybe<JiraAutodevPullRequestConnection>;
|
|
@@ -38887,6 +39416,14 @@ export declare type JiraAutodevJobEdge = {
|
|
|
38887
39416
|
cursor: Scalars['String']['output'];
|
|
38888
39417
|
node?: Maybe<JiraAutodevJob>;
|
|
38889
39418
|
};
|
|
39419
|
+
export declare enum JiraAutodevPhase {
|
|
39420
|
+
CodeGenerating = "CODE_GENERATING",
|
|
39421
|
+
CodeReview = "CODE_REVIEW",
|
|
39422
|
+
CodeReGenerating = "CODE_RE_GENERATING",
|
|
39423
|
+
PlanGenerating = "PLAN_GENERATING",
|
|
39424
|
+
PlanReview = "PLAN_REVIEW",
|
|
39425
|
+
PlanReGenerating = "PLAN_RE_GENERATING"
|
|
39426
|
+
}
|
|
38890
39427
|
export declare type JiraAutodevPlan = {
|
|
38891
39428
|
__typename?: 'JiraAutodevPlan';
|
|
38892
39429
|
acceptanceCriteria: Scalars['String']['output'];
|
|
@@ -39139,6 +39676,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
39139
39676
|
fieldId: Scalars['String']['output'];
|
|
39140
39677
|
id: Scalars['ID']['output'];
|
|
39141
39678
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39679
|
+
issue?: Maybe<JiraIssue>;
|
|
39142
39680
|
name: Scalars['String']['output'];
|
|
39143
39681
|
type: Scalars['String']['output'];
|
|
39144
39682
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -39269,6 +39807,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
39269
39807
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39270
39808
|
isInsightAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
39271
39809
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
39810
|
+
issue?: Maybe<JiraIssue>;
|
|
39272
39811
|
name: Scalars['String']['output'];
|
|
39273
39812
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
39274
39813
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
@@ -39538,6 +40077,7 @@ export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & J
|
|
|
39538
40077
|
fieldId: Scalars['String']['output'];
|
|
39539
40078
|
id: Scalars['ID']['output'];
|
|
39540
40079
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40080
|
+
issue?: Maybe<JiraIssue>;
|
|
39541
40081
|
name: Scalars['String']['output'];
|
|
39542
40082
|
parentOptions?: Maybe<JiraParentOptionConnection>;
|
|
39543
40083
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -39601,6 +40141,7 @@ export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
39601
40141
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
39602
40142
|
id: Scalars['ID']['output'];
|
|
39603
40143
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40144
|
+
issue?: Maybe<JiraIssue>;
|
|
39604
40145
|
name: Scalars['String']['output'];
|
|
39605
40146
|
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
39606
40147
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
@@ -39919,6 +40460,7 @@ export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
39919
40460
|
fieldId: Scalars['String']['output'];
|
|
39920
40461
|
id: Scalars['ID']['output'];
|
|
39921
40462
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40463
|
+
issue?: Maybe<JiraIssue>;
|
|
39922
40464
|
name: Scalars['String']['output'];
|
|
39923
40465
|
type: Scalars['String']['output'];
|
|
39924
40466
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -40012,6 +40554,7 @@ export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
40012
40554
|
fieldId: Scalars['String']['output'];
|
|
40013
40555
|
id: Scalars['ID']['output'];
|
|
40014
40556
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40557
|
+
issue?: Maybe<JiraIssue>;
|
|
40015
40558
|
name: Scalars['String']['output'];
|
|
40016
40559
|
selectedComponents?: Maybe<Array<Maybe<JiraComponent>>>;
|
|
40017
40560
|
selectedComponentsConnection?: Maybe<JiraComponentConnection>;
|
|
@@ -40187,6 +40730,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
40187
40730
|
fieldId: Scalars['String']['output'];
|
|
40188
40731
|
id: Scalars['ID']['output'];
|
|
40189
40732
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40733
|
+
issue?: Maybe<JiraIssue>;
|
|
40190
40734
|
name: Scalars['String']['output'];
|
|
40191
40735
|
type: Scalars['String']['output'];
|
|
40192
40736
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -40200,6 +40744,7 @@ export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValu
|
|
|
40200
40744
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
40201
40745
|
id: Scalars['ID']['output'];
|
|
40202
40746
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40747
|
+
issue?: Maybe<JiraIssue>;
|
|
40203
40748
|
name: Scalars['String']['output'];
|
|
40204
40749
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
40205
40750
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -40245,6 +40790,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
40245
40790
|
fieldId: Scalars['String']['output'];
|
|
40246
40791
|
id: Scalars['ID']['output'];
|
|
40247
40792
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40793
|
+
issue?: Maybe<JiraIssue>;
|
|
40248
40794
|
name: Scalars['String']['output'];
|
|
40249
40795
|
number?: Maybe<Scalars['Float']['output']>;
|
|
40250
40796
|
type: Scalars['String']['output'];
|
|
@@ -40258,6 +40804,7 @@ export declare type JiraConnectReadOnlyField = JiraIssueField & JiraIssueFieldCo
|
|
|
40258
40804
|
fieldId: Scalars['String']['output'];
|
|
40259
40805
|
id: Scalars['ID']['output'];
|
|
40260
40806
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40807
|
+
issue?: Maybe<JiraIssue>;
|
|
40261
40808
|
name: Scalars['String']['output'];
|
|
40262
40809
|
text?: Maybe<Scalars['String']['output']>;
|
|
40263
40810
|
type: Scalars['String']['output'];
|
|
@@ -40271,6 +40818,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
40271
40818
|
fieldId: Scalars['String']['output'];
|
|
40272
40819
|
id: Scalars['ID']['output'];
|
|
40273
40820
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40821
|
+
issue?: Maybe<JiraIssue>;
|
|
40274
40822
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
40275
40823
|
name: Scalars['String']['output'];
|
|
40276
40824
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -40288,6 +40836,7 @@ export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions
|
|
|
40288
40836
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
40289
40837
|
id: Scalars['ID']['output'];
|
|
40290
40838
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40839
|
+
issue?: Maybe<JiraIssue>;
|
|
40291
40840
|
name: Scalars['String']['output'];
|
|
40292
40841
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
40293
40842
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -40318,6 +40867,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
40318
40867
|
fieldId: Scalars['String']['output'];
|
|
40319
40868
|
id: Scalars['ID']['output'];
|
|
40320
40869
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40870
|
+
issue?: Maybe<JiraIssue>;
|
|
40321
40871
|
name: Scalars['String']['output'];
|
|
40322
40872
|
text?: Maybe<Scalars['String']['output']>;
|
|
40323
40873
|
type: Scalars['String']['output'];
|
|
@@ -40636,6 +41186,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
40636
41186
|
fieldId: Scalars['String']['output'];
|
|
40637
41187
|
id: Scalars['ID']['output'];
|
|
40638
41188
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41189
|
+
issue?: Maybe<JiraIssue>;
|
|
40639
41190
|
name: Scalars['String']['output'];
|
|
40640
41191
|
type: Scalars['String']['output'];
|
|
40641
41192
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -40685,6 +41236,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
40685
41236
|
fieldId: Scalars['String']['output'];
|
|
40686
41237
|
id: Scalars['ID']['output'];
|
|
40687
41238
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41239
|
+
issue?: Maybe<JiraIssue>;
|
|
40688
41240
|
name: Scalars['String']['output'];
|
|
40689
41241
|
type: Scalars['String']['output'];
|
|
40690
41242
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -40715,6 +41267,7 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
40715
41267
|
fieldId: Scalars['String']['output'];
|
|
40716
41268
|
id: Scalars['ID']['output'];
|
|
40717
41269
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41270
|
+
issue?: Maybe<JiraIssue>;
|
|
40718
41271
|
name: Scalars['String']['output'];
|
|
40719
41272
|
type: Scalars['String']['output'];
|
|
40720
41273
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -41051,6 +41604,7 @@ export declare type JiraDevOpsPullRequestDetails = {
|
|
|
41051
41604
|
export declare type JiraDevOpsQuery = {
|
|
41052
41605
|
__typename?: 'JiraDevOpsQuery';
|
|
41053
41606
|
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
41607
|
+
autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
|
|
41054
41608
|
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
41055
41609
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
41056
41610
|
configState?: Maybe<JiraAppConfigState>;
|
|
@@ -41063,6 +41617,9 @@ export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
|
41063
41617
|
issueAri: Scalars['ID']['input'];
|
|
41064
41618
|
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
41065
41619
|
};
|
|
41620
|
+
export declare type JiraDevOpsQueryAutodevJobsByIssuesArgs = {
|
|
41621
|
+
issueAris: Array<Scalars['ID']['input']>;
|
|
41622
|
+
};
|
|
41066
41623
|
export declare type JiraDevOpsQueryAutofixJobsArgs = {
|
|
41067
41624
|
issueAri: Scalars['ID']['input'];
|
|
41068
41625
|
};
|
|
@@ -41110,6 +41667,7 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
41110
41667
|
fieldId: Scalars['String']['output'];
|
|
41111
41668
|
id: Scalars['ID']['output'];
|
|
41112
41669
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41670
|
+
issue?: Maybe<JiraIssue>;
|
|
41113
41671
|
name: Scalars['String']['output'];
|
|
41114
41672
|
type: Scalars['String']['output'];
|
|
41115
41673
|
};
|
|
@@ -41148,6 +41706,7 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
41148
41706
|
fieldId: Scalars['String']['output'];
|
|
41149
41707
|
id: Scalars['ID']['output'];
|
|
41150
41708
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41709
|
+
issue?: Maybe<JiraIssue>;
|
|
41151
41710
|
name: Scalars['String']['output'];
|
|
41152
41711
|
type: Scalars['String']['output'];
|
|
41153
41712
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -41237,6 +41796,7 @@ export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
41237
41796
|
fieldId: Scalars['String']['output'];
|
|
41238
41797
|
id: Scalars['ID']['output'];
|
|
41239
41798
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41799
|
+
issue?: Maybe<JiraIssue>;
|
|
41240
41800
|
name: Scalars['String']['output'];
|
|
41241
41801
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
41242
41802
|
type: Scalars['String']['output'];
|
|
@@ -41276,6 +41836,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
41276
41836
|
fieldId: Scalars['String']['output'];
|
|
41277
41837
|
id: Scalars['ID']['output'];
|
|
41278
41838
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41839
|
+
issue?: Maybe<JiraIssue>;
|
|
41279
41840
|
name: Scalars['String']['output'];
|
|
41280
41841
|
renderedFieldHtml?: Maybe<Scalars['String']['output']>;
|
|
41281
41842
|
type: Scalars['String']['output'];
|
|
@@ -41385,6 +41946,16 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
41385
41946
|
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
41386
41947
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
41387
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
|
+
};
|
|
41388
41959
|
export declare type JiraFieldNonEditableReason = {
|
|
41389
41960
|
__typename?: 'JiraFieldNonEditableReason';
|
|
41390
41961
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -41515,6 +42086,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
41515
42086
|
flag?: Maybe<JiraFlag>;
|
|
41516
42087
|
id: Scalars['ID']['output'];
|
|
41517
42088
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42089
|
+
issue?: Maybe<JiraIssue>;
|
|
41518
42090
|
name: Scalars['String']['output'];
|
|
41519
42091
|
type: Scalars['String']['output'];
|
|
41520
42092
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -41533,6 +42105,7 @@ export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
41533
42105
|
fieldId: Scalars['String']['output'];
|
|
41534
42106
|
id: Scalars['ID']['output'];
|
|
41535
42107
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42108
|
+
issue?: Maybe<JiraIssue>;
|
|
41536
42109
|
name: Scalars['String']['output'];
|
|
41537
42110
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41538
42111
|
type: Scalars['String']['output'];
|
|
@@ -41547,6 +42120,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
41547
42120
|
fieldId: Scalars['String']['output'];
|
|
41548
42121
|
id: Scalars['ID']['output'];
|
|
41549
42122
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42123
|
+
issue?: Maybe<JiraIssue>;
|
|
41550
42124
|
name: Scalars['String']['output'];
|
|
41551
42125
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41552
42126
|
type: Scalars['String']['output'];
|
|
@@ -41595,6 +42169,7 @@ export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
41595
42169
|
groups?: Maybe<JiraGroupConnection>;
|
|
41596
42170
|
id: Scalars['ID']['output'];
|
|
41597
42171
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42172
|
+
issue?: Maybe<JiraIssue>;
|
|
41598
42173
|
name: Scalars['String']['output'];
|
|
41599
42174
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41600
42175
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41618,6 +42193,7 @@ export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41618
42193
|
groups?: Maybe<JiraGroupConnection>;
|
|
41619
42194
|
id: Scalars['ID']['output'];
|
|
41620
42195
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42196
|
+
issue?: Maybe<JiraIssue>;
|
|
41621
42197
|
name: Scalars['String']['output'];
|
|
41622
42198
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41623
42199
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41647,6 +42223,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41647
42223
|
fieldId: Scalars['String']['output'];
|
|
41648
42224
|
id: Scalars['ID']['output'];
|
|
41649
42225
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42226
|
+
issue?: Maybe<JiraIssue>;
|
|
41650
42227
|
name: Scalars['String']['output'];
|
|
41651
42228
|
number?: Maybe<Scalars['Float']['output']>;
|
|
41652
42229
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -41661,6 +42238,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41661
42238
|
fieldId: Scalars['String']['output'];
|
|
41662
42239
|
id: Scalars['ID']['output'];
|
|
41663
42240
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42241
|
+
issue?: Maybe<JiraIssue>;
|
|
41664
42242
|
name: Scalars['String']['output'];
|
|
41665
42243
|
object?: Maybe<Scalars['String']['output']>;
|
|
41666
42244
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -41695,6 +42273,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41695
42273
|
fieldId: Scalars['String']['output'];
|
|
41696
42274
|
id: Scalars['ID']['output'];
|
|
41697
42275
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42276
|
+
issue?: Maybe<JiraIssue>;
|
|
41698
42277
|
name: Scalars['String']['output'];
|
|
41699
42278
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41700
42279
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -41709,6 +42288,7 @@ export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfi
|
|
|
41709
42288
|
fieldId: Scalars['String']['output'];
|
|
41710
42289
|
id: Scalars['ID']['output'];
|
|
41711
42290
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42291
|
+
issue?: Maybe<JiraIssue>;
|
|
41712
42292
|
labels?: Maybe<JiraLabelConnection>;
|
|
41713
42293
|
name: Scalars['String']['output'];
|
|
41714
42294
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -41740,6 +42320,7 @@ export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
41740
42320
|
fieldId: Scalars['String']['output'];
|
|
41741
42321
|
id: Scalars['ID']['output'];
|
|
41742
42322
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42323
|
+
issue?: Maybe<JiraIssue>;
|
|
41743
42324
|
name: Scalars['String']['output'];
|
|
41744
42325
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41745
42326
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41764,6 +42345,7 @@ export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
41764
42345
|
fieldId: Scalars['String']['output'];
|
|
41765
42346
|
id: Scalars['ID']['output'];
|
|
41766
42347
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42348
|
+
issue?: Maybe<JiraIssue>;
|
|
41767
42349
|
name: Scalars['String']['output'];
|
|
41768
42350
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41769
42351
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41907,6 +42489,7 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
41907
42489
|
fieldId: Scalars['String']['output'];
|
|
41908
42490
|
id: Scalars['ID']['output'];
|
|
41909
42491
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42492
|
+
issue?: Maybe<JiraIssue>;
|
|
41910
42493
|
name: Scalars['String']['output'];
|
|
41911
42494
|
type: Scalars['String']['output'];
|
|
41912
42495
|
};
|
|
@@ -42001,6 +42584,7 @@ export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
42001
42584
|
fieldId: Scalars['String']['output'];
|
|
42002
42585
|
id: Scalars['ID']['output'];
|
|
42003
42586
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42587
|
+
issue?: Maybe<JiraIssue>;
|
|
42004
42588
|
name: Scalars['String']['output'];
|
|
42005
42589
|
selectedGoals?: Maybe<JiraGoalConnection>;
|
|
42006
42590
|
type: Scalars['String']['output'];
|
|
@@ -42647,6 +43231,7 @@ export declare type JiraIssueField = {
|
|
|
42647
43231
|
fieldId: Scalars['String']['output'];
|
|
42648
43232
|
id: Scalars['ID']['output'];
|
|
42649
43233
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43234
|
+
issue?: Maybe<JiraIssue>;
|
|
42650
43235
|
name: Scalars['String']['output'];
|
|
42651
43236
|
type: Scalars['String']['output'];
|
|
42652
43237
|
};
|
|
@@ -42940,6 +43525,7 @@ export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
42940
43525
|
fieldId: Scalars['String']['output'];
|
|
42941
43526
|
id: Scalars['ID']['output'];
|
|
42942
43527
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43528
|
+
issue?: Maybe<JiraIssue>;
|
|
42943
43529
|
issueLinkConnection?: Maybe<JiraIssueLinkConnection>;
|
|
42944
43530
|
issueLinkTypeRelations?: Maybe<JiraIssueLinkTypeRelationConnection>;
|
|
42945
43531
|
issueLinks?: Maybe<Array<Maybe<JiraIssueLink>>>;
|
|
@@ -43074,6 +43660,7 @@ export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldC
|
|
|
43074
43660
|
fieldId: Scalars['String']['output'];
|
|
43075
43661
|
id: Scalars['ID']['output'];
|
|
43076
43662
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43663
|
+
issue?: Maybe<JiraIssue>;
|
|
43077
43664
|
name: Scalars['String']['output'];
|
|
43078
43665
|
roles?: Maybe<JiraRoleConnection>;
|
|
43079
43666
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -43385,6 +43972,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
43385
43972
|
fieldId: Scalars['String']['output'];
|
|
43386
43973
|
id: Scalars['ID']['output'];
|
|
43387
43974
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43975
|
+
issue?: Maybe<JiraIssue>;
|
|
43388
43976
|
issueType?: Maybe<JiraIssueType>;
|
|
43389
43977
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
43390
43978
|
issueTypesForTransition?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -44048,6 +44636,7 @@ export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
44048
44636
|
fieldId: Scalars['String']['output'];
|
|
44049
44637
|
id: Scalars['ID']['output'];
|
|
44050
44638
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44639
|
+
issue?: Maybe<JiraIssue>;
|
|
44051
44640
|
labels?: Maybe<JiraLabelConnection>;
|
|
44052
44641
|
name: Scalars['String']['output'];
|
|
44053
44642
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -44216,6 +44805,22 @@ export declare type JiraMediaUploadToken = {
|
|
|
44216
44805
|
tokenDurationInMin?: Maybe<Scalars['Int']['output']>;
|
|
44217
44806
|
};
|
|
44218
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
|
+
};
|
|
44219
44824
|
export declare type JiraMergeVersionInput = {
|
|
44220
44825
|
id: Scalars['ID']['input'];
|
|
44221
44826
|
targetVersionId: Scalars['ID']['input'];
|
|
@@ -44265,6 +44870,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
44265
44870
|
groups?: Maybe<JiraGroupConnection>;
|
|
44266
44871
|
id: Scalars['ID']['output'];
|
|
44267
44872
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44873
|
+
issue?: Maybe<JiraIssue>;
|
|
44268
44874
|
name: Scalars['String']['output'];
|
|
44269
44875
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
44270
44876
|
selectedGroups?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
@@ -44313,6 +44919,7 @@ export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & Ji
|
|
|
44313
44919
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
44314
44920
|
id: Scalars['ID']['output'];
|
|
44315
44921
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44922
|
+
issue?: Maybe<JiraIssue>;
|
|
44316
44923
|
name: Scalars['String']['output'];
|
|
44317
44924
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
44318
44925
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -44373,6 +44980,7 @@ export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIss
|
|
|
44373
44980
|
fieldId: Scalars['String']['output'];
|
|
44374
44981
|
id: Scalars['ID']['output'];
|
|
44375
44982
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44983
|
+
issue?: Maybe<JiraIssue>;
|
|
44376
44984
|
name: Scalars['String']['output'];
|
|
44377
44985
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
44378
44986
|
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -44418,6 +45026,7 @@ export declare type JiraMultipleVersionPickerField = JiraHasMultipleSelectedValu
|
|
|
44418
45026
|
fieldId: Scalars['String']['output'];
|
|
44419
45027
|
id: Scalars['ID']['output'];
|
|
44420
45028
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45029
|
+
issue?: Maybe<JiraIssue>;
|
|
44421
45030
|
name: Scalars['String']['output'];
|
|
44422
45031
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
44423
45032
|
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -45308,6 +45917,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
45308
45917
|
id: Scalars['ID']['output'];
|
|
45309
45918
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45310
45919
|
isStoryPointField?: Maybe<Scalars['Boolean']['output']>;
|
|
45920
|
+
issue?: Maybe<JiraIssue>;
|
|
45311
45921
|
name: Scalars['String']['output'];
|
|
45312
45922
|
number?: Maybe<Scalars['Float']['output']>;
|
|
45313
45923
|
type: Scalars['String']['output'];
|
|
@@ -45586,6 +46196,7 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
45586
46196
|
fieldId: Scalars['String']['output'];
|
|
45587
46197
|
id: Scalars['ID']['output'];
|
|
45588
46198
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46199
|
+
issue?: Maybe<JiraIssue>;
|
|
45589
46200
|
name: Scalars['String']['output'];
|
|
45590
46201
|
originalEstimate?: Maybe<JiraEstimate>;
|
|
45591
46202
|
type: Scalars['String']['output'];
|
|
@@ -45641,6 +46252,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
45641
46252
|
fieldId: Scalars['String']['output'];
|
|
45642
46253
|
id: Scalars['ID']['output'];
|
|
45643
46254
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46255
|
+
issue?: Maybe<JiraIssue>;
|
|
45644
46256
|
name: Scalars['String']['output'];
|
|
45645
46257
|
parentCandidatesForExistingIssue?: Maybe<JiraIssueConnection>;
|
|
45646
46258
|
parentIssue?: Maybe<JiraIssue>;
|
|
@@ -45713,6 +46325,7 @@ export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
45713
46325
|
id: Scalars['ID']['output'];
|
|
45714
46326
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45715
46327
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
46328
|
+
issue?: Maybe<JiraIssue>;
|
|
45716
46329
|
name: Scalars['String']['output'];
|
|
45717
46330
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
45718
46331
|
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -45908,6 +46521,7 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
|
45908
46521
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
45909
46522
|
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
45910
46523
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
46524
|
+
parent?: Maybe<JiraAttachmentParentName>;
|
|
45911
46525
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
45912
46526
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
45913
46527
|
searchViewContext?: Maybe<JiraAttachmentSearchViewContext>;
|
|
@@ -45971,6 +46585,7 @@ export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
45971
46585
|
fieldId: Scalars['String']['output'];
|
|
45972
46586
|
id: Scalars['ID']['output'];
|
|
45973
46587
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46588
|
+
issue?: Maybe<JiraIssue>;
|
|
45974
46589
|
name: Scalars['String']['output'];
|
|
45975
46590
|
priorities?: Maybe<JiraPriorityConnection>;
|
|
45976
46591
|
priority?: Maybe<JiraPriority>;
|
|
@@ -46019,6 +46634,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
46019
46634
|
fieldId: Scalars['String']['output'];
|
|
46020
46635
|
id: Scalars['ID']['output'];
|
|
46021
46636
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46637
|
+
issue?: Maybe<JiraIssue>;
|
|
46022
46638
|
name: Scalars['String']['output'];
|
|
46023
46639
|
proformaForms?: Maybe<JiraProformaForms>;
|
|
46024
46640
|
type: Scalars['String']['output'];
|
|
@@ -46029,6 +46645,7 @@ export declare type JiraProject = Node & {
|
|
|
46029
46645
|
action?: Maybe<JiraProjectAction>;
|
|
46030
46646
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
46031
46647
|
associatedComponents?: Maybe<GraphGenericConnection>;
|
|
46648
|
+
associatedIssueLayoutFields?: Maybe<JiraFieldConnection>;
|
|
46032
46649
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
46033
46650
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
46034
46651
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -46106,6 +46723,9 @@ export declare type JiraProjectAssociatedComponentsArgs = {
|
|
|
46106
46723
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46107
46724
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46108
46725
|
};
|
|
46726
|
+
export declare type JiraProjectAssociatedIssueLayoutFieldsArgs = {
|
|
46727
|
+
input?: InputMaybe<JiraProjectAssociatedFieldsInput>;
|
|
46728
|
+
};
|
|
46109
46729
|
export declare type JiraProjectBoardsArgs = {
|
|
46110
46730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46111
46731
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46318,6 +46938,9 @@ export declare type JiraProjectAndRepositoryRelationshipSort = {
|
|
|
46318
46938
|
export declare enum JiraProjectAndRepositoryRelationshipSortBy {
|
|
46319
46939
|
LastInferredAt = "LAST_INFERRED_AT"
|
|
46320
46940
|
}
|
|
46941
|
+
export declare type JiraProjectAssociatedFieldsInput = {
|
|
46942
|
+
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
46943
|
+
};
|
|
46321
46944
|
export declare type JiraProjectCategory = Node & {
|
|
46322
46945
|
__typename?: 'JiraProjectCategory';
|
|
46323
46946
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -46428,6 +47051,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
46428
47051
|
fieldId: Scalars['String']['output'];
|
|
46429
47052
|
id: Scalars['ID']['output'];
|
|
46430
47053
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
47054
|
+
issue?: Maybe<JiraIssue>;
|
|
46431
47055
|
name: Scalars['String']['output'];
|
|
46432
47056
|
project?: Maybe<JiraProject>;
|
|
46433
47057
|
projects?: Maybe<JiraProjectConnection>;
|
|
@@ -46739,6 +47363,15 @@ export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArg
|
|
|
46739
47363
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46740
47364
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46741
47365
|
};
|
|
47366
|
+
export declare enum JiraProjectsHelpCenterMappingStatus {
|
|
47367
|
+
All = "ALL",
|
|
47368
|
+
Linked = "LINKED",
|
|
47369
|
+
Unlinked = "UNLINKED"
|
|
47370
|
+
}
|
|
47371
|
+
export declare type JiraProjectsMappedToHelpCenterFilterInput = {
|
|
47372
|
+
helpCenterId: Scalars['ID']['input'];
|
|
47373
|
+
helpCenterMappingStatus?: InputMaybe<JiraProjectsHelpCenterMappingStatus>;
|
|
47374
|
+
};
|
|
46742
47375
|
export declare type JiraPullRequestReviewer = {
|
|
46743
47376
|
__typename?: 'JiraPullRequestReviewer';
|
|
46744
47377
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -46847,6 +47480,7 @@ export declare type JiraQuery = {
|
|
|
46847
47480
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
46848
47481
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
46849
47482
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
47483
|
+
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
46850
47484
|
jiraSoftwareNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
46851
47485
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
46852
47486
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -46905,6 +47539,7 @@ export declare type JiraQuery = {
|
|
|
46905
47539
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
46906
47540
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
46907
47541
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
47542
|
+
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
46908
47543
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
46909
47544
|
sprintById?: Maybe<JiraSprint>;
|
|
46910
47545
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -47366,6 +48001,14 @@ export declare type JiraQueryJiraProjectsByJqlArgs = {
|
|
|
47366
48001
|
cloudId: Scalars['ID']['input'];
|
|
47367
48002
|
query: Scalars['String']['input'];
|
|
47368
48003
|
};
|
|
48004
|
+
export declare type JiraQueryJiraProjectsMappedToHelpCenterArgs = {
|
|
48005
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48006
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
48007
|
+
cloudId: Scalars['ID']['input'];
|
|
48008
|
+
filter: JiraProjectsMappedToHelpCenterFilterInput;
|
|
48009
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48010
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48011
|
+
};
|
|
47369
48012
|
export declare type JiraQueryJiraSoftwareNavigationItemsArgs = {
|
|
47370
48013
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47371
48014
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -47651,6 +48294,14 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
47651
48294
|
export declare type JiraQuerySearchUnsplashImagesArgs = {
|
|
47652
48295
|
input: JiraUnsplashSearchInput;
|
|
47653
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
|
+
};
|
|
47654
48305
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
47655
48306
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
47656
48307
|
cloudId: Scalars['ID']['input'];
|
|
@@ -47753,6 +48404,7 @@ export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
47753
48404
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
47754
48405
|
id: Scalars['ID']['output'];
|
|
47755
48406
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48407
|
+
issue?: Maybe<JiraIssue>;
|
|
47756
48408
|
name: Scalars['String']['output'];
|
|
47757
48409
|
selectedOption?: Maybe<JiraOption>;
|
|
47758
48410
|
type: Scalars['String']['output'];
|
|
@@ -47967,6 +48619,7 @@ export declare type JiraRemainingTimeEstimateField = JiraIssueField & JiraIssueF
|
|
|
47967
48619
|
fieldId: Scalars['String']['output'];
|
|
47968
48620
|
id: Scalars['ID']['output'];
|
|
47969
48621
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48622
|
+
issue?: Maybe<JiraIssue>;
|
|
47970
48623
|
name: Scalars['String']['output'];
|
|
47971
48624
|
remainingEstimate?: Maybe<JiraEstimate>;
|
|
47972
48625
|
type: Scalars['String']['output'];
|
|
@@ -48083,6 +48736,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
48083
48736
|
fieldId: Scalars['String']['output'];
|
|
48084
48737
|
id: Scalars['ID']['output'];
|
|
48085
48738
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48739
|
+
issue?: Maybe<JiraIssue>;
|
|
48086
48740
|
name: Scalars['String']['output'];
|
|
48087
48741
|
resolution?: Maybe<JiraResolution>;
|
|
48088
48742
|
resolutions?: Maybe<JiraResolutionConnection>;
|
|
@@ -48237,6 +48891,7 @@ export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
48237
48891
|
fieldId: Scalars['String']['output'];
|
|
48238
48892
|
id: Scalars['ID']['output'];
|
|
48239
48893
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48894
|
+
issue?: Maybe<JiraIssue>;
|
|
48240
48895
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
48241
48896
|
name: Scalars['String']['output'];
|
|
48242
48897
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -48480,6 +49135,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
48480
49135
|
fieldId: Scalars['String']['output'];
|
|
48481
49136
|
id: Scalars['ID']['output'];
|
|
48482
49137
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49138
|
+
issue?: Maybe<JiraIssue>;
|
|
48483
49139
|
name: Scalars['String']['output'];
|
|
48484
49140
|
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
48485
49141
|
securityLevel?: Maybe<JiraSecurityLevel>;
|
|
@@ -48600,6 +49256,7 @@ export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIs
|
|
|
48600
49256
|
fieldId: Scalars['String']['output'];
|
|
48601
49257
|
id: Scalars['ID']['output'];
|
|
48602
49258
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49259
|
+
issue?: Maybe<JiraIssue>;
|
|
48603
49260
|
name: Scalars['String']['output'];
|
|
48604
49261
|
type: Scalars['String']['output'];
|
|
48605
49262
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -48668,6 +49325,7 @@ export declare type JiraServiceManagementAttachment = JiraAttachment & Node & {
|
|
|
48668
49325
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
48669
49326
|
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
48670
49327
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
49328
|
+
parent?: Maybe<JiraAttachmentParentName>;
|
|
48671
49329
|
parentCommentVisibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
48672
49330
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
48673
49331
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
@@ -48819,6 +49477,7 @@ export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIs
|
|
|
48819
49477
|
fieldId: Scalars['String']['output'];
|
|
48820
49478
|
id: Scalars['ID']['output'];
|
|
48821
49479
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49480
|
+
issue?: Maybe<JiraIssue>;
|
|
48822
49481
|
name: Scalars['String']['output'];
|
|
48823
49482
|
type: Scalars['String']['output'];
|
|
48824
49483
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -48874,6 +49533,7 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
48874
49533
|
fieldId: Scalars['String']['output'];
|
|
48875
49534
|
id: Scalars['ID']['output'];
|
|
48876
49535
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49536
|
+
issue?: Maybe<JiraIssue>;
|
|
48877
49537
|
name: Scalars['String']['output'];
|
|
48878
49538
|
selectedEntitlement?: Maybe<JiraServiceManagementEntitlement>;
|
|
48879
49539
|
type: Scalars['String']['output'];
|
|
@@ -48913,6 +49573,7 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
48913
49573
|
id: Scalars['ID']['output'];
|
|
48914
49574
|
incident?: Maybe<JiraServiceManagementIncident>;
|
|
48915
49575
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49576
|
+
issue?: Maybe<JiraIssue>;
|
|
48916
49577
|
name: Scalars['String']['output'];
|
|
48917
49578
|
type: Scalars['String']['output'];
|
|
48918
49579
|
};
|
|
@@ -48932,6 +49593,7 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
|
|
|
48932
49593
|
fieldId: Scalars['String']['output'];
|
|
48933
49594
|
id: Scalars['ID']['output'];
|
|
48934
49595
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49596
|
+
issue?: Maybe<JiraIssue>;
|
|
48935
49597
|
majorIncident?: Maybe<JiraServiceManagementMajorIncident>;
|
|
48936
49598
|
name: Scalars['String']['output'];
|
|
48937
49599
|
type: Scalars['String']['output'];
|
|
@@ -48979,6 +49641,7 @@ export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIss
|
|
|
48979
49641
|
fieldId: Scalars['String']['output'];
|
|
48980
49642
|
id: Scalars['ID']['output'];
|
|
48981
49643
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49644
|
+
issue?: Maybe<JiraIssue>;
|
|
48982
49645
|
name: Scalars['String']['output'];
|
|
48983
49646
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
48984
49647
|
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -49001,11 +49664,16 @@ export declare type JiraServiceManagementMultipleSelectUserPickerFieldUsersArgs
|
|
|
49001
49664
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49002
49665
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49003
49666
|
};
|
|
49004
|
-
export declare type JiraServiceManagementOrganization = {
|
|
49667
|
+
export declare type JiraServiceManagementOrganization = JiraSelectableValue & {
|
|
49005
49668
|
__typename?: 'JiraServiceManagementOrganization';
|
|
49006
49669
|
domain?: Maybe<Scalars['String']['output']>;
|
|
49670
|
+
id: Scalars['ID']['output'];
|
|
49007
49671
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
49008
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']>;
|
|
49009
49677
|
};
|
|
49010
49678
|
export declare type JiraServiceManagementOrganizationConnection = {
|
|
49011
49679
|
__typename?: 'JiraServiceManagementOrganizationConnection';
|
|
@@ -49019,7 +49687,7 @@ export declare type JiraServiceManagementOrganizationEdge = {
|
|
|
49019
49687
|
cursor: Scalars['String']['output'];
|
|
49020
49688
|
node?: Maybe<JiraServiceManagementOrganization>;
|
|
49021
49689
|
};
|
|
49022
|
-
export declare type JiraServiceManagementOrganizationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49690
|
+
export declare type JiraServiceManagementOrganizationField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49023
49691
|
__typename?: 'JiraServiceManagementOrganizationField';
|
|
49024
49692
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
49025
49693
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -49027,11 +49695,14 @@ export declare type JiraServiceManagementOrganizationField = JiraIssueField & Ji
|
|
|
49027
49695
|
fieldId: Scalars['String']['output'];
|
|
49028
49696
|
id: Scalars['ID']['output'];
|
|
49029
49697
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49698
|
+
issue?: Maybe<JiraIssue>;
|
|
49030
49699
|
name: Scalars['String']['output'];
|
|
49031
49700
|
organizations?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
49032
49701
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49702
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
49033
49703
|
selectedOrganizations?: Maybe<Array<Maybe<JiraServiceManagementOrganization>>>;
|
|
49034
49704
|
selectedOrganizationsConnection?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
49705
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
49035
49706
|
type: Scalars['String']['output'];
|
|
49036
49707
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
49037
49708
|
};
|
|
@@ -49043,12 +49714,27 @@ export declare type JiraServiceManagementOrganizationFieldOrganizationsArgs = {
|
|
|
49043
49714
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49044
49715
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49045
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
|
+
};
|
|
49046
49725
|
export declare type JiraServiceManagementOrganizationFieldSelectedOrganizationsConnectionArgs = {
|
|
49047
49726
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49048
49727
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49049
49728
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49050
49729
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49051
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
|
+
};
|
|
49052
49738
|
export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49053
49739
|
__typename?: 'JiraServiceManagementPeopleField';
|
|
49054
49740
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -49058,6 +49744,7 @@ export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssu
|
|
|
49058
49744
|
id: Scalars['ID']['output'];
|
|
49059
49745
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49060
49746
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
49747
|
+
issue?: Maybe<JiraIssue>;
|
|
49061
49748
|
name: Scalars['String']['output'];
|
|
49062
49749
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49063
49750
|
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -49136,6 +49823,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
49136
49823
|
fieldId: Scalars['String']['output'];
|
|
49137
49824
|
id: Scalars['ID']['output'];
|
|
49138
49825
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49826
|
+
issue?: Maybe<JiraIssue>;
|
|
49139
49827
|
name: Scalars['String']['output'];
|
|
49140
49828
|
type: Scalars['String']['output'];
|
|
49141
49829
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -49148,6 +49836,7 @@ export declare type JiraServiceManagementRequestLanguageField = JiraIssueField &
|
|
|
49148
49836
|
fieldId: Scalars['String']['output'];
|
|
49149
49837
|
id: Scalars['ID']['output'];
|
|
49150
49838
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49839
|
+
issue?: Maybe<JiraIssue>;
|
|
49151
49840
|
language?: Maybe<JiraServiceManagementLanguage>;
|
|
49152
49841
|
languages?: Maybe<Array<Maybe<JiraServiceManagementLanguage>>>;
|
|
49153
49842
|
name: Scalars['String']['output'];
|
|
@@ -49187,6 +49876,7 @@ export declare type JiraServiceManagementRequestTypeField = JiraIssueField & Jir
|
|
|
49187
49876
|
fieldId: Scalars['String']['output'];
|
|
49188
49877
|
id: Scalars['ID']['output'];
|
|
49189
49878
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49879
|
+
issue?: Maybe<JiraIssue>;
|
|
49190
49880
|
name: Scalars['String']['output'];
|
|
49191
49881
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
49192
49882
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
@@ -49279,6 +49969,7 @@ export declare type JiraServiceManagementRespondersField = JiraIssueField & Jira
|
|
|
49279
49969
|
fieldId: Scalars['String']['output'];
|
|
49280
49970
|
id: Scalars['ID']['output'];
|
|
49281
49971
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49972
|
+
issue?: Maybe<JiraIssue>;
|
|
49282
49973
|
name: Scalars['String']['output'];
|
|
49283
49974
|
responders?: Maybe<Array<Maybe<JiraServiceManagementResponder>>>;
|
|
49284
49975
|
respondersConnection?: Maybe<JiraServiceManagementResponderConnection>;
|
|
@@ -49313,6 +50004,7 @@ export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraI
|
|
|
49313
50004
|
fieldId: Scalars['String']['output'];
|
|
49314
50005
|
id: Scalars['ID']['output'];
|
|
49315
50006
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50007
|
+
issue?: Maybe<JiraIssue>;
|
|
49316
50008
|
name: Scalars['String']['output'];
|
|
49317
50009
|
sentiment?: Maybe<JiraServiceManagementSentiment>;
|
|
49318
50010
|
type: Scalars['String']['output'];
|
|
@@ -49589,6 +50281,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
|
|
|
49589
50281
|
groups?: Maybe<JiraGroupConnection>;
|
|
49590
50282
|
id: Scalars['ID']['output'];
|
|
49591
50283
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50284
|
+
issue?: Maybe<JiraIssue>;
|
|
49592
50285
|
name: Scalars['String']['output'];
|
|
49593
50286
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49594
50287
|
selectedGroup?: Maybe<JiraGroup>;
|
|
@@ -49625,6 +50318,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
49625
50318
|
fieldId: Scalars['String']['output'];
|
|
49626
50319
|
id: Scalars['ID']['output'];
|
|
49627
50320
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50321
|
+
issue?: Maybe<JiraIssue>;
|
|
49628
50322
|
name: Scalars['String']['output'];
|
|
49629
50323
|
text?: Maybe<Scalars['String']['output']>;
|
|
49630
50324
|
type: Scalars['String']['output'];
|
|
@@ -49654,6 +50348,7 @@ export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & Jira
|
|
|
49654
50348
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
49655
50349
|
id: Scalars['ID']['output'];
|
|
49656
50350
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50351
|
+
issue?: Maybe<JiraIssue>;
|
|
49657
50352
|
name: Scalars['String']['output'];
|
|
49658
50353
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49659
50354
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -49699,6 +50394,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
49699
50394
|
fieldId: Scalars['String']['output'];
|
|
49700
50395
|
id: Scalars['ID']['output'];
|
|
49701
50396
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50397
|
+
issue?: Maybe<JiraIssue>;
|
|
49702
50398
|
name: Scalars['String']['output'];
|
|
49703
50399
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49704
50400
|
type: Scalars['String']['output'];
|
|
@@ -49741,6 +50437,7 @@ export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions
|
|
|
49741
50437
|
fieldId: Scalars['String']['output'];
|
|
49742
50438
|
id: Scalars['ID']['output'];
|
|
49743
50439
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50440
|
+
issue?: Maybe<JiraIssue>;
|
|
49744
50441
|
name: Scalars['String']['output'];
|
|
49745
50442
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
49746
50443
|
type: Scalars['String']['output'];
|
|
@@ -49868,6 +50565,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
49868
50565
|
fieldId: Scalars['String']['output'];
|
|
49869
50566
|
id: Scalars['ID']['output'];
|
|
49870
50567
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50568
|
+
issue?: Maybe<JiraIssue>;
|
|
49871
50569
|
name: Scalars['String']['output'];
|
|
49872
50570
|
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
49873
50571
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -49976,6 +50674,7 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
49976
50674
|
fieldId: Scalars['String']['output'];
|
|
49977
50675
|
id: Scalars['ID']['output'];
|
|
49978
50676
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50677
|
+
issue?: Maybe<JiraIssue>;
|
|
49979
50678
|
name: Scalars['String']['output'];
|
|
49980
50679
|
statusCategory: JiraStatusCategory;
|
|
49981
50680
|
type: Scalars['String']['output'];
|
|
@@ -50006,6 +50705,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
50006
50705
|
fieldId: Scalars['String']['output'];
|
|
50007
50706
|
id: Scalars['ID']['output'];
|
|
50008
50707
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50708
|
+
issue?: Maybe<JiraIssue>;
|
|
50009
50709
|
name: Scalars['String']['output'];
|
|
50010
50710
|
status: JiraStatus;
|
|
50011
50711
|
transitions?: Maybe<JiraTransitionConnection>;
|
|
@@ -50038,6 +50738,10 @@ export declare type JiraStoryPointEstimateFieldPayload = Payload & {
|
|
|
50038
50738
|
field?: Maybe<JiraNumberField>;
|
|
50039
50739
|
success: Scalars['Boolean']['output'];
|
|
50040
50740
|
};
|
|
50741
|
+
export declare type JiraStreamHubResourceIdentifier = {
|
|
50742
|
+
__typename?: 'JiraStreamHubResourceIdentifier';
|
|
50743
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
50744
|
+
};
|
|
50041
50745
|
export declare type JiraSubmitBulkOperationInput = {
|
|
50042
50746
|
bulkOperationInput: JiraBulkOperationInput;
|
|
50043
50747
|
bulkOperationType: JiraBulkOperationType;
|
|
@@ -50060,6 +50764,9 @@ export declare type JiraSubscription = {
|
|
|
50060
50764
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
50061
50765
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
50062
50766
|
onAutodevJobUpdated?: Maybe<JiraAutodevJobConnection>;
|
|
50767
|
+
onCalendarIssueCreated?: Maybe<JiraCalendar>;
|
|
50768
|
+
onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
|
|
50769
|
+
onCalendarIssueUpdated?: Maybe<JiraCalendar>;
|
|
50063
50770
|
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
50064
50771
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
50065
50772
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
@@ -50073,7 +50780,7 @@ export declare type JiraSubscription = {
|
|
|
50073
50780
|
};
|
|
50074
50781
|
export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
|
|
50075
50782
|
cloudId: Scalars['ID']['input'];
|
|
50076
|
-
|
|
50783
|
+
subscriptionId: Scalars['ID']['input'];
|
|
50077
50784
|
};
|
|
50078
50785
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
50079
50786
|
cloudId: Scalars['ID']['input'];
|
|
@@ -50087,6 +50794,22 @@ export declare type JiraSubscriptionOnAutodevJobUpdatedArgs = {
|
|
|
50087
50794
|
issueAri: Scalars['ID']['input'];
|
|
50088
50795
|
jobId: Scalars['ID']['input'];
|
|
50089
50796
|
};
|
|
50797
|
+
export declare type JiraSubscriptionOnCalendarIssueCreatedArgs = {
|
|
50798
|
+
cloudId: Scalars['ID']['input'];
|
|
50799
|
+
configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
|
|
50800
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50801
|
+
scope?: InputMaybe<JiraViewScopeInput>;
|
|
50802
|
+
};
|
|
50803
|
+
export declare type JiraSubscriptionOnCalendarIssueDeletedArgs = {
|
|
50804
|
+
cloudId: Scalars['ID']['input'];
|
|
50805
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50806
|
+
};
|
|
50807
|
+
export declare type JiraSubscriptionOnCalendarIssueUpdatedArgs = {
|
|
50808
|
+
cloudId: Scalars['ID']['input'];
|
|
50809
|
+
configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
|
|
50810
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
50811
|
+
scope?: InputMaybe<JiraViewScopeInput>;
|
|
50812
|
+
};
|
|
50090
50813
|
export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
|
|
50091
50814
|
cloudId: Scalars['ID']['input'];
|
|
50092
50815
|
projectId: Scalars['String']['input'];
|
|
@@ -50135,6 +50858,7 @@ export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
50135
50858
|
fieldId: Scalars['String']['output'];
|
|
50136
50859
|
id: Scalars['ID']['output'];
|
|
50137
50860
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50861
|
+
issue?: Maybe<JiraIssue>;
|
|
50138
50862
|
name: Scalars['String']['output'];
|
|
50139
50863
|
subtasks?: Maybe<JiraIssueConnection>;
|
|
50140
50864
|
type: Scalars['String']['output'];
|
|
@@ -50251,6 +50975,7 @@ export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
50251
50975
|
fieldId: Scalars['String']['output'];
|
|
50252
50976
|
id: Scalars['ID']['output'];
|
|
50253
50977
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50978
|
+
issue?: Maybe<JiraIssue>;
|
|
50254
50979
|
name: Scalars['String']['output'];
|
|
50255
50980
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
50256
50981
|
selectedTeam?: Maybe<JiraTeam>;
|
|
@@ -50314,6 +51039,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
50314
51039
|
fieldId: Scalars['String']['output'];
|
|
50315
51040
|
id: Scalars['ID']['output'];
|
|
50316
51041
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51042
|
+
issue?: Maybe<JiraIssue>;
|
|
50317
51043
|
name: Scalars['String']['output'];
|
|
50318
51044
|
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
50319
51045
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -50360,6 +51086,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
50360
51086
|
fieldId: Scalars['String']['output'];
|
|
50361
51087
|
id: Scalars['ID']['output'];
|
|
50362
51088
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51089
|
+
issue?: Maybe<JiraIssue>;
|
|
50363
51090
|
name: Scalars['String']['output'];
|
|
50364
51091
|
originalEstimate?: Maybe<JiraEstimate>;
|
|
50365
51092
|
remainingEstimate?: Maybe<JiraEstimate>;
|
|
@@ -50884,6 +51611,7 @@ export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
50884
51611
|
fieldId: Scalars['String']['output'];
|
|
50885
51612
|
id: Scalars['ID']['output'];
|
|
50886
51613
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51614
|
+
issue?: Maybe<JiraIssue>;
|
|
50887
51615
|
name: Scalars['String']['output'];
|
|
50888
51616
|
type: Scalars['String']['output'];
|
|
50889
51617
|
uri?: Maybe<Scalars['String']['output']>;
|
|
@@ -51607,6 +52335,7 @@ export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
51607
52335
|
fieldId: Scalars['String']['output'];
|
|
51608
52336
|
id: Scalars['ID']['output'];
|
|
51609
52337
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52338
|
+
issue?: Maybe<JiraIssue>;
|
|
51610
52339
|
name: Scalars['String']['output'];
|
|
51611
52340
|
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
51612
52341
|
type: Scalars['String']['output'];
|
|
@@ -51645,6 +52374,7 @@ export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
51645
52374
|
fieldId: Scalars['String']['output'];
|
|
51646
52375
|
id: Scalars['ID']['output'];
|
|
51647
52376
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52377
|
+
issue?: Maybe<JiraIssue>;
|
|
51648
52378
|
name: Scalars['String']['output'];
|
|
51649
52379
|
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
51650
52380
|
suggestedWatchers?: Maybe<JiraUserConnection>;
|
|
@@ -51699,6 +52429,7 @@ export declare type JiraWorkCategoryField = JiraIssueField & JiraIssueFieldConfi
|
|
|
51699
52429
|
fieldId: Scalars['String']['output'];
|
|
51700
52430
|
id: Scalars['ID']['output'];
|
|
51701
52431
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52432
|
+
issue?: Maybe<JiraIssue>;
|
|
51702
52433
|
name: Scalars['String']['output'];
|
|
51703
52434
|
type: Scalars['String']['output'];
|
|
51704
52435
|
workCategory?: Maybe<JiraWorkCategory>;
|
|
@@ -51723,6 +52454,7 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
51723
52454
|
fieldId: Scalars['String']['output'];
|
|
51724
52455
|
id: Scalars['ID']['output'];
|
|
51725
52456
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52457
|
+
issue?: Maybe<JiraIssue>;
|
|
51726
52458
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
51727
52459
|
name: Scalars['String']['output'];
|
|
51728
52460
|
timeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
@@ -53750,23 +54482,16 @@ export declare type MarketplaceConsoleAppPrivateListingsPageInfo = {
|
|
|
53750
54482
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
53751
54483
|
startCursor: Scalars['String']['output'];
|
|
53752
54484
|
};
|
|
53753
|
-
export declare type MarketplaceConsoleAppSoftware = {
|
|
53754
|
-
__typename?: 'MarketplaceConsoleAppSoftware';
|
|
53755
|
-
appKey: Scalars['String']['output'];
|
|
53756
|
-
developerId: Scalars['String']['output'];
|
|
53757
|
-
developerSpace: MarketplaceConsoleDevSpace;
|
|
53758
|
-
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53759
|
-
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53760
|
-
hosting: MarketplaceConsoleHosting;
|
|
53761
|
-
id: Scalars['ID']['output'];
|
|
53762
|
-
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53763
|
-
};
|
|
53764
54485
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53765
54486
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
54487
|
+
appKey: Scalars['ID']['output'];
|
|
53766
54488
|
appSoftwareId: Scalars['ID']['output'];
|
|
53767
54489
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
54490
|
+
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53768
54491
|
hosting: MarketplaceConsoleHosting;
|
|
53769
54492
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
54493
|
+
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
54494
|
+
pricingParentSoftware?: Maybe<MarketplaceConsolePricingParentSoftware>;
|
|
53770
54495
|
};
|
|
53771
54496
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53772
54497
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
@@ -53793,13 +54518,24 @@ export declare type MarketplaceConsoleAppSoftwareVersionCompatibility = {
|
|
|
53793
54518
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionCompatibility';
|
|
53794
54519
|
maxBuildNumber?: Maybe<Scalars['Int']['output']>;
|
|
53795
54520
|
minBuildNumber?: Maybe<Scalars['Int']['output']>;
|
|
53796
|
-
parentSoftware
|
|
54521
|
+
parentSoftware?: Maybe<MarketplaceConsoleParentSoftware>;
|
|
54522
|
+
parentSoftwareId: Scalars['ID']['output'];
|
|
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'];
|
|
53797
54529
|
};
|
|
53798
54530
|
export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetails = {
|
|
53799
54531
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionFrameworkDetails';
|
|
53800
54532
|
attributes: MarketplaceConsoleFrameworkAttributes;
|
|
53801
54533
|
frameworkId: Scalars['ID']['output'];
|
|
53802
54534
|
};
|
|
54535
|
+
export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput = {
|
|
54536
|
+
attributes: MarketplaceConsoleFrameworkAttributesInput;
|
|
54537
|
+
frameworkId: Scalars['ID']['input'];
|
|
54538
|
+
};
|
|
53803
54539
|
export declare type MarketplaceConsoleAppSoftwareVersionLicenseType = {
|
|
53804
54540
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionLicenseType';
|
|
53805
54541
|
id: MarketplaceConsoleAppSoftwareVersionLicenseTypeId;
|
|
@@ -53846,6 +54582,7 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53846
54582
|
Active = "ACTIVE",
|
|
53847
54583
|
Approved = "APPROVED",
|
|
53848
54584
|
Archived = "ARCHIVED",
|
|
54585
|
+
AutoApproved = "AUTO_APPROVED",
|
|
53849
54586
|
Draft = "DRAFT",
|
|
53850
54587
|
Rejected = "REJECTED",
|
|
53851
54588
|
Submitted = "SUBMITTED"
|
|
@@ -53857,18 +54594,35 @@ export declare type MarketplaceConsoleAppSoftwareVersions = {
|
|
|
53857
54594
|
};
|
|
53858
54595
|
export declare type MarketplaceConsoleAppSoftwares = {
|
|
53859
54596
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53860
|
-
appSoftwares
|
|
54597
|
+
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
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']>;
|
|
53861
54604
|
};
|
|
53862
54605
|
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
53863
54606
|
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
53864
54607
|
appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
53865
54608
|
buildNumber: Scalars['ID']['input'];
|
|
53866
54609
|
};
|
|
54610
|
+
export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
54611
|
+
__typename?: 'MarketplaceConsoleArtifactFileInfo';
|
|
54612
|
+
checksum: Scalars['String']['output'];
|
|
54613
|
+
logicalFileName: Scalars['String']['output'];
|
|
54614
|
+
size: Scalars['Int']['output'];
|
|
54615
|
+
};
|
|
53867
54616
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53868
54617
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53869
54618
|
descriptorId: Scalars['ID']['output'];
|
|
53870
54619
|
scopes: Array<Scalars['String']['output']>;
|
|
53871
54620
|
};
|
|
54621
|
+
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
54622
|
+
descriptorId: Scalars['String']['input'];
|
|
54623
|
+
href: Scalars['String']['input'];
|
|
54624
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
54625
|
+
};
|
|
53872
54626
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
53873
54627
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
53874
54628
|
body: Scalars['String']['output'];
|
|
@@ -54002,6 +54756,11 @@ export declare type MarketplaceConsoleExternalFrameworkAttributes = {
|
|
|
54002
54756
|
authorization: Scalars['Boolean']['output'];
|
|
54003
54757
|
binaryUrl?: Maybe<Scalars['String']['output']>;
|
|
54004
54758
|
};
|
|
54759
|
+
export declare type MarketplaceConsoleExternalFrameworkAttributesInput = {
|
|
54760
|
+
authorization: Scalars['Boolean']['input'];
|
|
54761
|
+
binaryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54762
|
+
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54763
|
+
};
|
|
54005
54764
|
export declare type MarketplaceConsoleFeature = {
|
|
54006
54765
|
__typename?: 'MarketplaceConsoleFeature';
|
|
54007
54766
|
description: Scalars['String']['output'];
|
|
@@ -54021,7 +54780,19 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
|
54021
54780
|
envId: Scalars['ID']['output'];
|
|
54022
54781
|
versionId: Scalars['String']['output'];
|
|
54023
54782
|
};
|
|
54783
|
+
export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
54784
|
+
appId: Scalars['String']['input'];
|
|
54785
|
+
envId: Scalars['String']['input'];
|
|
54786
|
+
versionId: Scalars['String']['input'];
|
|
54787
|
+
};
|
|
54024
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
|
+
};
|
|
54025
54796
|
export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
|
|
54026
54797
|
__typename?: 'MarketplaceConsoleGenericError';
|
|
54027
54798
|
message: Scalars['String']['output'];
|
|
@@ -54082,6 +54853,12 @@ export declare type MarketplaceConsoleLegacyVendorLinks = {
|
|
|
54082
54853
|
donate?: Maybe<Scalars['String']['output']>;
|
|
54083
54854
|
evaluationLicense?: Maybe<Scalars['String']['output']>;
|
|
54084
54855
|
};
|
|
54856
|
+
export declare type MarketplaceConsoleLink = {
|
|
54857
|
+
__typename?: 'MarketplaceConsoleLink';
|
|
54858
|
+
href: Scalars['String']['output'];
|
|
54859
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
54860
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
54861
|
+
};
|
|
54085
54862
|
export declare type MarketplaceConsoleListingHighLights = {
|
|
54086
54863
|
__typename?: 'MarketplaceConsoleListingHighLights';
|
|
54087
54864
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -54098,9 +54875,11 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
54098
54875
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
54099
54876
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
54100
54877
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
54878
|
+
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54101
54879
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54102
54880
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54103
54881
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
54882
|
+
validateArtifactUrl?: Maybe<MarketplaceConsoleRemoteFetchedSoftwareArtifact>;
|
|
54104
54883
|
};
|
|
54105
54884
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
54106
54885
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
@@ -54109,6 +54888,10 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
54109
54888
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
54110
54889
|
appSoftwareId: Scalars['String']['input'];
|
|
54111
54890
|
};
|
|
54891
|
+
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
54892
|
+
appKey: Scalars['ID']['input'];
|
|
54893
|
+
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
54894
|
+
};
|
|
54112
54895
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
54113
54896
|
appSoftwareId: Scalars['String']['input'];
|
|
54114
54897
|
token: Scalars['String']['input'];
|
|
@@ -54120,6 +54903,9 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
|
54120
54903
|
editions: Array<MarketplaceConsoleEditionInput>;
|
|
54121
54904
|
product: MarketplaceConsoleEditionsInput;
|
|
54122
54905
|
};
|
|
54906
|
+
export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
|
|
54907
|
+
url: Scalars['String']['input'];
|
|
54908
|
+
};
|
|
54123
54909
|
export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
54124
54910
|
__typename?: 'MarketplaceConsoleMutationVoidResponse';
|
|
54125
54911
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54180,6 +54966,10 @@ export declare type MarketplaceConsolePluginsFrameworkAttributes = {
|
|
|
54180
54966
|
__typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
|
|
54181
54967
|
artifactId: Scalars['ID']['output'];
|
|
54182
54968
|
};
|
|
54969
|
+
export declare type MarketplaceConsolePluginsFrameworkAttributesInput = {
|
|
54970
|
+
artifactId: Scalars['String']['input'];
|
|
54971
|
+
href: Scalars['String']['input'];
|
|
54972
|
+
};
|
|
54183
54973
|
export declare enum MarketplaceConsolePricingCurrency {
|
|
54184
54974
|
Jpy = "JPY",
|
|
54185
54975
|
Usd = "USD"
|
|
@@ -54195,6 +54985,11 @@ export declare type MarketplaceConsolePricingItemInput = {
|
|
|
54195
54985
|
ceiling: Scalars['Float']['input'];
|
|
54196
54986
|
floor: Scalars['Float']['input'];
|
|
54197
54987
|
};
|
|
54988
|
+
export declare type MarketplaceConsolePricingParentSoftware = {
|
|
54989
|
+
__typename?: 'MarketplaceConsolePricingParentSoftware';
|
|
54990
|
+
parentSoftwareId: Scalars['ID']['output'];
|
|
54991
|
+
parentSoftwareName?: Maybe<Scalars['String']['output']>;
|
|
54992
|
+
};
|
|
54198
54993
|
export declare type MarketplaceConsolePricingPlan = {
|
|
54199
54994
|
__typename?: 'MarketplaceConsolePricingPlan';
|
|
54200
54995
|
currency: MarketplaceConsolePricingCurrency;
|
|
@@ -54275,8 +55070,7 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
54275
55070
|
export declare type MarketplaceConsoleQueryApi = {
|
|
54276
55071
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
54277
55072
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
54278
|
-
|
|
54279
|
-
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
55073
|
+
appSoftwareVersionByAppId?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
54280
55074
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
54281
55075
|
appSoftwareVersions?: Maybe<MarketplaceConsoleAppSoftwareVersions>;
|
|
54282
55076
|
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
@@ -54298,10 +55092,7 @@ export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
|
54298
55092
|
appSoftwareId: Scalars['ID']['input'];
|
|
54299
55093
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54300
55094
|
};
|
|
54301
|
-
export declare type
|
|
54302
|
-
appId: Scalars['ID']['input'];
|
|
54303
|
-
};
|
|
54304
|
-
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionArgs = {
|
|
55095
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionByAppIdArgs = {
|
|
54305
55096
|
appId: Scalars['ID']['input'];
|
|
54306
55097
|
buildNumber: Scalars['ID']['input'];
|
|
54307
55098
|
};
|
|
@@ -54344,6 +55135,17 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
54344
55135
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
54345
55136
|
appId: Scalars['ID']['input'];
|
|
54346
55137
|
};
|
|
55138
|
+
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
55139
|
+
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
55140
|
+
binary: MarketplaceConsoleLink;
|
|
55141
|
+
remote?: Maybe<MarketplaceConsoleLink>;
|
|
55142
|
+
self: MarketplaceConsoleLink;
|
|
55143
|
+
};
|
|
55144
|
+
export declare type MarketplaceConsoleRemoteFetchedSoftwareArtifact = {
|
|
55145
|
+
__typename?: 'MarketplaceConsoleRemoteFetchedSoftwareArtifact';
|
|
55146
|
+
fileInfo: MarketplaceConsoleArtifactFileInfo;
|
|
55147
|
+
links: MarketplaceConsoleRemoteArtifactLinks;
|
|
55148
|
+
};
|
|
54347
55149
|
export declare type MarketplaceConsoleSourceCodeLicense = {
|
|
54348
55150
|
__typename?: 'MarketplaceConsoleSourceCodeLicense';
|
|
54349
55151
|
url: Scalars['String']['output'];
|
|
@@ -54384,6 +55186,10 @@ export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
|
54384
55186
|
__typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
|
|
54385
55187
|
artifactId: Scalars['ID']['output'];
|
|
54386
55188
|
};
|
|
55189
|
+
export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
|
|
55190
|
+
artifactId: Scalars['String']['input'];
|
|
55191
|
+
href: Scalars['String']['input'];
|
|
55192
|
+
};
|
|
54387
55193
|
export declare enum MarketplaceEntityStatus {
|
|
54388
55194
|
Active = "ACTIVE",
|
|
54389
55195
|
Archived = "ARCHIVED"
|
|
@@ -62790,6 +63596,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
62790
63596
|
contentStatuses?: InputMaybe<Array<SearchConfluenceDocumentStatus>>;
|
|
62791
63597
|
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62792
63598
|
creatorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
63599
|
+
isVerified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62793
63600
|
labelsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62794
63601
|
pageStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62795
63602
|
range?: InputMaybe<Array<InputMaybe<SearchConfluenceRangeFilter>>>;
|
|
@@ -63052,7 +63859,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
63052
63859
|
type: SearchResultType;
|
|
63053
63860
|
url: Scalars['URL']['output'];
|
|
63054
63861
|
};
|
|
63055
|
-
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;
|
|
63056
63863
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
63057
63864
|
__typename?: 'SearchResultGoogleDocument';
|
|
63058
63865
|
bodyText: Scalars['String']['output'];
|
|
@@ -63745,8 +64552,6 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
63745
64552
|
ConfluenceSiteBackupDownloaded = "CONFLUENCE_SITE_BACKUP_DOWNLOADED",
|
|
63746
64553
|
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|
|
63747
64554
|
ConfluenceSuspiciousSearch = "CONFLUENCE_SUSPICIOUS_SEARCH",
|
|
63748
|
-
ContainerClassificationLevelDecreased = "CONTAINER_CLASSIFICATION_LEVEL_DECREASED",
|
|
63749
|
-
ContainerClassificationLevelIncreased = "CONTAINER_CLASSIFICATION_LEVEL_INCREASED",
|
|
63750
64555
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
63751
64556
|
CreatedPolicy = "CREATED_POLICY",
|
|
63752
64557
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
@@ -63771,6 +64576,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
63771
64576
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
63772
64577
|
ImpossibleTravel = "IMPOSSIBLE_TRAVEL",
|
|
63773
64578
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
64579
|
+
JiraCustomDetection = "JIRA_CUSTOM_DETECTION",
|
|
63774
64580
|
JiraDataDiscoveryAtlassianToken = "JIRA_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
63775
64581
|
JiraDataDiscoveryAuTfn = "JIRA_DATA_DISCOVERY_AU_TFN",
|
|
63776
64582
|
JiraDataDiscoveryAwsKeys = "JIRA_DATA_DISCOVERY_AWS_KEYS",
|
|
@@ -66711,6 +67517,10 @@ export declare type TrelloArchiveCardPayload = Payload & {
|
|
|
66711
67517
|
errors?: Maybe<Array<MutationError>>;
|
|
66712
67518
|
success: Scalars['Boolean']['output'];
|
|
66713
67519
|
};
|
|
67520
|
+
export declare type TrelloAtlassianIntelligence = {
|
|
67521
|
+
__typename?: 'TrelloAtlassianIntelligence';
|
|
67522
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
67523
|
+
};
|
|
66714
67524
|
export declare type TrelloAttachment = {
|
|
66715
67525
|
__typename?: 'TrelloAttachment';
|
|
66716
67526
|
bytes?: Maybe<Scalars['Float']['output']>;
|
|
@@ -67312,6 +68122,11 @@ export declare type TrelloEnterprise = {
|
|
|
67312
68122
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
67313
68123
|
id: Scalars['ID']['output'];
|
|
67314
68124
|
objectId: Scalars['ID']['output'];
|
|
68125
|
+
prefs: TrelloEnterprisePrefs;
|
|
68126
|
+
};
|
|
68127
|
+
export declare type TrelloEnterprisePrefs = {
|
|
68128
|
+
__typename?: 'TrelloEnterprisePrefs';
|
|
68129
|
+
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
67315
68130
|
};
|
|
67316
68131
|
export declare type TrelloImagePreview = {
|
|
67317
68132
|
__typename?: 'TrelloImagePreview';
|
|
@@ -67504,6 +68319,7 @@ export declare type TrelloMutationApi = {
|
|
|
67504
68319
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
67505
68320
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
67506
68321
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
68322
|
+
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
67507
68323
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
67508
68324
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
67509
68325
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
@@ -67531,6 +68347,9 @@ export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
|
67531
68347
|
export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
67532
68348
|
input: TrelloWatchCardInput;
|
|
67533
68349
|
};
|
|
68350
|
+
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
68351
|
+
input: TrelloUpdateBoardIsTemplateInput;
|
|
68352
|
+
};
|
|
67534
68353
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
67535
68354
|
input: TrelloUpdateBoardNameInput;
|
|
67536
68355
|
};
|
|
@@ -67655,22 +68474,28 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
67655
68474
|
};
|
|
67656
68475
|
export declare type TrelloQueryApi = {
|
|
67657
68476
|
__typename?: 'TrelloQueryApi';
|
|
68477
|
+
allPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
67658
68478
|
board?: Maybe<TrelloBoard>;
|
|
67659
68479
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
67660
68480
|
card?: Maybe<TrelloCard>;
|
|
67661
68481
|
echo?: Maybe<Scalars['String']['output']>;
|
|
67662
68482
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
68483
|
+
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
67663
68484
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
67664
68485
|
list?: Maybe<TrelloList>;
|
|
67665
68486
|
member?: Maybe<TrelloMember>;
|
|
67666
68487
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerAccountConnection>;
|
|
67667
|
-
plannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
67668
68488
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
67669
68489
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
67670
68490
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
67671
68491
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
67672
68492
|
workspace?: Maybe<TrelloWorkspace>;
|
|
67673
68493
|
};
|
|
68494
|
+
export declare type TrelloQueryApiAllPlannerCalendarsByAccountIdArgs = {
|
|
68495
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68496
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68497
|
+
id: Scalars['ID']['input'];
|
|
68498
|
+
};
|
|
67674
68499
|
export declare type TrelloQueryApiBoardArgs = {
|
|
67675
68500
|
id: Scalars['ID']['input'];
|
|
67676
68501
|
};
|
|
@@ -67683,6 +68508,11 @@ export declare type TrelloQueryApiCardArgs = {
|
|
|
67683
68508
|
export declare type TrelloQueryApiEchosArgs = {
|
|
67684
68509
|
echo: Array<Scalars['String']['input']>;
|
|
67685
68510
|
};
|
|
68511
|
+
export declare type TrelloQueryApiEnabledPlannerCalendarsByAccountIdArgs = {
|
|
68512
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68513
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68514
|
+
id: Scalars['ID']['input'];
|
|
68515
|
+
};
|
|
67686
68516
|
export declare type TrelloQueryApiEnterpriseArgs = {
|
|
67687
68517
|
id: Scalars['ID']['input'];
|
|
67688
68518
|
};
|
|
@@ -67697,11 +68527,6 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
|
|
|
67697
68527
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67698
68528
|
id: Scalars['ID']['input'];
|
|
67699
68529
|
};
|
|
67700
|
-
export declare type TrelloQueryApiPlannerCalendarsByAccountIdArgs = {
|
|
67701
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67702
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67703
|
-
id: Scalars['ID']['input'];
|
|
67704
|
-
};
|
|
67705
68530
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
67706
68531
|
ids: Array<Scalars['ID']['input']>;
|
|
67707
68532
|
};
|
|
@@ -67840,6 +68665,16 @@ export declare type TrelloUnarchiveCardPayload = Payload & {
|
|
|
67840
68665
|
errors?: Maybe<Array<MutationError>>;
|
|
67841
68666
|
success: Scalars['Boolean']['output'];
|
|
67842
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
|
+
};
|
|
67843
68678
|
export declare type TrelloUpdateBoardNameInput = {
|
|
67844
68679
|
boardId: Scalars['ID']['input'];
|
|
67845
68680
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67896,8 +68731,8 @@ export declare type TrelloWatchCardPayload = Payload & {
|
|
|
67896
68731
|
export declare type TrelloWorkspace = Node & {
|
|
67897
68732
|
__typename?: 'TrelloWorkspace';
|
|
67898
68733
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
67899
|
-
description
|
|
67900
|
-
displayName
|
|
68734
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
68735
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
67901
68736
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
67902
68737
|
id: Scalars['ID']['output'];
|
|
67903
68738
|
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
@@ -67905,13 +68740,13 @@ export declare type TrelloWorkspace = Node & {
|
|
|
67905
68740
|
logoHash?: Maybe<Scalars['String']['output']>;
|
|
67906
68741
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
67907
68742
|
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
67908
|
-
name
|
|
67909
|
-
objectId
|
|
68743
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
68744
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
67910
68745
|
offering?: Maybe<Scalars['String']['output']>;
|
|
67911
|
-
prefs
|
|
68746
|
+
prefs?: Maybe<TrelloWorkspacePrefs>;
|
|
67912
68747
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
67913
68748
|
tags?: Maybe<TrelloTagConnection>;
|
|
67914
|
-
url
|
|
68749
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
67915
68750
|
website?: Maybe<Scalars['String']['output']>;
|
|
67916
68751
|
};
|
|
67917
68752
|
export declare type TrelloWorkspaceMembersArgs = {
|
|
@@ -67988,12 +68823,27 @@ export declare type UnassignIssueParentOutput = MutationResponse & {
|
|
|
67988
68823
|
statusCode: Scalars['Int']['output'];
|
|
67989
68824
|
success: Scalars['Boolean']['output'];
|
|
67990
68825
|
};
|
|
68826
|
+
export declare type UnifiedAccessStatus = UnifiedINode & {
|
|
68827
|
+
__typename?: 'UnifiedAccessStatus';
|
|
68828
|
+
id: Scalars['ID']['output'];
|
|
68829
|
+
status?: Maybe<Scalars['Boolean']['output']>;
|
|
68830
|
+
};
|
|
67991
68831
|
export declare type UnifiedAccount = UnifiedINode & {
|
|
67992
68832
|
__typename?: 'UnifiedAccount';
|
|
67993
68833
|
id: Scalars['ID']['output'];
|
|
67994
68834
|
linkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
67995
68835
|
parentAccount?: Maybe<UnifiedParentAccount>;
|
|
67996
68836
|
};
|
|
68837
|
+
export declare type UnifiedAdmins = UnifiedINode & {
|
|
68838
|
+
__typename?: 'UnifiedAdmins';
|
|
68839
|
+
admins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
68840
|
+
id: Scalars['ID']['output'];
|
|
68841
|
+
};
|
|
68842
|
+
export declare type UnifiedAllowList = UnifiedINode & {
|
|
68843
|
+
__typename?: 'UnifiedAllowList';
|
|
68844
|
+
allowList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
68845
|
+
id: Scalars['ID']['output'];
|
|
68846
|
+
};
|
|
67997
68847
|
export declare type UnifiedAtlassianProduct = UnifiedINode & {
|
|
67998
68848
|
__typename?: 'UnifiedAtlassianProduct';
|
|
67999
68849
|
id: Scalars['ID']['output'];
|
|
@@ -68151,6 +69001,44 @@ export declare type UnifiedGamificationRecognitionsTotal = {
|
|
|
68151
69001
|
comment?: Maybe<Scalars['String']['output']>;
|
|
68152
69002
|
count?: Maybe<Scalars['Int']['output']>;
|
|
68153
69003
|
};
|
|
69004
|
+
export declare type UnifiedGatingMutation = {
|
|
69005
|
+
__typename?: 'UnifiedGatingMutation';
|
|
69006
|
+
addAdmins?: Maybe<UnifiedGatingPayload>;
|
|
69007
|
+
addToAllowList?: Maybe<UnifiedGatingPayload>;
|
|
69008
|
+
removeAdmins?: Maybe<UnifiedGatingPayload>;
|
|
69009
|
+
removeFromAllowList?: Maybe<UnifiedGatingPayload>;
|
|
69010
|
+
};
|
|
69011
|
+
export declare type UnifiedGatingMutationAddAdminsArgs = {
|
|
69012
|
+
aaids: Array<Scalars['String']['input']>;
|
|
69013
|
+
};
|
|
69014
|
+
export declare type UnifiedGatingMutationAddToAllowListArgs = {
|
|
69015
|
+
emailIds: Array<Scalars['String']['input']>;
|
|
69016
|
+
};
|
|
69017
|
+
export declare type UnifiedGatingMutationRemoveAdminsArgs = {
|
|
69018
|
+
aaids: Array<Scalars['String']['input']>;
|
|
69019
|
+
};
|
|
69020
|
+
export declare type UnifiedGatingMutationRemoveFromAllowListArgs = {
|
|
69021
|
+
emailIds: Array<Scalars['String']['input']>;
|
|
69022
|
+
};
|
|
69023
|
+
export declare type UnifiedGatingPayload = UnifiedPayload & {
|
|
69024
|
+
__typename?: 'UnifiedGatingPayload';
|
|
69025
|
+
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
69026
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
69027
|
+
success: Scalars['Boolean']['output'];
|
|
69028
|
+
};
|
|
69029
|
+
export declare type UnifiedGatingQuery = {
|
|
69030
|
+
__typename?: 'UnifiedGatingQuery';
|
|
69031
|
+
getAdmins?: Maybe<UnifiedUAdminsResult>;
|
|
69032
|
+
getAllowList?: Maybe<UnifiedUAllowListResult>;
|
|
69033
|
+
isAaidAdmin?: Maybe<UnifiedUGatingStatusResult>;
|
|
69034
|
+
isEmailIdAllowed?: Maybe<UnifiedUGatingStatusResult>;
|
|
69035
|
+
};
|
|
69036
|
+
export declare type UnifiedGatingQueryIsAaidAdminArgs = {
|
|
69037
|
+
aaid: Scalars['String']['input'];
|
|
69038
|
+
};
|
|
69039
|
+
export declare type UnifiedGatingQueryIsEmailIdAllowedArgs = {
|
|
69040
|
+
emailId: Scalars['String']['input'];
|
|
69041
|
+
};
|
|
68154
69042
|
export declare type UnifiedIBadge = {
|
|
68155
69043
|
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
68156
69044
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -68239,6 +69127,7 @@ export declare type UnifiedMutation = {
|
|
|
68239
69127
|
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
68240
69128
|
createParentAccount?: Maybe<UnifiedParentAccountPayload>;
|
|
68241
69129
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
69130
|
+
gating?: Maybe<UnifiedGatingMutation>;
|
|
68242
69131
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
68243
69132
|
};
|
|
68244
69133
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
@@ -68246,6 +69135,9 @@ export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
|
68246
69135
|
connectedProductsReferenceId: Scalars['String']['input'];
|
|
68247
69136
|
parentAccountInternalId: Scalars['String']['input'];
|
|
68248
69137
|
};
|
|
69138
|
+
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
69139
|
+
aaid: Scalars['String']['input'];
|
|
69140
|
+
};
|
|
68249
69141
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
68250
69142
|
aaid: Scalars['String']['input'];
|
|
68251
69143
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -68273,6 +69165,7 @@ export declare type UnifiedPageInfo = {
|
|
|
68273
69165
|
};
|
|
68274
69166
|
export declare type UnifiedParentAccount = UnifiedINode & {
|
|
68275
69167
|
__typename?: 'UnifiedParentAccount';
|
|
69168
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
68276
69169
|
id: Scalars['ID']['output'];
|
|
68277
69170
|
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
68278
69171
|
};
|
|
@@ -68361,6 +69254,7 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
68361
69254
|
export declare type UnifiedQuery = {
|
|
68362
69255
|
__typename?: 'UnifiedQuery';
|
|
68363
69256
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
69257
|
+
gating?: Maybe<UnifiedGatingQuery>;
|
|
68364
69258
|
node?: Maybe<UnifiedINode>;
|
|
68365
69259
|
unifiedAccount?: Maybe<UnifiedUAccountResult>;
|
|
68366
69260
|
unifiedAccounts?: Maybe<Array<Maybe<UnifiedUAccountResult>>>;
|
|
@@ -68411,6 +69305,8 @@ export declare type UnifiedRecentCourseEdge = UnifiedIEdge & {
|
|
|
68411
69305
|
node?: Maybe<UnifiedRecentCourse>;
|
|
68412
69306
|
};
|
|
68413
69307
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
69308
|
+
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
69309
|
+
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
68414
69310
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
68415
69311
|
export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
|
|
68416
69312
|
export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;
|
|
@@ -68420,6 +69316,7 @@ export declare type UnifiedUGamificationBadgesResult = UnifiedGamificationBadges
|
|
|
68420
69316
|
export declare type UnifiedUGamificationLevelsResult = UnifiedGamificationLevel | UnifiedQueryError;
|
|
68421
69317
|
export declare type UnifiedUGamificationRecognitionsSummaryResult = UnifiedGamificationRecognitionsSummary | UnifiedQueryError;
|
|
68422
69318
|
export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQueryError;
|
|
69319
|
+
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
|
|
68423
69320
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
68424
69321
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
68425
69322
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
@@ -68574,18 +69471,21 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
68574
69471
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
68575
69472
|
id: Scalars['ID']['input'];
|
|
68576
69473
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69474
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68577
69475
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
68578
69476
|
};
|
|
68579
69477
|
export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
68580
69478
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
68581
69479
|
id: Scalars['ID']['input'];
|
|
68582
69480
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69481
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68583
69482
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
68584
69483
|
};
|
|
68585
69484
|
export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
68586
69485
|
id: Scalars['ID']['input'];
|
|
68587
69486
|
linkType?: InputMaybe<CompassLinkType>;
|
|
68588
69487
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69488
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68589
69489
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
68590
69490
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
68591
69491
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -68597,11 +69497,13 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
68597
69497
|
id: Scalars['ID']['input'];
|
|
68598
69498
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
68599
69499
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69500
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68600
69501
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
68601
69502
|
};
|
|
68602
69503
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
68603
69504
|
id: Scalars['ID']['input'];
|
|
68604
69505
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69506
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68605
69507
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
68606
69508
|
};
|
|
68607
69509
|
export declare type UpdateCompassLinkInput = {
|
|
@@ -68634,6 +69536,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
68634
69536
|
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68635
69537
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
68636
69538
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
69539
|
+
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
68637
69540
|
updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
68638
69541
|
};
|
|
68639
69542
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
@@ -69701,6 +70604,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
69701
70604
|
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
69702
70605
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
69703
70606
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
70607
|
+
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
69704
70608
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
69705
70609
|
};
|
|
69706
70610
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
@@ -69944,6 +70848,20 @@ export declare type WorkSuggestionsPrCommentsTask = WorkSuggestionsPeriscopeTask
|
|
|
69944
70848
|
title: Scalars['String']['output'];
|
|
69945
70849
|
url: Scalars['String']['output'];
|
|
69946
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
|
+
};
|
|
69947
70865
|
export declare type WorkSuggestionsPeriscopeTask = {
|
|
69948
70866
|
id: Scalars['String']['output'];
|
|
69949
70867
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
@@ -69982,6 +70900,11 @@ export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon
|
|
|
69982
70900
|
title: Scalars['String']['output'];
|
|
69983
70901
|
url: Scalars['String']['output'];
|
|
69984
70902
|
};
|
|
70903
|
+
export declare type WorkSuggestionsPullRequestSuggestionsResponse = {
|
|
70904
|
+
__typename?: 'WorkSuggestionsPullRequestSuggestionsResponse';
|
|
70905
|
+
mergeableSuggestions?: Maybe<Array<WorkSuggestionsPrMergeableTask>>;
|
|
70906
|
+
newCommentsSuggestions?: Maybe<Array<WorkSuggestionsPrCommentsTask>>;
|
|
70907
|
+
};
|
|
69985
70908
|
export declare type WorkSuggestionsPurgeUserActionStateInput = {
|
|
69986
70909
|
cloudId: Scalars['ID']['input'];
|
|
69987
70910
|
};
|