@forge/cli-shared 5.4.1-next.5 → 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 +39 -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 +1033 -161
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +75 -19
- package/package.json +2 -2
|
@@ -4275,6 +4275,7 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
4275
4275
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
4276
4276
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4277
4277
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4278
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4278
4279
|
weight: Scalars['Int']['input'];
|
|
4279
4280
|
};
|
|
4280
4281
|
export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
@@ -4282,6 +4283,7 @@ export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
4282
4283
|
collectionComparatorValue: Array<Scalars['ID']['input']>;
|
|
4283
4284
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4284
4285
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4286
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4285
4287
|
weight: Scalars['Int']['input'];
|
|
4286
4288
|
};
|
|
4287
4289
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
@@ -4289,6 +4291,7 @@ export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
4289
4291
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4290
4292
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
4291
4293
|
numberComparatorValue: Scalars['Float']['input'];
|
|
4294
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4292
4295
|
weight: Scalars['Int']['input'];
|
|
4293
4296
|
};
|
|
4294
4297
|
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
@@ -4296,11 +4299,13 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
4296
4299
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
4297
4300
|
membershipComparatorValue: Array<Scalars['ID']['input']>;
|
|
4298
4301
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4302
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4299
4303
|
weight: Scalars['Int']['input'];
|
|
4300
4304
|
};
|
|
4301
4305
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
4302
4306
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4303
4307
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4308
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
4304
4309
|
weight: Scalars['Int']['input'];
|
|
4305
4310
|
};
|
|
4306
4311
|
export declare type CompassCreateIncidentEventInput = {
|
|
@@ -4396,6 +4401,10 @@ export declare type CompassCreatePushEventInput = {
|
|
|
4396
4401
|
updateSequenceNumber: Scalars['Long']['input'];
|
|
4397
4402
|
url: Scalars['URL']['input'];
|
|
4398
4403
|
};
|
|
4404
|
+
export declare type CompassCreateScorecardCriteriaScoringStrategyRulesInput = {
|
|
4405
|
+
onFalse?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
4406
|
+
onTrue?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
4407
|
+
};
|
|
4399
4408
|
export declare type CompassCreateTeamCheckinActionInput = {
|
|
4400
4409
|
actionText: Scalars['String']['input'];
|
|
4401
4410
|
completed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -4552,6 +4561,7 @@ export declare type CompassCustomFieldScorecardCriteria = {
|
|
|
4552
4561
|
id: Scalars['ID']['output'];
|
|
4553
4562
|
name?: Maybe<Scalars['String']['output']>;
|
|
4554
4563
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4564
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
4555
4565
|
weight: Scalars['Int']['output'];
|
|
4556
4566
|
};
|
|
4557
4567
|
export declare type CompassCustomFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5064,6 +5074,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCusto
|
|
|
5064
5074
|
id: Scalars['ID']['output'];
|
|
5065
5075
|
name?: Maybe<Scalars['String']['output']>;
|
|
5066
5076
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5077
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5067
5078
|
weight: Scalars['Int']['output'];
|
|
5068
5079
|
};
|
|
5069
5080
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5078,6 +5089,7 @@ export declare type CompassHasCustomMultiSelectFieldScorecardCriteria = CompassC
|
|
|
5078
5089
|
id: Scalars['ID']['output'];
|
|
5079
5090
|
name?: Maybe<Scalars['String']['output']>;
|
|
5080
5091
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5092
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5081
5093
|
weight: Scalars['Int']['output'];
|
|
5082
5094
|
};
|
|
5083
5095
|
export declare type CompassHasCustomMultiSelectFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5091,6 +5103,7 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustom
|
|
|
5091
5103
|
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
5092
5104
|
numberComparatorValue?: Maybe<Scalars['Float']['output']>;
|
|
5093
5105
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5106
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5094
5107
|
weight: Scalars['Int']['output'];
|
|
5095
5108
|
};
|
|
5096
5109
|
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5105,6 +5118,7 @@ export declare type CompassHasCustomSingleSelectFieldScorecardCriteria = Compass
|
|
|
5105
5118
|
membershipComparatorValue: Array<Scalars['ID']['output']>;
|
|
5106
5119
|
name?: Maybe<Scalars['String']['output']>;
|
|
5107
5120
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5121
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5108
5122
|
weight: Scalars['Int']['output'];
|
|
5109
5123
|
};
|
|
5110
5124
|
export declare type CompassHasCustomSingleSelectFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5116,6 +5130,7 @@ export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFi
|
|
|
5116
5130
|
id: Scalars['ID']['output'];
|
|
5117
5131
|
name?: Maybe<Scalars['String']['output']>;
|
|
5118
5132
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5133
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5119
5134
|
weight: Scalars['Int']['output'];
|
|
5120
5135
|
};
|
|
5121
5136
|
export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5126,6 +5141,7 @@ export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCri
|
|
|
5126
5141
|
id: Scalars['ID']['output'];
|
|
5127
5142
|
name?: Maybe<Scalars['String']['output']>;
|
|
5128
5143
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5144
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5129
5145
|
weight: Scalars['Int']['output'];
|
|
5130
5146
|
};
|
|
5131
5147
|
export declare type CompassHasDescriptionScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5137,6 +5153,7 @@ export declare type CompassHasFieldScorecardCriteria = CompassScorecardCriteria
|
|
|
5137
5153
|
id: Scalars['ID']['output'];
|
|
5138
5154
|
name?: Maybe<Scalars['String']['output']>;
|
|
5139
5155
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5156
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5140
5157
|
weight: Scalars['Int']['output'];
|
|
5141
5158
|
};
|
|
5142
5159
|
export declare type CompassHasFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5148,6 +5165,7 @@ export declare type CompassHasLinkScorecardCriteria = CompassScorecardCriteria &
|
|
|
5148
5165
|
linkType: CompassLinkType;
|
|
5149
5166
|
name?: Maybe<Scalars['String']['output']>;
|
|
5150
5167
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5168
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5151
5169
|
textComparator?: Maybe<CompassCriteriaTextComparatorOptions>;
|
|
5152
5170
|
textComparatorValue?: Maybe<Scalars['String']['output']>;
|
|
5153
5171
|
weight: Scalars['Int']['output'];
|
|
@@ -5165,6 +5183,7 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
5165
5183
|
metricDefinitionId: Scalars['ID']['output'];
|
|
5166
5184
|
name?: Maybe<Scalars['String']['output']>;
|
|
5167
5185
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5186
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5168
5187
|
weight: Scalars['Int']['output'];
|
|
5169
5188
|
};
|
|
5170
5189
|
export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5175,6 +5194,7 @@ export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria
|
|
|
5175
5194
|
id: Scalars['ID']['output'];
|
|
5176
5195
|
name?: Maybe<Scalars['String']['output']>;
|
|
5177
5196
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5197
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5178
5198
|
weight: Scalars['Int']['output'];
|
|
5179
5199
|
};
|
|
5180
5200
|
export declare type CompassHasOwnerScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5683,6 +5703,7 @@ export declare type CompassScorecard = Node & {
|
|
|
5683
5703
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
5684
5704
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
5685
5705
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
5706
|
+
scoringStrategyType?: Maybe<Scalars['String']['output']>;
|
|
5686
5707
|
type: Scalars['String']['output'];
|
|
5687
5708
|
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
5688
5709
|
};
|
|
@@ -5800,6 +5821,7 @@ export declare type CompassScorecardCriteria = {
|
|
|
5800
5821
|
id: Scalars['ID']['output'];
|
|
5801
5822
|
name?: Maybe<Scalars['String']['output']>;
|
|
5802
5823
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5824
|
+
scoringStrategyRules?: Maybe<CompassScorecardCriteriaScoringStrategyRules>;
|
|
5803
5825
|
weight: Scalars['Int']['output'];
|
|
5804
5826
|
};
|
|
5805
5827
|
export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
@@ -5868,6 +5890,16 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter =
|
|
|
5868
5890
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
5869
5891
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
5870
5892
|
};
|
|
5893
|
+
export declare enum CompassScorecardCriteriaScoringStrategyRuleAction {
|
|
5894
|
+
MarkAsFailed = "MARK_AS_FAILED",
|
|
5895
|
+
MarkAsPassed = "MARK_AS_PASSED",
|
|
5896
|
+
MarkAsSkipped = "MARK_AS_SKIPPED"
|
|
5897
|
+
}
|
|
5898
|
+
export declare type CompassScorecardCriteriaScoringStrategyRules = {
|
|
5899
|
+
__typename?: 'CompassScorecardCriteriaScoringStrategyRules';
|
|
5900
|
+
onFalse?: Maybe<Scalars['String']['output']>;
|
|
5901
|
+
onTrue?: Maybe<Scalars['String']['output']>;
|
|
5902
|
+
};
|
|
5871
5903
|
export declare type CompassScorecardCriterionScore = {
|
|
5872
5904
|
criterionId: Scalars['ID']['output'];
|
|
5873
5905
|
explanation: Scalars['String']['output'];
|
|
@@ -6062,6 +6094,10 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
6062
6094
|
__typename?: 'CompassScorecardScoreStatusDuration';
|
|
6063
6095
|
since: Scalars['DateTime']['output'];
|
|
6064
6096
|
};
|
|
6097
|
+
export declare enum CompassScorecardScoringStrategyType {
|
|
6098
|
+
PointBased = "POINT_BASED",
|
|
6099
|
+
WeightBased = "WEIGHT_BASED"
|
|
6100
|
+
}
|
|
6065
6101
|
export declare type CompassScorecardTypesFilter = {
|
|
6066
6102
|
in: Array<Scalars['String']['input']>;
|
|
6067
6103
|
};
|
|
@@ -6385,6 +6421,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
6385
6421
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6386
6422
|
id: Scalars['ID']['input'];
|
|
6387
6423
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6424
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6388
6425
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6389
6426
|
};
|
|
6390
6427
|
export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
@@ -6393,6 +6430,7 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
6393
6430
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6394
6431
|
id: Scalars['ID']['input'];
|
|
6395
6432
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6433
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6396
6434
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6397
6435
|
};
|
|
6398
6436
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
@@ -6401,6 +6439,7 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
6401
6439
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6402
6440
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
6403
6441
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
6442
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6404
6443
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6405
6444
|
};
|
|
6406
6445
|
export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
@@ -6409,12 +6448,14 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
6409
6448
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
6410
6449
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6411
6450
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6451
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6412
6452
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6413
6453
|
};
|
|
6414
6454
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
6415
6455
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6416
6456
|
id: Scalars['ID']['input'];
|
|
6417
6457
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6458
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
6418
6459
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6419
6460
|
};
|
|
6420
6461
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
@@ -6437,6 +6478,10 @@ export declare type CompassUpdatePermissionConfigsPayload = Payload & {
|
|
|
6437
6478
|
success: Scalars['Boolean']['output'];
|
|
6438
6479
|
updatedCustomPermissionConfigs?: Maybe<CompassCustomPermissionConfigs>;
|
|
6439
6480
|
};
|
|
6481
|
+
export declare type CompassUpdateScorecardCriteriaScoringStrategyRulesInput = {
|
|
6482
|
+
onFalse?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
6483
|
+
onTrue?: InputMaybe<CompassScorecardCriteriaScoringStrategyRuleAction>;
|
|
6484
|
+
};
|
|
6440
6485
|
export declare type CompassUpdateTeamCheckinActionInput = {
|
|
6441
6486
|
actionText?: InputMaybe<Scalars['String']['input']>;
|
|
6442
6487
|
completed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -15268,16 +15313,19 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
15268
15313
|
};
|
|
15269
15314
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
15270
15315
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15316
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15271
15317
|
weight: Scalars['Int']['input'];
|
|
15272
15318
|
};
|
|
15273
15319
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
15274
15320
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
15275
15321
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15322
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15276
15323
|
weight: Scalars['Int']['input'];
|
|
15277
15324
|
};
|
|
15278
15325
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
15279
15326
|
linkType: CompassLinkType;
|
|
15280
15327
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15328
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15281
15329
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
15282
15330
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
15283
15331
|
weight: Scalars['Int']['input'];
|
|
@@ -15292,6 +15340,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
15292
15340
|
};
|
|
15293
15341
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
15294
15342
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15343
|
+
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
15295
15344
|
weight: Scalars['Int']['input'];
|
|
15296
15345
|
};
|
|
15297
15346
|
export declare type CreateCompassLinkInput = {
|
|
@@ -15333,6 +15382,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
15333
15382
|
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15334
15383
|
name: Scalars['String']['input'];
|
|
15335
15384
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
15385
|
+
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
15336
15386
|
};
|
|
15337
15387
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
15338
15388
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -19291,6 +19341,7 @@ export declare type ExternalAttachment = {
|
|
|
19291
19341
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19292
19342
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19293
19343
|
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
19344
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
19294
19345
|
url?: Maybe<Scalars['String']['output']>;
|
|
19295
19346
|
};
|
|
19296
19347
|
export declare type ExternalAuthCredentialsInput = {
|
|
@@ -19501,6 +19552,7 @@ export declare type ExternalDocument = Node & {
|
|
|
19501
19552
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19502
19553
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19503
19554
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19555
|
+
parent?: Maybe<ExternalEntity>;
|
|
19504
19556
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19505
19557
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19506
19558
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -19648,6 +19700,7 @@ export declare type ExternalMessage = Node & {
|
|
|
19648
19700
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19649
19701
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19650
19702
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19703
|
+
parent?: Maybe<ExternalEntity>;
|
|
19651
19704
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19652
19705
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19653
19706
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
@@ -24565,6 +24618,7 @@ export declare type GraphStore = {
|
|
|
24565
24618
|
atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
24566
24619
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
24567
24620
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
24621
|
+
componentAssociatedDocumentInverse?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentInverseConnection>;
|
|
24568
24622
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
24569
24623
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
24570
24624
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
@@ -24587,6 +24641,18 @@ export declare type GraphStore = {
|
|
|
24587
24641
|
focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
24588
24642
|
focusAreaAssociatedToProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseConnection>;
|
|
24589
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>;
|
|
24590
24656
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
24591
24657
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
24592
24658
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -24649,6 +24715,7 @@ export declare type GraphStore = {
|
|
|
24649
24715
|
issueAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection>;
|
|
24650
24716
|
issueAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
24651
24717
|
issueAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
24718
|
+
issueChangesComponent?: Maybe<GraphStoreSimplifiedIssueChangesComponentConnection>;
|
|
24652
24719
|
issueChangesComponentInverse?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseConnection>;
|
|
24653
24720
|
issueChangesComponentInverseRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
24654
24721
|
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
@@ -24813,6 +24880,8 @@ export declare type GraphStore = {
|
|
|
24813
24880
|
securityContainerAssociatedToVulnerabilityInverseBatch?: Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
24814
24881
|
securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
24815
24882
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
24883
|
+
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
24884
|
+
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
24816
24885
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
24817
24886
|
serviceLinkedIncidentInverse?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseConnection>;
|
|
24818
24887
|
serviceLinkedIncidentInverseRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
@@ -24850,6 +24919,7 @@ export declare type GraphStore = {
|
|
|
24850
24919
|
sprintRetrospectiveWhiteboard?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardConnection>;
|
|
24851
24920
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
24852
24921
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
24922
|
+
teamOwnsComponent?: Maybe<GraphStoreSimplifiedTeamOwnsComponentConnection>;
|
|
24853
24923
|
teamWorksOnProject?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectConnection>;
|
|
24854
24924
|
teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
24855
24925
|
teamWorksOnProjectRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
@@ -24866,8 +24936,6 @@ export declare type GraphStore = {
|
|
|
24866
24936
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
24867
24937
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
24868
24938
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
24869
|
-
userIsInTeamInverseRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
24870
|
-
userIsInTeamRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
24871
24939
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
24872
24940
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
24873
24941
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -24953,31 +25021,25 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalRelationshipArgs
|
|
|
24953
25021
|
};
|
|
24954
25022
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicArgs = {
|
|
24955
25023
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24956
|
-
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24957
25024
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24958
25025
|
id: Scalars['ID']['input'];
|
|
24959
25026
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24960
25027
|
};
|
|
24961
25028
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseArgs = {
|
|
24962
25029
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24963
|
-
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24964
25030
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24965
25031
|
id: Scalars['ID']['input'];
|
|
24966
25032
|
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24967
25033
|
};
|
|
24968
25034
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseRelationshipArgs = {
|
|
24969
25035
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24970
|
-
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24971
25036
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24972
25037
|
id: Scalars['ID']['input'];
|
|
24973
|
-
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24974
25038
|
};
|
|
24975
25039
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs = {
|
|
24976
25040
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24977
|
-
filter?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput>;
|
|
24978
25041
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24979
25042
|
id: Scalars['ID']['input'];
|
|
24980
|
-
sort?: InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput>;
|
|
24981
25043
|
};
|
|
24982
25044
|
export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
24983
25045
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -24985,6 +25047,12 @@ export declare type GraphStoreComponentAssociatedDocumentArgs = {
|
|
|
24985
25047
|
id: Scalars['ID']['input'];
|
|
24986
25048
|
sort?: InputMaybe<GraphStoreComponentAssociatedDocumentSortInput>;
|
|
24987
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
|
+
};
|
|
24988
25056
|
export declare type GraphStoreComponentAssociatedDocumentInverseRelationshipArgs = {
|
|
24989
25057
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
24990
25058
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -25055,6 +25123,7 @@ export declare type GraphStoreContentReferencedEntityBatchArgs = {
|
|
|
25055
25123
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25056
25124
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25057
25125
|
ids: Array<Scalars['ID']['input']>;
|
|
25126
|
+
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
25058
25127
|
};
|
|
25059
25128
|
export declare type GraphStoreContentReferencedEntityInverseArgs = {
|
|
25060
25129
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25066,6 +25135,7 @@ export declare type GraphStoreContentReferencedEntityInverseBatchArgs = {
|
|
|
25066
25135
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25067
25136
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25068
25137
|
ids: Array<Scalars['ID']['input']>;
|
|
25138
|
+
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
25069
25139
|
};
|
|
25070
25140
|
export declare type GraphStoreContentReferencedEntityInverseRelationshipArgs = {
|
|
25071
25141
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25093,6 +25163,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectBatchArgs = {
|
|
|
25093
25163
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25094
25164
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25095
25165
|
ids: Array<Scalars['ID']['input']>;
|
|
25166
|
+
sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
|
|
25096
25167
|
};
|
|
25097
25168
|
export declare type GraphStoreFocusAreaAssociatedToProjectInverseArgs = {
|
|
25098
25169
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25104,6 +25175,79 @@ export declare type GraphStoreFocusAreaAssociatedToProjectInverseBatchArgs = {
|
|
|
25104
25175
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25105
25176
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25106
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>;
|
|
25107
25251
|
};
|
|
25108
25252
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
25109
25253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25115,6 +25259,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewBatchArgs = {
|
|
|
25115
25259
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25116
25260
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25117
25261
|
ids: Array<Scalars['ID']['input']>;
|
|
25262
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
25118
25263
|
};
|
|
25119
25264
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseArgs = {
|
|
25120
25265
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25126,6 +25271,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseBatchAr
|
|
|
25126
25271
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25127
25272
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25128
25273
|
ids: Array<Scalars['ID']['input']>;
|
|
25274
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
25129
25275
|
};
|
|
25130
25276
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseRelationshipArgs = {
|
|
25131
25277
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25142,6 +25288,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkBatchArgs
|
|
|
25142
25288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25143
25289
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25144
25290
|
ids: Array<Scalars['ID']['input']>;
|
|
25291
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
25145
25292
|
};
|
|
25146
25293
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseArgs = {
|
|
25147
25294
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25153,6 +25300,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseBat
|
|
|
25153
25300
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25154
25301
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25155
25302
|
ids: Array<Scalars['ID']['input']>;
|
|
25303
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
25156
25304
|
};
|
|
25157
25305
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseRelationshipArgs = {
|
|
25158
25306
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25179,6 +25327,7 @@ export declare type GraphStoreIncidentHasActionItemBatchArgs = {
|
|
|
25179
25327
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25180
25328
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25181
25329
|
ids: Array<Scalars['ID']['input']>;
|
|
25330
|
+
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
25182
25331
|
};
|
|
25183
25332
|
export declare type GraphStoreIncidentHasActionItemInverseArgs = {
|
|
25184
25333
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25190,6 +25339,7 @@ export declare type GraphStoreIncidentHasActionItemInverseBatchArgs = {
|
|
|
25190
25339
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25191
25340
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25192
25341
|
ids: Array<Scalars['ID']['input']>;
|
|
25342
|
+
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
25193
25343
|
};
|
|
25194
25344
|
export declare type GraphStoreIncidentHasActionItemInverseRelationshipArgs = {
|
|
25195
25345
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25211,6 +25361,7 @@ export declare type GraphStoreIncidentLinkedJswIssueBatchArgs = {
|
|
|
25211
25361
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25212
25362
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25213
25363
|
ids: Array<Scalars['ID']['input']>;
|
|
25364
|
+
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
25214
25365
|
};
|
|
25215
25366
|
export declare type GraphStoreIncidentLinkedJswIssueInverseArgs = {
|
|
25216
25367
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25222,6 +25373,7 @@ export declare type GraphStoreIncidentLinkedJswIssueInverseBatchArgs = {
|
|
|
25222
25373
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25223
25374
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25224
25375
|
ids: Array<Scalars['ID']['input']>;
|
|
25376
|
+
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
25225
25377
|
};
|
|
25226
25378
|
export declare type GraphStoreIncidentLinkedJswIssueInverseRelationshipArgs = {
|
|
25227
25379
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25253,6 +25405,7 @@ export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
|
25253
25405
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25254
25406
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25255
25407
|
ids: Array<Scalars['ID']['input']>;
|
|
25408
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
25256
25409
|
};
|
|
25257
25410
|
export declare type GraphStoreIssueAssociatedBuildInverseArgs = {
|
|
25258
25411
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25264,6 +25417,7 @@ export declare type GraphStoreIssueAssociatedBuildInverseBatchArgs = {
|
|
|
25264
25417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25265
25418
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25266
25419
|
ids: Array<Scalars['ID']['input']>;
|
|
25420
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
25267
25421
|
};
|
|
25268
25422
|
export declare type GraphStoreIssueAssociatedBuildInverseRelationshipArgs = {
|
|
25269
25423
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25293,35 +25447,45 @@ export declare type GraphStoreIssueAssociatedCommitRelationshipArgs = {
|
|
|
25293
25447
|
};
|
|
25294
25448
|
export declare type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
25295
25449
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25450
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25296
25451
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25297
25452
|
id: Scalars['ID']['input'];
|
|
25298
25453
|
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25299
25454
|
};
|
|
25300
25455
|
export declare type GraphStoreIssueAssociatedDeploymentBatchArgs = {
|
|
25301
25456
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25457
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25302
25458
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25303
25459
|
ids: Array<Scalars['ID']['input']>;
|
|
25460
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25304
25461
|
};
|
|
25305
25462
|
export declare type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
25306
25463
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25464
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25307
25465
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25308
25466
|
id: Scalars['ID']['input'];
|
|
25309
25467
|
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25310
25468
|
};
|
|
25311
25469
|
export declare type GraphStoreIssueAssociatedDeploymentInverseBatchArgs = {
|
|
25312
25470
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25471
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25313
25472
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25314
25473
|
ids: Array<Scalars['ID']['input']>;
|
|
25474
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25315
25475
|
};
|
|
25316
25476
|
export declare type GraphStoreIssueAssociatedDeploymentInverseRelationshipArgs = {
|
|
25317
25477
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25478
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25318
25479
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25319
25480
|
id: Scalars['ID']['input'];
|
|
25481
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25320
25482
|
};
|
|
25321
25483
|
export declare type GraphStoreIssueAssociatedDeploymentRelationshipArgs = {
|
|
25322
25484
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25485
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25323
25486
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25324
25487
|
id: Scalars['ID']['input'];
|
|
25488
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25325
25489
|
};
|
|
25326
25490
|
export declare type GraphStoreIssueAssociatedDesignArgs = {
|
|
25327
25491
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25377,6 +25541,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkBatchArgs = {
|
|
|
25377
25541
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25378
25542
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25379
25543
|
ids: Array<Scalars['ID']['input']>;
|
|
25544
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
25380
25545
|
};
|
|
25381
25546
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseArgs = {
|
|
25382
25547
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25388,6 +25553,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseBatchArgs = {
|
|
|
25388
25553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25389
25554
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25390
25555
|
ids: Array<Scalars['ID']['input']>;
|
|
25556
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
25391
25557
|
};
|
|
25392
25558
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseRelationshipArgs = {
|
|
25393
25559
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25437,6 +25603,12 @@ export declare type GraphStoreIssueAssociatedRemoteLinkRelationshipArgs = {
|
|
|
25437
25603
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25438
25604
|
id: Scalars['ID']['input'];
|
|
25439
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
|
+
};
|
|
25440
25612
|
export declare type GraphStoreIssueChangesComponentInverseArgs = {
|
|
25441
25613
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25442
25614
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -25595,6 +25767,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceBatchArgs = {
|
|
|
25595
25767
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25596
25768
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25597
25769
|
ids: Array<Scalars['ID']['input']>;
|
|
25770
|
+
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
25598
25771
|
};
|
|
25599
25772
|
export declare type GraphStoreJsmProjectAssociatedServiceInverseArgs = {
|
|
25600
25773
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25606,6 +25779,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceInverseBatchArgs = {
|
|
|
25606
25779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25607
25780
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25608
25781
|
ids: Array<Scalars['ID']['input']>;
|
|
25782
|
+
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
25609
25783
|
};
|
|
25610
25784
|
export declare type GraphStoreJsmProjectAssociatedServiceInverseRelationshipArgs = {
|
|
25611
25785
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25721,11 +25895,13 @@ export declare type GraphStoreMediaAttachedToContentBatchArgs = {
|
|
|
25721
25895
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25722
25896
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25723
25897
|
ids: Array<Scalars['ID']['input']>;
|
|
25898
|
+
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
25724
25899
|
};
|
|
25725
25900
|
export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
25726
25901
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25727
25902
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25728
25903
|
ids: Array<Scalars['ID']['input']>;
|
|
25904
|
+
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
25729
25905
|
};
|
|
25730
25906
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
25731
25907
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26362,11 +26538,13 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityBatchArg
|
|
|
26362
26538
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26363
26539
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26364
26540
|
ids: Array<Scalars['ID']['input']>;
|
|
26541
|
+
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
26365
26542
|
};
|
|
26366
26543
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseBatchArgs = {
|
|
26367
26544
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26368
26545
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26369
26546
|
ids: Array<Scalars['ID']['input']>;
|
|
26547
|
+
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
26370
26548
|
};
|
|
26371
26549
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseRelationshipArgs = {
|
|
26372
26550
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26378,6 +26556,18 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityRelation
|
|
|
26378
26556
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26379
26557
|
id: Scalars['ID']['input'];
|
|
26380
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
|
+
};
|
|
26381
26571
|
export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
26382
26572
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26383
26573
|
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
@@ -26612,6 +26802,12 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
|
|
|
26612
26802
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26613
26803
|
id: Scalars['ID']['input'];
|
|
26614
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
|
+
};
|
|
26615
26811
|
export declare type GraphStoreTeamWorksOnProjectArgs = {
|
|
26616
26812
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26617
26813
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -26674,6 +26870,7 @@ export declare type GraphStoreTestPerfhammerRelationshipBatchArgs = {
|
|
|
26674
26870
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26675
26871
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26676
26872
|
ids: Array<Scalars['ID']['input']>;
|
|
26873
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
26677
26874
|
};
|
|
26678
26875
|
export declare type GraphStoreTestPerfhammerRelationshipInverseArgs = {
|
|
26679
26876
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26685,6 +26882,7 @@ export declare type GraphStoreTestPerfhammerRelationshipInverseBatchArgs = {
|
|
|
26685
26882
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26686
26883
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26687
26884
|
ids: Array<Scalars['ID']['input']>;
|
|
26885
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
26688
26886
|
};
|
|
26689
26887
|
export declare type GraphStoreTestPerfhammerRelationshipInverseRelationshipArgs = {
|
|
26690
26888
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26696,16 +26894,6 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
26696
26894
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26697
26895
|
id: Scalars['ID']['input'];
|
|
26698
26896
|
};
|
|
26699
|
-
export declare type GraphStoreUserIsInTeamInverseRelationshipArgs = {
|
|
26700
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
26701
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26702
|
-
id: Scalars['ID']['input'];
|
|
26703
|
-
};
|
|
26704
|
-
export declare type GraphStoreUserIsInTeamRelationshipArgs = {
|
|
26705
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
26706
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26707
|
-
id: Scalars['ID']['input'];
|
|
26708
|
-
};
|
|
26709
26897
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
26710
26898
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26711
26899
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -26963,25 +27151,8 @@ export declare type GraphStoreAtiFilterInput = {
|
|
|
26963
27151
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
26964
27152
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
26965
27153
|
};
|
|
26966
|
-
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput = {
|
|
26967
|
-
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
26968
|
-
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
26969
|
-
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
26970
|
-
relationship_syncLabels?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
26971
|
-
relationship_synced?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
26972
|
-
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
26973
|
-
};
|
|
26974
|
-
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicFilterInput = {
|
|
26975
|
-
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput>>>;
|
|
26976
|
-
or?: InputMaybe<Array<InputMaybe<GraphStoreAtlasProjectIsTrackedOnJiraEpicConditionalFilterInput>>>;
|
|
26977
|
-
};
|
|
26978
27154
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
26979
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
26980
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
26981
27155
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
26982
|
-
relationship_syncLabels?: InputMaybe<GraphStoreSortInput>;
|
|
26983
|
-
relationship_synced?: InputMaybe<GraphStoreSortInput>;
|
|
26984
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
26985
27156
|
};
|
|
26986
27157
|
export declare type GraphStoreBatchContentReferencedEntityConnection = HasPageInfo & {
|
|
26987
27158
|
__typename?: 'GraphStoreBatchContentReferencedEntityConnection';
|
|
@@ -26998,7 +27169,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = Node & {
|
|
|
26998
27169
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
26999
27170
|
id: Scalars['ID']['output'];
|
|
27000
27171
|
};
|
|
27001
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = ConfluencePage | JiraIssue;
|
|
27172
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
27002
27173
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
27003
27174
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
27004
27175
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -27065,6 +27236,129 @@ export declare type GraphStoreBatchFocusAreaAssociatedToProjectStartNode = Node
|
|
|
27065
27236
|
id: Scalars['ID']['output'];
|
|
27066
27237
|
};
|
|
27067
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;
|
|
27068
27362
|
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
27069
27363
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
|
|
27070
27364
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -27569,6 +27863,20 @@ export declare type GraphStoreCreateComponentImpactedByIncidentRelationshipObjec
|
|
|
27569
27863
|
reporterAri?: InputMaybe<Scalars['String']['input']>;
|
|
27570
27864
|
status?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentJiraIncidentStatusInput>;
|
|
27571
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
|
+
};
|
|
27572
27880
|
export declare type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
27573
27881
|
relationships: Array<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
27574
27882
|
};
|
|
@@ -27765,20 +28073,6 @@ export declare type GraphStoreCreateProjectHasVersionRelationshipInput = {
|
|
|
27765
28073
|
to: Scalars['ID']['input'];
|
|
27766
28074
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27767
28075
|
};
|
|
27768
|
-
export declare type GraphStoreCreateSpaceAssociatedWithProjectInput = {
|
|
27769
|
-
relationships: Array<GraphStoreCreateSpaceAssociatedWithProjectRelationshipInput>;
|
|
27770
|
-
};
|
|
27771
|
-
export declare type GraphStoreCreateSpaceAssociatedWithProjectPayload = Payload & {
|
|
27772
|
-
__typename?: 'GraphStoreCreateSpaceAssociatedWithProjectPayload';
|
|
27773
|
-
errors?: Maybe<Array<MutationError>>;
|
|
27774
|
-
success: Scalars['Boolean']['output'];
|
|
27775
|
-
};
|
|
27776
|
-
export declare type GraphStoreCreateSpaceAssociatedWithProjectRelationshipInput = {
|
|
27777
|
-
from: Scalars['ID']['input'];
|
|
27778
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
27779
|
-
to: Scalars['ID']['input'];
|
|
27780
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27781
|
-
};
|
|
27782
28076
|
export declare type GraphStoreCreateSprintRetrospectivePageInput = {
|
|
27783
28077
|
relationships: Array<GraphStoreCreateSprintRetrospectivePageRelationshipInput>;
|
|
27784
28078
|
};
|
|
@@ -27917,6 +28211,18 @@ export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput
|
|
|
27917
28211
|
from: Scalars['ID']['input'];
|
|
27918
28212
|
to: Scalars['ID']['input'];
|
|
27919
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
|
+
};
|
|
27920
28226
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
27921
28227
|
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
27922
28228
|
};
|
|
@@ -28085,18 +28391,6 @@ export declare type GraphStoreDeleteProjectHasVersionRelationshipInput = {
|
|
|
28085
28391
|
from: Scalars['ID']['input'];
|
|
28086
28392
|
to: Scalars['ID']['input'];
|
|
28087
28393
|
};
|
|
28088
|
-
export declare type GraphStoreDeleteSpaceAssociatedWithProjectInput = {
|
|
28089
|
-
relationships: Array<GraphStoreDeleteSpaceAssociatedWithProjectRelationshipInput>;
|
|
28090
|
-
};
|
|
28091
|
-
export declare type GraphStoreDeleteSpaceAssociatedWithProjectPayload = Payload & {
|
|
28092
|
-
__typename?: 'GraphStoreDeleteSpaceAssociatedWithProjectPayload';
|
|
28093
|
-
errors?: Maybe<Array<MutationError>>;
|
|
28094
|
-
success: Scalars['Boolean']['output'];
|
|
28095
|
-
};
|
|
28096
|
-
export declare type GraphStoreDeleteSpaceAssociatedWithProjectRelationshipInput = {
|
|
28097
|
-
from: Scalars['ID']['input'];
|
|
28098
|
-
to: Scalars['ID']['input'];
|
|
28099
|
-
};
|
|
28100
28394
|
export declare type GraphStoreDeleteSprintRetrospectivePageInput = {
|
|
28101
28395
|
relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
|
|
28102
28396
|
};
|
|
@@ -28180,6 +28474,18 @@ export declare type GraphStoreFloatFilterInput = {
|
|
|
28180
28474
|
export declare type GraphStoreFocusAreaAssociatedToProjectSortInput = {
|
|
28181
28475
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
28182
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
|
+
};
|
|
28183
28489
|
export declare type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection = HasPageInfo & {
|
|
28184
28490
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection';
|
|
28185
28491
|
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEdge>>;
|
|
@@ -28329,8 +28635,10 @@ export declare type GraphStoreFullComponentAssociatedDocumentNode = Node & {
|
|
|
28329
28635
|
};
|
|
28330
28636
|
export declare type GraphStoreFullComponentAssociatedDocumentStartNode = {
|
|
28331
28637
|
__typename?: 'GraphStoreFullComponentAssociatedDocumentStartNode';
|
|
28638
|
+
data?: Maybe<GraphStoreFullComponentAssociatedDocumentStartUnion>;
|
|
28332
28639
|
id: Scalars['ID']['output'];
|
|
28333
28640
|
};
|
|
28641
|
+
export declare type GraphStoreFullComponentAssociatedDocumentStartUnion = CompassComponent;
|
|
28334
28642
|
export declare type GraphStoreFullComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
28335
28643
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentConnection';
|
|
28336
28644
|
edges: Array<Maybe<GraphStoreFullComponentImpactedByIncidentEdge>>;
|
|
@@ -28388,7 +28696,7 @@ export declare type GraphStoreFullComponentImpactedByIncidentStartNode = {
|
|
|
28388
28696
|
data?: Maybe<GraphStoreFullComponentImpactedByIncidentStartUnion>;
|
|
28389
28697
|
id: Scalars['ID']['output'];
|
|
28390
28698
|
};
|
|
28391
|
-
export declare type GraphStoreFullComponentImpactedByIncidentStartUnion = DevOpsOperationsComponentDetails;
|
|
28699
|
+
export declare type GraphStoreFullComponentImpactedByIncidentStartUnion = CompassComponent | DevOpsOperationsComponentDetails;
|
|
28392
28700
|
export declare type GraphStoreFullComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
28393
28701
|
__typename?: 'GraphStoreFullComponentLinkedJswIssueConnection';
|
|
28394
28702
|
edges: Array<Maybe<GraphStoreFullComponentLinkedJswIssueEdge>>;
|
|
@@ -28421,7 +28729,7 @@ export declare type GraphStoreFullComponentLinkedJswIssueStartNode = {
|
|
|
28421
28729
|
data?: Maybe<GraphStoreFullComponentLinkedJswIssueStartUnion>;
|
|
28422
28730
|
id: Scalars['ID']['output'];
|
|
28423
28731
|
};
|
|
28424
|
-
export declare type GraphStoreFullComponentLinkedJswIssueStartUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
28732
|
+
export declare type GraphStoreFullComponentLinkedJswIssueStartUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
28425
28733
|
export declare type GraphStoreFullContentReferencedEntityConnection = HasPageInfo & {
|
|
28426
28734
|
__typename?: 'GraphStoreFullContentReferencedEntityConnection';
|
|
28427
28735
|
edges: Array<Maybe<GraphStoreFullContentReferencedEntityEdge>>;
|
|
@@ -28438,7 +28746,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
28438
28746
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
28439
28747
|
id: Scalars['ID']['output'];
|
|
28440
28748
|
};
|
|
28441
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = ConfluencePage | JiraIssue;
|
|
28749
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
28442
28750
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
28443
28751
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
28444
28752
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -28698,11 +29006,13 @@ export declare type GraphStoreFullIssueAssociatedDeploymentAuthorOutput = {
|
|
|
28698
29006
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentAuthorOutput';
|
|
28699
29007
|
authorAri?: Maybe<Scalars['String']['output']>;
|
|
28700
29008
|
};
|
|
28701
|
-
export declare type GraphStoreFullIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
29009
|
+
export declare type GraphStoreFullIssueAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
28702
29010
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentConnection';
|
|
28703
29011
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentEdge>>;
|
|
29012
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
28704
29013
|
nodes: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentNode>>;
|
|
28705
29014
|
pageInfo: PageInfo;
|
|
29015
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
28706
29016
|
};
|
|
28707
29017
|
export declare enum GraphStoreFullIssueAssociatedDeploymentDeploymentStateOutput {
|
|
28708
29018
|
Cancelled = "CANCELLED",
|
|
@@ -29014,8 +29324,10 @@ export declare type GraphStoreFullIssueChangesComponentEdge = {
|
|
|
29014
29324
|
};
|
|
29015
29325
|
export declare type GraphStoreFullIssueChangesComponentEndNode = {
|
|
29016
29326
|
__typename?: 'GraphStoreFullIssueChangesComponentEndNode';
|
|
29327
|
+
data?: Maybe<GraphStoreFullIssueChangesComponentEndUnion>;
|
|
29017
29328
|
id: Scalars['ID']['output'];
|
|
29018
29329
|
};
|
|
29330
|
+
export declare type GraphStoreFullIssueChangesComponentEndUnion = CompassComponent;
|
|
29019
29331
|
export declare type GraphStoreFullIssueChangesComponentNode = Node & {
|
|
29020
29332
|
__typename?: 'GraphStoreFullIssueChangesComponentNode';
|
|
29021
29333
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -29277,7 +29589,7 @@ export declare type GraphStoreFullJswProjectAssociatedComponentEndNode = {
|
|
|
29277
29589
|
data?: Maybe<GraphStoreFullJswProjectAssociatedComponentEndUnion>;
|
|
29278
29590
|
id: Scalars['ID']['output'];
|
|
29279
29591
|
};
|
|
29280
|
-
export declare type GraphStoreFullJswProjectAssociatedComponentEndUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
29592
|
+
export declare type GraphStoreFullJswProjectAssociatedComponentEndUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
29281
29593
|
export declare type GraphStoreFullJswProjectAssociatedComponentNode = Node & {
|
|
29282
29594
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentNode';
|
|
29283
29595
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -31159,33 +31471,6 @@ export declare type GraphStoreFullTestPerfhammerRelationshipStartNode = {
|
|
|
31159
31471
|
id: Scalars['ID']['output'];
|
|
31160
31472
|
};
|
|
31161
31473
|
export declare type GraphStoreFullTestPerfhammerRelationshipStartUnion = JiraIssue;
|
|
31162
|
-
export declare type GraphStoreFullUserIsInTeamConnection = HasPageInfo & {
|
|
31163
|
-
__typename?: 'GraphStoreFullUserIsInTeamConnection';
|
|
31164
|
-
edges: Array<Maybe<GraphStoreFullUserIsInTeamEdge>>;
|
|
31165
|
-
nodes: Array<Maybe<GraphStoreFullUserIsInTeamNode>>;
|
|
31166
|
-
pageInfo: PageInfo;
|
|
31167
|
-
};
|
|
31168
|
-
export declare type GraphStoreFullUserIsInTeamEdge = {
|
|
31169
|
-
__typename?: 'GraphStoreFullUserIsInTeamEdge';
|
|
31170
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
31171
|
-
node: GraphStoreFullUserIsInTeamNode;
|
|
31172
|
-
};
|
|
31173
|
-
export declare type GraphStoreFullUserIsInTeamEndNode = {
|
|
31174
|
-
__typename?: 'GraphStoreFullUserIsInTeamEndNode';
|
|
31175
|
-
id: Scalars['ID']['output'];
|
|
31176
|
-
};
|
|
31177
|
-
export declare type GraphStoreFullUserIsInTeamNode = Node & {
|
|
31178
|
-
__typename?: 'GraphStoreFullUserIsInTeamNode';
|
|
31179
|
-
createdAt: Scalars['DateTime']['output'];
|
|
31180
|
-
from: GraphStoreFullUserIsInTeamStartNode;
|
|
31181
|
-
id: Scalars['ID']['output'];
|
|
31182
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
31183
|
-
to: GraphStoreFullUserIsInTeamEndNode;
|
|
31184
|
-
};
|
|
31185
|
-
export declare type GraphStoreFullUserIsInTeamStartNode = {
|
|
31186
|
-
__typename?: 'GraphStoreFullUserIsInTeamStartNode';
|
|
31187
|
-
id: Scalars['ID']['output'];
|
|
31188
|
-
};
|
|
31189
31474
|
export declare type GraphStoreFullVersionAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
31190
31475
|
__typename?: 'GraphStoreFullVersionAssociatedBranchConnection';
|
|
31191
31476
|
edges: Array<Maybe<GraphStoreFullVersionAssociatedBranchEdge>>;
|
|
@@ -31635,8 +31920,61 @@ export declare type GraphStoreIssueAssociatedBuildSortInput = {
|
|
|
31635
31920
|
export declare type GraphStoreIssueAssociatedCommitSortInput = {
|
|
31636
31921
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
31637
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
|
+
};
|
|
31638
31970
|
export declare type GraphStoreIssueAssociatedDeploymentSortInput = {
|
|
31971
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
31972
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
31639
31973
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
31974
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
31975
|
+
to_author?: InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorSortInput>;
|
|
31976
|
+
to_environmentType?: InputMaybe<GraphStoreSortInput>;
|
|
31977
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
31640
31978
|
};
|
|
31641
31979
|
export declare type GraphStoreIssueAssociatedDesignSortInput = {
|
|
31642
31980
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -31783,6 +32121,7 @@ export declare type GraphStoreMediaAttachedToContentSortInput = {
|
|
|
31783
32121
|
export declare type GraphStoreMutation = {
|
|
31784
32122
|
__typename?: 'GraphStoreMutation';
|
|
31785
32123
|
createComponentImpactedByIncident?: Maybe<GraphStoreCreateComponentImpactedByIncidentPayload>;
|
|
32124
|
+
createFocusAreaHasAtlasGoal?: Maybe<GraphStoreCreateFocusAreaHasAtlasGoalPayload>;
|
|
31786
32125
|
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
31787
32126
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
31788
32127
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
@@ -31797,7 +32136,6 @@ export declare type GraphStoreMutation = {
|
|
|
31797
32136
|
createProjectHasRelatedWorkWithProject?: Maybe<GraphStoreCreateProjectHasRelatedWorkWithProjectPayload>;
|
|
31798
32137
|
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
31799
32138
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
31800
|
-
createSpaceAssociatedWithProject?: Maybe<GraphStoreCreateSpaceAssociatedWithProjectPayload>;
|
|
31801
32139
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
31802
32140
|
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
31803
32141
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
@@ -31805,6 +32143,7 @@ export declare type GraphStoreMutation = {
|
|
|
31805
32143
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
31806
32144
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
31807
32145
|
deleteComponentImpactedByIncident?: Maybe<GraphStoreDeleteComponentImpactedByIncidentPayload>;
|
|
32146
|
+
deleteFocusAreaHasAtlasGoal?: Maybe<GraphStoreDeleteFocusAreaHasAtlasGoalPayload>;
|
|
31808
32147
|
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
31809
32148
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
31810
32149
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
@@ -31819,7 +32158,6 @@ export declare type GraphStoreMutation = {
|
|
|
31819
32158
|
deleteProjectHasRelatedWorkWithProject?: Maybe<GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload>;
|
|
31820
32159
|
deleteProjectHasSharedVersionWith?: Maybe<GraphStoreDeleteProjectHasSharedVersionWithPayload>;
|
|
31821
32160
|
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
31822
|
-
deleteSpaceAssociatedWithProject?: Maybe<GraphStoreDeleteSpaceAssociatedWithProjectPayload>;
|
|
31823
32161
|
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
31824
32162
|
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
31825
32163
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
@@ -31830,6 +32168,9 @@ export declare type GraphStoreMutation = {
|
|
|
31830
32168
|
export declare type GraphStoreMutationCreateComponentImpactedByIncidentArgs = {
|
|
31831
32169
|
input?: InputMaybe<GraphStoreCreateComponentImpactedByIncidentInput>;
|
|
31832
32170
|
};
|
|
32171
|
+
export declare type GraphStoreMutationCreateFocusAreaHasAtlasGoalArgs = {
|
|
32172
|
+
input?: InputMaybe<GraphStoreCreateFocusAreaHasAtlasGoalInput>;
|
|
32173
|
+
};
|
|
31833
32174
|
export declare type GraphStoreMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
31834
32175
|
input?: InputMaybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
31835
32176
|
};
|
|
@@ -31872,9 +32213,6 @@ export declare type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
|
31872
32213
|
export declare type GraphStoreMutationCreateProjectHasVersionArgs = {
|
|
31873
32214
|
input?: InputMaybe<GraphStoreCreateProjectHasVersionInput>;
|
|
31874
32215
|
};
|
|
31875
|
-
export declare type GraphStoreMutationCreateSpaceAssociatedWithProjectArgs = {
|
|
31876
|
-
input?: InputMaybe<GraphStoreCreateSpaceAssociatedWithProjectInput>;
|
|
31877
|
-
};
|
|
31878
32216
|
export declare type GraphStoreMutationCreateSprintRetrospectivePageArgs = {
|
|
31879
32217
|
input?: InputMaybe<GraphStoreCreateSprintRetrospectivePageInput>;
|
|
31880
32218
|
};
|
|
@@ -31896,6 +32234,9 @@ export declare type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
|
31896
32234
|
export declare type GraphStoreMutationDeleteComponentImpactedByIncidentArgs = {
|
|
31897
32235
|
input?: InputMaybe<GraphStoreDeleteComponentImpactedByIncidentInput>;
|
|
31898
32236
|
};
|
|
32237
|
+
export declare type GraphStoreMutationDeleteFocusAreaHasAtlasGoalArgs = {
|
|
32238
|
+
input?: InputMaybe<GraphStoreDeleteFocusAreaHasAtlasGoalInput>;
|
|
32239
|
+
};
|
|
31899
32240
|
export declare type GraphStoreMutationDeleteIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
31900
32241
|
input?: InputMaybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
31901
32242
|
};
|
|
@@ -31938,9 +32279,6 @@ export declare type GraphStoreMutationDeleteProjectHasSharedVersionWithArgs = {
|
|
|
31938
32279
|
export declare type GraphStoreMutationDeleteProjectHasVersionArgs = {
|
|
31939
32280
|
input?: InputMaybe<GraphStoreDeleteProjectHasVersionInput>;
|
|
31940
32281
|
};
|
|
31941
|
-
export declare type GraphStoreMutationDeleteSpaceAssociatedWithProjectArgs = {
|
|
31942
|
-
input?: InputMaybe<GraphStoreDeleteSpaceAssociatedWithProjectInput>;
|
|
31943
|
-
};
|
|
31944
32282
|
export declare type GraphStoreMutationDeleteSprintRetrospectivePageArgs = {
|
|
31945
32283
|
input?: InputMaybe<GraphStoreDeleteSprintRetrospectivePageInput>;
|
|
31946
32284
|
};
|
|
@@ -32409,6 +32747,9 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
32409
32747
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput = {
|
|
32410
32748
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32411
32749
|
};
|
|
32750
|
+
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
32751
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32752
|
+
};
|
|
32412
32753
|
export declare type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
32413
32754
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
32414
32755
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -32506,12 +32847,10 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInvers
|
|
|
32506
32847
|
};
|
|
32507
32848
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseUnion = TownsquareProject;
|
|
32508
32849
|
export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalUnion = TownsquareGoal;
|
|
32509
|
-
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo &
|
|
32850
|
+
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo & {
|
|
32510
32851
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection';
|
|
32511
32852
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge>>>;
|
|
32512
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
32513
32853
|
pageInfo: PageInfo;
|
|
32514
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
32515
32854
|
};
|
|
32516
32855
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
32517
32856
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge';
|
|
@@ -32521,12 +32860,10 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
|
32521
32860
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32522
32861
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion>;
|
|
32523
32862
|
};
|
|
32524
|
-
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection = HasPageInfo &
|
|
32863
|
+
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection = HasPageInfo & {
|
|
32525
32864
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection';
|
|
32526
32865
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge>>>;
|
|
32527
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
32528
32866
|
pageInfo: PageInfo;
|
|
32529
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
32530
32867
|
};
|
|
32531
32868
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge = {
|
|
32532
32869
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge';
|
|
@@ -32551,6 +32888,20 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentEdge = {
|
|
|
32551
32888
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32552
32889
|
node?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentUnion>;
|
|
32553
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;
|
|
32554
32905
|
export declare type GraphStoreSimplifiedComponentAssociatedDocumentUnion = DevOpsDocument;
|
|
32555
32906
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
32556
32907
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentConnection';
|
|
@@ -32578,7 +32929,7 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge =
|
|
|
32578
32929
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32579
32930
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion>;
|
|
32580
32931
|
};
|
|
32581
|
-
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion = DevOpsOperationsComponentDetails;
|
|
32932
|
+
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion = CompassComponent | DevOpsOperationsComponentDetails;
|
|
32582
32933
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
32583
32934
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectConnection = HasPageInfo & {
|
|
32584
32935
|
__typename?: 'GraphStoreSimplifiedComponentLinkIsJiraProjectConnection';
|
|
@@ -32624,7 +32975,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
32624
32975
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32625
32976
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion>;
|
|
32626
32977
|
};
|
|
32627
|
-
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
32978
|
+
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
32628
32979
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
32629
32980
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
32630
32981
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
@@ -32653,7 +33004,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
32653
33004
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
32654
33005
|
};
|
|
32655
33006
|
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluencePage | JiraIssue;
|
|
32656
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = ConfluencePage | JiraIssue;
|
|
33007
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluencePage | JiraIssue;
|
|
32657
33008
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
32658
33009
|
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
32659
33010
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge>>>;
|
|
@@ -32682,6 +33033,94 @@ export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseEdge
|
|
|
32682
33033
|
};
|
|
32683
33034
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectInverseUnion = MercuryFocusArea;
|
|
32684
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;
|
|
32685
33124
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
32686
33125
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
32687
33126
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -32852,10 +33291,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
|
32852
33291
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseUnion>;
|
|
32853
33292
|
};
|
|
32854
33293
|
export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseUnion = JiraIssue;
|
|
32855
|
-
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
33294
|
+
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
32856
33295
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentConnection';
|
|
32857
33296
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentEdge>>>;
|
|
33297
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
32858
33298
|
pageInfo: PageInfo;
|
|
33299
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
32859
33300
|
};
|
|
32860
33301
|
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentEdge = {
|
|
32861
33302
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentEdge';
|
|
@@ -32865,10 +33306,12 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentEdge = {
|
|
|
32865
33306
|
lastUpdated: Scalars['DateTime']['output'];
|
|
32866
33307
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentUnion>;
|
|
32867
33308
|
};
|
|
32868
|
-
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection = HasPageInfo & {
|
|
33309
|
+
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection = HasPageInfo & HasTotal & {
|
|
32869
33310
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection';
|
|
32870
33311
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge>>>;
|
|
33312
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
32871
33313
|
pageInfo: PageInfo;
|
|
33314
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
32872
33315
|
};
|
|
32873
33316
|
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
32874
33317
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge';
|
|
@@ -33006,6 +33449,21 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
|
33006
33449
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion>;
|
|
33007
33450
|
};
|
|
33008
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
|
+
};
|
|
33009
33467
|
export declare type GraphStoreSimplifiedIssueChangesComponentInverseConnection = HasPageInfo & HasTotal & {
|
|
33010
33468
|
__typename?: 'GraphStoreSimplifiedIssueChangesComponentInverseConnection';
|
|
33011
33469
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueChangesComponentInverseEdge>>>;
|
|
@@ -33022,6 +33480,7 @@ export declare type GraphStoreSimplifiedIssueChangesComponentInverseEdge = {
|
|
|
33022
33480
|
node?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseUnion>;
|
|
33023
33481
|
};
|
|
33024
33482
|
export declare type GraphStoreSimplifiedIssueChangesComponentInverseUnion = JiraIssue;
|
|
33483
|
+
export declare type GraphStoreSimplifiedIssueChangesComponentUnion = CompassComponent;
|
|
33025
33484
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
33026
33485
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentConnection';
|
|
33027
33486
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge>>>;
|
|
@@ -33273,7 +33732,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge
|
|
|
33273
33732
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion>;
|
|
33274
33733
|
};
|
|
33275
33734
|
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion = JiraProject;
|
|
33276
|
-
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
33735
|
+
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentUnion = CompassComponent | DevOpsOperationsComponentDetails | DevOpsService;
|
|
33277
33736
|
export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentConnection = HasPageInfo & HasTotal & {
|
|
33278
33737
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentConnection';
|
|
33279
33738
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentEdge>>>;
|
|
@@ -34254,6 +34713,34 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
34254
34713
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
34255
34714
|
};
|
|
34256
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;
|
|
34257
34744
|
export declare type GraphStoreSimplifiedServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
34258
34745
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentConnection';
|
|
34259
34746
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceLinkedIncidentEdge>>>;
|
|
@@ -34406,12 +34893,10 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdg
|
|
|
34406
34893
|
};
|
|
34407
34894
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion = DevOpsPullRequestDetails;
|
|
34408
34895
|
export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageUnion = ConfluencePage;
|
|
34409
|
-
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectConnection = HasPageInfo &
|
|
34896
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectConnection = HasPageInfo & {
|
|
34410
34897
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectConnection';
|
|
34411
34898
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectEdge>>>;
|
|
34412
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
34413
34899
|
pageInfo: PageInfo;
|
|
34414
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
34415
34900
|
};
|
|
34416
34901
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectEdge = {
|
|
34417
34902
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectEdge';
|
|
@@ -34421,12 +34906,10 @@ export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectEdge = {
|
|
|
34421
34906
|
lastUpdated: Scalars['DateTime']['output'];
|
|
34422
34907
|
node?: Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectUnion>;
|
|
34423
34908
|
};
|
|
34424
|
-
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection = HasPageInfo &
|
|
34909
|
+
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection = HasPageInfo & {
|
|
34425
34910
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectInverseConnection';
|
|
34426
34911
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge>>>;
|
|
34427
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
34428
34912
|
pageInfo: PageInfo;
|
|
34429
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
34430
34913
|
};
|
|
34431
34914
|
export declare type GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge = {
|
|
34432
34915
|
__typename?: 'GraphStoreSimplifiedSpaceAssociatedWithProjectInverseEdge';
|
|
@@ -34550,6 +35033,20 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
|
34550
35033
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
34551
35034
|
};
|
|
34552
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;
|
|
34553
35050
|
export declare type GraphStoreSimplifiedTeamWorksOnProjectConnection = HasPageInfo & HasTotal & {
|
|
34554
35051
|
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectConnection';
|
|
34555
35052
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamWorksOnProjectEdge>>>;
|
|
@@ -34899,10 +35396,7 @@ export declare type GraphStoreSortInput = {
|
|
|
34899
35396
|
priority: Scalars['Int']['input'];
|
|
34900
35397
|
};
|
|
34901
35398
|
export declare type GraphStoreSpaceAssociatedWithProjectSortInput = {
|
|
34902
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
34903
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
34904
35399
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34905
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
34906
35400
|
};
|
|
34907
35401
|
export declare enum GraphStoreSprintAssociatedBuildBuildState {
|
|
34908
35402
|
Cancelled = "CANCELLED",
|
|
@@ -35225,6 +35719,9 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardSortInput = {
|
|
|
35225
35719
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35226
35720
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
35227
35721
|
};
|
|
35722
|
+
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
35723
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35724
|
+
};
|
|
35228
35725
|
export declare type GraphStoreTeamWorksOnProjectSortInput = {
|
|
35229
35726
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
35230
35727
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -36079,6 +36576,7 @@ export declare type HelpCenterPortal = {
|
|
|
36079
36576
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
36080
36577
|
name?: Maybe<Scalars['String']['output']>;
|
|
36081
36578
|
portalBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
36579
|
+
projectType?: Maybe<HelpCenterProjectType>;
|
|
36082
36580
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
36083
36581
|
};
|
|
36084
36582
|
export declare type HelpCenterPortalFilter = {
|
|
@@ -36119,6 +36617,10 @@ export declare type HelpCenterProjectMappingUpdatePayload = Payload & {
|
|
|
36119
36617
|
errors?: Maybe<Array<MutationError>>;
|
|
36120
36618
|
success: Scalars['Boolean']['output'];
|
|
36121
36619
|
};
|
|
36620
|
+
export declare enum HelpCenterProjectType {
|
|
36621
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
36622
|
+
ServiceDesk = "SERVICE_DESK"
|
|
36623
|
+
}
|
|
36122
36624
|
export declare type HelpCenterQueryApi = {
|
|
36123
36625
|
__typename?: 'HelpCenterQueryApi';
|
|
36124
36626
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
@@ -36509,6 +37011,7 @@ export declare type HelpLayoutConnectElement = HelpLayoutVisualEntity & Node & {
|
|
|
36509
37011
|
connectElementType: HelpLayoutConnectElementType;
|
|
36510
37012
|
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
36511
37013
|
id: Scalars['ID']['output'];
|
|
37014
|
+
isInstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
36512
37015
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
36513
37016
|
};
|
|
36514
37017
|
export declare enum HelpLayoutConnectElementPages {
|
|
@@ -36609,6 +37112,7 @@ export declare type HelpLayoutForgeElement = HelpLayoutVisualEntity & Node & {
|
|
|
36609
37112
|
forgeElementPage: HelpLayoutForgeElementPages;
|
|
36610
37113
|
forgeElementType: HelpLayoutForgeElementType;
|
|
36611
37114
|
id: Scalars['ID']['output'];
|
|
37115
|
+
isInstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
36612
37116
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
36613
37117
|
};
|
|
36614
37118
|
export declare enum HelpLayoutForgeElementPages {
|
|
@@ -36792,6 +37296,7 @@ export declare type HelpLayoutPortalCard = {
|
|
|
36792
37296
|
name?: Maybe<Scalars['String']['output']>;
|
|
36793
37297
|
portalBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
36794
37298
|
portalId?: Maybe<Scalars['String']['output']>;
|
|
37299
|
+
projectType?: Maybe<HelpLayoutProjectType>;
|
|
36795
37300
|
};
|
|
36796
37301
|
export declare type HelpLayoutPortalsListData = {
|
|
36797
37302
|
__typename?: 'HelpLayoutPortalsListData';
|
|
@@ -36808,6 +37313,10 @@ export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node
|
|
|
36808
37313
|
export declare type HelpLayoutPortalsListInput = {
|
|
36809
37314
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
36810
37315
|
};
|
|
37316
|
+
export declare enum HelpLayoutProjectType {
|
|
37317
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
37318
|
+
ServiceDesk = "SERVICE_DESK"
|
|
37319
|
+
}
|
|
36811
37320
|
export declare type HelpLayoutQueryApi = {
|
|
36812
37321
|
__typename?: 'HelpLayoutQueryApi';
|
|
36813
37322
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -37127,6 +37636,7 @@ export declare type HelpObjectStoreSearchInput = {
|
|
|
37127
37636
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
37128
37637
|
cloudId: Scalars['ID']['input'];
|
|
37129
37638
|
entityType: HelpObjectStoreSearchEntityType;
|
|
37639
|
+
highlightArticles?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37130
37640
|
portalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
37131
37641
|
queryTerm: Scalars['String']['input'];
|
|
37132
37642
|
resultLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -37742,6 +38252,7 @@ export declare type InstallationSummaryApp = {
|
|
|
37742
38252
|
installationId?: Maybe<Scalars['ID']['output']>;
|
|
37743
38253
|
isSystemApp?: Maybe<Scalars['Boolean']['output']>;
|
|
37744
38254
|
name?: Maybe<Scalars['String']['output']>;
|
|
38255
|
+
oauthClientId?: Maybe<Scalars['String']['output']>;
|
|
37745
38256
|
};
|
|
37746
38257
|
export declare type InstallationSummaryAppEnvironment = {
|
|
37747
38258
|
__typename?: 'InstallationSummaryAppEnvironment';
|
|
@@ -38288,6 +38799,7 @@ export declare type JiraAdditionalIssueFields = {
|
|
|
38288
38799
|
export declare type JiraAdditionalIssueFieldsConnection = {
|
|
38289
38800
|
__typename?: 'JiraAdditionalIssueFieldsConnection';
|
|
38290
38801
|
edges?: Maybe<Array<Maybe<JiraAdditionalIssueFieldsEdge>>>;
|
|
38802
|
+
errors?: Maybe<Array<QueryError>>;
|
|
38291
38803
|
pageInfo: PageInfo;
|
|
38292
38804
|
totalCount: Scalars['Int']['output'];
|
|
38293
38805
|
};
|
|
@@ -38344,6 +38856,7 @@ export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldC
|
|
|
38344
38856
|
fieldId: Scalars['String']['output'];
|
|
38345
38857
|
id: Scalars['ID']['output'];
|
|
38346
38858
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
38859
|
+
issue?: Maybe<JiraIssue>;
|
|
38347
38860
|
name: Scalars['String']['output'];
|
|
38348
38861
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38349
38862
|
selectedAffectedServices?: Maybe<Array<Maybe<JiraAffectedService>>>;
|
|
@@ -38605,6 +39118,7 @@ export declare type JiraAssetField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
38605
39118
|
fieldId: Scalars['String']['output'];
|
|
38606
39119
|
id: Scalars['ID']['output'];
|
|
38607
39120
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39121
|
+
issue?: Maybe<JiraIssue>;
|
|
38608
39122
|
name: Scalars['String']['output'];
|
|
38609
39123
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38610
39124
|
selectedAssets?: Maybe<Array<Maybe<JiraAsset>>>;
|
|
@@ -38685,6 +39199,7 @@ export declare type JiraAtlassianTeamField = JiraIssueField & JiraIssueFieldConf
|
|
|
38685
39199
|
fieldId: Scalars['String']['output'];
|
|
38686
39200
|
id: Scalars['ID']['output'];
|
|
38687
39201
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39202
|
+
issue?: Maybe<JiraIssue>;
|
|
38688
39203
|
name: Scalars['String']['output'];
|
|
38689
39204
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38690
39205
|
selectedTeam?: Maybe<JiraAtlassianTeam>;
|
|
@@ -38802,6 +39317,7 @@ export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
38802
39317
|
fieldId: Scalars['String']['output'];
|
|
38803
39318
|
id: Scalars['ID']['output'];
|
|
38804
39319
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39320
|
+
issue?: Maybe<JiraIssue>;
|
|
38805
39321
|
maxAllowedTotalAttachmentsSize?: Maybe<Scalars['Long']['output']>;
|
|
38806
39322
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
38807
39323
|
name: Scalars['String']['output'];
|
|
@@ -38880,6 +39396,7 @@ export declare type JiraAutodevJob = {
|
|
|
38880
39396
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
38881
39397
|
id: Scalars['ID']['output'];
|
|
38882
39398
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
39399
|
+
phase?: Maybe<JiraAutodevPhase>;
|
|
38883
39400
|
plan?: Maybe<JiraAutodevPlan>;
|
|
38884
39401
|
progressText?: Maybe<Scalars['String']['output']>;
|
|
38885
39402
|
pullRequests?: Maybe<JiraAutodevPullRequestConnection>;
|
|
@@ -38899,6 +39416,14 @@ export declare type JiraAutodevJobEdge = {
|
|
|
38899
39416
|
cursor: Scalars['String']['output'];
|
|
38900
39417
|
node?: Maybe<JiraAutodevJob>;
|
|
38901
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
|
+
}
|
|
38902
39427
|
export declare type JiraAutodevPlan = {
|
|
38903
39428
|
__typename?: 'JiraAutodevPlan';
|
|
38904
39429
|
acceptanceCriteria: Scalars['String']['output'];
|
|
@@ -39151,6 +39676,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
39151
39676
|
fieldId: Scalars['String']['output'];
|
|
39152
39677
|
id: Scalars['ID']['output'];
|
|
39153
39678
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39679
|
+
issue?: Maybe<JiraIssue>;
|
|
39154
39680
|
name: Scalars['String']['output'];
|
|
39155
39681
|
type: Scalars['String']['output'];
|
|
39156
39682
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -39281,6 +39807,7 @@ export declare type JiraCmdbField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
39281
39807
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39282
39808
|
isInsightAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
39283
39809
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
39810
|
+
issue?: Maybe<JiraIssue>;
|
|
39284
39811
|
name: Scalars['String']['output'];
|
|
39285
39812
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
39286
39813
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
@@ -39550,6 +40077,7 @@ export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & J
|
|
|
39550
40077
|
fieldId: Scalars['String']['output'];
|
|
39551
40078
|
id: Scalars['ID']['output'];
|
|
39552
40079
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40080
|
+
issue?: Maybe<JiraIssue>;
|
|
39553
40081
|
name: Scalars['String']['output'];
|
|
39554
40082
|
parentOptions?: Maybe<JiraParentOptionConnection>;
|
|
39555
40083
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -39613,6 +40141,7 @@ export declare type JiraCheckboxesField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
39613
40141
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
39614
40142
|
id: Scalars['ID']['output'];
|
|
39615
40143
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40144
|
+
issue?: Maybe<JiraIssue>;
|
|
39616
40145
|
name: Scalars['String']['output'];
|
|
39617
40146
|
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
39618
40147
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
@@ -39931,6 +40460,7 @@ export declare type JiraColorField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
39931
40460
|
fieldId: Scalars['String']['output'];
|
|
39932
40461
|
id: Scalars['ID']['output'];
|
|
39933
40462
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40463
|
+
issue?: Maybe<JiraIssue>;
|
|
39934
40464
|
name: Scalars['String']['output'];
|
|
39935
40465
|
type: Scalars['String']['output'];
|
|
39936
40466
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -40024,6 +40554,7 @@ export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
40024
40554
|
fieldId: Scalars['String']['output'];
|
|
40025
40555
|
id: Scalars['ID']['output'];
|
|
40026
40556
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40557
|
+
issue?: Maybe<JiraIssue>;
|
|
40027
40558
|
name: Scalars['String']['output'];
|
|
40028
40559
|
selectedComponents?: Maybe<Array<Maybe<JiraComponent>>>;
|
|
40029
40560
|
selectedComponentsConnection?: Maybe<JiraComponentConnection>;
|
|
@@ -40199,6 +40730,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
40199
40730
|
fieldId: Scalars['String']['output'];
|
|
40200
40731
|
id: Scalars['ID']['output'];
|
|
40201
40732
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40733
|
+
issue?: Maybe<JiraIssue>;
|
|
40202
40734
|
name: Scalars['String']['output'];
|
|
40203
40735
|
type: Scalars['String']['output'];
|
|
40204
40736
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -40212,6 +40744,7 @@ export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValu
|
|
|
40212
40744
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
40213
40745
|
id: Scalars['ID']['output'];
|
|
40214
40746
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40747
|
+
issue?: Maybe<JiraIssue>;
|
|
40215
40748
|
name: Scalars['String']['output'];
|
|
40216
40749
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
40217
40750
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -40257,6 +40790,7 @@ export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConf
|
|
|
40257
40790
|
fieldId: Scalars['String']['output'];
|
|
40258
40791
|
id: Scalars['ID']['output'];
|
|
40259
40792
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40793
|
+
issue?: Maybe<JiraIssue>;
|
|
40260
40794
|
name: Scalars['String']['output'];
|
|
40261
40795
|
number?: Maybe<Scalars['Float']['output']>;
|
|
40262
40796
|
type: Scalars['String']['output'];
|
|
@@ -40270,6 +40804,7 @@ export declare type JiraConnectReadOnlyField = JiraIssueField & JiraIssueFieldCo
|
|
|
40270
40804
|
fieldId: Scalars['String']['output'];
|
|
40271
40805
|
id: Scalars['ID']['output'];
|
|
40272
40806
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40807
|
+
issue?: Maybe<JiraIssue>;
|
|
40273
40808
|
name: Scalars['String']['output'];
|
|
40274
40809
|
text?: Maybe<Scalars['String']['output']>;
|
|
40275
40810
|
type: Scalars['String']['output'];
|
|
@@ -40283,6 +40818,7 @@ export declare type JiraConnectRichTextField = JiraIssueField & JiraIssueFieldCo
|
|
|
40283
40818
|
fieldId: Scalars['String']['output'];
|
|
40284
40819
|
id: Scalars['ID']['output'];
|
|
40285
40820
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40821
|
+
issue?: Maybe<JiraIssue>;
|
|
40286
40822
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
40287
40823
|
name: Scalars['String']['output'];
|
|
40288
40824
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -40300,6 +40836,7 @@ export declare type JiraConnectSingleSelectField = JiraHasSelectableValueOptions
|
|
|
40300
40836
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
40301
40837
|
id: Scalars['ID']['output'];
|
|
40302
40838
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40839
|
+
issue?: Maybe<JiraIssue>;
|
|
40303
40840
|
name: Scalars['String']['output'];
|
|
40304
40841
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
40305
40842
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -40330,6 +40867,7 @@ export declare type JiraConnectTextField = JiraIssueField & JiraIssueFieldConfig
|
|
|
40330
40867
|
fieldId: Scalars['String']['output'];
|
|
40331
40868
|
id: Scalars['ID']['output'];
|
|
40332
40869
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
40870
|
+
issue?: Maybe<JiraIssue>;
|
|
40333
40871
|
name: Scalars['String']['output'];
|
|
40334
40872
|
text?: Maybe<Scalars['String']['output']>;
|
|
40335
40873
|
type: Scalars['String']['output'];
|
|
@@ -40648,6 +41186,7 @@ export declare type JiraDataClassificationField = JiraIssueField & JiraIssueFiel
|
|
|
40648
41186
|
fieldId: Scalars['String']['output'];
|
|
40649
41187
|
id: Scalars['ID']['output'];
|
|
40650
41188
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41189
|
+
issue?: Maybe<JiraIssue>;
|
|
40651
41190
|
name: Scalars['String']['output'];
|
|
40652
41191
|
type: Scalars['String']['output'];
|
|
40653
41192
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -40697,6 +41236,7 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
40697
41236
|
fieldId: Scalars['String']['output'];
|
|
40698
41237
|
id: Scalars['ID']['output'];
|
|
40699
41238
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41239
|
+
issue?: Maybe<JiraIssue>;
|
|
40700
41240
|
name: Scalars['String']['output'];
|
|
40701
41241
|
type: Scalars['String']['output'];
|
|
40702
41242
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -40727,6 +41267,7 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
40727
41267
|
fieldId: Scalars['String']['output'];
|
|
40728
41268
|
id: Scalars['ID']['output'];
|
|
40729
41269
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41270
|
+
issue?: Maybe<JiraIssue>;
|
|
40730
41271
|
name: Scalars['String']['output'];
|
|
40731
41272
|
type: Scalars['String']['output'];
|
|
40732
41273
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -41063,6 +41604,7 @@ export declare type JiraDevOpsPullRequestDetails = {
|
|
|
41063
41604
|
export declare type JiraDevOpsQuery = {
|
|
41064
41605
|
__typename?: 'JiraDevOpsQuery';
|
|
41065
41606
|
autodevJobs?: Maybe<JiraAutodevJobConnection>;
|
|
41607
|
+
autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
|
|
41066
41608
|
autofixJobs?: Maybe<JiraAutofixJobConnection>;
|
|
41067
41609
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
41068
41610
|
configState?: Maybe<JiraAppConfigState>;
|
|
@@ -41075,6 +41617,9 @@ export declare type JiraDevOpsQueryAutodevJobsArgs = {
|
|
|
41075
41617
|
issueAri: Scalars['ID']['input'];
|
|
41076
41618
|
jobIdFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
41077
41619
|
};
|
|
41620
|
+
export declare type JiraDevOpsQueryAutodevJobsByIssuesArgs = {
|
|
41621
|
+
issueAris: Array<Scalars['ID']['input']>;
|
|
41622
|
+
};
|
|
41078
41623
|
export declare type JiraDevOpsQueryAutofixJobsArgs = {
|
|
41079
41624
|
issueAri: Scalars['ID']['input'];
|
|
41080
41625
|
};
|
|
@@ -41122,6 +41667,7 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
41122
41667
|
fieldId: Scalars['String']['output'];
|
|
41123
41668
|
id: Scalars['ID']['output'];
|
|
41124
41669
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41670
|
+
issue?: Maybe<JiraIssue>;
|
|
41125
41671
|
name: Scalars['String']['output'];
|
|
41126
41672
|
type: Scalars['String']['output'];
|
|
41127
41673
|
};
|
|
@@ -41160,6 +41706,7 @@ export declare type JiraDurationField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
41160
41706
|
fieldId: Scalars['String']['output'];
|
|
41161
41707
|
id: Scalars['ID']['output'];
|
|
41162
41708
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41709
|
+
issue?: Maybe<JiraIssue>;
|
|
41163
41710
|
name: Scalars['String']['output'];
|
|
41164
41711
|
type: Scalars['String']['output'];
|
|
41165
41712
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -41249,6 +41796,7 @@ export declare type JiraEpicLinkField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
41249
41796
|
fieldId: Scalars['String']['output'];
|
|
41250
41797
|
id: Scalars['ID']['output'];
|
|
41251
41798
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41799
|
+
issue?: Maybe<JiraIssue>;
|
|
41252
41800
|
name: Scalars['String']['output'];
|
|
41253
41801
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
41254
41802
|
type: Scalars['String']['output'];
|
|
@@ -41288,6 +41836,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
41288
41836
|
fieldId: Scalars['String']['output'];
|
|
41289
41837
|
id: Scalars['ID']['output'];
|
|
41290
41838
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
41839
|
+
issue?: Maybe<JiraIssue>;
|
|
41291
41840
|
name: Scalars['String']['output'];
|
|
41292
41841
|
renderedFieldHtml?: Maybe<Scalars['String']['output']>;
|
|
41293
41842
|
type: Scalars['String']['output'];
|
|
@@ -41397,6 +41946,16 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
41397
41946
|
projectIdOrKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
41398
41947
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
41399
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
|
+
};
|
|
41400
41959
|
export declare type JiraFieldNonEditableReason = {
|
|
41401
41960
|
__typename?: 'JiraFieldNonEditableReason';
|
|
41402
41961
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -41527,6 +42086,7 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
41527
42086
|
flag?: Maybe<JiraFlag>;
|
|
41528
42087
|
id: Scalars['ID']['output'];
|
|
41529
42088
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42089
|
+
issue?: Maybe<JiraIssue>;
|
|
41530
42090
|
name: Scalars['String']['output'];
|
|
41531
42091
|
type: Scalars['String']['output'];
|
|
41532
42092
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -41545,6 +42105,7 @@ export declare type JiraForgeDateField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
41545
42105
|
fieldId: Scalars['String']['output'];
|
|
41546
42106
|
id: Scalars['ID']['output'];
|
|
41547
42107
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42108
|
+
issue?: Maybe<JiraIssue>;
|
|
41548
42109
|
name: Scalars['String']['output'];
|
|
41549
42110
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41550
42111
|
type: Scalars['String']['output'];
|
|
@@ -41559,6 +42120,7 @@ export declare type JiraForgeDatetimeField = JiraIssueField & JiraIssueFieldConf
|
|
|
41559
42120
|
fieldId: Scalars['String']['output'];
|
|
41560
42121
|
id: Scalars['ID']['output'];
|
|
41561
42122
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42123
|
+
issue?: Maybe<JiraIssue>;
|
|
41562
42124
|
name: Scalars['String']['output'];
|
|
41563
42125
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41564
42126
|
type: Scalars['String']['output'];
|
|
@@ -41607,6 +42169,7 @@ export declare type JiraForgeGroupField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
41607
42169
|
groups?: Maybe<JiraGroupConnection>;
|
|
41608
42170
|
id: Scalars['ID']['output'];
|
|
41609
42171
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42172
|
+
issue?: Maybe<JiraIssue>;
|
|
41610
42173
|
name: Scalars['String']['output'];
|
|
41611
42174
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41612
42175
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41630,6 +42193,7 @@ export declare type JiraForgeGroupsField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41630
42193
|
groups?: Maybe<JiraGroupConnection>;
|
|
41631
42194
|
id: Scalars['ID']['output'];
|
|
41632
42195
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42196
|
+
issue?: Maybe<JiraIssue>;
|
|
41633
42197
|
name: Scalars['String']['output'];
|
|
41634
42198
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41635
42199
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41659,6 +42223,7 @@ export declare type JiraForgeNumberField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41659
42223
|
fieldId: Scalars['String']['output'];
|
|
41660
42224
|
id: Scalars['ID']['output'];
|
|
41661
42225
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42226
|
+
issue?: Maybe<JiraIssue>;
|
|
41662
42227
|
name: Scalars['String']['output'];
|
|
41663
42228
|
number?: Maybe<Scalars['Float']['output']>;
|
|
41664
42229
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -41673,6 +42238,7 @@ export declare type JiraForgeObjectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41673
42238
|
fieldId: Scalars['String']['output'];
|
|
41674
42239
|
id: Scalars['ID']['output'];
|
|
41675
42240
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42241
|
+
issue?: Maybe<JiraIssue>;
|
|
41676
42242
|
name: Scalars['String']['output'];
|
|
41677
42243
|
object?: Maybe<Scalars['String']['output']>;
|
|
41678
42244
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -41707,6 +42273,7 @@ export declare type JiraForgeStringField = JiraIssueField & JiraIssueFieldConfig
|
|
|
41707
42273
|
fieldId: Scalars['String']['output'];
|
|
41708
42274
|
id: Scalars['ID']['output'];
|
|
41709
42275
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42276
|
+
issue?: Maybe<JiraIssue>;
|
|
41710
42277
|
name: Scalars['String']['output'];
|
|
41711
42278
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41712
42279
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -41721,6 +42288,7 @@ export declare type JiraForgeStringsField = JiraIssueField & JiraIssueFieldConfi
|
|
|
41721
42288
|
fieldId: Scalars['String']['output'];
|
|
41722
42289
|
id: Scalars['ID']['output'];
|
|
41723
42290
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42291
|
+
issue?: Maybe<JiraIssue>;
|
|
41724
42292
|
labels?: Maybe<JiraLabelConnection>;
|
|
41725
42293
|
name: Scalars['String']['output'];
|
|
41726
42294
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -41752,6 +42320,7 @@ export declare type JiraForgeUserField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
41752
42320
|
fieldId: Scalars['String']['output'];
|
|
41753
42321
|
id: Scalars['ID']['output'];
|
|
41754
42322
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42323
|
+
issue?: Maybe<JiraIssue>;
|
|
41755
42324
|
name: Scalars['String']['output'];
|
|
41756
42325
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41757
42326
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41776,6 +42345,7 @@ export declare type JiraForgeUsersField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
41776
42345
|
fieldId: Scalars['String']['output'];
|
|
41777
42346
|
id: Scalars['ID']['output'];
|
|
41778
42347
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42348
|
+
issue?: Maybe<JiraIssue>;
|
|
41779
42349
|
name: Scalars['String']['output'];
|
|
41780
42350
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
41781
42351
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -41919,6 +42489,7 @@ export declare type JiraGenericIssueField = JiraIssueField & JiraIssueFieldConfi
|
|
|
41919
42489
|
fieldId: Scalars['String']['output'];
|
|
41920
42490
|
id: Scalars['ID']['output'];
|
|
41921
42491
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42492
|
+
issue?: Maybe<JiraIssue>;
|
|
41922
42493
|
name: Scalars['String']['output'];
|
|
41923
42494
|
type: Scalars['String']['output'];
|
|
41924
42495
|
};
|
|
@@ -42013,6 +42584,7 @@ export declare type JiraGoalsField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
42013
42584
|
fieldId: Scalars['String']['output'];
|
|
42014
42585
|
id: Scalars['ID']['output'];
|
|
42015
42586
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
42587
|
+
issue?: Maybe<JiraIssue>;
|
|
42016
42588
|
name: Scalars['String']['output'];
|
|
42017
42589
|
selectedGoals?: Maybe<JiraGoalConnection>;
|
|
42018
42590
|
type: Scalars['String']['output'];
|
|
@@ -42659,6 +43231,7 @@ export declare type JiraIssueField = {
|
|
|
42659
43231
|
fieldId: Scalars['String']['output'];
|
|
42660
43232
|
id: Scalars['ID']['output'];
|
|
42661
43233
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43234
|
+
issue?: Maybe<JiraIssue>;
|
|
42662
43235
|
name: Scalars['String']['output'];
|
|
42663
43236
|
type: Scalars['String']['output'];
|
|
42664
43237
|
};
|
|
@@ -42952,6 +43525,7 @@ export declare type JiraIssueLinkField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
42952
43525
|
fieldId: Scalars['String']['output'];
|
|
42953
43526
|
id: Scalars['ID']['output'];
|
|
42954
43527
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43528
|
+
issue?: Maybe<JiraIssue>;
|
|
42955
43529
|
issueLinkConnection?: Maybe<JiraIssueLinkConnection>;
|
|
42956
43530
|
issueLinkTypeRelations?: Maybe<JiraIssueLinkTypeRelationConnection>;
|
|
42957
43531
|
issueLinks?: Maybe<Array<Maybe<JiraIssueLink>>>;
|
|
@@ -43086,6 +43660,7 @@ export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldC
|
|
|
43086
43660
|
fieldId: Scalars['String']['output'];
|
|
43087
43661
|
id: Scalars['ID']['output'];
|
|
43088
43662
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43663
|
+
issue?: Maybe<JiraIssue>;
|
|
43089
43664
|
name: Scalars['String']['output'];
|
|
43090
43665
|
roles?: Maybe<JiraRoleConnection>;
|
|
43091
43666
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -43397,6 +43972,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
43397
43972
|
fieldId: Scalars['String']['output'];
|
|
43398
43973
|
id: Scalars['ID']['output'];
|
|
43399
43974
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43975
|
+
issue?: Maybe<JiraIssue>;
|
|
43400
43976
|
issueType?: Maybe<JiraIssueType>;
|
|
43401
43977
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
43402
43978
|
issueTypesForTransition?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -44060,6 +44636,7 @@ export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
44060
44636
|
fieldId: Scalars['String']['output'];
|
|
44061
44637
|
id: Scalars['ID']['output'];
|
|
44062
44638
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44639
|
+
issue?: Maybe<JiraIssue>;
|
|
44063
44640
|
labels?: Maybe<JiraLabelConnection>;
|
|
44064
44641
|
name: Scalars['String']['output'];
|
|
44065
44642
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -44228,6 +44805,22 @@ export declare type JiraMediaUploadToken = {
|
|
|
44228
44805
|
tokenDurationInMin?: Maybe<Scalars['Int']['output']>;
|
|
44229
44806
|
};
|
|
44230
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
|
+
};
|
|
44231
44824
|
export declare type JiraMergeVersionInput = {
|
|
44232
44825
|
id: Scalars['ID']['input'];
|
|
44233
44826
|
targetVersionId: Scalars['ID']['input'];
|
|
@@ -44277,6 +44870,7 @@ export declare type JiraMultipleGroupPickerField = JiraIssueField & JiraIssueFie
|
|
|
44277
44870
|
groups?: Maybe<JiraGroupConnection>;
|
|
44278
44871
|
id: Scalars['ID']['output'];
|
|
44279
44872
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44873
|
+
issue?: Maybe<JiraIssue>;
|
|
44280
44874
|
name: Scalars['String']['output'];
|
|
44281
44875
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
44282
44876
|
selectedGroups?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
@@ -44325,6 +44919,7 @@ export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & Ji
|
|
|
44325
44919
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
44326
44920
|
id: Scalars['ID']['output'];
|
|
44327
44921
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44922
|
+
issue?: Maybe<JiraIssue>;
|
|
44328
44923
|
name: Scalars['String']['output'];
|
|
44329
44924
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
44330
44925
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -44385,6 +44980,7 @@ export declare type JiraMultipleSelectUserPickerField = JiraIssueField & JiraIss
|
|
|
44385
44980
|
fieldId: Scalars['String']['output'];
|
|
44386
44981
|
id: Scalars['ID']['output'];
|
|
44387
44982
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
44983
|
+
issue?: Maybe<JiraIssue>;
|
|
44388
44984
|
name: Scalars['String']['output'];
|
|
44389
44985
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
44390
44986
|
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -44430,6 +45026,7 @@ export declare type JiraMultipleVersionPickerField = JiraHasMultipleSelectedValu
|
|
|
44430
45026
|
fieldId: Scalars['String']['output'];
|
|
44431
45027
|
id: Scalars['ID']['output'];
|
|
44432
45028
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45029
|
+
issue?: Maybe<JiraIssue>;
|
|
44433
45030
|
name: Scalars['String']['output'];
|
|
44434
45031
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
44435
45032
|
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -45320,6 +45917,7 @@ export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
45320
45917
|
id: Scalars['ID']['output'];
|
|
45321
45918
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45322
45919
|
isStoryPointField?: Maybe<Scalars['Boolean']['output']>;
|
|
45920
|
+
issue?: Maybe<JiraIssue>;
|
|
45323
45921
|
name: Scalars['String']['output'];
|
|
45324
45922
|
number?: Maybe<Scalars['Float']['output']>;
|
|
45325
45923
|
type: Scalars['String']['output'];
|
|
@@ -45598,6 +46196,7 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
45598
46196
|
fieldId: Scalars['String']['output'];
|
|
45599
46197
|
id: Scalars['ID']['output'];
|
|
45600
46198
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46199
|
+
issue?: Maybe<JiraIssue>;
|
|
45601
46200
|
name: Scalars['String']['output'];
|
|
45602
46201
|
originalEstimate?: Maybe<JiraEstimate>;
|
|
45603
46202
|
type: Scalars['String']['output'];
|
|
@@ -45653,6 +46252,7 @@ export declare type JiraParentIssueField = JiraIssueField & JiraIssueFieldConfig
|
|
|
45653
46252
|
fieldId: Scalars['String']['output'];
|
|
45654
46253
|
id: Scalars['ID']['output'];
|
|
45655
46254
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46255
|
+
issue?: Maybe<JiraIssue>;
|
|
45656
46256
|
name: Scalars['String']['output'];
|
|
45657
46257
|
parentCandidatesForExistingIssue?: Maybe<JiraIssueConnection>;
|
|
45658
46258
|
parentIssue?: Maybe<JiraIssue>;
|
|
@@ -45725,6 +46325,7 @@ export declare type JiraPeopleField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
45725
46325
|
id: Scalars['ID']['output'];
|
|
45726
46326
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
45727
46327
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
46328
|
+
issue?: Maybe<JiraIssue>;
|
|
45728
46329
|
name: Scalars['String']['output'];
|
|
45729
46330
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
45730
46331
|
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -45984,6 +46585,7 @@ export declare type JiraPriorityField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
45984
46585
|
fieldId: Scalars['String']['output'];
|
|
45985
46586
|
id: Scalars['ID']['output'];
|
|
45986
46587
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46588
|
+
issue?: Maybe<JiraIssue>;
|
|
45987
46589
|
name: Scalars['String']['output'];
|
|
45988
46590
|
priorities?: Maybe<JiraPriorityConnection>;
|
|
45989
46591
|
priority?: Maybe<JiraPriority>;
|
|
@@ -46032,6 +46634,7 @@ export declare type JiraProformaFormsField = JiraIssueField & JiraIssueFieldConf
|
|
|
46032
46634
|
fieldId: Scalars['String']['output'];
|
|
46033
46635
|
id: Scalars['ID']['output'];
|
|
46034
46636
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
46637
|
+
issue?: Maybe<JiraIssue>;
|
|
46035
46638
|
name: Scalars['String']['output'];
|
|
46036
46639
|
proformaForms?: Maybe<JiraProformaForms>;
|
|
46037
46640
|
type: Scalars['String']['output'];
|
|
@@ -46042,6 +46645,7 @@ export declare type JiraProject = Node & {
|
|
|
46042
46645
|
action?: Maybe<JiraProjectAction>;
|
|
46043
46646
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
46044
46647
|
associatedComponents?: Maybe<GraphGenericConnection>;
|
|
46648
|
+
associatedIssueLayoutFields?: Maybe<JiraFieldConnection>;
|
|
46045
46649
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
46046
46650
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
46047
46651
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -46119,6 +46723,9 @@ export declare type JiraProjectAssociatedComponentsArgs = {
|
|
|
46119
46723
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46120
46724
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46121
46725
|
};
|
|
46726
|
+
export declare type JiraProjectAssociatedIssueLayoutFieldsArgs = {
|
|
46727
|
+
input?: InputMaybe<JiraProjectAssociatedFieldsInput>;
|
|
46728
|
+
};
|
|
46122
46729
|
export declare type JiraProjectBoardsArgs = {
|
|
46123
46730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46124
46731
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -46331,6 +46938,9 @@ export declare type JiraProjectAndRepositoryRelationshipSort = {
|
|
|
46331
46938
|
export declare enum JiraProjectAndRepositoryRelationshipSortBy {
|
|
46332
46939
|
LastInferredAt = "LAST_INFERRED_AT"
|
|
46333
46940
|
}
|
|
46941
|
+
export declare type JiraProjectAssociatedFieldsInput = {
|
|
46942
|
+
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
46943
|
+
};
|
|
46334
46944
|
export declare type JiraProjectCategory = Node & {
|
|
46335
46945
|
__typename?: 'JiraProjectCategory';
|
|
46336
46946
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -46441,6 +47051,7 @@ export declare type JiraProjectField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
46441
47051
|
fieldId: Scalars['String']['output'];
|
|
46442
47052
|
id: Scalars['ID']['output'];
|
|
46443
47053
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
47054
|
+
issue?: Maybe<JiraIssue>;
|
|
46444
47055
|
name: Scalars['String']['output'];
|
|
46445
47056
|
project?: Maybe<JiraProject>;
|
|
46446
47057
|
projects?: Maybe<JiraProjectConnection>;
|
|
@@ -46752,6 +47363,15 @@ export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArg
|
|
|
46752
47363
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46753
47364
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46754
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
|
+
};
|
|
46755
47375
|
export declare type JiraPullRequestReviewer = {
|
|
46756
47376
|
__typename?: 'JiraPullRequestReviewer';
|
|
46757
47377
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -46860,6 +47480,7 @@ export declare type JiraQuery = {
|
|
|
46860
47480
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
46861
47481
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
46862
47482
|
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
47483
|
+
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
46863
47484
|
jiraSoftwareNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
46864
47485
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
46865
47486
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -46918,6 +47539,7 @@ export declare type JiraQuery = {
|
|
|
46918
47539
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
46919
47540
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
46920
47541
|
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
47542
|
+
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
46921
47543
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
46922
47544
|
sprintById?: Maybe<JiraSprint>;
|
|
46923
47545
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -47379,6 +48001,14 @@ export declare type JiraQueryJiraProjectsByJqlArgs = {
|
|
|
47379
48001
|
cloudId: Scalars['ID']['input'];
|
|
47380
48002
|
query: Scalars['String']['input'];
|
|
47381
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
|
+
};
|
|
47382
48012
|
export declare type JiraQueryJiraSoftwareNavigationItemsArgs = {
|
|
47383
48013
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47384
48014
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -47664,6 +48294,14 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
47664
48294
|
export declare type JiraQuerySearchUnsplashImagesArgs = {
|
|
47665
48295
|
input: JiraUnsplashSearchInput;
|
|
47666
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
|
+
};
|
|
47667
48305
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
47668
48306
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
47669
48307
|
cloudId: Scalars['ID']['input'];
|
|
@@ -47766,6 +48404,7 @@ export declare type JiraRadioSelectField = JiraIssueField & JiraIssueFieldConfig
|
|
|
47766
48404
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
47767
48405
|
id: Scalars['ID']['output'];
|
|
47768
48406
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48407
|
+
issue?: Maybe<JiraIssue>;
|
|
47769
48408
|
name: Scalars['String']['output'];
|
|
47770
48409
|
selectedOption?: Maybe<JiraOption>;
|
|
47771
48410
|
type: Scalars['String']['output'];
|
|
@@ -47980,6 +48619,7 @@ export declare type JiraRemainingTimeEstimateField = JiraIssueField & JiraIssueF
|
|
|
47980
48619
|
fieldId: Scalars['String']['output'];
|
|
47981
48620
|
id: Scalars['ID']['output'];
|
|
47982
48621
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48622
|
+
issue?: Maybe<JiraIssue>;
|
|
47983
48623
|
name: Scalars['String']['output'];
|
|
47984
48624
|
remainingEstimate?: Maybe<JiraEstimate>;
|
|
47985
48625
|
type: Scalars['String']['output'];
|
|
@@ -48096,6 +48736,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
48096
48736
|
fieldId: Scalars['String']['output'];
|
|
48097
48737
|
id: Scalars['ID']['output'];
|
|
48098
48738
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48739
|
+
issue?: Maybe<JiraIssue>;
|
|
48099
48740
|
name: Scalars['String']['output'];
|
|
48100
48741
|
resolution?: Maybe<JiraResolution>;
|
|
48101
48742
|
resolutions?: Maybe<JiraResolutionConnection>;
|
|
@@ -48250,6 +48891,7 @@ export declare type JiraRichTextField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
48250
48891
|
fieldId: Scalars['String']['output'];
|
|
48251
48892
|
id: Scalars['ID']['output'];
|
|
48252
48893
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
48894
|
+
issue?: Maybe<JiraIssue>;
|
|
48253
48895
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
48254
48896
|
name: Scalars['String']['output'];
|
|
48255
48897
|
renderer?: Maybe<Scalars['String']['output']>;
|
|
@@ -48493,6 +49135,7 @@ export declare type JiraSecurityLevelField = JiraIssueField & JiraIssueFieldConf
|
|
|
48493
49135
|
fieldId: Scalars['String']['output'];
|
|
48494
49136
|
id: Scalars['ID']['output'];
|
|
48495
49137
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49138
|
+
issue?: Maybe<JiraIssue>;
|
|
48496
49139
|
name: Scalars['String']['output'];
|
|
48497
49140
|
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
48498
49141
|
securityLevel?: Maybe<JiraSecurityLevel>;
|
|
@@ -48613,6 +49256,7 @@ export declare type JiraServiceManagementApprovalField = JiraIssueField & JiraIs
|
|
|
48613
49256
|
fieldId: Scalars['String']['output'];
|
|
48614
49257
|
id: Scalars['ID']['output'];
|
|
48615
49258
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49259
|
+
issue?: Maybe<JiraIssue>;
|
|
48616
49260
|
name: Scalars['String']['output'];
|
|
48617
49261
|
type: Scalars['String']['output'];
|
|
48618
49262
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -48833,6 +49477,7 @@ export declare type JiraServiceManagementDateTimeField = JiraIssueField & JiraIs
|
|
|
48833
49477
|
fieldId: Scalars['String']['output'];
|
|
48834
49478
|
id: Scalars['ID']['output'];
|
|
48835
49479
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49480
|
+
issue?: Maybe<JiraIssue>;
|
|
48836
49481
|
name: Scalars['String']['output'];
|
|
48837
49482
|
type: Scalars['String']['output'];
|
|
48838
49483
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -48888,6 +49533,7 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
48888
49533
|
fieldId: Scalars['String']['output'];
|
|
48889
49534
|
id: Scalars['ID']['output'];
|
|
48890
49535
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49536
|
+
issue?: Maybe<JiraIssue>;
|
|
48891
49537
|
name: Scalars['String']['output'];
|
|
48892
49538
|
selectedEntitlement?: Maybe<JiraServiceManagementEntitlement>;
|
|
48893
49539
|
type: Scalars['String']['output'];
|
|
@@ -48927,6 +49573,7 @@ export declare type JiraServiceManagementIncidentLinkingField = JiraIssueField &
|
|
|
48927
49573
|
id: Scalars['ID']['output'];
|
|
48928
49574
|
incident?: Maybe<JiraServiceManagementIncident>;
|
|
48929
49575
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49576
|
+
issue?: Maybe<JiraIssue>;
|
|
48930
49577
|
name: Scalars['String']['output'];
|
|
48931
49578
|
type: Scalars['String']['output'];
|
|
48932
49579
|
};
|
|
@@ -48946,6 +49593,7 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
|
|
|
48946
49593
|
fieldId: Scalars['String']['output'];
|
|
48947
49594
|
id: Scalars['ID']['output'];
|
|
48948
49595
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49596
|
+
issue?: Maybe<JiraIssue>;
|
|
48949
49597
|
majorIncident?: Maybe<JiraServiceManagementMajorIncident>;
|
|
48950
49598
|
name: Scalars['String']['output'];
|
|
48951
49599
|
type: Scalars['String']['output'];
|
|
@@ -48993,6 +49641,7 @@ export declare type JiraServiceManagementMultipleSelectUserPickerField = JiraIss
|
|
|
48993
49641
|
fieldId: Scalars['String']['output'];
|
|
48994
49642
|
id: Scalars['ID']['output'];
|
|
48995
49643
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49644
|
+
issue?: Maybe<JiraIssue>;
|
|
48996
49645
|
name: Scalars['String']['output'];
|
|
48997
49646
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
48998
49647
|
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -49015,11 +49664,16 @@ export declare type JiraServiceManagementMultipleSelectUserPickerFieldUsersArgs
|
|
|
49015
49664
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49016
49665
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49017
49666
|
};
|
|
49018
|
-
export declare type JiraServiceManagementOrganization = {
|
|
49667
|
+
export declare type JiraServiceManagementOrganization = JiraSelectableValue & {
|
|
49019
49668
|
__typename?: 'JiraServiceManagementOrganization';
|
|
49020
49669
|
domain?: Maybe<Scalars['String']['output']>;
|
|
49670
|
+
id: Scalars['ID']['output'];
|
|
49021
49671
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
49022
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']>;
|
|
49023
49677
|
};
|
|
49024
49678
|
export declare type JiraServiceManagementOrganizationConnection = {
|
|
49025
49679
|
__typename?: 'JiraServiceManagementOrganizationConnection';
|
|
@@ -49033,7 +49687,7 @@ export declare type JiraServiceManagementOrganizationEdge = {
|
|
|
49033
49687
|
cursor: Scalars['String']['output'];
|
|
49034
49688
|
node?: Maybe<JiraServiceManagementOrganization>;
|
|
49035
49689
|
};
|
|
49036
|
-
export declare type JiraServiceManagementOrganizationField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49690
|
+
export declare type JiraServiceManagementOrganizationField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49037
49691
|
__typename?: 'JiraServiceManagementOrganizationField';
|
|
49038
49692
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
49039
49693
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -49041,11 +49695,14 @@ export declare type JiraServiceManagementOrganizationField = JiraIssueField & Ji
|
|
|
49041
49695
|
fieldId: Scalars['String']['output'];
|
|
49042
49696
|
id: Scalars['ID']['output'];
|
|
49043
49697
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49698
|
+
issue?: Maybe<JiraIssue>;
|
|
49044
49699
|
name: Scalars['String']['output'];
|
|
49045
49700
|
organizations?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
49046
49701
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49702
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
49047
49703
|
selectedOrganizations?: Maybe<Array<Maybe<JiraServiceManagementOrganization>>>;
|
|
49048
49704
|
selectedOrganizationsConnection?: Maybe<JiraServiceManagementOrganizationConnection>;
|
|
49705
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
49049
49706
|
type: Scalars['String']['output'];
|
|
49050
49707
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
49051
49708
|
};
|
|
@@ -49057,12 +49714,27 @@ export declare type JiraServiceManagementOrganizationFieldOrganizationsArgs = {
|
|
|
49057
49714
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49058
49715
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49059
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
|
+
};
|
|
49060
49725
|
export declare type JiraServiceManagementOrganizationFieldSelectedOrganizationsConnectionArgs = {
|
|
49061
49726
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49062
49727
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49063
49728
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49064
49729
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49065
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
|
+
};
|
|
49066
49738
|
export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49067
49739
|
__typename?: 'JiraServiceManagementPeopleField';
|
|
49068
49740
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -49072,6 +49744,7 @@ export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssu
|
|
|
49072
49744
|
id: Scalars['ID']['output'];
|
|
49073
49745
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49074
49746
|
isMulti?: Maybe<Scalars['Boolean']['output']>;
|
|
49747
|
+
issue?: Maybe<JiraIssue>;
|
|
49075
49748
|
name: Scalars['String']['output'];
|
|
49076
49749
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49077
49750
|
selectedUsers?: Maybe<Array<Maybe<User>>>;
|
|
@@ -49150,6 +49823,7 @@ export declare type JiraServiceManagementRequestFeedbackField = JiraIssueField &
|
|
|
49150
49823
|
fieldId: Scalars['String']['output'];
|
|
49151
49824
|
id: Scalars['ID']['output'];
|
|
49152
49825
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49826
|
+
issue?: Maybe<JiraIssue>;
|
|
49153
49827
|
name: Scalars['String']['output'];
|
|
49154
49828
|
type: Scalars['String']['output'];
|
|
49155
49829
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
@@ -49162,6 +49836,7 @@ export declare type JiraServiceManagementRequestLanguageField = JiraIssueField &
|
|
|
49162
49836
|
fieldId: Scalars['String']['output'];
|
|
49163
49837
|
id: Scalars['ID']['output'];
|
|
49164
49838
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49839
|
+
issue?: Maybe<JiraIssue>;
|
|
49165
49840
|
language?: Maybe<JiraServiceManagementLanguage>;
|
|
49166
49841
|
languages?: Maybe<Array<Maybe<JiraServiceManagementLanguage>>>;
|
|
49167
49842
|
name: Scalars['String']['output'];
|
|
@@ -49201,6 +49876,7 @@ export declare type JiraServiceManagementRequestTypeField = JiraIssueField & Jir
|
|
|
49201
49876
|
fieldId: Scalars['String']['output'];
|
|
49202
49877
|
id: Scalars['ID']['output'];
|
|
49203
49878
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49879
|
+
issue?: Maybe<JiraIssue>;
|
|
49204
49880
|
name: Scalars['String']['output'];
|
|
49205
49881
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
49206
49882
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
@@ -49293,6 +49969,7 @@ export declare type JiraServiceManagementRespondersField = JiraIssueField & Jira
|
|
|
49293
49969
|
fieldId: Scalars['String']['output'];
|
|
49294
49970
|
id: Scalars['ID']['output'];
|
|
49295
49971
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
49972
|
+
issue?: Maybe<JiraIssue>;
|
|
49296
49973
|
name: Scalars['String']['output'];
|
|
49297
49974
|
responders?: Maybe<Array<Maybe<JiraServiceManagementResponder>>>;
|
|
49298
49975
|
respondersConnection?: Maybe<JiraServiceManagementResponderConnection>;
|
|
@@ -49327,6 +50004,7 @@ export declare type JiraServiceManagementSentimentField = JiraIssueField & JiraI
|
|
|
49327
50004
|
fieldId: Scalars['String']['output'];
|
|
49328
50005
|
id: Scalars['ID']['output'];
|
|
49329
50006
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50007
|
+
issue?: Maybe<JiraIssue>;
|
|
49330
50008
|
name: Scalars['String']['output'];
|
|
49331
50009
|
sentiment?: Maybe<JiraServiceManagementSentiment>;
|
|
49332
50010
|
type: Scalars['String']['output'];
|
|
@@ -49603,6 +50281,7 @@ export declare type JiraSingleGroupPickerField = JiraIssueField & JiraIssueField
|
|
|
49603
50281
|
groups?: Maybe<JiraGroupConnection>;
|
|
49604
50282
|
id: Scalars['ID']['output'];
|
|
49605
50283
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50284
|
+
issue?: Maybe<JiraIssue>;
|
|
49606
50285
|
name: Scalars['String']['output'];
|
|
49607
50286
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49608
50287
|
selectedGroup?: Maybe<JiraGroup>;
|
|
@@ -49639,6 +50318,7 @@ export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldCon
|
|
|
49639
50318
|
fieldId: Scalars['String']['output'];
|
|
49640
50319
|
id: Scalars['ID']['output'];
|
|
49641
50320
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50321
|
+
issue?: Maybe<JiraIssue>;
|
|
49642
50322
|
name: Scalars['String']['output'];
|
|
49643
50323
|
text?: Maybe<Scalars['String']['output']>;
|
|
49644
50324
|
type: Scalars['String']['output'];
|
|
@@ -49668,6 +50348,7 @@ export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & Jira
|
|
|
49668
50348
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
49669
50349
|
id: Scalars['ID']['output'];
|
|
49670
50350
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50351
|
+
issue?: Maybe<JiraIssue>;
|
|
49671
50352
|
name: Scalars['String']['output'];
|
|
49672
50353
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49673
50354
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
@@ -49713,6 +50394,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
49713
50394
|
fieldId: Scalars['String']['output'];
|
|
49714
50395
|
id: Scalars['ID']['output'];
|
|
49715
50396
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50397
|
+
issue?: Maybe<JiraIssue>;
|
|
49716
50398
|
name: Scalars['String']['output'];
|
|
49717
50399
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
49718
50400
|
type: Scalars['String']['output'];
|
|
@@ -49755,6 +50437,7 @@ export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions
|
|
|
49755
50437
|
fieldId: Scalars['String']['output'];
|
|
49756
50438
|
id: Scalars['ID']['output'];
|
|
49757
50439
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50440
|
+
issue?: Maybe<JiraIssue>;
|
|
49758
50441
|
name: Scalars['String']['output'];
|
|
49759
50442
|
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
49760
50443
|
type: Scalars['String']['output'];
|
|
@@ -49882,6 +50565,7 @@ export declare type JiraSprintField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
49882
50565
|
fieldId: Scalars['String']['output'];
|
|
49883
50566
|
id: Scalars['ID']['output'];
|
|
49884
50567
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50568
|
+
issue?: Maybe<JiraIssue>;
|
|
49885
50569
|
name: Scalars['String']['output'];
|
|
49886
50570
|
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
49887
50571
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -49990,6 +50674,7 @@ export declare type JiraStatusCategoryField = JiraIssueField & JiraIssueFieldCon
|
|
|
49990
50674
|
fieldId: Scalars['String']['output'];
|
|
49991
50675
|
id: Scalars['ID']['output'];
|
|
49992
50676
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50677
|
+
issue?: Maybe<JiraIssue>;
|
|
49993
50678
|
name: Scalars['String']['output'];
|
|
49994
50679
|
statusCategory: JiraStatusCategory;
|
|
49995
50680
|
type: Scalars['String']['output'];
|
|
@@ -50020,6 +50705,7 @@ export declare type JiraStatusField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
50020
50705
|
fieldId: Scalars['String']['output'];
|
|
50021
50706
|
id: Scalars['ID']['output'];
|
|
50022
50707
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50708
|
+
issue?: Maybe<JiraIssue>;
|
|
50023
50709
|
name: Scalars['String']['output'];
|
|
50024
50710
|
status: JiraStatus;
|
|
50025
50711
|
transitions?: Maybe<JiraTransitionConnection>;
|
|
@@ -50172,6 +50858,7 @@ export declare type JiraSubtasksField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
50172
50858
|
fieldId: Scalars['String']['output'];
|
|
50173
50859
|
id: Scalars['ID']['output'];
|
|
50174
50860
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50861
|
+
issue?: Maybe<JiraIssue>;
|
|
50175
50862
|
name: Scalars['String']['output'];
|
|
50176
50863
|
subtasks?: Maybe<JiraIssueConnection>;
|
|
50177
50864
|
type: Scalars['String']['output'];
|
|
@@ -50288,6 +50975,7 @@ export declare type JiraTeamField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
50288
50975
|
fieldId: Scalars['String']['output'];
|
|
50289
50976
|
id: Scalars['ID']['output'];
|
|
50290
50977
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
50978
|
+
issue?: Maybe<JiraIssue>;
|
|
50291
50979
|
name: Scalars['String']['output'];
|
|
50292
50980
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
50293
50981
|
selectedTeam?: Maybe<JiraTeam>;
|
|
@@ -50351,6 +51039,7 @@ export declare type JiraTeamViewField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
50351
51039
|
fieldId: Scalars['String']['output'];
|
|
50352
51040
|
id: Scalars['ID']['output'];
|
|
50353
51041
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51042
|
+
issue?: Maybe<JiraIssue>;
|
|
50354
51043
|
name: Scalars['String']['output'];
|
|
50355
51044
|
nonEditableReason?: Maybe<JiraFieldNonEditableReason>;
|
|
50356
51045
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -50397,6 +51086,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
50397
51086
|
fieldId: Scalars['String']['output'];
|
|
50398
51087
|
id: Scalars['ID']['output'];
|
|
50399
51088
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51089
|
+
issue?: Maybe<JiraIssue>;
|
|
50400
51090
|
name: Scalars['String']['output'];
|
|
50401
51091
|
originalEstimate?: Maybe<JiraEstimate>;
|
|
50402
51092
|
remainingEstimate?: Maybe<JiraEstimate>;
|
|
@@ -50921,6 +51611,7 @@ export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
50921
51611
|
fieldId: Scalars['String']['output'];
|
|
50922
51612
|
id: Scalars['ID']['output'];
|
|
50923
51613
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
51614
|
+
issue?: Maybe<JiraIssue>;
|
|
50924
51615
|
name: Scalars['String']['output'];
|
|
50925
51616
|
type: Scalars['String']['output'];
|
|
50926
51617
|
uri?: Maybe<Scalars['String']['output']>;
|
|
@@ -51644,6 +52335,7 @@ export declare type JiraVotesField = JiraIssueField & JiraIssueFieldConfiguratio
|
|
|
51644
52335
|
fieldId: Scalars['String']['output'];
|
|
51645
52336
|
id: Scalars['ID']['output'];
|
|
51646
52337
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52338
|
+
issue?: Maybe<JiraIssue>;
|
|
51647
52339
|
name: Scalars['String']['output'];
|
|
51648
52340
|
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
51649
52341
|
type: Scalars['String']['output'];
|
|
@@ -51682,6 +52374,7 @@ export declare type JiraWatchesField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
51682
52374
|
fieldId: Scalars['String']['output'];
|
|
51683
52375
|
id: Scalars['ID']['output'];
|
|
51684
52376
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52377
|
+
issue?: Maybe<JiraIssue>;
|
|
51685
52378
|
name: Scalars['String']['output'];
|
|
51686
52379
|
selectedUsersConnection?: Maybe<JiraUserConnection>;
|
|
51687
52380
|
suggestedWatchers?: Maybe<JiraUserConnection>;
|
|
@@ -51736,6 +52429,7 @@ export declare type JiraWorkCategoryField = JiraIssueField & JiraIssueFieldConfi
|
|
|
51736
52429
|
fieldId: Scalars['String']['output'];
|
|
51737
52430
|
id: Scalars['ID']['output'];
|
|
51738
52431
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52432
|
+
issue?: Maybe<JiraIssue>;
|
|
51739
52433
|
name: Scalars['String']['output'];
|
|
51740
52434
|
type: Scalars['String']['output'];
|
|
51741
52435
|
workCategory?: Maybe<JiraWorkCategory>;
|
|
@@ -51760,6 +52454,7 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
51760
52454
|
fieldId: Scalars['String']['output'];
|
|
51761
52455
|
id: Scalars['ID']['output'];
|
|
51762
52456
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
52457
|
+
issue?: Maybe<JiraIssue>;
|
|
51763
52458
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
51764
52459
|
name: Scalars['String']['output'];
|
|
51765
52460
|
timeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
@@ -53787,23 +54482,16 @@ export declare type MarketplaceConsoleAppPrivateListingsPageInfo = {
|
|
|
53787
54482
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
53788
54483
|
startCursor: Scalars['String']['output'];
|
|
53789
54484
|
};
|
|
53790
|
-
export declare type MarketplaceConsoleAppSoftware = {
|
|
53791
|
-
__typename?: 'MarketplaceConsoleAppSoftware';
|
|
53792
|
-
appKey: Scalars['String']['output'];
|
|
53793
|
-
developerId: Scalars['String']['output'];
|
|
53794
|
-
developerSpace: MarketplaceConsoleDevSpace;
|
|
53795
|
-
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53796
|
-
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53797
|
-
hosting: MarketplaceConsoleHosting;
|
|
53798
|
-
id: Scalars['ID']['output'];
|
|
53799
|
-
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53800
|
-
};
|
|
53801
54485
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53802
54486
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
54487
|
+
appKey: Scalars['ID']['output'];
|
|
53803
54488
|
appSoftwareId: Scalars['ID']['output'];
|
|
53804
54489
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
54490
|
+
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53805
54491
|
hosting: MarketplaceConsoleHosting;
|
|
53806
54492
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
54493
|
+
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
54494
|
+
pricingParentSoftware?: Maybe<MarketplaceConsolePricingParentSoftware>;
|
|
53807
54495
|
};
|
|
53808
54496
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53809
54497
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
@@ -53830,13 +54518,24 @@ export declare type MarketplaceConsoleAppSoftwareVersionCompatibility = {
|
|
|
53830
54518
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionCompatibility';
|
|
53831
54519
|
maxBuildNumber?: Maybe<Scalars['Int']['output']>;
|
|
53832
54520
|
minBuildNumber?: Maybe<Scalars['Int']['output']>;
|
|
53833
|
-
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'];
|
|
53834
54529
|
};
|
|
53835
54530
|
export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetails = {
|
|
53836
54531
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionFrameworkDetails';
|
|
53837
54532
|
attributes: MarketplaceConsoleFrameworkAttributes;
|
|
53838
54533
|
frameworkId: Scalars['ID']['output'];
|
|
53839
54534
|
};
|
|
54535
|
+
export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput = {
|
|
54536
|
+
attributes: MarketplaceConsoleFrameworkAttributesInput;
|
|
54537
|
+
frameworkId: Scalars['ID']['input'];
|
|
54538
|
+
};
|
|
53840
54539
|
export declare type MarketplaceConsoleAppSoftwareVersionLicenseType = {
|
|
53841
54540
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionLicenseType';
|
|
53842
54541
|
id: MarketplaceConsoleAppSoftwareVersionLicenseTypeId;
|
|
@@ -53883,6 +54582,7 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53883
54582
|
Active = "ACTIVE",
|
|
53884
54583
|
Approved = "APPROVED",
|
|
53885
54584
|
Archived = "ARCHIVED",
|
|
54585
|
+
AutoApproved = "AUTO_APPROVED",
|
|
53886
54586
|
Draft = "DRAFT",
|
|
53887
54587
|
Rejected = "REJECTED",
|
|
53888
54588
|
Submitted = "SUBMITTED"
|
|
@@ -53896,16 +54596,33 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
53896
54596
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53897
54597
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
53898
54598
|
};
|
|
54599
|
+
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
54600
|
+
buildNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
54601
|
+
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
54602
|
+
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
54603
|
+
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
54604
|
+
};
|
|
53899
54605
|
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
53900
54606
|
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
53901
54607
|
appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
53902
54608
|
buildNumber: Scalars['ID']['input'];
|
|
53903
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
|
+
};
|
|
53904
54616
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53905
54617
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53906
54618
|
descriptorId: Scalars['ID']['output'];
|
|
53907
54619
|
scopes: Array<Scalars['String']['output']>;
|
|
53908
54620
|
};
|
|
54621
|
+
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
54622
|
+
descriptorId: Scalars['String']['input'];
|
|
54623
|
+
href: Scalars['String']['input'];
|
|
54624
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
54625
|
+
};
|
|
53909
54626
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
53910
54627
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
53911
54628
|
body: Scalars['String']['output'];
|
|
@@ -54039,6 +54756,11 @@ export declare type MarketplaceConsoleExternalFrameworkAttributes = {
|
|
|
54039
54756
|
authorization: Scalars['Boolean']['output'];
|
|
54040
54757
|
binaryUrl?: Maybe<Scalars['String']['output']>;
|
|
54041
54758
|
};
|
|
54759
|
+
export declare type MarketplaceConsoleExternalFrameworkAttributesInput = {
|
|
54760
|
+
authorization: Scalars['Boolean']['input'];
|
|
54761
|
+
binaryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54762
|
+
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54763
|
+
};
|
|
54042
54764
|
export declare type MarketplaceConsoleFeature = {
|
|
54043
54765
|
__typename?: 'MarketplaceConsoleFeature';
|
|
54044
54766
|
description: Scalars['String']['output'];
|
|
@@ -54058,7 +54780,19 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
|
54058
54780
|
envId: Scalars['ID']['output'];
|
|
54059
54781
|
versionId: Scalars['String']['output'];
|
|
54060
54782
|
};
|
|
54783
|
+
export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
54784
|
+
appId: Scalars['String']['input'];
|
|
54785
|
+
envId: Scalars['String']['input'];
|
|
54786
|
+
versionId: Scalars['String']['input'];
|
|
54787
|
+
};
|
|
54061
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
|
+
};
|
|
54062
54796
|
export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
|
|
54063
54797
|
__typename?: 'MarketplaceConsoleGenericError';
|
|
54064
54798
|
message: Scalars['String']['output'];
|
|
@@ -54119,6 +54853,12 @@ export declare type MarketplaceConsoleLegacyVendorLinks = {
|
|
|
54119
54853
|
donate?: Maybe<Scalars['String']['output']>;
|
|
54120
54854
|
evaluationLicense?: Maybe<Scalars['String']['output']>;
|
|
54121
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
|
+
};
|
|
54122
54862
|
export declare type MarketplaceConsoleListingHighLights = {
|
|
54123
54863
|
__typename?: 'MarketplaceConsoleListingHighLights';
|
|
54124
54864
|
caption?: Maybe<Scalars['String']['output']>;
|
|
@@ -54135,9 +54875,11 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
54135
54875
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
54136
54876
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
54137
54877
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
54878
|
+
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54138
54879
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54139
54880
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54140
54881
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
54882
|
+
validateArtifactUrl?: Maybe<MarketplaceConsoleRemoteFetchedSoftwareArtifact>;
|
|
54141
54883
|
};
|
|
54142
54884
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
54143
54885
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
@@ -54146,6 +54888,10 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
54146
54888
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
54147
54889
|
appSoftwareId: Scalars['String']['input'];
|
|
54148
54890
|
};
|
|
54891
|
+
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
54892
|
+
appKey: Scalars['ID']['input'];
|
|
54893
|
+
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
54894
|
+
};
|
|
54149
54895
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
54150
54896
|
appSoftwareId: Scalars['String']['input'];
|
|
54151
54897
|
token: Scalars['String']['input'];
|
|
@@ -54157,6 +54903,9 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
|
54157
54903
|
editions: Array<MarketplaceConsoleEditionInput>;
|
|
54158
54904
|
product: MarketplaceConsoleEditionsInput;
|
|
54159
54905
|
};
|
|
54906
|
+
export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
|
|
54907
|
+
url: Scalars['String']['input'];
|
|
54908
|
+
};
|
|
54160
54909
|
export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
54161
54910
|
__typename?: 'MarketplaceConsoleMutationVoidResponse';
|
|
54162
54911
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54217,6 +54966,10 @@ export declare type MarketplaceConsolePluginsFrameworkAttributes = {
|
|
|
54217
54966
|
__typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
|
|
54218
54967
|
artifactId: Scalars['ID']['output'];
|
|
54219
54968
|
};
|
|
54969
|
+
export declare type MarketplaceConsolePluginsFrameworkAttributesInput = {
|
|
54970
|
+
artifactId: Scalars['String']['input'];
|
|
54971
|
+
href: Scalars['String']['input'];
|
|
54972
|
+
};
|
|
54220
54973
|
export declare enum MarketplaceConsolePricingCurrency {
|
|
54221
54974
|
Jpy = "JPY",
|
|
54222
54975
|
Usd = "USD"
|
|
@@ -54232,6 +54985,11 @@ export declare type MarketplaceConsolePricingItemInput = {
|
|
|
54232
54985
|
ceiling: Scalars['Float']['input'];
|
|
54233
54986
|
floor: Scalars['Float']['input'];
|
|
54234
54987
|
};
|
|
54988
|
+
export declare type MarketplaceConsolePricingParentSoftware = {
|
|
54989
|
+
__typename?: 'MarketplaceConsolePricingParentSoftware';
|
|
54990
|
+
parentSoftwareId: Scalars['ID']['output'];
|
|
54991
|
+
parentSoftwareName?: Maybe<Scalars['String']['output']>;
|
|
54992
|
+
};
|
|
54235
54993
|
export declare type MarketplaceConsolePricingPlan = {
|
|
54236
54994
|
__typename?: 'MarketplaceConsolePricingPlan';
|
|
54237
54995
|
currency: MarketplaceConsolePricingCurrency;
|
|
@@ -54312,8 +55070,7 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
54312
55070
|
export declare type MarketplaceConsoleQueryApi = {
|
|
54313
55071
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
54314
55072
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
54315
|
-
|
|
54316
|
-
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
55073
|
+
appSoftwareVersionByAppId?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
54317
55074
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
54318
55075
|
appSoftwareVersions?: Maybe<MarketplaceConsoleAppSoftwareVersions>;
|
|
54319
55076
|
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
@@ -54335,10 +55092,7 @@ export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
|
54335
55092
|
appSoftwareId: Scalars['ID']['input'];
|
|
54336
55093
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54337
55094
|
};
|
|
54338
|
-
export declare type
|
|
54339
|
-
appId: Scalars['ID']['input'];
|
|
54340
|
-
};
|
|
54341
|
-
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionArgs = {
|
|
55095
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionByAppIdArgs = {
|
|
54342
55096
|
appId: Scalars['ID']['input'];
|
|
54343
55097
|
buildNumber: Scalars['ID']['input'];
|
|
54344
55098
|
};
|
|
@@ -54381,6 +55135,17 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
54381
55135
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
54382
55136
|
appId: Scalars['ID']['input'];
|
|
54383
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
|
+
};
|
|
54384
55149
|
export declare type MarketplaceConsoleSourceCodeLicense = {
|
|
54385
55150
|
__typename?: 'MarketplaceConsoleSourceCodeLicense';
|
|
54386
55151
|
url: Scalars['String']['output'];
|
|
@@ -54421,6 +55186,10 @@ export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
|
54421
55186
|
__typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
|
|
54422
55187
|
artifactId: Scalars['ID']['output'];
|
|
54423
55188
|
};
|
|
55189
|
+
export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
|
|
55190
|
+
artifactId: Scalars['String']['input'];
|
|
55191
|
+
href: Scalars['String']['input'];
|
|
55192
|
+
};
|
|
54424
55193
|
export declare enum MarketplaceEntityStatus {
|
|
54425
55194
|
Active = "ACTIVE",
|
|
54426
55195
|
Archived = "ARCHIVED"
|
|
@@ -62827,6 +63596,7 @@ export declare type SearchConfluenceFilter = {
|
|
|
62827
63596
|
contentStatuses?: InputMaybe<Array<SearchConfluenceDocumentStatus>>;
|
|
62828
63597
|
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62829
63598
|
creatorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
63599
|
+
isVerified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62830
63600
|
labelsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62831
63601
|
pageStatus?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
62832
63602
|
range?: InputMaybe<Array<InputMaybe<SearchConfluenceRangeFilter>>>;
|
|
@@ -63089,7 +63859,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
63089
63859
|
type: SearchResultType;
|
|
63090
63860
|
url: Scalars['URL']['output'];
|
|
63091
63861
|
};
|
|
63092
|
-
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;
|
|
63093
63863
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
63094
63864
|
__typename?: 'SearchResultGoogleDocument';
|
|
63095
63865
|
bodyText: Scalars['String']['output'];
|
|
@@ -63782,8 +64552,6 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
63782
64552
|
ConfluenceSiteBackupDownloaded = "CONFLUENCE_SITE_BACKUP_DOWNLOADED",
|
|
63783
64553
|
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|
|
63784
64554
|
ConfluenceSuspiciousSearch = "CONFLUENCE_SUSPICIOUS_SEARCH",
|
|
63785
|
-
ContainerClassificationLevelDecreased = "CONTAINER_CLASSIFICATION_LEVEL_DECREASED",
|
|
63786
|
-
ContainerClassificationLevelIncreased = "CONTAINER_CLASSIFICATION_LEVEL_INCREASED",
|
|
63787
64555
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
63788
64556
|
CreatedPolicy = "CREATED_POLICY",
|
|
63789
64557
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
@@ -63808,6 +64576,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
63808
64576
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
63809
64577
|
ImpossibleTravel = "IMPOSSIBLE_TRAVEL",
|
|
63810
64578
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
64579
|
+
JiraCustomDetection = "JIRA_CUSTOM_DETECTION",
|
|
63811
64580
|
JiraDataDiscoveryAtlassianToken = "JIRA_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
63812
64581
|
JiraDataDiscoveryAuTfn = "JIRA_DATA_DISCOVERY_AU_TFN",
|
|
63813
64582
|
JiraDataDiscoveryAwsKeys = "JIRA_DATA_DISCOVERY_AWS_KEYS",
|
|
@@ -67550,6 +68319,7 @@ export declare type TrelloMutationApi = {
|
|
|
67550
68319
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
67551
68320
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
67552
68321
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
68322
|
+
updateBoardIsTemplate?: Maybe<TrelloUpdateBoardIsTemplatePayload>;
|
|
67553
68323
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
67554
68324
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
67555
68325
|
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
@@ -67577,6 +68347,9 @@ export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
|
67577
68347
|
export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
67578
68348
|
input: TrelloWatchCardInput;
|
|
67579
68349
|
};
|
|
68350
|
+
export declare type TrelloMutationApiUpdateBoardIsTemplateArgs = {
|
|
68351
|
+
input: TrelloUpdateBoardIsTemplateInput;
|
|
68352
|
+
};
|
|
67580
68353
|
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
67581
68354
|
input: TrelloUpdateBoardNameInput;
|
|
67582
68355
|
};
|
|
@@ -67701,22 +68474,28 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
67701
68474
|
};
|
|
67702
68475
|
export declare type TrelloQueryApi = {
|
|
67703
68476
|
__typename?: 'TrelloQueryApi';
|
|
68477
|
+
allPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
67704
68478
|
board?: Maybe<TrelloBoard>;
|
|
67705
68479
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
67706
68480
|
card?: Maybe<TrelloCard>;
|
|
67707
68481
|
echo?: Maybe<Scalars['String']['output']>;
|
|
67708
68482
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
68483
|
+
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
67709
68484
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
67710
68485
|
list?: Maybe<TrelloList>;
|
|
67711
68486
|
member?: Maybe<TrelloMember>;
|
|
67712
68487
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerAccountConnection>;
|
|
67713
|
-
plannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
67714
68488
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
67715
68489
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
67716
68490
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
67717
68491
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
67718
68492
|
workspace?: Maybe<TrelloWorkspace>;
|
|
67719
68493
|
};
|
|
68494
|
+
export declare type TrelloQueryApiAllPlannerCalendarsByAccountIdArgs = {
|
|
68495
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68496
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68497
|
+
id: Scalars['ID']['input'];
|
|
68498
|
+
};
|
|
67720
68499
|
export declare type TrelloQueryApiBoardArgs = {
|
|
67721
68500
|
id: Scalars['ID']['input'];
|
|
67722
68501
|
};
|
|
@@ -67729,6 +68508,11 @@ export declare type TrelloQueryApiCardArgs = {
|
|
|
67729
68508
|
export declare type TrelloQueryApiEchosArgs = {
|
|
67730
68509
|
echo: Array<Scalars['String']['input']>;
|
|
67731
68510
|
};
|
|
68511
|
+
export declare type TrelloQueryApiEnabledPlannerCalendarsByAccountIdArgs = {
|
|
68512
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68513
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68514
|
+
id: Scalars['ID']['input'];
|
|
68515
|
+
};
|
|
67732
68516
|
export declare type TrelloQueryApiEnterpriseArgs = {
|
|
67733
68517
|
id: Scalars['ID']['input'];
|
|
67734
68518
|
};
|
|
@@ -67743,11 +68527,6 @@ export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
|
|
|
67743
68527
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67744
68528
|
id: Scalars['ID']['input'];
|
|
67745
68529
|
};
|
|
67746
|
-
export declare type TrelloQueryApiPlannerCalendarsByAccountIdArgs = {
|
|
67747
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
67748
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67749
|
-
id: Scalars['ID']['input'];
|
|
67750
|
-
};
|
|
67751
68530
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
67752
68531
|
ids: Array<Scalars['ID']['input']>;
|
|
67753
68532
|
};
|
|
@@ -67886,6 +68665,16 @@ export declare type TrelloUnarchiveCardPayload = Payload & {
|
|
|
67886
68665
|
errors?: Maybe<Array<MutationError>>;
|
|
67887
68666
|
success: Scalars['Boolean']['output'];
|
|
67888
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
|
+
};
|
|
67889
68678
|
export declare type TrelloUpdateBoardNameInput = {
|
|
67890
68679
|
boardId: Scalars['ID']['input'];
|
|
67891
68680
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67942,8 +68731,8 @@ export declare type TrelloWatchCardPayload = Payload & {
|
|
|
67942
68731
|
export declare type TrelloWorkspace = Node & {
|
|
67943
68732
|
__typename?: 'TrelloWorkspace';
|
|
67944
68733
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
67945
|
-
description
|
|
67946
|
-
displayName
|
|
68734
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
68735
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
67947
68736
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
67948
68737
|
id: Scalars['ID']['output'];
|
|
67949
68738
|
jwmLink?: Maybe<TrelloJwmWorkspaceLink>;
|
|
@@ -67951,13 +68740,13 @@ export declare type TrelloWorkspace = Node & {
|
|
|
67951
68740
|
logoHash?: Maybe<Scalars['String']['output']>;
|
|
67952
68741
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
67953
68742
|
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
67954
|
-
name
|
|
67955
|
-
objectId
|
|
68743
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
68744
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
67956
68745
|
offering?: Maybe<Scalars['String']['output']>;
|
|
67957
|
-
prefs
|
|
68746
|
+
prefs?: Maybe<TrelloWorkspacePrefs>;
|
|
67958
68747
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
67959
68748
|
tags?: Maybe<TrelloTagConnection>;
|
|
67960
|
-
url
|
|
68749
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
67961
68750
|
website?: Maybe<Scalars['String']['output']>;
|
|
67962
68751
|
};
|
|
67963
68752
|
export declare type TrelloWorkspaceMembersArgs = {
|
|
@@ -68034,12 +68823,27 @@ export declare type UnassignIssueParentOutput = MutationResponse & {
|
|
|
68034
68823
|
statusCode: Scalars['Int']['output'];
|
|
68035
68824
|
success: Scalars['Boolean']['output'];
|
|
68036
68825
|
};
|
|
68826
|
+
export declare type UnifiedAccessStatus = UnifiedINode & {
|
|
68827
|
+
__typename?: 'UnifiedAccessStatus';
|
|
68828
|
+
id: Scalars['ID']['output'];
|
|
68829
|
+
status?: Maybe<Scalars['Boolean']['output']>;
|
|
68830
|
+
};
|
|
68037
68831
|
export declare type UnifiedAccount = UnifiedINode & {
|
|
68038
68832
|
__typename?: 'UnifiedAccount';
|
|
68039
68833
|
id: Scalars['ID']['output'];
|
|
68040
68834
|
linkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
68041
68835
|
parentAccount?: Maybe<UnifiedParentAccount>;
|
|
68042
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
|
+
};
|
|
68043
68847
|
export declare type UnifiedAtlassianProduct = UnifiedINode & {
|
|
68044
68848
|
__typename?: 'UnifiedAtlassianProduct';
|
|
68045
68849
|
id: Scalars['ID']['output'];
|
|
@@ -68197,6 +69001,44 @@ export declare type UnifiedGamificationRecognitionsTotal = {
|
|
|
68197
69001
|
comment?: Maybe<Scalars['String']['output']>;
|
|
68198
69002
|
count?: Maybe<Scalars['Int']['output']>;
|
|
68199
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
|
+
};
|
|
68200
69042
|
export declare type UnifiedIBadge = {
|
|
68201
69043
|
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
68202
69044
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -68285,6 +69127,7 @@ export declare type UnifiedMutation = {
|
|
|
68285
69127
|
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
68286
69128
|
createParentAccount?: Maybe<UnifiedParentAccountPayload>;
|
|
68287
69129
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
69130
|
+
gating?: Maybe<UnifiedGatingMutation>;
|
|
68288
69131
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
68289
69132
|
};
|
|
68290
69133
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
@@ -68293,12 +69136,11 @@ export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
|
68293
69136
|
parentAccountInternalId: Scalars['String']['input'];
|
|
68294
69137
|
};
|
|
68295
69138
|
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
68296
|
-
|
|
69139
|
+
aaid: Scalars['String']['input'];
|
|
68297
69140
|
};
|
|
68298
69141
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
68299
69142
|
aaid: Scalars['String']['input'];
|
|
68300
69143
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
68301
|
-
parentAccountEmailId: Scalars['String']['input'];
|
|
68302
69144
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
68303
69145
|
};
|
|
68304
69146
|
export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
@@ -68323,8 +69165,8 @@ export declare type UnifiedPageInfo = {
|
|
|
68323
69165
|
};
|
|
68324
69166
|
export declare type UnifiedParentAccount = UnifiedINode & {
|
|
68325
69167
|
__typename?: 'UnifiedParentAccount';
|
|
69168
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
68326
69169
|
id: Scalars['ID']['output'];
|
|
68327
|
-
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
68328
69170
|
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
68329
69171
|
};
|
|
68330
69172
|
export declare type UnifiedParentAccountPayload = UnifiedPayload & {
|
|
@@ -68412,6 +69254,7 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
68412
69254
|
export declare type UnifiedQuery = {
|
|
68413
69255
|
__typename?: 'UnifiedQuery';
|
|
68414
69256
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
69257
|
+
gating?: Maybe<UnifiedGatingQuery>;
|
|
68415
69258
|
node?: Maybe<UnifiedINode>;
|
|
68416
69259
|
unifiedAccount?: Maybe<UnifiedUAccountResult>;
|
|
68417
69260
|
unifiedAccounts?: Maybe<Array<Maybe<UnifiedUAccountResult>>>;
|
|
@@ -68462,6 +69305,8 @@ export declare type UnifiedRecentCourseEdge = UnifiedIEdge & {
|
|
|
68462
69305
|
node?: Maybe<UnifiedRecentCourse>;
|
|
68463
69306
|
};
|
|
68464
69307
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
69308
|
+
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
69309
|
+
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
68465
69310
|
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
|
|
68466
69311
|
export declare type UnifiedUForumsBadgesResult = UnifiedForumsBadgesConnection | UnifiedQueryError;
|
|
68467
69312
|
export declare type UnifiedUForumsGroupsResult = UnifiedForumsGroupsConnection | UnifiedQueryError;
|
|
@@ -68471,6 +69316,7 @@ export declare type UnifiedUGamificationBadgesResult = UnifiedGamificationBadges
|
|
|
68471
69316
|
export declare type UnifiedUGamificationLevelsResult = UnifiedGamificationLevel | UnifiedQueryError;
|
|
68472
69317
|
export declare type UnifiedUGamificationRecognitionsSummaryResult = UnifiedGamificationRecognitionsSummary | UnifiedQueryError;
|
|
68473
69318
|
export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQueryError;
|
|
69319
|
+
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
|
|
68474
69320
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
68475
69321
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
68476
69322
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
@@ -68625,18 +69471,21 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
68625
69471
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
68626
69472
|
id: Scalars['ID']['input'];
|
|
68627
69473
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69474
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68628
69475
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
68629
69476
|
};
|
|
68630
69477
|
export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
68631
69478
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
68632
69479
|
id: Scalars['ID']['input'];
|
|
68633
69480
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69481
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68634
69482
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
68635
69483
|
};
|
|
68636
69484
|
export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
68637
69485
|
id: Scalars['ID']['input'];
|
|
68638
69486
|
linkType?: InputMaybe<CompassLinkType>;
|
|
68639
69487
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69488
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68640
69489
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
68641
69490
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
68642
69491
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -68648,11 +69497,13 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
68648
69497
|
id: Scalars['ID']['input'];
|
|
68649
69498
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
68650
69499
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69500
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68651
69501
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
68652
69502
|
};
|
|
68653
69503
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
68654
69504
|
id: Scalars['ID']['input'];
|
|
68655
69505
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
69506
|
+
scoringStrategyRules?: InputMaybe<CompassUpdateScorecardCriteriaScoringStrategyRulesInput>;
|
|
68656
69507
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
68657
69508
|
};
|
|
68658
69509
|
export declare type UpdateCompassLinkInput = {
|
|
@@ -68685,6 +69536,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
68685
69536
|
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68686
69537
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
68687
69538
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
69539
|
+
scoringStrategyType?: InputMaybe<CompassScorecardScoringStrategyType>;
|
|
68688
69540
|
updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
68689
69541
|
};
|
|
68690
69542
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
@@ -69752,6 +70604,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
69752
70604
|
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
69753
70605
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
69754
70606
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
70607
|
+
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
69755
70608
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
69756
70609
|
};
|
|
69757
70610
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
@@ -69995,6 +70848,20 @@ export declare type WorkSuggestionsPrCommentsTask = WorkSuggestionsPeriscopeTask
|
|
|
69995
70848
|
title: Scalars['String']['output'];
|
|
69996
70849
|
url: Scalars['String']['output'];
|
|
69997
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
|
+
};
|
|
69998
70865
|
export declare type WorkSuggestionsPeriscopeTask = {
|
|
69999
70866
|
id: Scalars['String']['output'];
|
|
70000
70867
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
@@ -70033,6 +70900,11 @@ export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon
|
|
|
70033
70900
|
title: Scalars['String']['output'];
|
|
70034
70901
|
url: Scalars['String']['output'];
|
|
70035
70902
|
};
|
|
70903
|
+
export declare type WorkSuggestionsPullRequestSuggestionsResponse = {
|
|
70904
|
+
__typename?: 'WorkSuggestionsPullRequestSuggestionsResponse';
|
|
70905
|
+
mergeableSuggestions?: Maybe<Array<WorkSuggestionsPrMergeableTask>>;
|
|
70906
|
+
newCommentsSuggestions?: Maybe<Array<WorkSuggestionsPrCommentsTask>>;
|
|
70907
|
+
};
|
|
70036
70908
|
export declare type WorkSuggestionsPurgeUserActionStateInput = {
|
|
70037
70909
|
cloudId: Scalars['ID']['input'];
|
|
70038
70910
|
};
|