@forge/cli-shared 2.2.0-next.16 → 2.2.0-next.20
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
|
}
|
|
@@ -1015,7 +1089,6 @@ export declare type BoardFeatureConnection = {
|
|
|
1015
1089
|
};
|
|
1016
1090
|
export declare type BoardFeatureEdge = {
|
|
1017
1091
|
__typename?: 'BoardFeatureEdge';
|
|
1018
|
-
order?: Maybe<Scalars['Int']>;
|
|
1019
1092
|
cursor?: Maybe<Scalars['String']>;
|
|
1020
1093
|
node?: Maybe<BoardFeatureView>;
|
|
1021
1094
|
};
|
|
@@ -1025,6 +1098,11 @@ export declare type BoardFeatureGroup = Node & {
|
|
|
1025
1098
|
name?: Maybe<Scalars['String']>;
|
|
1026
1099
|
features?: Maybe<BoardFeatureConnection>;
|
|
1027
1100
|
};
|
|
1101
|
+
export declare type BoardFeatureGroupFeaturesArgs = {
|
|
1102
|
+
ids?: Maybe<Array<Scalars['String']>>;
|
|
1103
|
+
first?: Maybe<Scalars['Int']>;
|
|
1104
|
+
after?: Maybe<Scalars['String']>;
|
|
1105
|
+
};
|
|
1028
1106
|
export declare type BoardFeatureGroupConnection = {
|
|
1029
1107
|
__typename?: 'BoardFeatureGroupConnection';
|
|
1030
1108
|
pageInfo?: Maybe<PageInfo>;
|
|
@@ -1032,7 +1110,6 @@ export declare type BoardFeatureGroupConnection = {
|
|
|
1032
1110
|
};
|
|
1033
1111
|
export declare type BoardFeatureGroupEdge = {
|
|
1034
1112
|
__typename?: 'BoardFeatureGroupEdge';
|
|
1035
|
-
order?: Maybe<Scalars['Int']>;
|
|
1036
1113
|
cursor?: Maybe<Scalars['String']>;
|
|
1037
1114
|
node?: Maybe<BoardFeatureGroup>;
|
|
1038
1115
|
};
|
|
@@ -1045,14 +1122,7 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1045
1122
|
Enabled = "ENABLED",
|
|
1046
1123
|
Disabled = "DISABLED"
|
|
1047
1124
|
}
|
|
1048
|
-
export declare type BoardFeatureView =
|
|
1049
|
-
__typename?: 'BoardFeatureView';
|
|
1050
|
-
id: Scalars['ID'];
|
|
1051
|
-
title?: Maybe<Scalars['String']>;
|
|
1052
|
-
description?: Maybe<Scalars['String']>;
|
|
1053
|
-
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
1054
|
-
canEnable?: Maybe<Scalars['Boolean']>;
|
|
1055
|
-
};
|
|
1125
|
+
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1056
1126
|
export declare type BoardScope = {
|
|
1057
1127
|
__typename?: 'BoardScope';
|
|
1058
1128
|
board?: Maybe<SoftwareBoard>;
|
|
@@ -2877,14 +2947,16 @@ export declare type ContentPlatformIntroToPractice = {
|
|
|
2877
2947
|
};
|
|
2878
2948
|
export declare type ContentPlatformPracticePage = {
|
|
2879
2949
|
__typename?: 'ContentPlatformPracticePage';
|
|
2950
|
+
name: Scalars['String'];
|
|
2880
2951
|
tagline: Scalars['String'];
|
|
2881
|
-
|
|
2952
|
+
introTo: ContentPlatformIntroToPractice;
|
|
2882
2953
|
whatIs: ContentPlatformChunkWhatIs;
|
|
2883
|
-
benefits
|
|
2884
|
-
deepDive
|
|
2885
|
-
bestPractices
|
|
2886
|
-
inContext
|
|
2887
|
-
|
|
2954
|
+
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
2955
|
+
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
2956
|
+
bestPractices?: Maybe<ContentPlatformChunkBestPractices>;
|
|
2957
|
+
inContext?: Maybe<ContentPlatformChunkInContext>;
|
|
2958
|
+
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
2959
|
+
practice: ContentPlatformWhatPractice;
|
|
2888
2960
|
};
|
|
2889
2961
|
export declare type ContentPlatformReleaseNote = {
|
|
2890
2962
|
__typename?: 'ContentPlatformReleaseNote';
|
|
@@ -3016,6 +3088,10 @@ export declare type ContentPlatformTypeOfChangeEntry = {
|
|
|
3016
3088
|
label?: Maybe<Scalars['String']>;
|
|
3017
3089
|
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3018
3090
|
};
|
|
3091
|
+
export declare type ContentPlatformWhatPractice = {
|
|
3092
|
+
__typename?: 'ContentPlatformWhatPractice';
|
|
3093
|
+
title: Scalars['String'];
|
|
3094
|
+
};
|
|
3019
3095
|
export declare type ContextEventObject = {
|
|
3020
3096
|
__typename?: 'ContextEventObject';
|
|
3021
3097
|
id: Scalars['ID'];
|
|
@@ -4359,6 +4435,7 @@ export declare type DevOpsThirdPartyRepository = {
|
|
|
4359
4435
|
export declare type DevOpsTool = {
|
|
4360
4436
|
id: Scalars['ID'];
|
|
4361
4437
|
name: Scalars['String'];
|
|
4438
|
+
productKey: Scalars['String'];
|
|
4362
4439
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4363
4440
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4364
4441
|
};
|
|
@@ -4366,6 +4443,7 @@ export declare type DevOpsToolAvailable = DevOpsTool & Node & {
|
|
|
4366
4443
|
__typename?: 'DevOpsToolAvailable';
|
|
4367
4444
|
id: Scalars['ID'];
|
|
4368
4445
|
name: Scalars['String'];
|
|
4446
|
+
productKey: Scalars['String'];
|
|
4369
4447
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4370
4448
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4371
4449
|
namespaces?: Maybe<DevOpsToolNamespaceConnection>;
|
|
@@ -4401,6 +4479,7 @@ export declare type DevOpsToolContainer = Node & {
|
|
|
4401
4479
|
__typename?: 'DevOpsToolContainer';
|
|
4402
4480
|
id: Scalars['ID'];
|
|
4403
4481
|
displayName: Scalars['String'];
|
|
4482
|
+
productKey: Scalars['String'];
|
|
4404
4483
|
url: Scalars['String'];
|
|
4405
4484
|
};
|
|
4406
4485
|
export declare type DevOpsToolContainerConnection = {
|
|
@@ -4433,6 +4512,7 @@ export declare type DevOpsToolNamespace = Node & {
|
|
|
4433
4512
|
__typename?: 'DevOpsToolNamespace';
|
|
4434
4513
|
id: Scalars['ID'];
|
|
4435
4514
|
displayName: Scalars['String'];
|
|
4515
|
+
productKey: Scalars['String'];
|
|
4436
4516
|
canCreateContainer: Scalars['Boolean'];
|
|
4437
4517
|
containers?: Maybe<DevOpsToolContainerConnection>;
|
|
4438
4518
|
};
|
|
@@ -4458,6 +4538,11 @@ export declare type DevOpsToolNavbarConnectionState = {
|
|
|
4458
4538
|
oncallTab: DevOpsToolConnectionState;
|
|
4459
4539
|
pagesTab: DevOpsToolConnectionState;
|
|
4460
4540
|
};
|
|
4541
|
+
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
4542
|
+
CodeTab = "codeTab",
|
|
4543
|
+
OncallTab = "oncallTab",
|
|
4544
|
+
PagesTab = "pagesTab"
|
|
4545
|
+
}
|
|
4461
4546
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4462
4547
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
4463
4548
|
category: DevOpsToolCategory;
|
|
@@ -4467,10 +4552,22 @@ export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
|
4467
4552
|
__typename?: 'DevOpsToolUnavailable';
|
|
4468
4553
|
id: Scalars['ID'];
|
|
4469
4554
|
name: Scalars['String'];
|
|
4555
|
+
productKey: Scalars['String'];
|
|
4470
4556
|
avatar?: Maybe<DevOpsToolAvatar>;
|
|
4471
4557
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4472
4558
|
install: DevOpsToolInstallationInfo;
|
|
4473
4559
|
};
|
|
4560
|
+
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenInput = {
|
|
4561
|
+
cloudId: Scalars['ID'];
|
|
4562
|
+
projectId: Scalars['ID'];
|
|
4563
|
+
tab?: Maybe<DevOpsToolNavbarConnectionStateTab>;
|
|
4564
|
+
};
|
|
4565
|
+
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payload & {
|
|
4566
|
+
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
4567
|
+
success: Scalars['Boolean'];
|
|
4568
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4569
|
+
updatedNavbarConnectionState: DevOpsToolNavbarConnectionState;
|
|
4570
|
+
};
|
|
4474
4571
|
export declare type DevOpsTools = {
|
|
4475
4572
|
__typename?: 'DevOpsTools';
|
|
4476
4573
|
tools?: Maybe<DevOpsToolConnection>;
|
|
@@ -4582,6 +4679,16 @@ export declare type Estimate = {
|
|
|
4582
4679
|
storyPoints?: Maybe<Scalars['Float']>;
|
|
4583
4680
|
originalEstimate?: Maybe<OriginalEstimate>;
|
|
4584
4681
|
};
|
|
4682
|
+
export declare type EstimationBoardFeatureView = Node & {
|
|
4683
|
+
__typename?: 'EstimationBoardFeatureView';
|
|
4684
|
+
id: Scalars['ID'];
|
|
4685
|
+
title?: Maybe<Scalars['String']>;
|
|
4686
|
+
description?: Maybe<Scalars['String']>;
|
|
4687
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
4688
|
+
canEnable?: Maybe<Scalars['Boolean']>;
|
|
4689
|
+
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
4690
|
+
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
4691
|
+
};
|
|
4585
4692
|
export declare type EstimationConfig = {
|
|
4586
4693
|
__typename?: 'EstimationConfig';
|
|
4587
4694
|
current: CurrentEstimation;
|
|
@@ -5410,6 +5517,18 @@ export declare type JiraAvatar = {
|
|
|
5410
5517
|
medium?: Maybe<Scalars['String']>;
|
|
5411
5518
|
large?: Maybe<Scalars['String']>;
|
|
5412
5519
|
};
|
|
5520
|
+
export declare type JiraBooleanField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
5521
|
+
__typename?: 'JiraBooleanField';
|
|
5522
|
+
id: Scalars['ID'];
|
|
5523
|
+
fieldId: Scalars['String'];
|
|
5524
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
5525
|
+
type: Scalars['String'];
|
|
5526
|
+
name: Scalars['String'];
|
|
5527
|
+
description?: Maybe<Scalars['String']>;
|
|
5528
|
+
value?: Maybe<Scalars['Boolean']>;
|
|
5529
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5530
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5531
|
+
};
|
|
5413
5532
|
export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
5414
5533
|
__typename?: 'JiraCMDBField';
|
|
5415
5534
|
id: Scalars['ID'];
|
|
@@ -5422,6 +5541,7 @@ export declare type JiraCmdbField = Node & JiraIssueField & JiraIssueFieldConfig
|
|
|
5422
5541
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5423
5542
|
selectedCmdbObjects?: Maybe<Array<Maybe<JiraCmdbObject>>>;
|
|
5424
5543
|
selectedCmdbObjectsConnection?: Maybe<JiraCmdbObjectConnection>;
|
|
5544
|
+
cmdbFieldConfig?: Maybe<JiraCmdbFieldConfig>;
|
|
5425
5545
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5426
5546
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5427
5547
|
attributesIncludedInAutoCompleteSearch?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
@@ -5508,6 +5628,117 @@ export declare type JiraCheckboxesFieldFieldOptionsArgs = {
|
|
|
5508
5628
|
last?: Maybe<Scalars['Int']>;
|
|
5509
5629
|
before?: Maybe<Scalars['String']>;
|
|
5510
5630
|
};
|
|
5631
|
+
export declare type JiraChildIssues = JiraChildIssuesWithinLimit | JiraChildIssuesExceedingLimit;
|
|
5632
|
+
export declare type JiraChildIssuesExceedingLimit = {
|
|
5633
|
+
__typename?: 'JiraChildIssuesExceedingLimit';
|
|
5634
|
+
search?: Maybe<Scalars['String']>;
|
|
5635
|
+
};
|
|
5636
|
+
export declare type JiraChildIssuesWithinLimit = {
|
|
5637
|
+
__typename?: 'JiraChildIssuesWithinLimit';
|
|
5638
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
5639
|
+
};
|
|
5640
|
+
export declare type JiraChildIssuesWithinLimitIssuesArgs = {
|
|
5641
|
+
first?: Maybe<Scalars['Int']>;
|
|
5642
|
+
after?: Maybe<Scalars['String']>;
|
|
5643
|
+
last?: Maybe<Scalars['Int']>;
|
|
5644
|
+
before?: Maybe<Scalars['String']>;
|
|
5645
|
+
};
|
|
5646
|
+
export declare type JiraCmdbAttribute = {
|
|
5647
|
+
__typename?: 'JiraCmdbAttribute';
|
|
5648
|
+
objectTypeAttributeId?: Maybe<Scalars['String']>;
|
|
5649
|
+
objectTypeAttribute?: Maybe<JiraCmdbObjectTypeAttribute>;
|
|
5650
|
+
objectAttributeValues?: Maybe<JiraCmdbObjectAttributeValueConnection>;
|
|
5651
|
+
};
|
|
5652
|
+
export declare type JiraCmdbAttributeObjectAttributeValuesArgs = {
|
|
5653
|
+
first?: Maybe<Scalars['Int']>;
|
|
5654
|
+
after?: Maybe<Scalars['String']>;
|
|
5655
|
+
last?: Maybe<Scalars['Int']>;
|
|
5656
|
+
before?: Maybe<Scalars['String']>;
|
|
5657
|
+
};
|
|
5658
|
+
export declare type JiraCmdbAttributeConnection = {
|
|
5659
|
+
__typename?: 'JiraCmdbAttributeConnection';
|
|
5660
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5661
|
+
pageInfo: PageInfo;
|
|
5662
|
+
edges?: Maybe<Array<Maybe<JiraCmdbAttributeEdge>>>;
|
|
5663
|
+
};
|
|
5664
|
+
export declare type JiraCmdbAttributeEdge = {
|
|
5665
|
+
__typename?: 'JiraCmdbAttributeEdge';
|
|
5666
|
+
node?: Maybe<JiraCmdbAttribute>;
|
|
5667
|
+
cursor: Scalars['String'];
|
|
5668
|
+
};
|
|
5669
|
+
export declare enum JiraCmdbAttributeType {
|
|
5670
|
+
Default = "DEFAULT",
|
|
5671
|
+
ReferencedObject = "REFERENCED_OBJECT",
|
|
5672
|
+
User = "USER",
|
|
5673
|
+
Confluence = "CONFLUENCE",
|
|
5674
|
+
Group = "GROUP",
|
|
5675
|
+
Version = "VERSION",
|
|
5676
|
+
Project = "PROJECT",
|
|
5677
|
+
Status = "STATUS"
|
|
5678
|
+
}
|
|
5679
|
+
export declare type JiraCmdbAvatar = {
|
|
5680
|
+
__typename?: 'JiraCmdbAvatar';
|
|
5681
|
+
id?: Maybe<Scalars['String']>;
|
|
5682
|
+
avatarUUID?: Maybe<Scalars['String']>;
|
|
5683
|
+
url16?: Maybe<Scalars['String']>;
|
|
5684
|
+
url48?: Maybe<Scalars['String']>;
|
|
5685
|
+
url72?: Maybe<Scalars['String']>;
|
|
5686
|
+
url144?: Maybe<Scalars['String']>;
|
|
5687
|
+
url288?: Maybe<Scalars['String']>;
|
|
5688
|
+
mediaClientConfig?: Maybe<JiraCmdbMediaClientConfig>;
|
|
5689
|
+
};
|
|
5690
|
+
export declare type JiraCmdbConfigAttributeConnection = {
|
|
5691
|
+
__typename?: 'JiraCmdbConfigAttributeConnection';
|
|
5692
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5693
|
+
pageInfo: PageInfo;
|
|
5694
|
+
edges?: Maybe<Array<Maybe<JiraCmdbConfigAttributeEdge>>>;
|
|
5695
|
+
};
|
|
5696
|
+
export declare type JiraCmdbConfigAttributeEdge = {
|
|
5697
|
+
__typename?: 'JiraCmdbConfigAttributeEdge';
|
|
5698
|
+
node?: Maybe<Scalars['String']>;
|
|
5699
|
+
cursor: Scalars['String'];
|
|
5700
|
+
};
|
|
5701
|
+
export declare type JiraCmdbDefaultType = {
|
|
5702
|
+
__typename?: 'JiraCmdbDefaultType';
|
|
5703
|
+
id?: Maybe<Scalars['String']>;
|
|
5704
|
+
name?: Maybe<Scalars['String']>;
|
|
5705
|
+
};
|
|
5706
|
+
export declare type JiraCmdbFieldConfig = {
|
|
5707
|
+
__typename?: 'JiraCmdbFieldConfig';
|
|
5708
|
+
objectSchemaId: Scalars['String'];
|
|
5709
|
+
objectFilterQuery?: Maybe<Scalars['String']>;
|
|
5710
|
+
issueScopeFilterQuery?: Maybe<Scalars['String']>;
|
|
5711
|
+
multiple?: Maybe<Scalars['Boolean']>;
|
|
5712
|
+
attributesDisplayedOnIssue?: Maybe<JiraCmdbConfigAttributeConnection>;
|
|
5713
|
+
attributesIncludedInAutoCompleteSearch?: Maybe<JiraCmdbConfigAttributeConnection>;
|
|
5714
|
+
};
|
|
5715
|
+
export declare type JiraCmdbFieldConfigAttributesDisplayedOnIssueArgs = {
|
|
5716
|
+
first?: Maybe<Scalars['Int']>;
|
|
5717
|
+
after?: Maybe<Scalars['String']>;
|
|
5718
|
+
last?: Maybe<Scalars['Int']>;
|
|
5719
|
+
before?: Maybe<Scalars['String']>;
|
|
5720
|
+
};
|
|
5721
|
+
export declare type JiraCmdbFieldConfigAttributesIncludedInAutoCompleteSearchArgs = {
|
|
5722
|
+
first?: Maybe<Scalars['Int']>;
|
|
5723
|
+
after?: Maybe<Scalars['String']>;
|
|
5724
|
+
last?: Maybe<Scalars['Int']>;
|
|
5725
|
+
before?: Maybe<Scalars['String']>;
|
|
5726
|
+
};
|
|
5727
|
+
export declare type JiraCmdbIcon = {
|
|
5728
|
+
__typename?: 'JiraCmdbIcon';
|
|
5729
|
+
id: Scalars['String'];
|
|
5730
|
+
name?: Maybe<Scalars['String']>;
|
|
5731
|
+
url16?: Maybe<Scalars['String']>;
|
|
5732
|
+
url48?: Maybe<Scalars['String']>;
|
|
5733
|
+
};
|
|
5734
|
+
export declare type JiraCmdbMediaClientConfig = {
|
|
5735
|
+
__typename?: 'JiraCmdbMediaClientConfig';
|
|
5736
|
+
clientId?: Maybe<Scalars['String']>;
|
|
5737
|
+
issuer?: Maybe<Scalars['String']>;
|
|
5738
|
+
fileId?: Maybe<Scalars['String']>;
|
|
5739
|
+
mediaBaseUrl?: Maybe<Scalars['URL']>;
|
|
5740
|
+
mediaJwtToken?: Maybe<Scalars['String']>;
|
|
5741
|
+
};
|
|
5511
5742
|
export declare type JiraCmdbObject = Node & {
|
|
5512
5743
|
__typename?: 'JiraCmdbObject';
|
|
5513
5744
|
id: Scalars['ID'];
|
|
@@ -5515,6 +5746,39 @@ export declare type JiraCmdbObject = Node & {
|
|
|
5515
5746
|
objectId?: Maybe<Scalars['String']>;
|
|
5516
5747
|
workspaceId?: Maybe<Scalars['String']>;
|
|
5517
5748
|
label?: Maybe<Scalars['String']>;
|
|
5749
|
+
objectKey?: Maybe<Scalars['String']>;
|
|
5750
|
+
avatar?: Maybe<JiraCmdbAvatar>;
|
|
5751
|
+
objectType?: Maybe<JiraCmdbObjectType>;
|
|
5752
|
+
attributes?: Maybe<JiraCmdbAttributeConnection>;
|
|
5753
|
+
webUrl?: Maybe<Scalars['String']>;
|
|
5754
|
+
};
|
|
5755
|
+
export declare type JiraCmdbObjectAttributesArgs = {
|
|
5756
|
+
first?: Maybe<Scalars['Int']>;
|
|
5757
|
+
after?: Maybe<Scalars['String']>;
|
|
5758
|
+
last?: Maybe<Scalars['Int']>;
|
|
5759
|
+
before?: Maybe<Scalars['String']>;
|
|
5760
|
+
};
|
|
5761
|
+
export declare type JiraCmdbObjectAttributeValue = {
|
|
5762
|
+
__typename?: 'JiraCmdbObjectAttributeValue';
|
|
5763
|
+
referencedObject?: Maybe<JiraCmdbObject>;
|
|
5764
|
+
user?: Maybe<User>;
|
|
5765
|
+
group?: Maybe<JiraGroup>;
|
|
5766
|
+
status?: Maybe<JiraCmdbStatusType>;
|
|
5767
|
+
value?: Maybe<Scalars['String']>;
|
|
5768
|
+
displayValue?: Maybe<Scalars['String']>;
|
|
5769
|
+
searchValue?: Maybe<Scalars['String']>;
|
|
5770
|
+
additionalValue?: Maybe<Scalars['String']>;
|
|
5771
|
+
};
|
|
5772
|
+
export declare type JiraCmdbObjectAttributeValueConnection = {
|
|
5773
|
+
__typename?: 'JiraCmdbObjectAttributeValueConnection';
|
|
5774
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5775
|
+
pageInfo: PageInfo;
|
|
5776
|
+
edges?: Maybe<Array<Maybe<JiraCmdbObjectAttributeValueEdge>>>;
|
|
5777
|
+
};
|
|
5778
|
+
export declare type JiraCmdbObjectAttributeValueEdge = {
|
|
5779
|
+
__typename?: 'JiraCmdbObjectAttributeValueEdge';
|
|
5780
|
+
node?: Maybe<JiraCmdbObjectAttributeValue>;
|
|
5781
|
+
cursor: Scalars['String'];
|
|
5518
5782
|
};
|
|
5519
5783
|
export declare type JiraCmdbObjectConnection = {
|
|
5520
5784
|
__typename?: 'JiraCmdbObjectConnection';
|
|
@@ -5527,6 +5791,45 @@ export declare type JiraCmdbObjectEdge = {
|
|
|
5527
5791
|
node?: Maybe<JiraCmdbObject>;
|
|
5528
5792
|
cursor: Scalars['String'];
|
|
5529
5793
|
};
|
|
5794
|
+
export declare type JiraCmdbObjectType = {
|
|
5795
|
+
__typename?: 'JiraCmdbObjectType';
|
|
5796
|
+
objectTypeId: Scalars['String'];
|
|
5797
|
+
name?: Maybe<Scalars['String']>;
|
|
5798
|
+
description?: Maybe<Scalars['String']>;
|
|
5799
|
+
icon?: Maybe<JiraCmdbIcon>;
|
|
5800
|
+
objectSchemaId?: Maybe<Scalars['String']>;
|
|
5801
|
+
};
|
|
5802
|
+
export declare type JiraCmdbObjectTypeAttribute = {
|
|
5803
|
+
__typename?: 'JiraCmdbObjectTypeAttribute';
|
|
5804
|
+
name?: Maybe<Scalars['String']>;
|
|
5805
|
+
label?: Maybe<Scalars['Boolean']>;
|
|
5806
|
+
type?: Maybe<JiraCmdbAttributeType>;
|
|
5807
|
+
description?: Maybe<Scalars['String']>;
|
|
5808
|
+
objectType?: Maybe<JiraCmdbObjectType>;
|
|
5809
|
+
defaultType?: Maybe<JiraCmdbDefaultType>;
|
|
5810
|
+
referenceType?: Maybe<JiraCmdbReferenceType>;
|
|
5811
|
+
referenceObjectTypeId?: Maybe<Scalars['String']>;
|
|
5812
|
+
referenceObjectType?: Maybe<JiraCmdbObjectType>;
|
|
5813
|
+
additionalValue?: Maybe<Scalars['String']>;
|
|
5814
|
+
suffix?: Maybe<Scalars['String']>;
|
|
5815
|
+
};
|
|
5816
|
+
export declare type JiraCmdbReferenceType = {
|
|
5817
|
+
__typename?: 'JiraCmdbReferenceType';
|
|
5818
|
+
id?: Maybe<Scalars['String']>;
|
|
5819
|
+
name?: Maybe<Scalars['String']>;
|
|
5820
|
+
description?: Maybe<Scalars['String']>;
|
|
5821
|
+
color?: Maybe<Scalars['String']>;
|
|
5822
|
+
webUrl?: Maybe<Scalars['String']>;
|
|
5823
|
+
objectSchemaId?: Maybe<Scalars['String']>;
|
|
5824
|
+
};
|
|
5825
|
+
export declare type JiraCmdbStatusType = {
|
|
5826
|
+
__typename?: 'JiraCmdbStatusType';
|
|
5827
|
+
id?: Maybe<Scalars['String']>;
|
|
5828
|
+
name?: Maybe<Scalars['String']>;
|
|
5829
|
+
description?: Maybe<Scalars['String']>;
|
|
5830
|
+
category?: Maybe<Scalars['Int']>;
|
|
5831
|
+
objectSchemaId?: Maybe<Scalars['String']>;
|
|
5832
|
+
};
|
|
5530
5833
|
export declare type JiraColor = {
|
|
5531
5834
|
__typename?: 'JiraColor';
|
|
5532
5835
|
id?: Maybe<Scalars['ID']>;
|
|
@@ -5621,8 +5924,8 @@ export declare type JiraConnectMultipleSelectField = Node & JiraIssueField & Jir
|
|
|
5621
5924
|
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
5622
5925
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
5623
5926
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
5624
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5625
5927
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5928
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5626
5929
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5627
5930
|
};
|
|
5628
5931
|
export declare type JiraConnectMultipleSelectFieldSelectedOptionsArgs = {
|
|
@@ -5674,8 +5977,8 @@ export declare type JiraConnectSingleSelectField = Node & JiraIssueField & JiraI
|
|
|
5674
5977
|
description?: Maybe<Scalars['String']>;
|
|
5675
5978
|
fieldOption?: Maybe<JiraOption>;
|
|
5676
5979
|
fieldOptions?: Maybe<JiraOptionConnection>;
|
|
5677
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5678
5980
|
searchUrl?: Maybe<Scalars['String']>;
|
|
5981
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5679
5982
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5680
5983
|
};
|
|
5681
5984
|
export declare type JiraConnectSingleSelectFieldFieldOptionsArgs = {
|
|
@@ -5835,6 +6138,14 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
5835
6138
|
__typename?: 'JiraFieldNonEditableReason';
|
|
5836
6139
|
message?: Maybe<Scalars['String']>;
|
|
5837
6140
|
};
|
|
6141
|
+
export declare type JiraFilter = Node & {
|
|
6142
|
+
__typename?: 'JiraFilter';
|
|
6143
|
+
id: Scalars['ID'];
|
|
6144
|
+
filterId: Scalars['String'];
|
|
6145
|
+
jql: Scalars['String'];
|
|
6146
|
+
name: Scalars['String'];
|
|
6147
|
+
};
|
|
6148
|
+
export declare type JiraFilterResult = JiraFilter | QueryError;
|
|
5838
6149
|
export declare type JiraFlag = {
|
|
5839
6150
|
__typename?: 'JiraFlag';
|
|
5840
6151
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -5873,8 +6184,8 @@ export declare type JiraForgeGroupField = Node & JiraIssueField & JiraIssueField
|
|
|
5873
6184
|
description?: Maybe<Scalars['String']>;
|
|
5874
6185
|
selectedGroup?: Maybe<JiraGroup>;
|
|
5875
6186
|
groups?: Maybe<JiraGroupConnection>;
|
|
5876
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5877
6187
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6188
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5878
6189
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5879
6190
|
};
|
|
5880
6191
|
export declare type JiraForgeGroupFieldGroupsArgs = {
|
|
@@ -5895,8 +6206,8 @@ export declare type JiraForgeGroupsField = Node & JiraIssueField & JiraIssueFiel
|
|
|
5895
6206
|
selectedGroups?: Maybe<Array<Maybe<JiraGroup>>>;
|
|
5896
6207
|
selectedGroupsConnection?: Maybe<JiraGroupConnection>;
|
|
5897
6208
|
groups?: Maybe<JiraGroupConnection>;
|
|
5898
|
-
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5899
6209
|
searchUrl?: Maybe<Scalars['String']>;
|
|
6210
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
5900
6211
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
5901
6212
|
};
|
|
5902
6213
|
export declare type JiraForgeGroupsFieldSelectedGroupsConnectionArgs = {
|
|
@@ -6092,6 +6403,8 @@ export declare type JiraIssue = Node & {
|
|
|
6092
6403
|
comments?: Maybe<JiraCommentConnection>;
|
|
6093
6404
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
6094
6405
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
6406
|
+
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6407
|
+
childIssues?: Maybe<JiraChildIssues>;
|
|
6095
6408
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6096
6409
|
};
|
|
6097
6410
|
export declare type JiraIssueFieldsArgs = {
|
|
@@ -6125,6 +6438,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
6125
6438
|
last?: Maybe<Scalars['Int']>;
|
|
6126
6439
|
before?: Maybe<Scalars['String']>;
|
|
6127
6440
|
};
|
|
6441
|
+
export declare type JiraIssueFieldSetsArgs = {
|
|
6442
|
+
first?: Maybe<Scalars['Int']>;
|
|
6443
|
+
after?: Maybe<Scalars['String']>;
|
|
6444
|
+
last?: Maybe<Scalars['Int']>;
|
|
6445
|
+
before?: Maybe<Scalars['String']>;
|
|
6446
|
+
};
|
|
6128
6447
|
export declare type JiraIssueBranchDevSummary = {
|
|
6129
6448
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
6130
6449
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6239,6 +6558,7 @@ export declare type JiraIssueFieldConnection = {
|
|
|
6239
6558
|
pageInfo: PageInfo;
|
|
6240
6559
|
edges?: Maybe<Array<Maybe<JiraIssueFieldEdge>>>;
|
|
6241
6560
|
};
|
|
6561
|
+
export declare type JiraIssueFieldConnectionResult = JiraIssueFieldConnection | QueryError;
|
|
6242
6562
|
export declare type JiraIssueFieldEdge = {
|
|
6243
6563
|
__typename?: 'JiraIssueFieldEdge';
|
|
6244
6564
|
node?: Maybe<JiraIssueField>;
|
|
@@ -6249,6 +6569,29 @@ export declare type JiraIssueFieldGrantTypeValue = Node & {
|
|
|
6249
6569
|
id: Scalars['ID'];
|
|
6250
6570
|
field: JiraIssueField;
|
|
6251
6571
|
};
|
|
6572
|
+
export declare type JiraIssueFieldSet = {
|
|
6573
|
+
__typename?: 'JiraIssueFieldSet';
|
|
6574
|
+
fieldSetId?: Maybe<Scalars['String']>;
|
|
6575
|
+
type?: Maybe<Scalars['String']>;
|
|
6576
|
+
fields?: Maybe<JiraIssueFieldConnection>;
|
|
6577
|
+
};
|
|
6578
|
+
export declare type JiraIssueFieldSetFieldsArgs = {
|
|
6579
|
+
first?: Maybe<Scalars['Int']>;
|
|
6580
|
+
after?: Maybe<Scalars['String']>;
|
|
6581
|
+
last?: Maybe<Scalars['Int']>;
|
|
6582
|
+
before?: Maybe<Scalars['String']>;
|
|
6583
|
+
};
|
|
6584
|
+
export declare type JiraIssueFieldSetConnection = {
|
|
6585
|
+
__typename?: 'JiraIssueFieldSetConnection';
|
|
6586
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6587
|
+
pageInfo?: Maybe<PageInfo>;
|
|
6588
|
+
edges?: Maybe<Array<Maybe<JiraIssueFieldSetEdge>>>;
|
|
6589
|
+
};
|
|
6590
|
+
export declare type JiraIssueFieldSetEdge = {
|
|
6591
|
+
__typename?: 'JiraIssueFieldSetEdge';
|
|
6592
|
+
node?: Maybe<JiraIssueFieldSet>;
|
|
6593
|
+
cursor: Scalars['String'];
|
|
6594
|
+
};
|
|
6252
6595
|
export declare type JiraIssueItemContainer = {
|
|
6253
6596
|
__typename?: 'JiraIssueItemContainer';
|
|
6254
6597
|
containerType?: Maybe<JiraIssueItemSystemContainerType>;
|
|
@@ -6481,12 +6824,142 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
6481
6824
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
6482
6825
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6483
6826
|
};
|
|
6827
|
+
export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
6828
|
+
__typename?: 'JiraIssueSearchByFilter';
|
|
6829
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6830
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6831
|
+
filter?: Maybe<JiraFilterResult>;
|
|
6832
|
+
};
|
|
6833
|
+
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
6834
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6835
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6836
|
+
};
|
|
6837
|
+
export declare type JiraIssueSearchByFilterContentByFieldConfigSetIdsArgs = {
|
|
6838
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6839
|
+
};
|
|
6840
|
+
export declare type JiraIssueSearchByFilterResult = JiraIssueSearchByFilter | QueryError;
|
|
6841
|
+
export declare type JiraIssueSearchByHydration = JiraIssueSearchResult & {
|
|
6842
|
+
__typename?: 'JiraIssueSearchByHydration';
|
|
6843
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6844
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6845
|
+
};
|
|
6846
|
+
export declare type JiraIssueSearchByHydrationContentArgs = {
|
|
6847
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6848
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6849
|
+
};
|
|
6850
|
+
export declare type JiraIssueSearchByHydrationContentByFieldConfigSetIdsArgs = {
|
|
6851
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6852
|
+
};
|
|
6853
|
+
export declare type JiraIssueSearchByJql = JiraIssueSearchResult & {
|
|
6854
|
+
__typename?: 'JiraIssueSearchByJql';
|
|
6855
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6856
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6857
|
+
jql?: Maybe<Scalars['String']>;
|
|
6858
|
+
};
|
|
6859
|
+
export declare type JiraIssueSearchByJqlContentArgs = {
|
|
6860
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6861
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6862
|
+
};
|
|
6863
|
+
export declare type JiraIssueSearchByJqlContentByFieldConfigSetIdsArgs = {
|
|
6864
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6865
|
+
};
|
|
6866
|
+
export declare type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
6867
|
+
export declare type JiraIssueSearchContextlessContent = JiraIssueSearchResultContent & {
|
|
6868
|
+
__typename?: 'JiraIssueSearchContextlessContent';
|
|
6869
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6870
|
+
};
|
|
6871
|
+
export declare type JiraIssueSearchContextlessContentIssuesArgs = {
|
|
6872
|
+
first?: Maybe<Scalars['Int']>;
|
|
6873
|
+
last?: Maybe<Scalars['Int']>;
|
|
6874
|
+
before?: Maybe<Scalars['String']>;
|
|
6875
|
+
after?: Maybe<Scalars['String']>;
|
|
6876
|
+
};
|
|
6877
|
+
export declare type JiraIssueSearchContextualContent = JiraIssueSearchResultContent & {
|
|
6878
|
+
__typename?: 'JiraIssueSearchContextualContent';
|
|
6879
|
+
view?: Maybe<JiraIssueSearchView>;
|
|
6880
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6881
|
+
};
|
|
6882
|
+
export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
6883
|
+
first?: Maybe<Scalars['Int']>;
|
|
6884
|
+
last?: Maybe<Scalars['Int']>;
|
|
6885
|
+
before?: Maybe<Scalars['String']>;
|
|
6886
|
+
after?: Maybe<Scalars['String']>;
|
|
6887
|
+
};
|
|
6888
|
+
export declare type JiraIssueSearchFieldConfigSet = {
|
|
6889
|
+
__typename?: 'JiraIssueSearchFieldConfigSet';
|
|
6890
|
+
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
6891
|
+
displayName?: Maybe<Scalars['String']>;
|
|
6892
|
+
fieldType?: Maybe<Scalars['String']>;
|
|
6893
|
+
isSortable?: Maybe<Scalars['Boolean']>;
|
|
6894
|
+
isSelected?: Maybe<Scalars['Boolean']>;
|
|
6895
|
+
};
|
|
6896
|
+
export declare type JiraIssueSearchFieldConfigSetConnection = {
|
|
6897
|
+
__typename?: 'JiraIssueSearchFieldConfigSetConnection';
|
|
6898
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6899
|
+
pageInfo: PageInfo;
|
|
6900
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldConfigSetEdge>>>;
|
|
6901
|
+
};
|
|
6902
|
+
export declare type JiraIssueSearchFieldConfigSetEdge = {
|
|
6903
|
+
__typename?: 'JiraIssueSearchFieldConfigSetEdge';
|
|
6904
|
+
node?: Maybe<JiraIssueSearchFieldConfigSet>;
|
|
6905
|
+
cursor: Scalars['String'];
|
|
6906
|
+
};
|
|
6907
|
+
export declare enum JiraIssueSearchFieldConfigSetSelectedState {
|
|
6908
|
+
All = "ALL",
|
|
6909
|
+
Selected = "SELECTED",
|
|
6910
|
+
NonSelected = "NON_SELECTED"
|
|
6911
|
+
}
|
|
6912
|
+
export declare type JiraIssueSearchFieldConfigSetsFilter = {
|
|
6913
|
+
searchString?: Maybe<Scalars['String']>;
|
|
6914
|
+
fieldConfigSetSelectedState?: Maybe<JiraIssueSearchFieldConfigSetSelectedState>;
|
|
6915
|
+
};
|
|
6916
|
+
export declare type JiraIssueSearchResult = {
|
|
6917
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6918
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6919
|
+
};
|
|
6920
|
+
export declare type JiraIssueSearchResultContentArgs = {
|
|
6921
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6922
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6923
|
+
};
|
|
6924
|
+
export declare type JiraIssueSearchResultContentByFieldConfigSetIdsArgs = {
|
|
6925
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6926
|
+
};
|
|
6927
|
+
export declare type JiraIssueSearchResultContent = {
|
|
6928
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6929
|
+
};
|
|
6930
|
+
export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
6931
|
+
first?: Maybe<Scalars['Int']>;
|
|
6932
|
+
last?: Maybe<Scalars['Int']>;
|
|
6933
|
+
before?: Maybe<Scalars['String']>;
|
|
6934
|
+
after?: Maybe<Scalars['String']>;
|
|
6935
|
+
};
|
|
6936
|
+
export declare type JiraIssueSearchView = Node & {
|
|
6937
|
+
__typename?: 'JiraIssueSearchView';
|
|
6938
|
+
id: Scalars['ID'];
|
|
6939
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6940
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6941
|
+
fieldConfigSets?: Maybe<JiraIssueSearchFieldConfigSetConnection>;
|
|
6942
|
+
};
|
|
6943
|
+
export declare type JiraIssueSearchViewFieldConfigSetsArgs = {
|
|
6944
|
+
first?: Maybe<Scalars['Int']>;
|
|
6945
|
+
last?: Maybe<Scalars['Int']>;
|
|
6946
|
+
before?: Maybe<Scalars['String']>;
|
|
6947
|
+
after?: Maybe<Scalars['String']>;
|
|
6948
|
+
filter?: Maybe<JiraIssueSearchFieldConfigSetsFilter>;
|
|
6949
|
+
};
|
|
6950
|
+
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
6951
|
+
__typename?: 'JiraIssueSearchViewPayload';
|
|
6952
|
+
success: Scalars['Boolean'];
|
|
6953
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6954
|
+
view?: Maybe<JiraIssueSearchView>;
|
|
6955
|
+
};
|
|
6484
6956
|
export declare type JiraIssueType = Node & {
|
|
6485
6957
|
__typename?: 'JiraIssueType';
|
|
6486
6958
|
id: Scalars['ID'];
|
|
6487
6959
|
name: Scalars['String'];
|
|
6488
6960
|
description?: Maybe<Scalars['String']>;
|
|
6489
6961
|
avatar?: Maybe<JiraAvatar>;
|
|
6962
|
+
hierarchy?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
6490
6963
|
};
|
|
6491
6964
|
export declare type JiraIssueTypeConnection = {
|
|
6492
6965
|
__typename?: 'JiraIssueTypeConnection';
|
|
@@ -6519,6 +6992,11 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
6519
6992
|
before?: Maybe<Scalars['String']>;
|
|
6520
6993
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
6521
6994
|
};
|
|
6995
|
+
export declare type JiraIssueTypeHierarchyLevel = {
|
|
6996
|
+
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
6997
|
+
level: Scalars['Int'];
|
|
6998
|
+
name: Scalars['String'];
|
|
6999
|
+
};
|
|
6522
7000
|
export declare enum JiraJqlAutocompleteType {
|
|
6523
7001
|
None = "NONE",
|
|
6524
7002
|
Component = "COMPONENT",
|
|
@@ -7115,11 +7593,16 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
7115
7593
|
export declare type JiraMutation = {
|
|
7116
7594
|
__typename?: 'JiraMutation';
|
|
7117
7595
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
7596
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
7118
7597
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
7119
7598
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
7120
7599
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
7121
7600
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
7122
7601
|
};
|
|
7602
|
+
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
7603
|
+
id: Scalars['ID'];
|
|
7604
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
7605
|
+
};
|
|
7123
7606
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
7124
7607
|
cloudId: Scalars['ID'];
|
|
7125
7608
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -7322,6 +7805,7 @@ export declare type JiraParentIssueField = Node & JiraIssueField & JiraIssueFiel
|
|
|
7322
7805
|
name: Scalars['String'];
|
|
7323
7806
|
description?: Maybe<Scalars['String']>;
|
|
7324
7807
|
parentIssue?: Maybe<JiraIssue>;
|
|
7808
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
7325
7809
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
7326
7810
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
7327
7811
|
};
|
|
@@ -7538,10 +8022,28 @@ export declare type JiraPriorityFieldPrioritiesArgs = {
|
|
|
7538
8022
|
before?: Maybe<Scalars['String']>;
|
|
7539
8023
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
7540
8024
|
};
|
|
8025
|
+
export declare type JiraProformaForms = {
|
|
8026
|
+
__typename?: 'JiraProformaForms';
|
|
8027
|
+
hasProjectForms?: Maybe<Scalars['Boolean']>;
|
|
8028
|
+
hasIssueForms?: Maybe<Scalars['Boolean']>;
|
|
8029
|
+
};
|
|
8030
|
+
export declare type JiraProformaFormsField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8031
|
+
__typename?: 'JiraProformaFormsField';
|
|
8032
|
+
id: Scalars['ID'];
|
|
8033
|
+
fieldId: Scalars['String'];
|
|
8034
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
8035
|
+
type: Scalars['String'];
|
|
8036
|
+
name: Scalars['String'];
|
|
8037
|
+
description?: Maybe<Scalars['String']>;
|
|
8038
|
+
proformaForms?: Maybe<JiraProformaForms>;
|
|
8039
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8040
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8041
|
+
};
|
|
7541
8042
|
export declare type JiraProject = Node & {
|
|
7542
8043
|
__typename?: 'JiraProject';
|
|
7543
8044
|
id: Scalars['ID'];
|
|
7544
8045
|
key: Scalars['String'];
|
|
8046
|
+
projectId?: Maybe<Scalars['String']>;
|
|
7545
8047
|
name: Scalars['String'];
|
|
7546
8048
|
cloudId: Scalars['ID'];
|
|
7547
8049
|
description?: Maybe<Scalars['String']>;
|
|
@@ -7549,6 +8051,9 @@ export declare type JiraProject = Node & {
|
|
|
7549
8051
|
category?: Maybe<JiraProjectCategory>;
|
|
7550
8052
|
avatar?: Maybe<JiraAvatar>;
|
|
7551
8053
|
projectUrl?: Maybe<Scalars['String']>;
|
|
8054
|
+
projectType?: Maybe<JiraProjectType>;
|
|
8055
|
+
projectStyle?: Maybe<JiraProjectStyle>;
|
|
8056
|
+
status?: Maybe<JiraProjectStatus>;
|
|
7552
8057
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
7553
8058
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
7554
8059
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -7770,6 +8275,14 @@ export declare type JiraProjectSortInput = {
|
|
|
7770
8275
|
sortBy?: Maybe<JiraProjectSortField>;
|
|
7771
8276
|
order?: Maybe<SortDirection>;
|
|
7772
8277
|
};
|
|
8278
|
+
export declare enum JiraProjectStatus {
|
|
8279
|
+
Archived = "ARCHIVED",
|
|
8280
|
+
Deleted = "DELETED"
|
|
8281
|
+
}
|
|
8282
|
+
export declare enum JiraProjectStyle {
|
|
8283
|
+
TeamManagedProject = "TEAM_MANAGED_PROJECT",
|
|
8284
|
+
CompanyManagedProject = "COMPANY_MANAGED_PROJECT"
|
|
8285
|
+
}
|
|
7773
8286
|
export declare enum JiraProjectType {
|
|
7774
8287
|
ServiceDesk = "SERVICE_DESK",
|
|
7775
8288
|
Business = "BUSINESS",
|
|
@@ -7788,6 +8301,10 @@ export declare type JiraQuery = {
|
|
|
7788
8301
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
7789
8302
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
7790
8303
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
8304
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
8305
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
8306
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
8307
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
7791
8308
|
issueByKey?: Maybe<JiraIssue>;
|
|
7792
8309
|
issueById?: Maybe<JiraIssue>;
|
|
7793
8310
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
@@ -7800,6 +8317,7 @@ export declare type JiraQuery = {
|
|
|
7800
8317
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
7801
8318
|
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
7802
8319
|
version?: Maybe<JiraVersionResult>;
|
|
8320
|
+
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
7803
8321
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
7804
8322
|
};
|
|
7805
8323
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -7826,6 +8344,19 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
7826
8344
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
7827
8345
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
7828
8346
|
};
|
|
8347
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
8348
|
+
cloudId: Scalars['ID'];
|
|
8349
|
+
jql: Scalars['String'];
|
|
8350
|
+
};
|
|
8351
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
8352
|
+
id: Scalars['ID'];
|
|
8353
|
+
};
|
|
8354
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
8355
|
+
ids: Array<Scalars['ID']>;
|
|
8356
|
+
};
|
|
8357
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
8358
|
+
id: Scalars['ID'];
|
|
8359
|
+
};
|
|
7829
8360
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
7830
8361
|
key: Scalars['String'];
|
|
7831
8362
|
cloudId: Scalars['ID'];
|
|
@@ -7886,6 +8417,14 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
7886
8417
|
export declare type JiraQueryVersionArgs = {
|
|
7887
8418
|
id: Scalars['ID'];
|
|
7888
8419
|
};
|
|
8420
|
+
export declare type JiraQueryVersionsForProjectArgs = {
|
|
8421
|
+
jiraProjectId: Scalars['ID'];
|
|
8422
|
+
first?: Maybe<Scalars['Int']>;
|
|
8423
|
+
after?: Maybe<Scalars['String']>;
|
|
8424
|
+
last?: Maybe<Scalars['Int']>;
|
|
8425
|
+
before?: Maybe<Scalars['String']>;
|
|
8426
|
+
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
8427
|
+
};
|
|
7889
8428
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
7890
8429
|
versionId: Scalars['ID'];
|
|
7891
8430
|
};
|
|
@@ -8265,6 +8804,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
8265
8804
|
updated?: Maybe<Scalars['DateTime']>;
|
|
8266
8805
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
8267
8806
|
visibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
8807
|
+
authorCanSeeRequest?: Maybe<Scalars['Boolean']>;
|
|
8268
8808
|
};
|
|
8269
8809
|
export declare enum JiraServiceManagementCommentVisibility {
|
|
8270
8810
|
VisibleToHelpseeker = "VISIBLE_TO_HELPSEEKER",
|
|
@@ -8361,6 +8901,21 @@ export declare type JiraServiceManagementLanguage = {
|
|
|
8361
8901
|
languageCode?: Maybe<Scalars['String']>;
|
|
8362
8902
|
displayName?: Maybe<Scalars['String']>;
|
|
8363
8903
|
};
|
|
8904
|
+
export declare enum JiraServiceManagementMajorIncident {
|
|
8905
|
+
MajorIncident = "MAJOR_INCIDENT"
|
|
8906
|
+
}
|
|
8907
|
+
export declare type JiraServiceManagementMajorIncidentField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8908
|
+
__typename?: 'JiraServiceManagementMajorIncidentField';
|
|
8909
|
+
id: Scalars['ID'];
|
|
8910
|
+
fieldId: Scalars['String'];
|
|
8911
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
8912
|
+
type: Scalars['String'];
|
|
8913
|
+
name: Scalars['String'];
|
|
8914
|
+
description?: Maybe<Scalars['String']>;
|
|
8915
|
+
majorIncident?: Maybe<JiraServiceManagementMajorIncident>;
|
|
8916
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8917
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8918
|
+
};
|
|
8364
8919
|
export declare type JiraServiceManagementMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8365
8920
|
__typename?: 'JiraServiceManagementMultipleSelectUserPickerField';
|
|
8366
8921
|
id: Scalars['ID'];
|
|
@@ -8767,6 +9322,7 @@ export declare type JiraStatus = Node & {
|
|
|
8767
9322
|
id: Scalars['ID'];
|
|
8768
9323
|
statusId: Scalars['String'];
|
|
8769
9324
|
name?: Maybe<Scalars['String']>;
|
|
9325
|
+
description?: Maybe<Scalars['String']>;
|
|
8770
9326
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
8771
9327
|
};
|
|
8772
9328
|
export declare type JiraStatusCategory = Node & {
|
|
@@ -9052,6 +9608,21 @@ export declare type JiraWatchesField = Node & JiraIssueField & JiraIssueFieldCon
|
|
|
9052
9608
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9053
9609
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
9054
9610
|
};
|
|
9611
|
+
export declare type JiraWorkCategory = {
|
|
9612
|
+
__typename?: 'JiraWorkCategory';
|
|
9613
|
+
value?: Maybe<Scalars['String']>;
|
|
9614
|
+
};
|
|
9615
|
+
export declare type JiraWorkCategoryField = Node & JiraIssueField & JiraIssueFieldConfiguration & {
|
|
9616
|
+
__typename?: 'JiraWorkCategoryField';
|
|
9617
|
+
id: Scalars['ID'];
|
|
9618
|
+
fieldId: Scalars['String'];
|
|
9619
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
9620
|
+
type: Scalars['String'];
|
|
9621
|
+
name: Scalars['String'];
|
|
9622
|
+
description?: Maybe<Scalars['String']>;
|
|
9623
|
+
workCategory?: Maybe<JiraWorkCategory>;
|
|
9624
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
9625
|
+
};
|
|
9055
9626
|
export declare type JiraWorkLogConnection = {
|
|
9056
9627
|
__typename?: 'JiraWorkLogConnection';
|
|
9057
9628
|
indicativeCount?: Maybe<Scalars['Int']>;
|
|
@@ -9561,6 +10132,7 @@ export declare type Mutation = {
|
|
|
9561
10132
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
9562
10133
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
9563
10134
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
10135
|
+
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
9564
10136
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
9565
10137
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
9566
10138
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -9629,6 +10201,7 @@ export declare type Mutation = {
|
|
|
9629
10201
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
9630
10202
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
9631
10203
|
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
10204
|
+
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
9632
10205
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
9633
10206
|
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
9634
10207
|
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
@@ -9774,6 +10347,9 @@ export declare type MutationRankCardParentArgs = {
|
|
|
9774
10347
|
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
9775
10348
|
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
9776
10349
|
};
|
|
10350
|
+
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
10351
|
+
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
10352
|
+
};
|
|
9777
10353
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
9778
10354
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
9779
10355
|
};
|
|
@@ -9982,6 +10558,10 @@ export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
|
9982
10558
|
export declare type MutationDeletePolarisViewArgs = {
|
|
9983
10559
|
id: Scalars['ID'];
|
|
9984
10560
|
};
|
|
10561
|
+
export declare type MutationUpdatePolarisViewLastViewedTimestampArgs = {
|
|
10562
|
+
viewId: Scalars['ID'];
|
|
10563
|
+
timestampInput?: Maybe<Scalars['String']>;
|
|
10564
|
+
};
|
|
9985
10565
|
export declare type MutationCreatePolarisViewSetArgs = {
|
|
9986
10566
|
input: CreatePolarisViewSetInput;
|
|
9987
10567
|
};
|
|
@@ -10090,6 +10670,31 @@ export declare type MyActivitiesViewedArgs = {
|
|
|
10090
10670
|
first?: Maybe<Scalars['Int']>;
|
|
10091
10671
|
after?: Maybe<Scalars['String']>;
|
|
10092
10672
|
};
|
|
10673
|
+
export declare type MyActivity = {
|
|
10674
|
+
__typename?: 'MyActivity';
|
|
10675
|
+
all: ActivityConnection;
|
|
10676
|
+
workedOn: ActivityConnection;
|
|
10677
|
+
viewed: ActivityConnection;
|
|
10678
|
+
};
|
|
10679
|
+
export declare type MyActivityAllArgs = {
|
|
10680
|
+
filter?: Maybe<MyActivityFilter>;
|
|
10681
|
+
first?: Maybe<Scalars['Int']>;
|
|
10682
|
+
after?: Maybe<Scalars['String']>;
|
|
10683
|
+
};
|
|
10684
|
+
export declare type MyActivityWorkedOnArgs = {
|
|
10685
|
+
filter?: Maybe<MyActivityFilter>;
|
|
10686
|
+
first?: Maybe<Scalars['Int']>;
|
|
10687
|
+
after?: Maybe<Scalars['String']>;
|
|
10688
|
+
};
|
|
10689
|
+
export declare type MyActivityViewedArgs = {
|
|
10690
|
+
filter?: Maybe<MyActivityFilter>;
|
|
10691
|
+
first?: Maybe<Scalars['Int']>;
|
|
10692
|
+
after?: Maybe<Scalars['String']>;
|
|
10693
|
+
};
|
|
10694
|
+
export declare type MyActivityFilter = {
|
|
10695
|
+
type?: Maybe<ActivitiesFilterType>;
|
|
10696
|
+
arguments?: Maybe<ActivityFilterArgs>;
|
|
10697
|
+
};
|
|
10093
10698
|
export declare type NadelHydrationArgument = {
|
|
10094
10699
|
name: Scalars['String'];
|
|
10095
10700
|
value: Scalars['String'];
|
|
@@ -10263,6 +10868,12 @@ export declare type Payload = {
|
|
|
10263
10868
|
success: Scalars['Boolean'];
|
|
10264
10869
|
errors?: Maybe<Array<MutationError>>;
|
|
10265
10870
|
};
|
|
10871
|
+
export declare type PermissibleEstimationType = {
|
|
10872
|
+
__typename?: 'PermissibleEstimationType';
|
|
10873
|
+
value?: Maybe<Scalars['String']>;
|
|
10874
|
+
name?: Maybe<Scalars['String']>;
|
|
10875
|
+
description?: Maybe<Scalars['String']>;
|
|
10876
|
+
};
|
|
10266
10877
|
export declare type PermissionToConsentByOauthId = {
|
|
10267
10878
|
__typename?: 'PermissionToConsentByOauthId';
|
|
10268
10879
|
isAllowed: Scalars['Boolean'];
|
|
@@ -11202,6 +11813,7 @@ export declare type Query = {
|
|
|
11202
11813
|
node?: Maybe<Node>;
|
|
11203
11814
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
11204
11815
|
activities?: Maybe<Activities>;
|
|
11816
|
+
activity?: Maybe<Activity>;
|
|
11205
11817
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
11206
11818
|
jiraProjectRelationshipsForRepository?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
11207
11819
|
repositoryRelationshipsForJiraProject?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
@@ -11211,6 +11823,7 @@ export declare type Query = {
|
|
|
11211
11823
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
11212
11824
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
11213
11825
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
11826
|
+
practicePages: Array<ContentPlatformPracticePage>;
|
|
11214
11827
|
practicePage: ContentPlatformPracticePage;
|
|
11215
11828
|
apps?: Maybe<AppConnection>;
|
|
11216
11829
|
app?: Maybe<App>;
|
|
@@ -12215,7 +12828,7 @@ export declare type ShepherdAlertEdge = {
|
|
|
12215
12828
|
__typename?: 'ShepherdAlertEdge';
|
|
12216
12829
|
node?: Maybe<ShepherdAlert>;
|
|
12217
12830
|
};
|
|
12218
|
-
export declare type ShepherdAlertResult =
|
|
12831
|
+
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
12219
12832
|
export declare enum ShepherdAlertSeverity {
|
|
12220
12833
|
Critical = "CRITICAL",
|
|
12221
12834
|
High = "HIGH",
|
|
@@ -12231,7 +12844,7 @@ export declare type ShepherdAlertsConnection = {
|
|
|
12231
12844
|
__typename?: 'ShepherdAlertsConnection';
|
|
12232
12845
|
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
12233
12846
|
};
|
|
12234
|
-
export declare type ShepherdAlertsResult =
|
|
12847
|
+
export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection;
|
|
12235
12848
|
export declare type ShepherdAppInfo = {
|
|
12236
12849
|
__typename?: 'ShepherdAppInfo';
|
|
12237
12850
|
apiVersion: Scalars['Int'];
|
|
@@ -12260,14 +12873,11 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
12260
12873
|
node?: Maybe<ShepherdOrganization>;
|
|
12261
12874
|
success: Scalars['Boolean'];
|
|
12262
12875
|
};
|
|
12263
|
-
export declare
|
|
12264
|
-
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12265
|
-
Unauthorized = "UNAUTHORIZED"
|
|
12266
|
-
}
|
|
12267
|
-
export declare type ShepherdGenericQueryErrorExtension = ShepherdQueryErrorExtension & {
|
|
12876
|
+
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
12268
12877
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
12269
|
-
errorType?: Maybe<
|
|
12878
|
+
errorType?: Maybe<Scalars['String']>;
|
|
12270
12879
|
statusCode?: Maybe<Scalars['Int']>;
|
|
12880
|
+
type?: Maybe<ShepherdQueryErrorType>;
|
|
12271
12881
|
};
|
|
12272
12882
|
export declare type ShepherdMutation = {
|
|
12273
12883
|
__typename?: 'ShepherdMutation';
|
|
@@ -12314,16 +12924,10 @@ export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
|
12314
12924
|
export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
12315
12925
|
id: Scalars['ID'];
|
|
12316
12926
|
};
|
|
12317
|
-
export declare
|
|
12318
|
-
|
|
12319
|
-
|
|
12320
|
-
|
|
12321
|
-
message?: Maybe<Scalars['String']>;
|
|
12322
|
-
};
|
|
12323
|
-
export declare type ShepherdQueryErrorExtension = {
|
|
12324
|
-
errorType?: Maybe<ShepherdErrorType>;
|
|
12325
|
-
statusCode?: Maybe<Scalars['Int']>;
|
|
12326
|
-
};
|
|
12927
|
+
export declare enum ShepherdQueryErrorType {
|
|
12928
|
+
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12929
|
+
Unauthorized = "UNAUTHORIZED"
|
|
12930
|
+
}
|
|
12327
12931
|
export declare type ShepherdUpdateAlertInput = {
|
|
12328
12932
|
status?: Maybe<ShepherdAlertStatus>;
|
|
12329
12933
|
};
|
|
@@ -12820,7 +13424,7 @@ export declare enum SwimlaneStrategy {
|
|
|
12820
13424
|
Issueparent = "ISSUEPARENT",
|
|
12821
13425
|
Issuechildren = "ISSUECHILDREN"
|
|
12822
13426
|
}
|
|
12823
|
-
export declare type Team = {
|
|
13427
|
+
export declare type Team = Node & {
|
|
12824
13428
|
__typename?: 'Team';
|
|
12825
13429
|
id: Scalars['ID'];
|
|
12826
13430
|
organizationId?: Maybe<Scalars['String']>;
|
|
@@ -13038,26 +13642,20 @@ export declare enum TownsquareProjectStateValue {
|
|
|
13038
13642
|
}
|
|
13039
13643
|
export declare type TownsquareQueryApi = {
|
|
13040
13644
|
__typename?: 'TownsquareQueryApi';
|
|
13041
|
-
projectsByAri?: Maybe<
|
|
13042
|
-
goalsByAri?: Maybe<
|
|
13043
|
-
commentsByAri?: Maybe<
|
|
13645
|
+
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
13646
|
+
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
13647
|
+
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
13044
13648
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
13045
13649
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
13046
13650
|
};
|
|
13047
13651
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
13048
13652
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13049
|
-
after?: Maybe<Scalars['String']>;
|
|
13050
|
-
first?: Maybe<Scalars['Int']>;
|
|
13051
13653
|
};
|
|
13052
13654
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
13053
13655
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13054
|
-
after?: Maybe<Scalars['String']>;
|
|
13055
|
-
first?: Maybe<Scalars['Int']>;
|
|
13056
13656
|
};
|
|
13057
13657
|
export declare type TownsquareQueryApiCommentsByAriArgs = {
|
|
13058
13658
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13059
|
-
after?: Maybe<Scalars['String']>;
|
|
13060
|
-
first?: Maybe<Scalars['Int']>;
|
|
13061
13659
|
};
|
|
13062
13660
|
export declare type TownsquareQueryApiProjectSearchArgs = {
|
|
13063
13661
|
after?: Maybe<Scalars['String']>;
|
|
@@ -13546,6 +14144,11 @@ export declare type UpdatePolarisViewSetPayload = Payload & {
|
|
|
13546
14144
|
errors?: Maybe<Array<MutationError>>;
|
|
13547
14145
|
node?: Maybe<PolarisViewSet>;
|
|
13548
14146
|
};
|
|
14147
|
+
export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
14148
|
+
__typename?: 'UpdatePolarisViewTimestampPayload';
|
|
14149
|
+
success: Scalars['Boolean'];
|
|
14150
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14151
|
+
};
|
|
13549
14152
|
export declare type User = {
|
|
13550
14153
|
accountId: Scalars['ID'];
|
|
13551
14154
|
accountStatus: AccountStatus;
|