@forge/cli-shared 2.2.0-next.17 → 2.2.0-next.21
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.
|
@@ -157,11 +157,40 @@ export declare type ActivitiesUser = {
|
|
|
157
157
|
__typename?: 'ActivitiesUser';
|
|
158
158
|
profile?: Maybe<User>;
|
|
159
159
|
};
|
|
160
|
+
export declare type Activity = {
|
|
161
|
+
__typename?: 'Activity';
|
|
162
|
+
all: ActivityConnection;
|
|
163
|
+
workedOn: ActivityConnection;
|
|
164
|
+
myActivity?: Maybe<MyActivity>;
|
|
165
|
+
};
|
|
166
|
+
export declare type ActivityAllArgs = {
|
|
167
|
+
filter?: Maybe<ActivityFilter>;
|
|
168
|
+
first?: Maybe<Scalars['Int']>;
|
|
169
|
+
after?: Maybe<Scalars['String']>;
|
|
170
|
+
};
|
|
171
|
+
export declare type ActivityWorkedOnArgs = {
|
|
172
|
+
filter?: Maybe<ActivityFilter>;
|
|
173
|
+
first?: Maybe<Scalars['Int']>;
|
|
174
|
+
after?: Maybe<Scalars['String']>;
|
|
175
|
+
};
|
|
176
|
+
export declare type ActivityConnection = {
|
|
177
|
+
__typename?: 'ActivityConnection';
|
|
178
|
+
edges?: Maybe<Array<Maybe<ActivityItemEdge>>>;
|
|
179
|
+
pageInfo: ActivityPageInfo;
|
|
180
|
+
};
|
|
160
181
|
export declare type ActivityEdge = {
|
|
161
182
|
__typename?: 'ActivityEdge';
|
|
162
183
|
cursor: Scalars['String'];
|
|
163
184
|
node?: Maybe<ActivitiesItem>;
|
|
164
185
|
};
|
|
186
|
+
export declare type ActivityEvent = {
|
|
187
|
+
__typename?: 'ActivityEvent';
|
|
188
|
+
id: Scalars['ID'];
|
|
189
|
+
timestamp?: Maybe<Scalars['String']>;
|
|
190
|
+
eventType?: Maybe<Scalars['String']>;
|
|
191
|
+
actor?: Maybe<User>;
|
|
192
|
+
extension?: Maybe<ActivitiesEventExtension>;
|
|
193
|
+
};
|
|
165
194
|
export declare enum ActivityEventType {
|
|
166
195
|
Assigned = "ASSIGNED",
|
|
167
196
|
Unassigned = "UNASSIGNED",
|
|
@@ -174,6 +203,41 @@ export declare enum ActivityEventType {
|
|
|
174
203
|
Published = "PUBLISHED",
|
|
175
204
|
Edited = "EDITED"
|
|
176
205
|
}
|
|
206
|
+
export declare type ActivityFilter = {
|
|
207
|
+
actors?: Maybe<Array<Scalars['ID']>>;
|
|
208
|
+
type?: Maybe<ActivitiesFilterType>;
|
|
209
|
+
arguments?: Maybe<ActivityFilterArgs>;
|
|
210
|
+
};
|
|
211
|
+
export declare type ActivityFilterArgs = {
|
|
212
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
213
|
+
products?: Maybe<Array<Scalars['String']>>;
|
|
214
|
+
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
215
|
+
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
216
|
+
transitions?: Maybe<Array<ActivityTransition>>;
|
|
217
|
+
containerIds?: Maybe<Array<Scalars['ID']>>;
|
|
218
|
+
earliestStart?: Maybe<Scalars['DateTime']>;
|
|
219
|
+
latestStart?: Maybe<Scalars['DateTime']>;
|
|
220
|
+
};
|
|
221
|
+
export declare type ActivityItemEdge = {
|
|
222
|
+
__typename?: 'ActivityItemEdge';
|
|
223
|
+
cursor: Scalars['String'];
|
|
224
|
+
node?: Maybe<ActivityNode>;
|
|
225
|
+
};
|
|
226
|
+
export declare type ActivityNode = Node & {
|
|
227
|
+
__typename?: 'ActivityNode';
|
|
228
|
+
id: Scalars['ID'];
|
|
229
|
+
object?: Maybe<ActivityObject>;
|
|
230
|
+
event?: Maybe<ActivityEvent>;
|
|
231
|
+
};
|
|
232
|
+
export declare type ActivityObject = {
|
|
233
|
+
__typename?: 'ActivityObject';
|
|
234
|
+
id: Scalars['ID'];
|
|
235
|
+
rootContainerId?: Maybe<Scalars['ID']>;
|
|
236
|
+
type?: Maybe<Scalars['String']>;
|
|
237
|
+
product?: Maybe<Scalars['String']>;
|
|
238
|
+
subProduct?: Maybe<Scalars['String']>;
|
|
239
|
+
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
240
|
+
};
|
|
177
241
|
export declare enum ActivityObjectType {
|
|
178
242
|
Site = "SITE",
|
|
179
243
|
Project = "PROJECT",
|
|
@@ -915,6 +979,16 @@ export declare type BacklogExtension = {
|
|
|
915
979
|
__typename?: 'BacklogExtension';
|
|
916
980
|
operations?: Maybe<Array<Maybe<SoftwareOperation>>>;
|
|
917
981
|
};
|
|
982
|
+
export declare type BasicBoardFeatureView = Node & {
|
|
983
|
+
__typename?: 'BasicBoardFeatureView';
|
|
984
|
+
id: Scalars['ID'];
|
|
985
|
+
title?: Maybe<Scalars['String']>;
|
|
986
|
+
description?: Maybe<Scalars['String']>;
|
|
987
|
+
status?: Maybe<Scalars['String']>;
|
|
988
|
+
canEnable?: Maybe<Scalars['Boolean']>;
|
|
989
|
+
learnMoreLink?: Maybe<Scalars['String']>;
|
|
990
|
+
imageUri?: Maybe<Scalars['String']>;
|
|
991
|
+
};
|
|
918
992
|
export declare enum BitbucketPermission {
|
|
919
993
|
Admin = "ADMIN"
|
|
920
994
|
}
|
|
@@ -1008,6 +1082,37 @@ export declare type BoardFeature = {
|
|
|
1008
1082
|
category: Scalars['String'];
|
|
1009
1083
|
prerequisites?: Maybe<Array<Maybe<BoardFeature>>>;
|
|
1010
1084
|
};
|
|
1085
|
+
export declare type BoardFeatureConnection = {
|
|
1086
|
+
__typename?: 'BoardFeatureConnection';
|
|
1087
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1088
|
+
edges?: Maybe<Array<Maybe<BoardFeatureEdge>>>;
|
|
1089
|
+
};
|
|
1090
|
+
export declare type BoardFeatureEdge = {
|
|
1091
|
+
__typename?: 'BoardFeatureEdge';
|
|
1092
|
+
cursor?: Maybe<Scalars['String']>;
|
|
1093
|
+
node?: Maybe<BoardFeatureView>;
|
|
1094
|
+
};
|
|
1095
|
+
export declare type BoardFeatureGroup = Node & {
|
|
1096
|
+
__typename?: 'BoardFeatureGroup';
|
|
1097
|
+
id: Scalars['ID'];
|
|
1098
|
+
name?: Maybe<Scalars['String']>;
|
|
1099
|
+
features?: Maybe<BoardFeatureConnection>;
|
|
1100
|
+
};
|
|
1101
|
+
export declare type BoardFeatureGroupFeaturesArgs = {
|
|
1102
|
+
ids?: Maybe<Array<Scalars['String']>>;
|
|
1103
|
+
first?: Maybe<Scalars['Int']>;
|
|
1104
|
+
after?: Maybe<Scalars['String']>;
|
|
1105
|
+
};
|
|
1106
|
+
export declare type BoardFeatureGroupConnection = {
|
|
1107
|
+
__typename?: 'BoardFeatureGroupConnection';
|
|
1108
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1109
|
+
edges?: Maybe<Array<Maybe<BoardFeatureGroupEdge>>>;
|
|
1110
|
+
};
|
|
1111
|
+
export declare type BoardFeatureGroupEdge = {
|
|
1112
|
+
__typename?: 'BoardFeatureGroupEdge';
|
|
1113
|
+
cursor?: Maybe<Scalars['String']>;
|
|
1114
|
+
node?: Maybe<BoardFeatureGroup>;
|
|
1115
|
+
};
|
|
1011
1116
|
export declare enum BoardFeatureStatus {
|
|
1012
1117
|
Enabled = "ENABLED",
|
|
1013
1118
|
Disabled = "DISABLED",
|
|
@@ -1017,6 +1122,7 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1017
1122
|
Enabled = "ENABLED",
|
|
1018
1123
|
Disabled = "DISABLED"
|
|
1019
1124
|
}
|
|
1125
|
+
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1020
1126
|
export declare type BoardScope = {
|
|
1021
1127
|
__typename?: 'BoardScope';
|
|
1022
1128
|
board?: Maybe<SoftwareBoard>;
|
|
@@ -1026,6 +1132,7 @@ export declare type BoardScope = {
|
|
|
1026
1132
|
projectLocation: SoftwareProject;
|
|
1027
1133
|
cardParents: Array<Maybe<CardParent>>;
|
|
1028
1134
|
features: Array<Maybe<BoardFeature>>;
|
|
1135
|
+
featureGroups?: Maybe<BoardFeatureGroupConnection>;
|
|
1029
1136
|
reports?: Maybe<SoftwareReports>;
|
|
1030
1137
|
cards: Array<Maybe<SoftwareCard>>;
|
|
1031
1138
|
estimation?: Maybe<EstimationConfig>;
|
|
@@ -2840,14 +2947,16 @@ export declare type ContentPlatformIntroToPractice = {
|
|
|
2840
2947
|
};
|
|
2841
2948
|
export declare type ContentPlatformPracticePage = {
|
|
2842
2949
|
__typename?: 'ContentPlatformPracticePage';
|
|
2950
|
+
name: Scalars['String'];
|
|
2843
2951
|
tagline: Scalars['String'];
|
|
2844
|
-
|
|
2952
|
+
introTo: ContentPlatformIntroToPractice;
|
|
2845
2953
|
whatIs: ContentPlatformChunkWhatIs;
|
|
2846
|
-
benefits
|
|
2847
|
-
deepDive
|
|
2848
|
-
bestPractices
|
|
2849
|
-
inContext
|
|
2850
|
-
|
|
2954
|
+
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
2955
|
+
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
2956
|
+
bestPractices?: Maybe<ContentPlatformChunkBestPractices>;
|
|
2957
|
+
inContext?: Maybe<ContentPlatformChunkInContext>;
|
|
2958
|
+
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
2959
|
+
practice: ContentPlatformWhatPractice;
|
|
2851
2960
|
};
|
|
2852
2961
|
export declare type ContentPlatformReleaseNote = {
|
|
2853
2962
|
__typename?: 'ContentPlatformReleaseNote';
|
|
@@ -2979,6 +3088,10 @@ export declare type ContentPlatformTypeOfChangeEntry = {
|
|
|
2979
3088
|
label?: Maybe<Scalars['String']>;
|
|
2980
3089
|
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
2981
3090
|
};
|
|
3091
|
+
export declare type ContentPlatformWhatPractice = {
|
|
3092
|
+
__typename?: 'ContentPlatformWhatPractice';
|
|
3093
|
+
title: Scalars['String'];
|
|
3094
|
+
};
|
|
2982
3095
|
export declare type ContextEventObject = {
|
|
2983
3096
|
__typename?: 'ContextEventObject';
|
|
2984
3097
|
id: Scalars['ID'];
|
|
@@ -4322,6 +4435,7 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
4322
4435
|
export declare type DevOpsTool = {
|
|
4323
4436
|
id: Scalars['ID'];
|
|
4324
4437
|
name: Scalars['String'];
|
|
4438
|
+
productKey: Scalars['String'];
|
|
4325
4439
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4326
4440
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4327
4441
|
};
|
|
@@ -4329,6 +4443,7 @@ export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
|
4329
4443
|
__typename?: 'DevOpsToolAvailable';
|
|
4330
4444
|
id: Scalars['ID'];
|
|
4331
4445
|
name: Scalars['String'];
|
|
4446
|
+
productKey: Scalars['String'];
|
|
4332
4447
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4333
4448
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4334
4449
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
@@ -4364,7 +4479,9 @@ export declare type DevOpsToolContainer = Node & {
|
|
|
4364
4479
|
__typename?: 'DevOpsToolContainer';
|
|
4365
4480
|
id: Scalars['ID'];
|
|
4366
4481
|
displayName: Scalars['String'];
|
|
4482
|
+
productKey: Scalars['String'];
|
|
4367
4483
|
url: Scalars['String'];
|
|
4484
|
+
underlyingId: Scalars['String'];
|
|
4368
4485
|
};
|
|
4369
4486
|
export declare type DevOpsToolContainerConnection = {
|
|
4370
4487
|
__typename?: 'DevOpsToolContainerConnection';
|
|
@@ -4396,7 +4513,9 @@ export declare type DevOpsToolNamespace = Node & {
|
|
|
4396
4513
|
__typename?: 'DevOpsToolNamespace';
|
|
4397
4514
|
id: Scalars['ID'];
|
|
4398
4515
|
displayName: Scalars['String'];
|
|
4516
|
+
productKey: Scalars['String'];
|
|
4399
4517
|
canCreateContainer: Scalars['Boolean'];
|
|
4518
|
+
underlyingId: Scalars['String'];
|
|
4400
4519
|
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
4401
4520
|
};
|
|
4402
4521
|
export declare type DevOpsToolNamespaceContainersArgs = {
|
|
@@ -4421,6 +4540,11 @@ export declare type DevOpsToolNavbarConnectionState = {
|
|
|
4421
4540
|
oncallTab: DevOpsToolConnectionState;
|
|
4422
4541
|
pagesTab: DevOpsToolConnectionState;
|
|
4423
4542
|
};
|
|
4543
|
+
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
4544
|
+
CodeTab = "codeTab",
|
|
4545
|
+
OncallTab = "oncallTab",
|
|
4546
|
+
PagesTab = "pagesTab"
|
|
4547
|
+
}
|
|
4424
4548
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4425
4549
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
4426
4550
|
category: DevOpsToolCategory;
|
|
@@ -4430,10 +4554,22 @@ export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
|
4430
4554
|
__typename?: 'DevOpsToolUnavailable';
|
|
4431
4555
|
id: Scalars['ID'];
|
|
4432
4556
|
name: Scalars['String'];
|
|
4557
|
+
productKey: Scalars['String'];
|
|
4433
4558
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4434
4559
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4435
4560
|
install: DevOpsToolInstallationInfo;
|
|
4436
4561
|
};
|
|
4562
|
+
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenInput = {
|
|
4563
|
+
cloudId: Scalars['ID'];
|
|
4564
|
+
projectId: Scalars['ID'];
|
|
4565
|
+
tab?: Maybe<DevOpsToolNavbarConnectionStateTab>;
|
|
4566
|
+
};
|
|
4567
|
+
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payload & {
|
|
4568
|
+
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
4569
|
+
success: Scalars['Boolean'];
|
|
4570
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4571
|
+
updatedNavbarConnectionState: DevOpsToolNavbarConnectionState;
|
|
4572
|
+
};
|
|
4437
4573
|
export declare type DevOpsTools = {
|
|
4438
4574
|
__typename?: 'DevOpsTools';
|
|
4439
4575
|
tools?: Maybe<DevOpsToolConnection>;
|
|
@@ -4545,6 +4681,18 @@ export declare type Estimate = {
|
|
|
4545
4681
|
storyPoints?: Maybe<Scalars['Float']>;
|
|
4546
4682
|
originalEstimate?: Maybe<OriginalEstimate>;
|
|
4547
4683
|
};
|
|
4684
|
+
export declare type EstimationBoardFeatureView = Node & {
|
|
4685
|
+
__typename?: 'EstimationBoardFeatureView';
|
|
4686
|
+
id: Scalars['ID'];
|
|
4687
|
+
title?: Maybe<Scalars['String']>;
|
|
4688
|
+
description?: Maybe<Scalars['String']>;
|
|
4689
|
+
status?: Maybe<Scalars['String']>;
|
|
4690
|
+
canEnable?: Maybe<Scalars['Boolean']>;
|
|
4691
|
+
learnMoreLink?: Maybe<Scalars['String']>;
|
|
4692
|
+
imageUri?: Maybe<Scalars['String']>;
|
|
4693
|
+
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
4694
|
+
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
4695
|
+
};
|
|
4548
4696
|
export declare type EstimationConfig = {
|
|
4549
4697
|
__typename?: 'EstimationConfig';
|
|
4550
4698
|
current: CurrentEstimation;
|
|
@@ -5373,6 +5521,18 @@ export declare type JiraAvatar = {
|
|
|
5373
5521
|
medium?: Maybe<Scalars['String']>;
|
|
5374
5522
|
large?: Maybe<Scalars['String']>;
|
|
5375
5523
|
};
|
|
5524
|
+
export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5525
|
+
__typename?: 'JiraBooleanField';
|
|
5526
|
+
id: Scalars['ID'];
|
|
5527
|
+
fieldId: Scalars['String'];
|
|
5528
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5529
|
+
type: Scalars['String'];
|
|
5530
|
+
name: Scalars['String'];
|
|
5531
|
+
description?: Maybe<Scalars['String']>;
|
|
5532
|
+
value?: Maybe<Scalars['Boolean']>;
|
|
5533
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5534
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5535
|
+
};
|
|
5376
5536
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
5377
5537
|
__typename?: 'JiraCMDBField';
|
|
5378
5538
|
id: Scalars['ID'];
|
|
@@ -5385,6 +5545,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
5385
5545
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5386
5546
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
5387
5547
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
5548
|
+
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
5388
5549
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5389
5550
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5390
5551
|
attributesIncludedInAutoCompleteSearch?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -5471,6 +5632,117 @@ export declare type JiraCheckboxesFieldFieldOptionsArgs = {
|
|
|
5471
5632
|
last?: Maybe<Scalars['Int']>;
|
|
5472
5633
|
before?: Maybe<Scalars['String']>;
|
|
5473
5634
|
};
|
|
5635
|
+
export declare type JiraChildIssues = JiraChildIssuesWithinLimit | JiraChildIssuesExceedingLimit;
|
|
5636
|
+
export declare type JiraChildIssuesExceedingLimit = {
|
|
5637
|
+
__typename?: 'JiraChildIssuesExceedingLimit';
|
|
5638
|
+
search?: Maybe<Scalars['String']>;
|
|
5639
|
+
};
|
|
5640
|
+
export declare type JiraChildIssuesWithinLimit = {
|
|
5641
|
+
__typename?: 'JiraChildIssuesWithinLimit';
|
|
5642
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
5643
|
+
};
|
|
5644
|
+
export declare type JiraChildIssuesWithinLimitIssuesArgs = {
|
|
5645
|
+
first?: Maybe<Scalars['Int']>;
|
|
5646
|
+
after?: Maybe<Scalars['String']>;
|
|
5647
|
+
last?: Maybe<Scalars['Int']>;
|
|
5648
|
+
before?: Maybe<Scalars['String']>;
|
|
5649
|
+
};
|
|
5650
|
+
export declare type JiraCmdbAttribute = {
|
|
5651
|
+
__typename?: 'JiraCmdbAttribute';
|
|
5652
|
+
objectTypeAttributeId?: Maybe<Scalars['String']>;
|
|
5653
|
+
objectTypeAttribute?: Maybe<JiraCmdbObjectTypeAttribute>;
|
|
5654
|
+
objectAttributeValues?: Maybe<JiraCmdbObjectAttributeValueConnection>;
|
|
5655
|
+
};
|
|
5656
|
+
export declare type JiraCmdbAttributeObjectAttributeValuesArgs = {
|
|
5657
|
+
first?: Maybe<Scalars['Int']>;
|
|
5658
|
+
after?: Maybe<Scalars['String']>;
|
|
5659
|
+
last?: Maybe<Scalars['Int']>;
|
|
5660
|
+
before?: Maybe<Scalars['String']>;
|
|
5661
|
+
};
|
|
5662
|
+
export declare type JiraCmdbAttributeConnection = {
|
|
5663
|
+
__typename?: 'JiraCmdbAttributeConnection';
|
|
5664
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5665
|
+
pageInfo: PageInfo;
|
|
5666
|
+
edges?: Maybe<Array<Maybe<JiraCmdbAttributeEdge>>>;
|
|
5667
|
+
};
|
|
5668
|
+
export declare type JiraCmdbAttributeEdge = {
|
|
5669
|
+
__typename?: 'JiraCmdbAttributeEdge';
|
|
5670
|
+
node?: Maybe<JiraCmdbAttribute>;
|
|
5671
|
+
cursor: Scalars['String'];
|
|
5672
|
+
};
|
|
5673
|
+
export declare enum JiraCmdbAttributeType {
|
|
5674
|
+
Default = "DEFAULT",
|
|
5675
|
+
ReferencedObject = "REFERENCED_OBJECT",
|
|
5676
|
+
User = "USER",
|
|
5677
|
+
Confluence = "CONFLUENCE",
|
|
5678
|
+
Group = "GROUP",
|
|
5679
|
+
Version = "VERSION",
|
|
5680
|
+
Project = "PROJECT",
|
|
5681
|
+
Status = "STATUS"
|
|
5682
|
+
}
|
|
5683
|
+
export declare type JiraCmdbAvatar = {
|
|
5684
|
+
__typename?: 'JiraCmdbAvatar';
|
|
5685
|
+
id?: Maybe<Scalars['String']>;
|
|
5686
|
+
avatarUUID?: Maybe<Scalars['String']>;
|
|
5687
|
+
url16?: Maybe<Scalars['String']>;
|
|
5688
|
+
url48?: Maybe<Scalars['String']>;
|
|
5689
|
+
url72?: Maybe<Scalars['String']>;
|
|
5690
|
+
url144?: Maybe<Scalars['String']>;
|
|
5691
|
+
url288?: Maybe<Scalars['String']>;
|
|
5692
|
+
mediaClientConfig?: Maybe<JiraCmdbMediaClientConfig>;
|
|
5693
|
+
};
|
|
5694
|
+
export declare type JiraCmdbConfigAttributeConnection = {
|
|
5695
|
+
__typename?: 'JiraCmdbConfigAttributeConnection';
|
|
5696
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5697
|
+
pageInfo: PageInfo;
|
|
5698
|
+
edges?: Maybe<Array<Maybe<JiraCmdbConfigAttributeEdge>>>;
|
|
5699
|
+
};
|
|
5700
|
+
export declare type JiraCmdbConfigAttributeEdge = {
|
|
5701
|
+
__typename?: 'JiraCmdbConfigAttributeEdge';
|
|
5702
|
+
node?: Maybe<Scalars['String']>;
|
|
5703
|
+
cursor: Scalars['String'];
|
|
5704
|
+
};
|
|
5705
|
+
export declare type JiraCmdbDefaultType = {
|
|
5706
|
+
__typename?: 'JiraCmdbDefaultType';
|
|
5707
|
+
id?: Maybe<Scalars['String']>;
|
|
5708
|
+
name?: Maybe<Scalars['String']>;
|
|
5709
|
+
};
|
|
5710
|
+
export declare type JiraCmdbFieldConfig = {
|
|
5711
|
+
__typename?: 'JiraCmdbFieldConfig';
|
|
5712
|
+
objectSchemaId: Scalars['String'];
|
|
5713
|
+
objectFilterQuery?: Maybe<Scalars['String']>;
|
|
5714
|
+
issueScopeFilterQuery?: Maybe<Scalars['String']>;
|
|
5715
|
+
multiple?: Maybe<Scalars['Boolean']>;
|
|
5716
|
+
attributesDisplayedOnIssue?: Maybe<JiraCmdbConfigAttributeConnection>;
|
|
5717
|
+
attributesIncludedInAutoCompleteSearch?: Maybe<JiraCmdbConfigAttributeConnection>;
|
|
5718
|
+
};
|
|
5719
|
+
export declare type JiraCmdbFieldConfigAttributesDisplayedOnIssueArgs = {
|
|
5720
|
+
first?: Maybe<Scalars['Int']>;
|
|
5721
|
+
after?: Maybe<Scalars['String']>;
|
|
5722
|
+
last?: Maybe<Scalars['Int']>;
|
|
5723
|
+
before?: Maybe<Scalars['String']>;
|
|
5724
|
+
};
|
|
5725
|
+
export declare type JiraCmdbFieldConfigAttributesIncludedInAutoCompleteSearchArgs = {
|
|
5726
|
+
first?: Maybe<Scalars['Int']>;
|
|
5727
|
+
after?: Maybe<Scalars['String']>;
|
|
5728
|
+
last?: Maybe<Scalars['Int']>;
|
|
5729
|
+
before?: Maybe<Scalars['String']>;
|
|
5730
|
+
};
|
|
5731
|
+
export declare type JiraCmdbIcon = {
|
|
5732
|
+
__typename?: 'JiraCmdbIcon';
|
|
5733
|
+
id: Scalars['String'];
|
|
5734
|
+
name?: Maybe<Scalars['String']>;
|
|
5735
|
+
url16?: Maybe<Scalars['String']>;
|
|
5736
|
+
url48?: Maybe<Scalars['String']>;
|
|
5737
|
+
};
|
|
5738
|
+
export declare type JiraCmdbMediaClientConfig = {
|
|
5739
|
+
__typename?: 'JiraCmdbMediaClientConfig';
|
|
5740
|
+
clientId?: Maybe<Scalars['String']>;
|
|
5741
|
+
issuer?: Maybe<Scalars['String']>;
|
|
5742
|
+
fileId?: Maybe<Scalars['String']>;
|
|
5743
|
+
mediaBaseUrl?: Maybe<Scalars['URL']>;
|
|
5744
|
+
mediaJwtToken?: Maybe<Scalars['String']>;
|
|
5745
|
+
};
|
|
5474
5746
|
export declare type JiraCmdbObject = Node & {
|
|
5475
5747
|
__typename?: 'JiraCmdbObject';
|
|
5476
5748
|
id: Scalars['ID'];
|
|
@@ -5478,6 +5750,39 @@ export declare type JiraCmdbObject = Node & {
|
|
|
5478
5750
|
objectId?: Maybe<Scalars['String']>;
|
|
5479
5751
|
workspaceId?: Maybe<Scalars['String']>;
|
|
5480
5752
|
label?: Maybe<Scalars['String']>;
|
|
5753
|
+
objectKey?: Maybe<Scalars['String']>;
|
|
5754
|
+
avatar?: Maybe<JiraCmdbAvatar>;
|
|
5755
|
+
objectType?: Maybe<JiraCmdbObjectType>;
|
|
5756
|
+
attributes?: Maybe<JiraCmdbAttributeConnection>;
|
|
5757
|
+
webUrl?: Maybe<Scalars['String']>;
|
|
5758
|
+
};
|
|
5759
|
+
export declare type JiraCmdbObjectAttributesArgs = {
|
|
5760
|
+
first?: Maybe<Scalars['Int']>;
|
|
5761
|
+
after?: Maybe<Scalars['String']>;
|
|
5762
|
+
last?: Maybe<Scalars['Int']>;
|
|
5763
|
+
before?: Maybe<Scalars['String']>;
|
|
5764
|
+
};
|
|
5765
|
+
export declare type JiraCmdbObjectAttributeValue = {
|
|
5766
|
+
__typename?: 'JiraCmdbObjectAttributeValue';
|
|
5767
|
+
referencedObject?: Maybe<JiraCmdbObject>;
|
|
5768
|
+
user?: Maybe<User>;
|
|
5769
|
+
group?: Maybe<JiraGroup>;
|
|
5770
|
+
status?: Maybe<JiraCmdbStatusType>;
|
|
5771
|
+
value?: Maybe<Scalars['String']>;
|
|
5772
|
+
displayValue?: Maybe<Scalars['String']>;
|
|
5773
|
+
searchValue?: Maybe<Scalars['String']>;
|
|
5774
|
+
additionalValue?: Maybe<Scalars['String']>;
|
|
5775
|
+
};
|
|
5776
|
+
export declare type JiraCmdbObjectAttributeValueConnection = {
|
|
5777
|
+
__typename?: 'JiraCmdbObjectAttributeValueConnection';
|
|
5778
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5779
|
+
pageInfo: PageInfo;
|
|
5780
|
+
edges?: Maybe<Array<Maybe<JiraCmdbObjectAttributeValueEdge>>>;
|
|
5781
|
+
};
|
|
5782
|
+
export declare type JiraCmdbObjectAttributeValueEdge = {
|
|
5783
|
+
__typename?: 'JiraCmdbObjectAttributeValueEdge';
|
|
5784
|
+
node?: Maybe<JiraCmdbObjectAttributeValue>;
|
|
5785
|
+
cursor: Scalars['String'];
|
|
5481
5786
|
};
|
|
5482
5787
|
export declare type JiraCmdbObjectConnection = {
|
|
5483
5788
|
__typename?: 'JiraCmdbObjectConnection';
|
|
@@ -5490,6 +5795,45 @@ export declare type JiraCmdbObjectEdge = {
|
|
|
5490
5795
|
node?: Maybe<JiraCmdbObject>;
|
|
5491
5796
|
cursor: Scalars['String'];
|
|
5492
5797
|
};
|
|
5798
|
+
export declare type JiraCmdbObjectType = {
|
|
5799
|
+
__typename?: 'JiraCmdbObjectType';
|
|
5800
|
+
objectTypeId: Scalars['String'];
|
|
5801
|
+
name?: Maybe<Scalars['String']>;
|
|
5802
|
+
description?: Maybe<Scalars['String']>;
|
|
5803
|
+
icon?: Maybe<JiraCmdbIcon>;
|
|
5804
|
+
objectSchemaId?: Maybe<Scalars['String']>;
|
|
5805
|
+
};
|
|
5806
|
+
export declare type JiraCmdbObjectTypeAttribute = {
|
|
5807
|
+
__typename?: 'JiraCmdbObjectTypeAttribute';
|
|
5808
|
+
name?: Maybe<Scalars['String']>;
|
|
5809
|
+
label?: Maybe<Scalars['Boolean']>;
|
|
5810
|
+
type?: Maybe<JiraCmdbAttributeType>;
|
|
5811
|
+
description?: Maybe<Scalars['String']>;
|
|
5812
|
+
objectType?: Maybe<JiraCmdbObjectType>;
|
|
5813
|
+
defaultType?: Maybe<JiraCmdbDefaultType>;
|
|
5814
|
+
referenceType?: Maybe<JiraCmdbReferenceType>;
|
|
5815
|
+
referenceObjectTypeId?: Maybe<Scalars['String']>;
|
|
5816
|
+
referenceObjectType?: Maybe<JiraCmdbObjectType>;
|
|
5817
|
+
additionalValue?: Maybe<Scalars['String']>;
|
|
5818
|
+
suffix?: Maybe<Scalars['String']>;
|
|
5819
|
+
};
|
|
5820
|
+
export declare type JiraCmdbReferenceType = {
|
|
5821
|
+
__typename?: 'JiraCmdbReferenceType';
|
|
5822
|
+
id?: Maybe<Scalars['String']>;
|
|
5823
|
+
name?: Maybe<Scalars['String']>;
|
|
5824
|
+
description?: Maybe<Scalars['String']>;
|
|
5825
|
+
color?: Maybe<Scalars['String']>;
|
|
5826
|
+
webUrl?: Maybe<Scalars['String']>;
|
|
5827
|
+
objectSchemaId?: Maybe<Scalars['String']>;
|
|
5828
|
+
};
|
|
5829
|
+
export declare type JiraCmdbStatusType = {
|
|
5830
|
+
__typename?: 'JiraCmdbStatusType';
|
|
5831
|
+
id?: Maybe<Scalars['String']>;
|
|
5832
|
+
name?: Maybe<Scalars['String']>;
|
|
5833
|
+
description?: Maybe<Scalars['String']>;
|
|
5834
|
+
category?: Maybe<Scalars['Int']>;
|
|
5835
|
+
objectSchemaId?: Maybe<Scalars['String']>;
|
|
5836
|
+
};
|
|
5493
5837
|
export declare type JiraColor = {
|
|
5494
5838
|
__typename?: 'JiraColor';
|
|
5495
5839
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -5584,8 +5928,8 @@ export declare type JiraConnectMultipleSelectField = Node & JiraIssueField & Jir
|
|
|
5584
5928
|
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
5585
5929
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
5586
5930
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
5587
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5588
5931
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5932
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5589
5933
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5590
5934
|
};
|
|
5591
5935
|
export declare type JiraConnectMultipleSelectFieldSelectedOptionsArgs = {
|
|
@@ -5637,8 +5981,8 @@ export declare type JiraConnectSingleSelectField = Node & JiraIssueField & JiraI
|
|
|
5637
5981
|
description?: Maybe<Scalars['String']>;
|
|
5638
5982
|
fieldOption?: Maybe<JiraOption>;
|
|
5639
5983
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
5640
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5641
5984
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5985
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5642
5986
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5643
5987
|
};
|
|
5644
5988
|
export declare type JiraConnectSingleSelectFieldFieldOptionsArgs = {
|
|
@@ -5798,6 +6142,14 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
5798
6142
|
__typename?: 'JiraFieldNonEditableReason';
|
|
5799
6143
|
message?: Maybe<Scalars['String']>;
|
|
5800
6144
|
};
|
|
6145
|
+
export declare type JiraFilter = Node & {
|
|
6146
|
+
__typename?: 'JiraFilter';
|
|
6147
|
+
id: Scalars['ID'];
|
|
6148
|
+
filterId: Scalars['String'];
|
|
6149
|
+
jql: Scalars['String'];
|
|
6150
|
+
name: Scalars['String'];
|
|
6151
|
+
};
|
|
6152
|
+
export declare type JiraFilterResult = JiraFilter | QueryError;
|
|
5801
6153
|
export declare type JiraFlag = {
|
|
5802
6154
|
__typename?: 'JiraFlag';
|
|
5803
6155
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -5836,8 +6188,8 @@ export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueField
|
|
|
5836
6188
|
description?: Maybe<Scalars['String']>;
|
|
5837
6189
|
selectedGroup?: Maybe<JiraGroup>;
|
|
5838
6190
|
groups?: Maybe<JiraGroupConnection>;
|
|
5839
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5840
6191
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6192
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5841
6193
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5842
6194
|
};
|
|
5843
6195
|
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
@@ -5858,8 +6210,8 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
5858
6210
|
selectedGroups?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
5859
6211
|
selectedGroupsConnection?: Maybe<JiraGroupConnection>;
|
|
5860
6212
|
groups?: Maybe<JiraGroupConnection>;
|
|
5861
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5862
6213
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6214
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5863
6215
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5864
6216
|
};
|
|
5865
6217
|
export declare type JiraForgeGroupsFieldSelectedGroupsConnectionArgs = {
|
|
@@ -6055,6 +6407,8 @@ export declare type JiraIssue = Node & {
|
|
|
6055
6407
|
comments?: Maybe<JiraCommentConnection>;
|
|
6056
6408
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
6057
6409
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
6410
|
+
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6411
|
+
childIssues?: Maybe<JiraChildIssues>;
|
|
6058
6412
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6059
6413
|
};
|
|
6060
6414
|
export declare type JiraIssueFieldsArgs = {
|
|
@@ -6088,6 +6442,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
6088
6442
|
last?: Maybe<Scalars['Int']>;
|
|
6089
6443
|
before?: Maybe<Scalars['String']>;
|
|
6090
6444
|
};
|
|
6445
|
+
export declare type JiraIssueFieldSetsArgs = {
|
|
6446
|
+
first?: Maybe<Scalars['Int']>;
|
|
6447
|
+
after?: Maybe<Scalars['String']>;
|
|
6448
|
+
last?: Maybe<Scalars['Int']>;
|
|
6449
|
+
before?: Maybe<Scalars['String']>;
|
|
6450
|
+
};
|
|
6091
6451
|
export declare type JiraIssueBranchDevSummary = {
|
|
6092
6452
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
6093
6453
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6202,6 +6562,7 @@ export declare type JiraIssueFieldConnection = {
|
|
|
6202
6562
|
pageInfo: PageInfo;
|
|
6203
6563
|
edges?: Maybe<Array<Maybe<JiraIssueFieldEdge>>>;
|
|
6204
6564
|
};
|
|
6565
|
+
export declare type JiraIssueFieldConnectionResult = JiraIssueFieldConnection | QueryError;
|
|
6205
6566
|
export declare type JiraIssueFieldEdge = {
|
|
6206
6567
|
__typename?: 'JiraIssueFieldEdge';
|
|
6207
6568
|
node?: Maybe<JiraIssueField>;
|
|
@@ -6212,6 +6573,29 @@ export declare type JiraIssueFieldGrantTypeValue = Node & {
|
|
|
6212
6573
|
id: Scalars['ID'];
|
|
6213
6574
|
field: JiraIssueField;
|
|
6214
6575
|
};
|
|
6576
|
+
export declare type JiraIssueFieldSet = {
|
|
6577
|
+
__typename?: 'JiraIssueFieldSet';
|
|
6578
|
+
fieldSetId?: Maybe<Scalars['String']>;
|
|
6579
|
+
type?: Maybe<Scalars['String']>;
|
|
6580
|
+
fields?: Maybe<JiraIssueFieldConnection>;
|
|
6581
|
+
};
|
|
6582
|
+
export declare type JiraIssueFieldSetFieldsArgs = {
|
|
6583
|
+
first?: Maybe<Scalars['Int']>;
|
|
6584
|
+
after?: Maybe<Scalars['String']>;
|
|
6585
|
+
last?: Maybe<Scalars['Int']>;
|
|
6586
|
+
before?: Maybe<Scalars['String']>;
|
|
6587
|
+
};
|
|
6588
|
+
export declare type JiraIssueFieldSetConnection = {
|
|
6589
|
+
__typename?: 'JiraIssueFieldSetConnection';
|
|
6590
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6591
|
+
pageInfo?: Maybe<PageInfo>;
|
|
6592
|
+
edges?: Maybe<Array<Maybe<JiraIssueFieldSetEdge>>>;
|
|
6593
|
+
};
|
|
6594
|
+
export declare type JiraIssueFieldSetEdge = {
|
|
6595
|
+
__typename?: 'JiraIssueFieldSetEdge';
|
|
6596
|
+
node?: Maybe<JiraIssueFieldSet>;
|
|
6597
|
+
cursor: Scalars['String'];
|
|
6598
|
+
};
|
|
6215
6599
|
export declare type JiraIssueItemContainer = {
|
|
6216
6600
|
__typename?: 'JiraIssueItemContainer';
|
|
6217
6601
|
containerType?: Maybe<JiraIssueItemSystemContainerType>;
|
|
@@ -6444,12 +6828,142 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
6444
6828
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
6445
6829
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6446
6830
|
};
|
|
6831
|
+
export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
6832
|
+
__typename?: 'JiraIssueSearchByFilter';
|
|
6833
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6834
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6835
|
+
filter?: Maybe<JiraFilterResult>;
|
|
6836
|
+
};
|
|
6837
|
+
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
6838
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6839
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6840
|
+
};
|
|
6841
|
+
export declare type JiraIssueSearchByFilterContentByFieldConfigSetIdsArgs = {
|
|
6842
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6843
|
+
};
|
|
6844
|
+
export declare type JiraIssueSearchByFilterResult = JiraIssueSearchByFilter | QueryError;
|
|
6845
|
+
export declare type JiraIssueSearchByHydration = JiraIssueSearchResult & {
|
|
6846
|
+
__typename?: 'JiraIssueSearchByHydration';
|
|
6847
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6848
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6849
|
+
};
|
|
6850
|
+
export declare type JiraIssueSearchByHydrationContentArgs = {
|
|
6851
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6852
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6853
|
+
};
|
|
6854
|
+
export declare type JiraIssueSearchByHydrationContentByFieldConfigSetIdsArgs = {
|
|
6855
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6856
|
+
};
|
|
6857
|
+
export declare type JiraIssueSearchByJql = JiraIssueSearchResult & {
|
|
6858
|
+
__typename?: 'JiraIssueSearchByJql';
|
|
6859
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6860
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6861
|
+
jql?: Maybe<Scalars['String']>;
|
|
6862
|
+
};
|
|
6863
|
+
export declare type JiraIssueSearchByJqlContentArgs = {
|
|
6864
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6865
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6866
|
+
};
|
|
6867
|
+
export declare type JiraIssueSearchByJqlContentByFieldConfigSetIdsArgs = {
|
|
6868
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6869
|
+
};
|
|
6870
|
+
export declare type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
6871
|
+
export declare type JiraIssueSearchContextlessContent = JiraIssueSearchResultContent & {
|
|
6872
|
+
__typename?: 'JiraIssueSearchContextlessContent';
|
|
6873
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6874
|
+
};
|
|
6875
|
+
export declare type JiraIssueSearchContextlessContentIssuesArgs = {
|
|
6876
|
+
first?: Maybe<Scalars['Int']>;
|
|
6877
|
+
last?: Maybe<Scalars['Int']>;
|
|
6878
|
+
before?: Maybe<Scalars['String']>;
|
|
6879
|
+
after?: Maybe<Scalars['String']>;
|
|
6880
|
+
};
|
|
6881
|
+
export declare type JiraIssueSearchContextualContent = JiraIssueSearchResultContent & {
|
|
6882
|
+
__typename?: 'JiraIssueSearchContextualContent';
|
|
6883
|
+
view?: Maybe<JiraIssueSearchView>;
|
|
6884
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6885
|
+
};
|
|
6886
|
+
export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
6887
|
+
first?: Maybe<Scalars['Int']>;
|
|
6888
|
+
last?: Maybe<Scalars['Int']>;
|
|
6889
|
+
before?: Maybe<Scalars['String']>;
|
|
6890
|
+
after?: Maybe<Scalars['String']>;
|
|
6891
|
+
};
|
|
6892
|
+
export declare type JiraIssueSearchFieldConfigSet = {
|
|
6893
|
+
__typename?: 'JiraIssueSearchFieldConfigSet';
|
|
6894
|
+
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
6895
|
+
displayName?: Maybe<Scalars['String']>;
|
|
6896
|
+
fieldType?: Maybe<Scalars['String']>;
|
|
6897
|
+
isSortable?: Maybe<Scalars['Boolean']>;
|
|
6898
|
+
isSelected?: Maybe<Scalars['Boolean']>;
|
|
6899
|
+
};
|
|
6900
|
+
export declare type JiraIssueSearchFieldConfigSetConnection = {
|
|
6901
|
+
__typename?: 'JiraIssueSearchFieldConfigSetConnection';
|
|
6902
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6903
|
+
pageInfo: PageInfo;
|
|
6904
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldConfigSetEdge>>>;
|
|
6905
|
+
};
|
|
6906
|
+
export declare type JiraIssueSearchFieldConfigSetEdge = {
|
|
6907
|
+
__typename?: 'JiraIssueSearchFieldConfigSetEdge';
|
|
6908
|
+
node?: Maybe<JiraIssueSearchFieldConfigSet>;
|
|
6909
|
+
cursor: Scalars['String'];
|
|
6910
|
+
};
|
|
6911
|
+
export declare enum JiraIssueSearchFieldConfigSetSelectedState {
|
|
6912
|
+
All = "ALL",
|
|
6913
|
+
Selected = "SELECTED",
|
|
6914
|
+
NonSelected = "NON_SELECTED"
|
|
6915
|
+
}
|
|
6916
|
+
export declare type JiraIssueSearchFieldConfigSetsFilter = {
|
|
6917
|
+
searchString?: Maybe<Scalars['String']>;
|
|
6918
|
+
fieldConfigSetSelectedState?: Maybe<JiraIssueSearchFieldConfigSetSelectedState>;
|
|
6919
|
+
};
|
|
6920
|
+
export declare type JiraIssueSearchResult = {
|
|
6921
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6922
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6923
|
+
};
|
|
6924
|
+
export declare type JiraIssueSearchResultContentArgs = {
|
|
6925
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6926
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6927
|
+
};
|
|
6928
|
+
export declare type JiraIssueSearchResultContentByFieldConfigSetIdsArgs = {
|
|
6929
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6930
|
+
};
|
|
6931
|
+
export declare type JiraIssueSearchResultContent = {
|
|
6932
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6933
|
+
};
|
|
6934
|
+
export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
6935
|
+
first?: Maybe<Scalars['Int']>;
|
|
6936
|
+
last?: Maybe<Scalars['Int']>;
|
|
6937
|
+
before?: Maybe<Scalars['String']>;
|
|
6938
|
+
after?: Maybe<Scalars['String']>;
|
|
6939
|
+
};
|
|
6940
|
+
export declare type JiraIssueSearchView = Node & {
|
|
6941
|
+
__typename?: 'JiraIssueSearchView';
|
|
6942
|
+
id: Scalars['ID'];
|
|
6943
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6944
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6945
|
+
fieldConfigSets?: Maybe<JiraIssueSearchFieldConfigSetConnection>;
|
|
6946
|
+
};
|
|
6947
|
+
export declare type JiraIssueSearchViewFieldConfigSetsArgs = {
|
|
6948
|
+
first?: Maybe<Scalars['Int']>;
|
|
6949
|
+
last?: Maybe<Scalars['Int']>;
|
|
6950
|
+
before?: Maybe<Scalars['String']>;
|
|
6951
|
+
after?: Maybe<Scalars['String']>;
|
|
6952
|
+
filter?: Maybe<JiraIssueSearchFieldConfigSetsFilter>;
|
|
6953
|
+
};
|
|
6954
|
+
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
6955
|
+
__typename?: 'JiraIssueSearchViewPayload';
|
|
6956
|
+
success: Scalars['Boolean'];
|
|
6957
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6958
|
+
view?: Maybe<JiraIssueSearchView>;
|
|
6959
|
+
};
|
|
6447
6960
|
export declare type JiraIssueType = Node & {
|
|
6448
6961
|
__typename?: 'JiraIssueType';
|
|
6449
6962
|
id: Scalars['ID'];
|
|
6450
6963
|
name: Scalars['String'];
|
|
6451
6964
|
description?: Maybe<Scalars['String']>;
|
|
6452
6965
|
avatar?: Maybe<JiraAvatar>;
|
|
6966
|
+
hierarchy?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
6453
6967
|
};
|
|
6454
6968
|
export declare type JiraIssueTypeConnection = {
|
|
6455
6969
|
__typename?: 'JiraIssueTypeConnection';
|
|
@@ -6482,6 +6996,11 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
6482
6996
|
before?: Maybe<Scalars['String']>;
|
|
6483
6997
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
6484
6998
|
};
|
|
6999
|
+
export declare type JiraIssueTypeHierarchyLevel = {
|
|
7000
|
+
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
7001
|
+
level?: Maybe<Scalars['Int']>;
|
|
7002
|
+
name?: Maybe<Scalars['String']>;
|
|
7003
|
+
};
|
|
6485
7004
|
export declare enum JiraJqlAutocompleteType {
|
|
6486
7005
|
None = "NONE",
|
|
6487
7006
|
Component = "COMPONENT",
|
|
@@ -7078,11 +7597,16 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
7078
7597
|
export declare type JiraMutation = {
|
|
7079
7598
|
__typename?: 'JiraMutation';
|
|
7080
7599
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
7600
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
7081
7601
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
7082
7602
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
7083
7603
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
7084
7604
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
7085
7605
|
};
|
|
7606
|
+
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
7607
|
+
id: Scalars['ID'];
|
|
7608
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
7609
|
+
};
|
|
7086
7610
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
7087
7611
|
cloudId: Scalars['ID'];
|
|
7088
7612
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -7285,6 +7809,7 @@ export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7285
7809
|
name: Scalars['String'];
|
|
7286
7810
|
description?: Maybe<Scalars['String']>;
|
|
7287
7811
|
parentIssue?: Maybe<JiraIssue>;
|
|
7812
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
7288
7813
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7289
7814
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7290
7815
|
};
|
|
@@ -7501,10 +8026,28 @@ export declare type JiraPriorityFieldPrioritiesArgs = {
|
|
|
7501
8026
|
before?: Maybe<Scalars['String']>;
|
|
7502
8027
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
7503
8028
|
};
|
|
8029
|
+
export declare type JiraProformaForms = {
|
|
8030
|
+
__typename?: 'JiraProformaForms';
|
|
8031
|
+
hasProjectForms?: Maybe<Scalars['Boolean']>;
|
|
8032
|
+
hasIssueForms?: Maybe<Scalars['Boolean']>;
|
|
8033
|
+
};
|
|
8034
|
+
export declare type JiraProformaFormsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8035
|
+
__typename?: 'JiraProformaFormsField';
|
|
8036
|
+
id: Scalars['ID'];
|
|
8037
|
+
fieldId: Scalars['String'];
|
|
8038
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
8039
|
+
type: Scalars['String'];
|
|
8040
|
+
name: Scalars['String'];
|
|
8041
|
+
description?: Maybe<Scalars['String']>;
|
|
8042
|
+
proformaForms?: Maybe<JiraProformaForms>;
|
|
8043
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8044
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8045
|
+
};
|
|
7504
8046
|
export declare type JiraProject = Node & {
|
|
7505
8047
|
__typename?: 'JiraProject';
|
|
7506
8048
|
id: Scalars['ID'];
|
|
7507
8049
|
key: Scalars['String'];
|
|
8050
|
+
projectId?: Maybe<Scalars['String']>;
|
|
7508
8051
|
name: Scalars['String'];
|
|
7509
8052
|
cloudId: Scalars['ID'];
|
|
7510
8053
|
description?: Maybe<Scalars['String']>;
|
|
@@ -7512,6 +8055,9 @@ export declare type JiraProject = Node & {
|
|
|
7512
8055
|
category?: Maybe<JiraProjectCategory>;
|
|
7513
8056
|
avatar?: Maybe<JiraAvatar>;
|
|
7514
8057
|
projectUrl?: Maybe<Scalars['String']>;
|
|
8058
|
+
projectType?: Maybe<JiraProjectType>;
|
|
8059
|
+
projectStyle?: Maybe<JiraProjectStyle>;
|
|
8060
|
+
status?: Maybe<JiraProjectStatus>;
|
|
7515
8061
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
7516
8062
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
7517
8063
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -7733,6 +8279,14 @@ export declare type JiraProjectSortInput = {
|
|
|
7733
8279
|
sortBy?: Maybe<JiraProjectSortField>;
|
|
7734
8280
|
order?: Maybe<SortDirection>;
|
|
7735
8281
|
};
|
|
8282
|
+
export declare enum JiraProjectStatus {
|
|
8283
|
+
Archived = "ARCHIVED",
|
|
8284
|
+
Deleted = "DELETED"
|
|
8285
|
+
}
|
|
8286
|
+
export declare enum JiraProjectStyle {
|
|
8287
|
+
TeamManagedProject = "TEAM_MANAGED_PROJECT",
|
|
8288
|
+
CompanyManagedProject = "COMPANY_MANAGED_PROJECT"
|
|
8289
|
+
}
|
|
7736
8290
|
export declare enum JiraProjectType {
|
|
7737
8291
|
ServiceDesk = "SERVICE_DESK",
|
|
7738
8292
|
Business = "BUSINESS",
|
|
@@ -7751,6 +8305,10 @@ export declare type JiraQuery = {
|
|
|
7751
8305
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
7752
8306
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
7753
8307
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
8308
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
8309
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
8310
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
8311
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
7754
8312
|
issueByKey?: Maybe<JiraIssue>;
|
|
7755
8313
|
issueById?: Maybe<JiraIssue>;
|
|
7756
8314
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
@@ -7763,6 +8321,7 @@ export declare type JiraQuery = {
|
|
|
7763
8321
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
7764
8322
|
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
7765
8323
|
version?: Maybe<JiraVersionResult>;
|
|
8324
|
+
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
7766
8325
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
7767
8326
|
};
|
|
7768
8327
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -7789,6 +8348,19 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
7789
8348
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
7790
8349
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
7791
8350
|
};
|
|
8351
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
8352
|
+
cloudId: Scalars['ID'];
|
|
8353
|
+
jql: Scalars['String'];
|
|
8354
|
+
};
|
|
8355
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
8356
|
+
id: Scalars['ID'];
|
|
8357
|
+
};
|
|
8358
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
8359
|
+
ids: Array<Scalars['ID']>;
|
|
8360
|
+
};
|
|
8361
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
8362
|
+
id: Scalars['ID'];
|
|
8363
|
+
};
|
|
7792
8364
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
7793
8365
|
key: Scalars['String'];
|
|
7794
8366
|
cloudId: Scalars['ID'];
|
|
@@ -7849,6 +8421,14 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
7849
8421
|
export declare type JiraQueryVersionArgs = {
|
|
7850
8422
|
id: Scalars['ID'];
|
|
7851
8423
|
};
|
|
8424
|
+
export declare type JiraQueryVersionsForProjectArgs = {
|
|
8425
|
+
jiraProjectId: Scalars['ID'];
|
|
8426
|
+
first?: Maybe<Scalars['Int']>;
|
|
8427
|
+
after?: Maybe<Scalars['String']>;
|
|
8428
|
+
last?: Maybe<Scalars['Int']>;
|
|
8429
|
+
before?: Maybe<Scalars['String']>;
|
|
8430
|
+
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
8431
|
+
};
|
|
7852
8432
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
7853
8433
|
versionId: Scalars['ID'];
|
|
7854
8434
|
};
|
|
@@ -8228,6 +8808,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
8228
8808
|
updated?: Maybe<Scalars['DateTime']>;
|
|
8229
8809
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
8230
8810
|
visibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
8811
|
+
authorCanSeeRequest?: Maybe<Scalars['Boolean']>;
|
|
8231
8812
|
};
|
|
8232
8813
|
export declare enum JiraServiceManagementCommentVisibility {
|
|
8233
8814
|
VisibleToHelpseeker = "VISIBLE_TO_HELPSEEKER",
|
|
@@ -8324,6 +8905,21 @@ export declare type JiraServiceManagementLanguage = {
|
|
|
8324
8905
|
languageCode?: Maybe<Scalars['String']>;
|
|
8325
8906
|
displayName?: Maybe<Scalars['String']>;
|
|
8326
8907
|
};
|
|
8908
|
+
export declare enum JiraServiceManagementMajorIncident {
|
|
8909
|
+
MajorIncident = "MAJOR_INCIDENT"
|
|
8910
|
+
}
|
|
8911
|
+
export declare type JiraServiceManagementMajorIncidentField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8912
|
+
__typename?: 'JiraServiceManagementMajorIncidentField';
|
|
8913
|
+
id: Scalars['ID'];
|
|
8914
|
+
fieldId: Scalars['String'];
|
|
8915
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
8916
|
+
type: Scalars['String'];
|
|
8917
|
+
name: Scalars['String'];
|
|
8918
|
+
description?: Maybe<Scalars['String']>;
|
|
8919
|
+
majorIncident?: Maybe<JiraServiceManagementMajorIncident>;
|
|
8920
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8921
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8922
|
+
};
|
|
8327
8923
|
export declare type JiraServiceManagementMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8328
8924
|
__typename?: 'JiraServiceManagementMultipleSelectUserPickerField';
|
|
8329
8925
|
id: Scalars['ID'];
|
|
@@ -8730,6 +9326,7 @@ export declare type JiraStatus = Node & {
|
|
|
8730
9326
|
id: Scalars['ID'];
|
|
8731
9327
|
statusId: Scalars['String'];
|
|
8732
9328
|
name?: Maybe<Scalars['String']>;
|
|
9329
|
+
description?: Maybe<Scalars['String']>;
|
|
8733
9330
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
8734
9331
|
};
|
|
8735
9332
|
export declare type JiraStatusCategory = Node & {
|
|
@@ -9015,6 +9612,21 @@ export declare type JiraWatchesField = Node & JiraIssueField & JiraIssueFieldCon
|
|
|
9015
9612
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9016
9613
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9017
9614
|
};
|
|
9615
|
+
export declare type JiraWorkCategory = {
|
|
9616
|
+
__typename?: 'JiraWorkCategory';
|
|
9617
|
+
value?: Maybe<Scalars['String']>;
|
|
9618
|
+
};
|
|
9619
|
+
export declare type JiraWorkCategoryField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
9620
|
+
__typename?: 'JiraWorkCategoryField';
|
|
9621
|
+
id: Scalars['ID'];
|
|
9622
|
+
fieldId: Scalars['String'];
|
|
9623
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9624
|
+
type: Scalars['String'];
|
|
9625
|
+
name: Scalars['String'];
|
|
9626
|
+
description?: Maybe<Scalars['String']>;
|
|
9627
|
+
workCategory?: Maybe<JiraWorkCategory>;
|
|
9628
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9629
|
+
};
|
|
9018
9630
|
export declare type JiraWorkLogConnection = {
|
|
9019
9631
|
__typename?: 'JiraWorkLogConnection';
|
|
9020
9632
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -9524,6 +10136,7 @@ export declare type Mutation = {
|
|
|
9524
10136
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
9525
10137
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
9526
10138
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
10139
|
+
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
9527
10140
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
9528
10141
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
9529
10142
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -9592,6 +10205,7 @@ export declare type Mutation = {
|
|
|
9592
10205
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
9593
10206
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
9594
10207
|
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
10208
|
+
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
9595
10209
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
9596
10210
|
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
9597
10211
|
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
@@ -9737,6 +10351,9 @@ export declare type MutationRankCardParentArgs = {
|
|
|
9737
10351
|
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
9738
10352
|
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
9739
10353
|
};
|
|
10354
|
+
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
10355
|
+
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
10356
|
+
};
|
|
9740
10357
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
9741
10358
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
9742
10359
|
};
|
|
@@ -9945,6 +10562,10 @@ export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
|
9945
10562
|
export declare type MutationDeletePolarisViewArgs = {
|
|
9946
10563
|
id: Scalars['ID'];
|
|
9947
10564
|
};
|
|
10565
|
+
export declare type MutationUpdatePolarisViewLastViewedTimestampArgs = {
|
|
10566
|
+
viewId: Scalars['ID'];
|
|
10567
|
+
timestampInput?: Maybe<Scalars['String']>;
|
|
10568
|
+
};
|
|
9948
10569
|
export declare type MutationCreatePolarisViewSetArgs = {
|
|
9949
10570
|
input: CreatePolarisViewSetInput;
|
|
9950
10571
|
};
|
|
@@ -10053,6 +10674,31 @@ export declare type MyActivitiesViewedArgs = {
|
|
|
10053
10674
|
first?: Maybe<Scalars['Int']>;
|
|
10054
10675
|
after?: Maybe<Scalars['String']>;
|
|
10055
10676
|
};
|
|
10677
|
+
export declare type MyActivity = {
|
|
10678
|
+
__typename?: 'MyActivity';
|
|
10679
|
+
all: ActivityConnection;
|
|
10680
|
+
workedOn: ActivityConnection;
|
|
10681
|
+
viewed: ActivityConnection;
|
|
10682
|
+
};
|
|
10683
|
+
export declare type MyActivityAllArgs = {
|
|
10684
|
+
filter?: Maybe<MyActivityFilter>;
|
|
10685
|
+
first?: Maybe<Scalars['Int']>;
|
|
10686
|
+
after?: Maybe<Scalars['String']>;
|
|
10687
|
+
};
|
|
10688
|
+
export declare type MyActivityWorkedOnArgs = {
|
|
10689
|
+
filter?: Maybe<MyActivityFilter>;
|
|
10690
|
+
first?: Maybe<Scalars['Int']>;
|
|
10691
|
+
after?: Maybe<Scalars['String']>;
|
|
10692
|
+
};
|
|
10693
|
+
export declare type MyActivityViewedArgs = {
|
|
10694
|
+
filter?: Maybe<MyActivityFilter>;
|
|
10695
|
+
first?: Maybe<Scalars['Int']>;
|
|
10696
|
+
after?: Maybe<Scalars['String']>;
|
|
10697
|
+
};
|
|
10698
|
+
export declare type MyActivityFilter = {
|
|
10699
|
+
type?: Maybe<ActivitiesFilterType>;
|
|
10700
|
+
arguments?: Maybe<ActivityFilterArgs>;
|
|
10701
|
+
};
|
|
10056
10702
|
export declare type NadelHydrationArgument = {
|
|
10057
10703
|
name: Scalars['String'];
|
|
10058
10704
|
value: Scalars['String'];
|
|
@@ -10226,6 +10872,12 @@ export declare type Payload = {
|
|
|
10226
10872
|
success: Scalars['Boolean'];
|
|
10227
10873
|
errors?: Maybe<Array<MutationError>>;
|
|
10228
10874
|
};
|
|
10875
|
+
export declare type PermissibleEstimationType = {
|
|
10876
|
+
__typename?: 'PermissibleEstimationType';
|
|
10877
|
+
value?: Maybe<Scalars['String']>;
|
|
10878
|
+
name?: Maybe<Scalars['String']>;
|
|
10879
|
+
description?: Maybe<Scalars['String']>;
|
|
10880
|
+
};
|
|
10229
10881
|
export declare type PermissionToConsentByOauthId = {
|
|
10230
10882
|
__typename?: 'PermissionToConsentByOauthId';
|
|
10231
10883
|
isAllowed: Scalars['Boolean'];
|
|
@@ -11165,6 +11817,7 @@ export declare type Query = {
|
|
|
11165
11817
|
node?: Maybe<Node>;
|
|
11166
11818
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
11167
11819
|
activities?: Maybe<Activities>;
|
|
11820
|
+
activity?: Maybe<Activity>;
|
|
11168
11821
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
11169
11822
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
11170
11823
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -11174,6 +11827,7 @@ export declare type Query = {
|
|
|
11174
11827
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
11175
11828
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
11176
11829
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
11830
|
+
practicePages: Array<ContentPlatformPracticePage>;
|
|
11177
11831
|
practicePage: ContentPlatformPracticePage;
|
|
11178
11832
|
apps?: Maybe<AppConnection>;
|
|
11179
11833
|
app?: Maybe<App>;
|
|
@@ -12178,7 +12832,7 @@ export declare type ShepherdAlertEdge = {
|
|
|
12178
12832
|
__typename?: 'ShepherdAlertEdge';
|
|
12179
12833
|
node?: Maybe<ShepherdAlert>;
|
|
12180
12834
|
};
|
|
12181
|
-
export declare type ShepherdAlertResult =
|
|
12835
|
+
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
12182
12836
|
export declare enum ShepherdAlertSeverity {
|
|
12183
12837
|
Critical = "CRITICAL",
|
|
12184
12838
|
High = "HIGH",
|
|
@@ -12194,7 +12848,7 @@ export declare type ShepherdAlertsConnection = {
|
|
|
12194
12848
|
__typename?: 'ShepherdAlertsConnection';
|
|
12195
12849
|
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
12196
12850
|
};
|
|
12197
|
-
export declare type ShepherdAlertsResult =
|
|
12851
|
+
export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection;
|
|
12198
12852
|
export declare type ShepherdAppInfo = {
|
|
12199
12853
|
__typename?: 'ShepherdAppInfo';
|
|
12200
12854
|
apiVersion: Scalars['Int'];
|
|
@@ -12223,14 +12877,11 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
12223
12877
|
node?: Maybe<ShepherdOrganization>;
|
|
12224
12878
|
success: Scalars['Boolean'];
|
|
12225
12879
|
};
|
|
12226
|
-
export declare
|
|
12227
|
-
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12228
|
-
Unauthorized = "UNAUTHORIZED"
|
|
12229
|
-
}
|
|
12230
|
-
export declare type ShepherdGenericQueryErrorExtension = ShepherdQueryErrorExtension & {
|
|
12880
|
+
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
12231
12881
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
12232
|
-
errorType?: Maybe<
|
|
12882
|
+
errorType?: Maybe<Scalars['String']>;
|
|
12233
12883
|
statusCode?: Maybe<Scalars['Int']>;
|
|
12884
|
+
type?: Maybe<ShepherdQueryErrorType>;
|
|
12234
12885
|
};
|
|
12235
12886
|
export declare type ShepherdMutation = {
|
|
12236
12887
|
__typename?: 'ShepherdMutation';
|
|
@@ -12277,16 +12928,10 @@ export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
|
12277
12928
|
export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
12278
12929
|
id: Scalars['ID'];
|
|
12279
12930
|
};
|
|
12280
|
-
export declare
|
|
12281
|
-
|
|
12282
|
-
|
|
12283
|
-
|
|
12284
|
-
message?: Maybe<Scalars['String']>;
|
|
12285
|
-
};
|
|
12286
|
-
export declare type ShepherdQueryErrorExtension = {
|
|
12287
|
-
errorType?: Maybe<ShepherdErrorType>;
|
|
12288
|
-
statusCode?: Maybe<Scalars['Int']>;
|
|
12289
|
-
};
|
|
12931
|
+
export declare enum ShepherdQueryErrorType {
|
|
12932
|
+
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12933
|
+
Unauthorized = "UNAUTHORIZED"
|
|
12934
|
+
}
|
|
12290
12935
|
export declare type ShepherdUpdateAlertInput = {
|
|
12291
12936
|
status?: Maybe<ShepherdAlertStatus>;
|
|
12292
12937
|
};
|
|
@@ -12783,7 +13428,7 @@ export declare enum SwimlaneStrategy {
|
|
|
12783
13428
|
Issueparent = "ISSUEPARENT",
|
|
12784
13429
|
Issuechildren = "ISSUECHILDREN"
|
|
12785
13430
|
}
|
|
12786
|
-
export declare type Team = {
|
|
13431
|
+
export declare type Team = Node & {
|
|
12787
13432
|
__typename?: 'Team';
|
|
12788
13433
|
id: Scalars['ID'];
|
|
12789
13434
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -13001,26 +13646,20 @@ export declare enum TownsquareProjectStateValue {
|
|
|
13001
13646
|
}
|
|
13002
13647
|
export declare type TownsquareQueryApi = {
|
|
13003
13648
|
__typename?: 'TownsquareQueryApi';
|
|
13004
|
-
projectsByAri?: Maybe<
|
|
13005
|
-
goalsByAri?: Maybe<
|
|
13006
|
-
commentsByAri?: Maybe<
|
|
13649
|
+
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
13650
|
+
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
13651
|
+
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
13007
13652
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
13008
13653
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
13009
13654
|
};
|
|
13010
13655
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
13011
13656
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13012
|
-
after?: Maybe<Scalars['String']>;
|
|
13013
|
-
first?: Maybe<Scalars['Int']>;
|
|
13014
13657
|
};
|
|
13015
13658
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
13016
13659
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13017
|
-
after?: Maybe<Scalars['String']>;
|
|
13018
|
-
first?: Maybe<Scalars['Int']>;
|
|
13019
13660
|
};
|
|
13020
13661
|
export declare type TownsquareQueryApiCommentsByAriArgs = {
|
|
13021
13662
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13022
|
-
after?: Maybe<Scalars['String']>;
|
|
13023
|
-
first?: Maybe<Scalars['Int']>;
|
|
13024
13663
|
};
|
|
13025
13664
|
export declare type TownsquareQueryApiProjectSearchArgs = {
|
|
13026
13665
|
after?: Maybe<Scalars['String']>;
|
|
@@ -13509,6 +14148,11 @@ export declare type UpdatePolarisViewSetPayload = Payload & {
|
|
|
13509
14148
|
errors?: Maybe<Array<MutationError>>;
|
|
13510
14149
|
node?: Maybe<PolarisViewSet>;
|
|
13511
14150
|
};
|
|
14151
|
+
export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
14152
|
+
__typename?: 'UpdatePolarisViewTimestampPayload';
|
|
14153
|
+
success: Scalars['Boolean'];
|
|
14154
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14155
|
+
};
|
|
13512
14156
|
export declare type User = {
|
|
13513
14157
|
accountId: Scalars['ID'];
|
|
13514
14158
|
accountStatus: AccountStatus;
|