@forge/cli-shared 2.2.0-next.17 → 2.2.0-next.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -915,6 +915,16 @@ export declare type BacklogExtension = {
|
|
|
915
915
|
__typename?: 'BacklogExtension';
|
|
916
916
|
operations?: Maybe<Array<Maybe<SoftwareOperation>>>;
|
|
917
917
|
};
|
|
918
|
+
export declare type BasicBoardFeatureView = Node & {
|
|
919
|
+
__typename?: 'BasicBoardFeatureView';
|
|
920
|
+
id: Scalars['ID'];
|
|
921
|
+
title?: Maybe<Scalars['String']>;
|
|
922
|
+
description?: Maybe<Scalars['String']>;
|
|
923
|
+
status?: Maybe<Scalars['String']>;
|
|
924
|
+
canEnable?: Maybe<Scalars['Boolean']>;
|
|
925
|
+
learnMoreLink?: Maybe<Scalars['String']>;
|
|
926
|
+
imageUri?: Maybe<Scalars['String']>;
|
|
927
|
+
};
|
|
918
928
|
export declare enum BitbucketPermission {
|
|
919
929
|
Admin = "ADMIN"
|
|
920
930
|
}
|
|
@@ -1008,6 +1018,37 @@ export declare type BoardFeature = {
|
|
|
1008
1018
|
category: Scalars['String'];
|
|
1009
1019
|
prerequisites?: Maybe<Array<Maybe<BoardFeature>>>;
|
|
1010
1020
|
};
|
|
1021
|
+
export declare type BoardFeatureConnection = {
|
|
1022
|
+
__typename?: 'BoardFeatureConnection';
|
|
1023
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1024
|
+
edges?: Maybe<Array<Maybe<BoardFeatureEdge>>>;
|
|
1025
|
+
};
|
|
1026
|
+
export declare type BoardFeatureEdge = {
|
|
1027
|
+
__typename?: 'BoardFeatureEdge';
|
|
1028
|
+
cursor?: Maybe<Scalars['String']>;
|
|
1029
|
+
node?: Maybe<BoardFeatureView>;
|
|
1030
|
+
};
|
|
1031
|
+
export declare type BoardFeatureGroup = Node & {
|
|
1032
|
+
__typename?: 'BoardFeatureGroup';
|
|
1033
|
+
id: Scalars['ID'];
|
|
1034
|
+
name?: Maybe<Scalars['String']>;
|
|
1035
|
+
features?: Maybe<BoardFeatureConnection>;
|
|
1036
|
+
};
|
|
1037
|
+
export declare type BoardFeatureGroupFeaturesArgs = {
|
|
1038
|
+
ids?: Maybe<Array<Scalars['String']>>;
|
|
1039
|
+
first?: Maybe<Scalars['Int']>;
|
|
1040
|
+
after?: Maybe<Scalars['String']>;
|
|
1041
|
+
};
|
|
1042
|
+
export declare type BoardFeatureGroupConnection = {
|
|
1043
|
+
__typename?: 'BoardFeatureGroupConnection';
|
|
1044
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1045
|
+
edges?: Maybe<Array<Maybe<BoardFeatureGroupEdge>>>;
|
|
1046
|
+
};
|
|
1047
|
+
export declare type BoardFeatureGroupEdge = {
|
|
1048
|
+
__typename?: 'BoardFeatureGroupEdge';
|
|
1049
|
+
cursor?: Maybe<Scalars['String']>;
|
|
1050
|
+
node?: Maybe<BoardFeatureGroup>;
|
|
1051
|
+
};
|
|
1011
1052
|
export declare enum BoardFeatureStatus {
|
|
1012
1053
|
Enabled = "ENABLED",
|
|
1013
1054
|
Disabled = "DISABLED",
|
|
@@ -1017,6 +1058,7 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1017
1058
|
Enabled = "ENABLED",
|
|
1018
1059
|
Disabled = "DISABLED"
|
|
1019
1060
|
}
|
|
1061
|
+
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1020
1062
|
export declare type BoardScope = {
|
|
1021
1063
|
__typename?: 'BoardScope';
|
|
1022
1064
|
board?: Maybe<SoftwareBoard>;
|
|
@@ -1026,6 +1068,7 @@ export declare type BoardScope = {
|
|
|
1026
1068
|
projectLocation: SoftwareProject;
|
|
1027
1069
|
cardParents: Array<Maybe<CardParent>>;
|
|
1028
1070
|
features: Array<Maybe<BoardFeature>>;
|
|
1071
|
+
featureGroups?: Maybe<BoardFeatureGroupConnection>;
|
|
1029
1072
|
reports?: Maybe<SoftwareReports>;
|
|
1030
1073
|
cards: Array<Maybe<SoftwareCard>>;
|
|
1031
1074
|
estimation?: Maybe<EstimationConfig>;
|
|
@@ -2840,14 +2883,16 @@ export declare type ContentPlatformIntroToPractice = {
|
|
|
2840
2883
|
};
|
|
2841
2884
|
export declare type ContentPlatformPracticePage = {
|
|
2842
2885
|
__typename?: 'ContentPlatformPracticePage';
|
|
2886
|
+
name: Scalars['String'];
|
|
2843
2887
|
tagline: Scalars['String'];
|
|
2844
|
-
|
|
2888
|
+
introTo: ContentPlatformIntroToPractice;
|
|
2845
2889
|
whatIs: ContentPlatformChunkWhatIs;
|
|
2846
|
-
benefits
|
|
2847
|
-
deepDive
|
|
2848
|
-
bestPractices
|
|
2849
|
-
inContext
|
|
2850
|
-
|
|
2890
|
+
benefits?: Maybe<ContentPlatformChunkBenefits>;
|
|
2891
|
+
deepDive?: Maybe<ContentPlatformChunkDeepDive>;
|
|
2892
|
+
bestPractices?: Maybe<ContentPlatformChunkBestPractices>;
|
|
2893
|
+
inContext?: Maybe<ContentPlatformChunkInContext>;
|
|
2894
|
+
howTo?: Maybe<ContentPlatformChunkHowTo>;
|
|
2895
|
+
practice: ContentPlatformWhatPractice;
|
|
2851
2896
|
};
|
|
2852
2897
|
export declare type ContentPlatformReleaseNote = {
|
|
2853
2898
|
__typename?: 'ContentPlatformReleaseNote';
|
|
@@ -2979,6 +3024,10 @@ export declare type ContentPlatformTypeOfChangeEntry = {
|
|
|
2979
3024
|
label?: Maybe<Scalars['String']>;
|
|
2980
3025
|
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
2981
3026
|
};
|
|
3027
|
+
export declare type ContentPlatformWhatPractice = {
|
|
3028
|
+
__typename?: 'ContentPlatformWhatPractice';
|
|
3029
|
+
title: Scalars['String'];
|
|
3030
|
+
};
|
|
2982
3031
|
export declare type ContextEventObject = {
|
|
2983
3032
|
__typename?: 'ContextEventObject';
|
|
2984
3033
|
id: Scalars['ID'];
|
|
@@ -4421,6 +4470,11 @@ export declare type DevOpsToolNavbarConnectionState = {
|
|
|
4421
4470
|
oncallTab: DevOpsToolConnectionState;
|
|
4422
4471
|
pagesTab: DevOpsToolConnectionState;
|
|
4423
4472
|
};
|
|
4473
|
+
export declare enum DevOpsToolNavbarConnectionStateTab {
|
|
4474
|
+
CodeTab = "codeTab",
|
|
4475
|
+
OncallTab = "oncallTab",
|
|
4476
|
+
PagesTab = "pagesTab"
|
|
4477
|
+
}
|
|
4424
4478
|
export declare type DevOpsToolSupportedContainerType = {
|
|
4425
4479
|
__typename?: 'DevOpsToolSupportedContainerType';
|
|
4426
4480
|
category: DevOpsToolCategory;
|
|
@@ -4434,6 +4488,17 @@ export declare type DevOpsToolUnavailable = DevOpsTool & Node & {
|
|
|
4434
4488
|
supportedContainerTypes?: Maybe<Array<DevOpsToolSupportedContainerType>>;
|
|
4435
4489
|
install: DevOpsToolInstallationInfo;
|
|
4436
4490
|
};
|
|
4491
|
+
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenInput = {
|
|
4492
|
+
cloudId: Scalars['ID'];
|
|
4493
|
+
projectId: Scalars['ID'];
|
|
4494
|
+
tab?: Maybe<DevOpsToolNavbarConnectionStateTab>;
|
|
4495
|
+
};
|
|
4496
|
+
export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payload & {
|
|
4497
|
+
__typename?: 'DevOpsToolUpdateNavbarConnectionStateTabSeenPayload';
|
|
4498
|
+
success: Scalars['Boolean'];
|
|
4499
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4500
|
+
updatedNavbarConnectionState: DevOpsToolNavbarConnectionState;
|
|
4501
|
+
};
|
|
4437
4502
|
export declare type DevOpsTools = {
|
|
4438
4503
|
__typename?: 'DevOpsTools';
|
|
4439
4504
|
tools?: Maybe<DevOpsToolConnection>;
|
|
@@ -4545,6 +4610,16 @@ export declare type Estimate = {
|
|
|
4545
4610
|
storyPoints?: Maybe<Scalars['Float']>;
|
|
4546
4611
|
originalEstimate?: Maybe<OriginalEstimate>;
|
|
4547
4612
|
};
|
|
4613
|
+
export declare type EstimationBoardFeatureView = Node & {
|
|
4614
|
+
__typename?: 'EstimationBoardFeatureView';
|
|
4615
|
+
id: Scalars['ID'];
|
|
4616
|
+
title?: Maybe<Scalars['String']>;
|
|
4617
|
+
description?: Maybe<Scalars['String']>;
|
|
4618
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
4619
|
+
canEnable?: Maybe<Scalars['Boolean']>;
|
|
4620
|
+
permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
|
|
4621
|
+
selectedEstimationType?: Maybe<PermissibleEstimationType>;
|
|
4622
|
+
};
|
|
4548
4623
|
export declare type EstimationConfig = {
|
|
4549
4624
|
__typename?: 'EstimationConfig';
|
|
4550
4625
|
current: CurrentEstimation;
|
|
@@ -5798,6 +5873,14 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
5798
5873
|
__typename?: 'JiraFieldNonEditableReason';
|
|
5799
5874
|
message?: Maybe<Scalars['String']>;
|
|
5800
5875
|
};
|
|
5876
|
+
export declare type JiraFilter = Node & {
|
|
5877
|
+
__typename?: 'JiraFilter';
|
|
5878
|
+
id: Scalars['ID'];
|
|
5879
|
+
filterId: Scalars['String'];
|
|
5880
|
+
jql: Scalars['String'];
|
|
5881
|
+
name: Scalars['String'];
|
|
5882
|
+
};
|
|
5883
|
+
export declare type JiraFilterResult = JiraFilter | QueryError;
|
|
5801
5884
|
export declare type JiraFlag = {
|
|
5802
5885
|
__typename?: 'JiraFlag';
|
|
5803
5886
|
isFlagged?: Maybe<Scalars['Boolean']>;
|
|
@@ -6055,6 +6138,7 @@ export declare type JiraIssue = Node & {
|
|
|
6055
6138
|
comments?: Maybe<JiraCommentConnection>;
|
|
6056
6139
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
6057
6140
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
6141
|
+
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
6058
6142
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
6059
6143
|
};
|
|
6060
6144
|
export declare type JiraIssueFieldsArgs = {
|
|
@@ -6088,6 +6172,12 @@ export declare type JiraIssueAttachmentsArgs = {
|
|
|
6088
6172
|
last?: Maybe<Scalars['Int']>;
|
|
6089
6173
|
before?: Maybe<Scalars['String']>;
|
|
6090
6174
|
};
|
|
6175
|
+
export declare type JiraIssueFieldSetsArgs = {
|
|
6176
|
+
first?: Maybe<Scalars['Int']>;
|
|
6177
|
+
after?: Maybe<Scalars['String']>;
|
|
6178
|
+
last?: Maybe<Scalars['Int']>;
|
|
6179
|
+
before?: Maybe<Scalars['String']>;
|
|
6180
|
+
};
|
|
6091
6181
|
export declare type JiraIssueBranchDevSummary = {
|
|
6092
6182
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
6093
6183
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -6202,6 +6292,7 @@ export declare type JiraIssueFieldConnection = {
|
|
|
6202
6292
|
pageInfo: PageInfo;
|
|
6203
6293
|
edges?: Maybe<Array<Maybe<JiraIssueFieldEdge>>>;
|
|
6204
6294
|
};
|
|
6295
|
+
export declare type JiraIssueFieldConnectionResult = JiraIssueFieldConnection | QueryError;
|
|
6205
6296
|
export declare type JiraIssueFieldEdge = {
|
|
6206
6297
|
__typename?: 'JiraIssueFieldEdge';
|
|
6207
6298
|
node?: Maybe<JiraIssueField>;
|
|
@@ -6212,6 +6303,29 @@ export declare type JiraIssueFieldGrantTypeValue = Node & {
|
|
|
6212
6303
|
id: Scalars['ID'];
|
|
6213
6304
|
field: JiraIssueField;
|
|
6214
6305
|
};
|
|
6306
|
+
export declare type JiraIssueFieldSet = {
|
|
6307
|
+
__typename?: 'JiraIssueFieldSet';
|
|
6308
|
+
fieldSetId?: Maybe<Scalars['String']>;
|
|
6309
|
+
type?: Maybe<Scalars['String']>;
|
|
6310
|
+
fields?: Maybe<JiraIssueFieldConnection>;
|
|
6311
|
+
};
|
|
6312
|
+
export declare type JiraIssueFieldSetFieldsArgs = {
|
|
6313
|
+
first?: Maybe<Scalars['Int']>;
|
|
6314
|
+
after?: Maybe<Scalars['String']>;
|
|
6315
|
+
last?: Maybe<Scalars['Int']>;
|
|
6316
|
+
before?: Maybe<Scalars['String']>;
|
|
6317
|
+
};
|
|
6318
|
+
export declare type JiraIssueFieldSetConnection = {
|
|
6319
|
+
__typename?: 'JiraIssueFieldSetConnection';
|
|
6320
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6321
|
+
pageInfo?: Maybe<PageInfo>;
|
|
6322
|
+
edges?: Maybe<Array<Maybe<JiraIssueFieldSetEdge>>>;
|
|
6323
|
+
};
|
|
6324
|
+
export declare type JiraIssueFieldSetEdge = {
|
|
6325
|
+
__typename?: 'JiraIssueFieldSetEdge';
|
|
6326
|
+
node?: Maybe<JiraIssueFieldSet>;
|
|
6327
|
+
cursor: Scalars['String'];
|
|
6328
|
+
};
|
|
6215
6329
|
export declare type JiraIssueItemContainer = {
|
|
6216
6330
|
__typename?: 'JiraIssueItemContainer';
|
|
6217
6331
|
containerType?: Maybe<JiraIssueItemSystemContainerType>;
|
|
@@ -6444,12 +6558,142 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
6444
6558
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
6445
6559
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
6446
6560
|
};
|
|
6561
|
+
export declare type JiraIssueSearchByFilter = JiraIssueSearchResult & {
|
|
6562
|
+
__typename?: 'JiraIssueSearchByFilter';
|
|
6563
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6564
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6565
|
+
filter?: Maybe<JiraFilterResult>;
|
|
6566
|
+
};
|
|
6567
|
+
export declare type JiraIssueSearchByFilterContentArgs = {
|
|
6568
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6569
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6570
|
+
};
|
|
6571
|
+
export declare type JiraIssueSearchByFilterContentByFieldConfigSetIdsArgs = {
|
|
6572
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6573
|
+
};
|
|
6574
|
+
export declare type JiraIssueSearchByFilterResult = JiraIssueSearchByFilter | QueryError;
|
|
6575
|
+
export declare type JiraIssueSearchByHydration = JiraIssueSearchResult & {
|
|
6576
|
+
__typename?: 'JiraIssueSearchByHydration';
|
|
6577
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6578
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6579
|
+
};
|
|
6580
|
+
export declare type JiraIssueSearchByHydrationContentArgs = {
|
|
6581
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6582
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6583
|
+
};
|
|
6584
|
+
export declare type JiraIssueSearchByHydrationContentByFieldConfigSetIdsArgs = {
|
|
6585
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6586
|
+
};
|
|
6587
|
+
export declare type JiraIssueSearchByJql = JiraIssueSearchResult & {
|
|
6588
|
+
__typename?: 'JiraIssueSearchByJql';
|
|
6589
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6590
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6591
|
+
jql?: Maybe<Scalars['String']>;
|
|
6592
|
+
};
|
|
6593
|
+
export declare type JiraIssueSearchByJqlContentArgs = {
|
|
6594
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6595
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6596
|
+
};
|
|
6597
|
+
export declare type JiraIssueSearchByJqlContentByFieldConfigSetIdsArgs = {
|
|
6598
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6599
|
+
};
|
|
6600
|
+
export declare type JiraIssueSearchByJqlResult = JiraIssueSearchByJql | QueryError;
|
|
6601
|
+
export declare type JiraIssueSearchContextlessContent = JiraIssueSearchResultContent & {
|
|
6602
|
+
__typename?: 'JiraIssueSearchContextlessContent';
|
|
6603
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6604
|
+
};
|
|
6605
|
+
export declare type JiraIssueSearchContextlessContentIssuesArgs = {
|
|
6606
|
+
first?: Maybe<Scalars['Int']>;
|
|
6607
|
+
last?: Maybe<Scalars['Int']>;
|
|
6608
|
+
before?: Maybe<Scalars['String']>;
|
|
6609
|
+
after?: Maybe<Scalars['String']>;
|
|
6610
|
+
};
|
|
6611
|
+
export declare type JiraIssueSearchContextualContent = JiraIssueSearchResultContent & {
|
|
6612
|
+
__typename?: 'JiraIssueSearchContextualContent';
|
|
6613
|
+
view?: Maybe<JiraIssueSearchView>;
|
|
6614
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6615
|
+
};
|
|
6616
|
+
export declare type JiraIssueSearchContextualContentIssuesArgs = {
|
|
6617
|
+
first?: Maybe<Scalars['Int']>;
|
|
6618
|
+
last?: Maybe<Scalars['Int']>;
|
|
6619
|
+
before?: Maybe<Scalars['String']>;
|
|
6620
|
+
after?: Maybe<Scalars['String']>;
|
|
6621
|
+
};
|
|
6622
|
+
export declare type JiraIssueSearchFieldConfigSet = {
|
|
6623
|
+
__typename?: 'JiraIssueSearchFieldConfigSet';
|
|
6624
|
+
fieldConfigSetId?: Maybe<Scalars['String']>;
|
|
6625
|
+
displayName?: Maybe<Scalars['String']>;
|
|
6626
|
+
fieldType?: Maybe<Scalars['String']>;
|
|
6627
|
+
isSortable?: Maybe<Scalars['Boolean']>;
|
|
6628
|
+
isSelected?: Maybe<Scalars['Boolean']>;
|
|
6629
|
+
};
|
|
6630
|
+
export declare type JiraIssueSearchFieldConfigSetConnection = {
|
|
6631
|
+
__typename?: 'JiraIssueSearchFieldConfigSetConnection';
|
|
6632
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6633
|
+
pageInfo: PageInfo;
|
|
6634
|
+
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldConfigSetEdge>>>;
|
|
6635
|
+
};
|
|
6636
|
+
export declare type JiraIssueSearchFieldConfigSetEdge = {
|
|
6637
|
+
__typename?: 'JiraIssueSearchFieldConfigSetEdge';
|
|
6638
|
+
node?: Maybe<JiraIssueSearchFieldConfigSet>;
|
|
6639
|
+
cursor: Scalars['String'];
|
|
6640
|
+
};
|
|
6641
|
+
export declare enum JiraIssueSearchFieldConfigSetSelectedState {
|
|
6642
|
+
All = "ALL",
|
|
6643
|
+
Selected = "SELECTED",
|
|
6644
|
+
NonSelected = "NON_SELECTED"
|
|
6645
|
+
}
|
|
6646
|
+
export declare type JiraIssueSearchFieldConfigSetsFilter = {
|
|
6647
|
+
searchString?: Maybe<Scalars['String']>;
|
|
6648
|
+
fieldConfigSetSelectedState?: Maybe<JiraIssueSearchFieldConfigSetSelectedState>;
|
|
6649
|
+
};
|
|
6650
|
+
export declare type JiraIssueSearchResult = {
|
|
6651
|
+
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
6652
|
+
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
6653
|
+
};
|
|
6654
|
+
export declare type JiraIssueSearchResultContentArgs = {
|
|
6655
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6656
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6657
|
+
};
|
|
6658
|
+
export declare type JiraIssueSearchResultContentByFieldConfigSetIdsArgs = {
|
|
6659
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
6660
|
+
};
|
|
6661
|
+
export declare type JiraIssueSearchResultContent = {
|
|
6662
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
6663
|
+
};
|
|
6664
|
+
export declare type JiraIssueSearchResultContentIssuesArgs = {
|
|
6665
|
+
first?: Maybe<Scalars['Int']>;
|
|
6666
|
+
last?: Maybe<Scalars['Int']>;
|
|
6667
|
+
before?: Maybe<Scalars['String']>;
|
|
6668
|
+
after?: Maybe<Scalars['String']>;
|
|
6669
|
+
};
|
|
6670
|
+
export declare type JiraIssueSearchView = Node & {
|
|
6671
|
+
__typename?: 'JiraIssueSearchView';
|
|
6672
|
+
id: Scalars['ID'];
|
|
6673
|
+
namespace?: Maybe<Scalars['String']>;
|
|
6674
|
+
viewId?: Maybe<Scalars['String']>;
|
|
6675
|
+
fieldConfigSets?: Maybe<JiraIssueSearchFieldConfigSetConnection>;
|
|
6676
|
+
};
|
|
6677
|
+
export declare type JiraIssueSearchViewFieldConfigSetsArgs = {
|
|
6678
|
+
first?: Maybe<Scalars['Int']>;
|
|
6679
|
+
last?: Maybe<Scalars['Int']>;
|
|
6680
|
+
before?: Maybe<Scalars['String']>;
|
|
6681
|
+
after?: Maybe<Scalars['String']>;
|
|
6682
|
+
filter?: Maybe<JiraIssueSearchFieldConfigSetsFilter>;
|
|
6683
|
+
};
|
|
6684
|
+
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
6685
|
+
__typename?: 'JiraIssueSearchViewPayload';
|
|
6686
|
+
success: Scalars['Boolean'];
|
|
6687
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6688
|
+
view?: Maybe<JiraIssueSearchView>;
|
|
6689
|
+
};
|
|
6447
6690
|
export declare type JiraIssueType = Node & {
|
|
6448
6691
|
__typename?: 'JiraIssueType';
|
|
6449
6692
|
id: Scalars['ID'];
|
|
6450
6693
|
name: Scalars['String'];
|
|
6451
6694
|
description?: Maybe<Scalars['String']>;
|
|
6452
6695
|
avatar?: Maybe<JiraAvatar>;
|
|
6696
|
+
hierarchy?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
6453
6697
|
};
|
|
6454
6698
|
export declare type JiraIssueTypeConnection = {
|
|
6455
6699
|
__typename?: 'JiraIssueTypeConnection';
|
|
@@ -6482,6 +6726,11 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
6482
6726
|
before?: Maybe<Scalars['String']>;
|
|
6483
6727
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
6484
6728
|
};
|
|
6729
|
+
export declare type JiraIssueTypeHierarchyLevel = {
|
|
6730
|
+
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
6731
|
+
level: Scalars['Int'];
|
|
6732
|
+
name: Scalars['String'];
|
|
6733
|
+
};
|
|
6485
6734
|
export declare enum JiraJqlAutocompleteType {
|
|
6486
6735
|
None = "NONE",
|
|
6487
6736
|
Component = "COMPONENT",
|
|
@@ -7078,11 +7327,16 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
7078
7327
|
export declare type JiraMutation = {
|
|
7079
7328
|
__typename?: 'JiraMutation';
|
|
7080
7329
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
7330
|
+
updateIssueSearchViewFieldConfigSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
7081
7331
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
7082
7332
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
7083
7333
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
7084
7334
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
7085
7335
|
};
|
|
7336
|
+
export declare type JiraMutationUpdateIssueSearchViewFieldConfigSetsArgs = {
|
|
7337
|
+
id: Scalars['ID'];
|
|
7338
|
+
fieldConfigSetIds: Array<Scalars['String']>;
|
|
7339
|
+
};
|
|
7086
7340
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
7087
7341
|
cloudId: Scalars['ID'];
|
|
7088
7342
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -7751,6 +8005,10 @@ export declare type JiraQuery = {
|
|
|
7751
8005
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
7752
8006
|
issueContainersByType: JiraIssueItemContainersResult;
|
|
7753
8007
|
issueContainersByTypeByKey: JiraIssueItemContainersResult;
|
|
8008
|
+
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
8009
|
+
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
8010
|
+
issueHydrateByIssueIds?: Maybe<JiraIssueSearchByHydration>;
|
|
8011
|
+
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
7754
8012
|
issueByKey?: Maybe<JiraIssue>;
|
|
7755
8013
|
issueById?: Maybe<JiraIssue>;
|
|
7756
8014
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
@@ -7763,6 +8021,7 @@ export declare type JiraQuery = {
|
|
|
7763
8021
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
7764
8022
|
getPermissionSchemeGrantsHierarchy: Array<JiraPermissionGrants>;
|
|
7765
8023
|
version?: Maybe<JiraVersionResult>;
|
|
8024
|
+
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
7766
8025
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
7767
8026
|
};
|
|
7768
8027
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -7789,6 +8048,19 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
7789
8048
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
7790
8049
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
7791
8050
|
};
|
|
8051
|
+
export declare type JiraQueryIssueSearchByJqlArgs = {
|
|
8052
|
+
cloudId: Scalars['ID'];
|
|
8053
|
+
jql: Scalars['String'];
|
|
8054
|
+
};
|
|
8055
|
+
export declare type JiraQueryIssueSearchByFilterIdArgs = {
|
|
8056
|
+
id: Scalars['ID'];
|
|
8057
|
+
};
|
|
8058
|
+
export declare type JiraQueryIssueHydrateByIssueIdsArgs = {
|
|
8059
|
+
ids: Array<Scalars['ID']>;
|
|
8060
|
+
};
|
|
8061
|
+
export declare type JiraQueryIssueSearchViewArgs = {
|
|
8062
|
+
id: Scalars['ID'];
|
|
8063
|
+
};
|
|
7792
8064
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
7793
8065
|
key: Scalars['String'];
|
|
7794
8066
|
cloudId: Scalars['ID'];
|
|
@@ -7849,6 +8121,14 @@ export declare type JiraQueryGetPermissionSchemeGrantsHierarchyArgs = {
|
|
|
7849
8121
|
export declare type JiraQueryVersionArgs = {
|
|
7850
8122
|
id: Scalars['ID'];
|
|
7851
8123
|
};
|
|
8124
|
+
export declare type JiraQueryVersionsForProjectArgs = {
|
|
8125
|
+
jiraProjectId: Scalars['ID'];
|
|
8126
|
+
first?: Maybe<Scalars['Int']>;
|
|
8127
|
+
after?: Maybe<Scalars['String']>;
|
|
8128
|
+
last?: Maybe<Scalars['Int']>;
|
|
8129
|
+
before?: Maybe<Scalars['String']>;
|
|
8130
|
+
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
8131
|
+
};
|
|
7852
8132
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
7853
8133
|
versionId: Scalars['ID'];
|
|
7854
8134
|
};
|
|
@@ -8228,6 +8508,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
|
8228
8508
|
updated?: Maybe<Scalars['DateTime']>;
|
|
8229
8509
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
8230
8510
|
visibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
8511
|
+
authorCanSeeRequest?: Maybe<Scalars['Boolean']>;
|
|
8231
8512
|
};
|
|
8232
8513
|
export declare enum JiraServiceManagementCommentVisibility {
|
|
8233
8514
|
VisibleToHelpseeker = "VISIBLE_TO_HELPSEEKER",
|
|
@@ -8730,6 +9011,7 @@ export declare type JiraStatus = Node & {
|
|
|
8730
9011
|
id: Scalars['ID'];
|
|
8731
9012
|
statusId: Scalars['String'];
|
|
8732
9013
|
name?: Maybe<Scalars['String']>;
|
|
9014
|
+
description?: Maybe<Scalars['String']>;
|
|
8733
9015
|
statusCategory?: Maybe<JiraStatusCategory>;
|
|
8734
9016
|
};
|
|
8735
9017
|
export declare type JiraStatusCategory = Node & {
|
|
@@ -9524,6 +9806,7 @@ export declare type Mutation = {
|
|
|
9524
9806
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
9525
9807
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
9526
9808
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
9809
|
+
updateNavbarConnectionStateTabSeen?: Maybe<DevOpsToolUpdateNavbarConnectionStateTabSeenPayload>;
|
|
9527
9810
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
9528
9811
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
9529
9812
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -9592,6 +9875,7 @@ export declare type Mutation = {
|
|
|
9592
9875
|
updatePolarisView?: Maybe<UpdatePolarisViewPayload>;
|
|
9593
9876
|
updatePolarisViewRankV2?: Maybe<UpdatePolarisViewRankV2Payload>;
|
|
9594
9877
|
deletePolarisView?: Maybe<DeletePolarisViewPayload>;
|
|
9878
|
+
updatePolarisViewLastViewedTimestamp?: Maybe<UpdatePolarisViewTimestampPayload>;
|
|
9595
9879
|
createPolarisViewSet?: Maybe<CreatePolarisViewSetPayload>;
|
|
9596
9880
|
updatePolarisViewSet?: Maybe<UpdatePolarisViewSetPayload>;
|
|
9597
9881
|
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
@@ -9737,6 +10021,9 @@ export declare type MutationRankCardParentArgs = {
|
|
|
9737
10021
|
export declare type MutationSetIssueMediaVisibilityArgs = {
|
|
9738
10022
|
input?: Maybe<SetIssueMediaVisibilityInput>;
|
|
9739
10023
|
};
|
|
10024
|
+
export declare type MutationUpdateNavbarConnectionStateTabSeenArgs = {
|
|
10025
|
+
input: DevOpsToolUpdateNavbarConnectionStateTabSeenInput;
|
|
10026
|
+
};
|
|
9740
10027
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
9741
10028
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
9742
10029
|
};
|
|
@@ -9945,6 +10232,10 @@ export declare type MutationUpdatePolarisViewRankV2Args = {
|
|
|
9945
10232
|
export declare type MutationDeletePolarisViewArgs = {
|
|
9946
10233
|
id: Scalars['ID'];
|
|
9947
10234
|
};
|
|
10235
|
+
export declare type MutationUpdatePolarisViewLastViewedTimestampArgs = {
|
|
10236
|
+
viewId: Scalars['ID'];
|
|
10237
|
+
timestampInput?: Maybe<Scalars['String']>;
|
|
10238
|
+
};
|
|
9948
10239
|
export declare type MutationCreatePolarisViewSetArgs = {
|
|
9949
10240
|
input: CreatePolarisViewSetInput;
|
|
9950
10241
|
};
|
|
@@ -10226,6 +10517,12 @@ export declare type Payload = {
|
|
|
10226
10517
|
success: Scalars['Boolean'];
|
|
10227
10518
|
errors?: Maybe<Array<MutationError>>;
|
|
10228
10519
|
};
|
|
10520
|
+
export declare type PermissibleEstimationType = {
|
|
10521
|
+
__typename?: 'PermissibleEstimationType';
|
|
10522
|
+
value?: Maybe<Scalars['String']>;
|
|
10523
|
+
name?: Maybe<Scalars['String']>;
|
|
10524
|
+
description?: Maybe<Scalars['String']>;
|
|
10525
|
+
};
|
|
10229
10526
|
export declare type PermissionToConsentByOauthId = {
|
|
10230
10527
|
__typename?: 'PermissionToConsentByOauthId';
|
|
10231
10528
|
isAllowed: Scalars['Boolean'];
|
|
@@ -11174,6 +11471,7 @@ export declare type Query = {
|
|
|
11174
11471
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
11175
11472
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
11176
11473
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
11474
|
+
practicePages: Array<ContentPlatformPracticePage>;
|
|
11177
11475
|
practicePage: ContentPlatformPracticePage;
|
|
11178
11476
|
apps?: Maybe<AppConnection>;
|
|
11179
11477
|
app?: Maybe<App>;
|
|
@@ -12178,7 +12476,7 @@ export declare type ShepherdAlertEdge = {
|
|
|
12178
12476
|
__typename?: 'ShepherdAlertEdge';
|
|
12179
12477
|
node?: Maybe<ShepherdAlert>;
|
|
12180
12478
|
};
|
|
12181
|
-
export declare type ShepherdAlertResult =
|
|
12479
|
+
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
12182
12480
|
export declare enum ShepherdAlertSeverity {
|
|
12183
12481
|
Critical = "CRITICAL",
|
|
12184
12482
|
High = "HIGH",
|
|
@@ -12194,7 +12492,7 @@ export declare type ShepherdAlertsConnection = {
|
|
|
12194
12492
|
__typename?: 'ShepherdAlertsConnection';
|
|
12195
12493
|
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
12196
12494
|
};
|
|
12197
|
-
export declare type ShepherdAlertsResult =
|
|
12495
|
+
export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection;
|
|
12198
12496
|
export declare type ShepherdAppInfo = {
|
|
12199
12497
|
__typename?: 'ShepherdAppInfo';
|
|
12200
12498
|
apiVersion: Scalars['Int'];
|
|
@@ -12223,14 +12521,11 @@ export declare type ShepherdCreateOrganizationPayload = Payload & {
|
|
|
12223
12521
|
node?: Maybe<ShepherdOrganization>;
|
|
12224
12522
|
success: Scalars['Boolean'];
|
|
12225
12523
|
};
|
|
12226
|
-
export declare
|
|
12227
|
-
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12228
|
-
Unauthorized = "UNAUTHORIZED"
|
|
12229
|
-
}
|
|
12230
|
-
export declare type ShepherdGenericQueryErrorExtension = ShepherdQueryErrorExtension & {
|
|
12524
|
+
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
12231
12525
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
12232
|
-
errorType?: Maybe<
|
|
12526
|
+
errorType?: Maybe<Scalars['String']>;
|
|
12233
12527
|
statusCode?: Maybe<Scalars['Int']>;
|
|
12528
|
+
type?: Maybe<ShepherdQueryErrorType>;
|
|
12234
12529
|
};
|
|
12235
12530
|
export declare type ShepherdMutation = {
|
|
12236
12531
|
__typename?: 'ShepherdMutation';
|
|
@@ -12277,16 +12572,10 @@ export declare type ShepherdQueryShepherdAlertsArgs = {
|
|
|
12277
12572
|
export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
12278
12573
|
id: Scalars['ID'];
|
|
12279
12574
|
};
|
|
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
|
-
};
|
|
12575
|
+
export declare enum ShepherdQueryErrorType {
|
|
12576
|
+
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
12577
|
+
Unauthorized = "UNAUTHORIZED"
|
|
12578
|
+
}
|
|
12290
12579
|
export declare type ShepherdUpdateAlertInput = {
|
|
12291
12580
|
status?: Maybe<ShepherdAlertStatus>;
|
|
12292
12581
|
};
|
|
@@ -13001,26 +13290,20 @@ export declare enum TownsquareProjectStateValue {
|
|
|
13001
13290
|
}
|
|
13002
13291
|
export declare type TownsquareQueryApi = {
|
|
13003
13292
|
__typename?: 'TownsquareQueryApi';
|
|
13004
|
-
projectsByAri?: Maybe<
|
|
13005
|
-
goalsByAri?: Maybe<
|
|
13006
|
-
commentsByAri?: Maybe<
|
|
13293
|
+
projectsByAri?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
13294
|
+
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
13295
|
+
commentsByAri?: Maybe<Array<Maybe<TownsquareComment>>>;
|
|
13007
13296
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
13008
13297
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
13009
13298
|
};
|
|
13010
13299
|
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
13011
13300
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13012
|
-
after?: Maybe<Scalars['String']>;
|
|
13013
|
-
first?: Maybe<Scalars['Int']>;
|
|
13014
13301
|
};
|
|
13015
13302
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
13016
13303
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13017
|
-
after?: Maybe<Scalars['String']>;
|
|
13018
|
-
first?: Maybe<Scalars['Int']>;
|
|
13019
13304
|
};
|
|
13020
13305
|
export declare type TownsquareQueryApiCommentsByAriArgs = {
|
|
13021
13306
|
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
13022
|
-
after?: Maybe<Scalars['String']>;
|
|
13023
|
-
first?: Maybe<Scalars['Int']>;
|
|
13024
13307
|
};
|
|
13025
13308
|
export declare type TownsquareQueryApiProjectSearchArgs = {
|
|
13026
13309
|
after?: Maybe<Scalars['String']>;
|
|
@@ -13509,6 +13792,11 @@ export declare type UpdatePolarisViewSetPayload = Payload & {
|
|
|
13509
13792
|
errors?: Maybe<Array<MutationError>>;
|
|
13510
13793
|
node?: Maybe<PolarisViewSet>;
|
|
13511
13794
|
};
|
|
13795
|
+
export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
13796
|
+
__typename?: 'UpdatePolarisViewTimestampPayload';
|
|
13797
|
+
success: Scalars['Boolean'];
|
|
13798
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13799
|
+
};
|
|
13512
13800
|
export declare type User = {
|
|
13513
13801
|
accountId: Scalars['ID'];
|
|
13514
13802
|
accountStatus: AccountStatus;
|