@forge/cli-shared 3.6.2-next.2 → 3.7.0-next.3-experimental-2a9dda4
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 +22 -0
- package/out/graphql/graphql-types.d.ts +160 -16
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +37 -17
- package/out/service/feature-flag-service.d.ts +1 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/ui/text.d.ts +14 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +14 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.7.0-next.3-experimental-2a9dda4
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1911d768: Added "forge environment create" command
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 589467cd: Bumping dependencies via Renovate:
|
|
12
|
+
|
|
13
|
+
- cross-spawn
|
|
14
|
+
|
|
15
|
+
- 1eca527f: Type-safe argument and option handling
|
|
16
|
+
- Updated dependencies [23a89df6]
|
|
17
|
+
- @forge/manifest@4.7.1-next.0-experimental-2a9dda4
|
|
18
|
+
|
|
19
|
+
## 3.7.0-next.3
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- 1911d76: Added "forge environment create" command
|
|
24
|
+
|
|
3
25
|
## 3.6.2-next.2
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -513,6 +513,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
513
513
|
id: Scalars['ID'];
|
|
514
514
|
version: Scalars['String'];
|
|
515
515
|
createdAt: Scalars['String'];
|
|
516
|
+
updatedAt: Scalars['String'];
|
|
516
517
|
isLatest: Scalars['Boolean'];
|
|
517
518
|
requiresLicense: Scalars['Boolean'];
|
|
518
519
|
permissions: Array<AppPermission>;
|
|
@@ -2347,6 +2348,10 @@ export declare type CompassComponentResult = CompassComponent | QueryError;
|
|
|
2347
2348
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
2348
2349
|
scorecardId: Scalars['ID'];
|
|
2349
2350
|
};
|
|
2351
|
+
export declare type CompassComponentTier = {
|
|
2352
|
+
__typename?: 'CompassComponentTier';
|
|
2353
|
+
value?: Maybe<Scalars['String']>;
|
|
2354
|
+
};
|
|
2350
2355
|
export declare enum CompassComponentType {
|
|
2351
2356
|
Application = "APPLICATION",
|
|
2352
2357
|
Library = "LIBRARY",
|
|
@@ -3404,10 +3409,12 @@ export declare type CompassScorecard = Node & {
|
|
|
3404
3409
|
owner?: Maybe<User>;
|
|
3405
3410
|
componentType: CompassComponentType;
|
|
3406
3411
|
componentTypeId: Scalars['ID'];
|
|
3412
|
+
componentTypeIds: Array<Scalars['ID']>;
|
|
3407
3413
|
importance: CompassScorecardImportance;
|
|
3408
3414
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
3409
3415
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
3410
3416
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
3417
|
+
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
3411
3418
|
changeMetadata: CompassChangeMetadata;
|
|
3412
3419
|
};
|
|
3413
3420
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
@@ -5202,9 +5209,11 @@ export declare type CreateCompassScorecardInput = {
|
|
|
5202
5209
|
ownerId?: Maybe<Scalars['ID']>;
|
|
5203
5210
|
componentType?: Maybe<CompassComponentType>;
|
|
5204
5211
|
componentTypeId?: Maybe<Scalars['ID']>;
|
|
5212
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
5205
5213
|
importance: CompassScorecardImportance;
|
|
5206
5214
|
criterias?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
5207
5215
|
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
5216
|
+
componentTierValues?: Maybe<Array<Scalars['String']>>;
|
|
5208
5217
|
};
|
|
5209
5218
|
export declare type CreateCompassScorecardPayload = Payload & {
|
|
5210
5219
|
__typename?: 'CreateCompassScorecardPayload';
|
|
@@ -8730,6 +8739,8 @@ export declare type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
|
8730
8739
|
version?: Maybe<JiraVersion>;
|
|
8731
8740
|
success: Scalars['Boolean'];
|
|
8732
8741
|
errors?: Maybe<Array<MutationError>>;
|
|
8742
|
+
issuesWithMissingResolvePermission?: Maybe<Array<Scalars['String']>>;
|
|
8743
|
+
issuesWithMissingEditPermission?: Maybe<Array<Scalars['String']>>;
|
|
8733
8744
|
};
|
|
8734
8745
|
export declare type JiraAddRelatedWorkToVersionInput = {
|
|
8735
8746
|
versionId: Scalars['ID'];
|
|
@@ -10871,6 +10882,16 @@ export declare type JiraIssueNavigatorPageInfo = {
|
|
|
10871
10882
|
firstIssueKeyFromNextPage?: Maybe<Scalars['String']>;
|
|
10872
10883
|
lastIssueKeyFromPreviousPage?: Maybe<Scalars['String']>;
|
|
10873
10884
|
};
|
|
10885
|
+
export declare enum JiraIssueNavigatorSearchLayout {
|
|
10886
|
+
List = "LIST",
|
|
10887
|
+
Detail = "DETAIL"
|
|
10888
|
+
}
|
|
10889
|
+
export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
10890
|
+
__typename?: 'JiraIssueNavigatorSearchLayoutMutationPayload';
|
|
10891
|
+
success: Scalars['Boolean'];
|
|
10892
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10893
|
+
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
10894
|
+
};
|
|
10874
10895
|
export declare type JiraIssuePullRequestDevSummary = {
|
|
10875
10896
|
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
10876
10897
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -11130,6 +11151,16 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
11130
11151
|
Absolute = "ABSOLUTE",
|
|
11131
11152
|
Relative = "RELATIVE"
|
|
11132
11153
|
}
|
|
11154
|
+
export declare enum JiraJqlBuilderSearchMode {
|
|
11155
|
+
Basic = "BASIC",
|
|
11156
|
+
Advanced = "ADVANCED"
|
|
11157
|
+
}
|
|
11158
|
+
export declare type JiraJqlBuilderSearchModeMutationPayload = Payload & {
|
|
11159
|
+
__typename?: 'JiraJQLBuilderSearchModeMutationPayload';
|
|
11160
|
+
success: Scalars['Boolean'];
|
|
11161
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11162
|
+
userSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
11163
|
+
};
|
|
11133
11164
|
export declare enum JiraJqlAutocompleteType {
|
|
11134
11165
|
None = "NONE",
|
|
11135
11166
|
Component = "COMPONENT",
|
|
@@ -11700,6 +11731,8 @@ export declare type JiraMoveIssuesToFixVersionPayload = Payload & {
|
|
|
11700
11731
|
originalVersion?: Maybe<JiraVersion>;
|
|
11701
11732
|
success: Scalars['Boolean'];
|
|
11702
11733
|
errors?: Maybe<Array<MutationError>>;
|
|
11734
|
+
issuesWithMissingResolvePermission?: Maybe<Array<Scalars['String']>>;
|
|
11735
|
+
issuesWithMissingEditPermission?: Maybe<Array<Scalars['String']>>;
|
|
11703
11736
|
};
|
|
11704
11737
|
export declare enum JiraMultiValueFieldOperations {
|
|
11705
11738
|
Add = "ADD",
|
|
@@ -11821,6 +11854,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
11821
11854
|
};
|
|
11822
11855
|
export declare type JiraMutation = {
|
|
11823
11856
|
__typename?: 'JiraMutation';
|
|
11857
|
+
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
11824
11858
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
11825
11859
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
11826
11860
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
@@ -11870,6 +11904,9 @@ export declare type JiraMutation = {
|
|
|
11870
11904
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11871
11905
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11872
11906
|
};
|
|
11907
|
+
export declare type JiraMutationUserPreferencesArgs = {
|
|
11908
|
+
cloudId: Scalars['ID'];
|
|
11909
|
+
};
|
|
11873
11910
|
export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
11874
11911
|
input: JiraUpdateReleaseNotesConfigurationInput;
|
|
11875
11912
|
};
|
|
@@ -12326,6 +12363,10 @@ export declare type JiraPeopleFieldUsersArgs = {
|
|
|
12326
12363
|
before?: Maybe<Scalars['String']>;
|
|
12327
12364
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
12328
12365
|
};
|
|
12366
|
+
export declare type JiraPermission = {
|
|
12367
|
+
__typename?: 'JiraPermission';
|
|
12368
|
+
hasPermission?: Maybe<Scalars['Boolean']>;
|
|
12369
|
+
};
|
|
12329
12370
|
export declare type JiraPermissionConfiguration = {
|
|
12330
12371
|
__typename?: 'JiraPermissionConfiguration';
|
|
12331
12372
|
tag: JiraPermissionTagEnum;
|
|
@@ -12444,6 +12485,9 @@ export declare enum JiraPermissionTagEnum {
|
|
|
12444
12485
|
Deprecated = "DEPRECATED",
|
|
12445
12486
|
New = "NEW"
|
|
12446
12487
|
}
|
|
12488
|
+
export declare enum JiraPermissionType {
|
|
12489
|
+
BrowseProjects = "BROWSE_PROJECTS"
|
|
12490
|
+
}
|
|
12447
12491
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
12448
12492
|
__typename?: 'JiraPlatformAttachment';
|
|
12449
12493
|
id: Scalars['ID'];
|
|
@@ -12564,6 +12608,8 @@ export declare type JiraProject = Node & {
|
|
|
12564
12608
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
12565
12609
|
lead?: Maybe<User>;
|
|
12566
12610
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
12611
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
12612
|
+
lastUpdatedFormatted?: Maybe<Scalars['String']>;
|
|
12567
12613
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
12568
12614
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
12569
12615
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -12585,6 +12631,9 @@ export declare type JiraProjectIssueTypesArgs = {
|
|
|
12585
12631
|
last?: Maybe<Scalars['Int']>;
|
|
12586
12632
|
before?: Maybe<Scalars['String']>;
|
|
12587
12633
|
};
|
|
12634
|
+
export declare type JiraProjectLastUpdatedFormattedArgs = {
|
|
12635
|
+
format?: Maybe<JiraProjectDateTimeFormat>;
|
|
12636
|
+
};
|
|
12588
12637
|
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
12589
12638
|
first?: Maybe<Scalars['Int']>;
|
|
12590
12639
|
after?: Maybe<Scalars['String']>;
|
|
@@ -12819,12 +12868,22 @@ export declare type JiraProjectCategoryEdge = {
|
|
|
12819
12868
|
node?: Maybe<JiraProjectCategory>;
|
|
12820
12869
|
cursor: Scalars['String'];
|
|
12821
12870
|
};
|
|
12871
|
+
export declare type JiraProjectCategoryFilterInput = {
|
|
12872
|
+
categoryIds?: Maybe<Array<Scalars['Int']>>;
|
|
12873
|
+
};
|
|
12822
12874
|
export declare type JiraProjectConnection = HasTotal & HasPageInfo & {
|
|
12823
12875
|
__typename?: 'JiraProjectConnection';
|
|
12824
12876
|
totalCount?: Maybe<Scalars['Int']>;
|
|
12825
12877
|
pageInfo: PageInfo;
|
|
12826
12878
|
edges?: Maybe<Array<Maybe<JiraProjectEdge>>>;
|
|
12827
12879
|
};
|
|
12880
|
+
export declare enum JiraProjectDateTimeFormat {
|
|
12881
|
+
Relative = "RELATIVE",
|
|
12882
|
+
TimeFormat = "TIME_FORMAT",
|
|
12883
|
+
DayFormat = "DAY_FORMAT",
|
|
12884
|
+
CompleteDatetimeFormat = "COMPLETE_DATETIME_FORMAT",
|
|
12885
|
+
DayMonthYearFormat = "DAY_MONTH_YEAR_FORMAT"
|
|
12886
|
+
}
|
|
12828
12887
|
export declare type JiraProjectEdge = {
|
|
12829
12888
|
__typename?: 'JiraProjectEdge';
|
|
12830
12889
|
node?: Maybe<JiraProject>;
|
|
@@ -12982,9 +13041,9 @@ export declare type JiraQuery = {
|
|
|
12982
13041
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
12983
13042
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
12984
13043
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
12985
|
-
childIssuesLimit?: Maybe<Scalars['Long']>;
|
|
12986
13044
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
12987
13045
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
13046
|
+
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
12988
13047
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
12989
13048
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
12990
13049
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -13007,7 +13066,6 @@ export declare type JiraQuery = {
|
|
|
13007
13066
|
version?: Maybe<JiraVersionResult>;
|
|
13008
13067
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
13009
13068
|
versionsForProjects?: Maybe<JiraVersionConnection>;
|
|
13010
|
-
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
13011
13069
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']>;
|
|
13012
13070
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
13013
13071
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -13019,6 +13077,7 @@ export declare type JiraQuery = {
|
|
|
13019
13077
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
13020
13078
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13021
13079
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13080
|
+
permission?: Maybe<JiraPermission>;
|
|
13022
13081
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
13023
13082
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
13024
13083
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
@@ -13104,6 +13163,10 @@ export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
|
13104
13163
|
};
|
|
13105
13164
|
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
13106
13165
|
issueKey: Scalars['String'];
|
|
13166
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
13167
|
+
};
|
|
13168
|
+
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
13169
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
13107
13170
|
};
|
|
13108
13171
|
export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
13109
13172
|
cloudId: Scalars['ID'];
|
|
@@ -13114,6 +13177,14 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
|
13114
13177
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
13115
13178
|
cloudId: Scalars['ID'];
|
|
13116
13179
|
};
|
|
13180
|
+
export declare type JiraQueryJwmViewItemsArgs = {
|
|
13181
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
13182
|
+
jql: Scalars['String'];
|
|
13183
|
+
first?: Maybe<Scalars['Int']>;
|
|
13184
|
+
after?: Maybe<Scalars['String']>;
|
|
13185
|
+
last?: Maybe<Scalars['Int']>;
|
|
13186
|
+
before?: Maybe<Scalars['String']>;
|
|
13187
|
+
};
|
|
13117
13188
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
13118
13189
|
cloudId: Scalars['ID'];
|
|
13119
13190
|
};
|
|
@@ -13200,6 +13271,7 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
13200
13271
|
last?: Maybe<Scalars['Int']>;
|
|
13201
13272
|
after?: Maybe<Scalars['String']>;
|
|
13202
13273
|
before?: Maybe<Scalars['String']>;
|
|
13274
|
+
filter?: Maybe<JiraProjectCategoryFilterInput>;
|
|
13203
13275
|
};
|
|
13204
13276
|
export declare type JiraQueryJiraProjectsArgs = {
|
|
13205
13277
|
ids: Array<Scalars['ID']>;
|
|
@@ -13235,9 +13307,6 @@ export declare type JiraQueryVersionsForProjectsArgs = {
|
|
|
13235
13307
|
filter?: Maybe<Array<Maybe<JiraVersionStatus>>>;
|
|
13236
13308
|
searchString?: Maybe<Scalars['String']>;
|
|
13237
13309
|
};
|
|
13238
|
-
export declare type JiraQueryVersionDetailPageArgs = {
|
|
13239
|
-
versionId: Scalars['ID'];
|
|
13240
|
-
};
|
|
13241
13310
|
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
13242
13311
|
cloudId: Scalars['ID'];
|
|
13243
13312
|
};
|
|
@@ -13288,6 +13357,10 @@ export declare type JiraQueryIssueSearchStatusArgs = {
|
|
|
13288
13357
|
cloudId: Scalars['ID'];
|
|
13289
13358
|
jql: Scalars['String'];
|
|
13290
13359
|
};
|
|
13360
|
+
export declare type JiraQueryPermissionArgs = {
|
|
13361
|
+
cloudId: Scalars['ID'];
|
|
13362
|
+
type: JiraPermissionType;
|
|
13363
|
+
};
|
|
13291
13364
|
export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
13292
13365
|
cloudId: Scalars['ID'];
|
|
13293
13366
|
};
|
|
@@ -13503,6 +13576,8 @@ export declare type JiraRemoveIssuesFromFixVersionPayload = Payload & {
|
|
|
13503
13576
|
version?: Maybe<JiraVersion>;
|
|
13504
13577
|
success: Scalars['Boolean'];
|
|
13505
13578
|
errors?: Maybe<Array<MutationError>>;
|
|
13579
|
+
issuesWithMissingResolvePermission?: Maybe<Array<Scalars['String']>>;
|
|
13580
|
+
issuesWithMissingEditPermission?: Maybe<Array<Scalars['String']>>;
|
|
13506
13581
|
};
|
|
13507
13582
|
export declare type JiraRemoveRelatedWorkFromVersionInput = {
|
|
13508
13583
|
versionId: Scalars['ID'];
|
|
@@ -15050,10 +15125,23 @@ export declare type JiraUserPreferences = {
|
|
|
15050
15125
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']>;
|
|
15051
15126
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']>;
|
|
15052
15127
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
15128
|
+
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
15129
|
+
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
15053
15130
|
};
|
|
15054
15131
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
15055
15132
|
projectKey: Scalars['String'];
|
|
15056
15133
|
};
|
|
15134
|
+
export declare type JiraUserPreferencesMutation = {
|
|
15135
|
+
__typename?: 'JiraUserPreferencesMutation';
|
|
15136
|
+
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
15137
|
+
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
15138
|
+
};
|
|
15139
|
+
export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
15140
|
+
searchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
15141
|
+
};
|
|
15142
|
+
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
15143
|
+
searchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
15144
|
+
};
|
|
15057
15145
|
export declare type JiraVersion = Node & {
|
|
15058
15146
|
__typename?: 'JiraVersion';
|
|
15059
15147
|
id: Scalars['ID'];
|
|
@@ -15550,6 +15638,27 @@ export declare type JiraWorkManagementUpdateOverviewPayload = Payload & {
|
|
|
15550
15638
|
errors?: Maybe<Array<MutationError>>;
|
|
15551
15639
|
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
15552
15640
|
};
|
|
15641
|
+
export declare type JiraWorkManagementViewItem = Node & {
|
|
15642
|
+
__typename?: 'JiraWorkManagementViewItem';
|
|
15643
|
+
id: Scalars['ID'];
|
|
15644
|
+
issueId?: Maybe<Scalars['Long']>;
|
|
15645
|
+
fields?: Maybe<Array<JiraIssueField>>;
|
|
15646
|
+
};
|
|
15647
|
+
export declare type JiraWorkManagementViewItemFieldsArgs = {
|
|
15648
|
+
fieldIds: Array<Maybe<Scalars['String']>>;
|
|
15649
|
+
};
|
|
15650
|
+
export declare type JiraWorkManagementViewItemConnection = {
|
|
15651
|
+
__typename?: 'JiraWorkManagementViewItemConnection';
|
|
15652
|
+
edges?: Maybe<Array<Maybe<JiraWorkManagementViewItemEdge>>>;
|
|
15653
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15654
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
15655
|
+
};
|
|
15656
|
+
export declare type JiraWorkManagementViewItemConnectionResult = JiraWorkManagementViewItemConnection | QueryError;
|
|
15657
|
+
export declare type JiraWorkManagementViewItemEdge = {
|
|
15658
|
+
__typename?: 'JiraWorkManagementViewItemEdge';
|
|
15659
|
+
node?: Maybe<JiraWorkManagementViewItem>;
|
|
15660
|
+
cursor?: Maybe<Scalars['String']>;
|
|
15661
|
+
};
|
|
15553
15662
|
export declare type JiraWorklog = Node & {
|
|
15554
15663
|
__typename?: 'JiraWorklog';
|
|
15555
15664
|
id: Scalars['ID'];
|
|
@@ -20557,11 +20666,6 @@ export declare type ShepherdAlert = Node & {
|
|
|
20557
20666
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
20558
20667
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
20559
20668
|
};
|
|
20560
|
-
export declare enum ShepherdAlertDescriptionType {
|
|
20561
|
-
AlertInfo = "ALERT_INFO",
|
|
20562
|
-
Investigate = "INVESTIGATE",
|
|
20563
|
-
Remediate = "REMEDIATE"
|
|
20564
|
-
}
|
|
20565
20669
|
export declare type ShepherdAlertEdge = {
|
|
20566
20670
|
__typename?: 'ShepherdAlertEdge';
|
|
20567
20671
|
cursor?: Maybe<Scalars['String']>;
|
|
@@ -20580,12 +20684,6 @@ export declare type ShepherdAlertQueriesByWorkspaceArgs = {
|
|
|
20580
20684
|
workspaceId: Scalars['ID'];
|
|
20581
20685
|
};
|
|
20582
20686
|
export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
|
|
20583
|
-
export declare enum ShepherdAlertSeverity {
|
|
20584
|
-
Critical = "CRITICAL",
|
|
20585
|
-
High = "HIGH",
|
|
20586
|
-
Low = "LOW",
|
|
20587
|
-
Medium = "MEDIUM"
|
|
20588
|
-
}
|
|
20589
20687
|
export declare enum ShepherdAlertStatus {
|
|
20590
20688
|
InProgress = "IN_PROGRESS",
|
|
20591
20689
|
Triaged = "TRIAGED",
|
|
@@ -20729,6 +20827,7 @@ export declare type ShepherdDetection = {
|
|
|
20729
20827
|
id: Scalars['ID'];
|
|
20730
20828
|
product: ShepherdAtlassianProduct;
|
|
20731
20829
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
20830
|
+
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
20732
20831
|
title: Scalars['String'];
|
|
20733
20832
|
};
|
|
20734
20833
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
@@ -20739,6 +20838,14 @@ export declare type ShepherdDetectionScanningInfo = {
|
|
|
20739
20838
|
__typename?: 'ShepherdDetectionScanningInfo';
|
|
20740
20839
|
scanningFrequency: ShepherdDetectionScanningFrequency;
|
|
20741
20840
|
};
|
|
20841
|
+
export declare type ShepherdDetectionSetting = {
|
|
20842
|
+
__typename?: 'ShepherdDetectionSetting';
|
|
20843
|
+
description?: Maybe<Scalars['JSON']>;
|
|
20844
|
+
id: Scalars['ID'];
|
|
20845
|
+
title: Scalars['String'];
|
|
20846
|
+
value: ShepherdDetectionSettingValueType;
|
|
20847
|
+
};
|
|
20848
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdRateThresholdSetting;
|
|
20742
20849
|
export declare type ShepherdEmailConnection = {
|
|
20743
20850
|
__typename?: 'ShepherdEmailConnection';
|
|
20744
20851
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -20758,6 +20865,12 @@ export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
|
|
|
20758
20865
|
updatedBy?: Maybe<Scalars['String']>;
|
|
20759
20866
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
20760
20867
|
};
|
|
20868
|
+
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
20869
|
+
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
20870
|
+
errorType?: Maybe<Scalars['String']>;
|
|
20871
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
20872
|
+
type?: Maybe<ShepherdMutationErrorType>;
|
|
20873
|
+
};
|
|
20761
20874
|
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
20762
20875
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
20763
20876
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -20828,6 +20941,10 @@ export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
|
20828
20941
|
id: Scalars['ID'];
|
|
20829
20942
|
input: ShepherdUpdateSubscriptionInput;
|
|
20830
20943
|
};
|
|
20944
|
+
export declare enum ShepherdMutationErrorType {
|
|
20945
|
+
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
20946
|
+
Unauthorized = "UNAUTHORIZED"
|
|
20947
|
+
}
|
|
20831
20948
|
export declare type ShepherdOrganization = {
|
|
20832
20949
|
__typename?: 'ShepherdOrganization';
|
|
20833
20950
|
createdOn: Scalars['DateTime'];
|
|
@@ -20892,6 +21009,17 @@ export declare enum ShepherdQueryErrorType {
|
|
|
20892
21009
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
20893
21010
|
Unauthorized = "UNAUTHORIZED"
|
|
20894
21011
|
}
|
|
21012
|
+
export declare type ShepherdRateThresholdSetting = {
|
|
21013
|
+
__typename?: 'ShepherdRateThresholdSetting';
|
|
21014
|
+
currentValue?: Maybe<ShepherdRateThresholdValue>;
|
|
21015
|
+
defaultValue: ShepherdRateThresholdValue;
|
|
21016
|
+
values?: Maybe<Array<Maybe<ShepherdRateThresholdValue>>>;
|
|
21017
|
+
};
|
|
21018
|
+
export declare enum ShepherdRateThresholdValue {
|
|
21019
|
+
High = "HIGH",
|
|
21020
|
+
Low = "LOW",
|
|
21021
|
+
Medium = "MEDIUM"
|
|
21022
|
+
}
|
|
20895
21023
|
export declare type ShepherdResourceActivity = {
|
|
20896
21024
|
__typename?: 'ShepherdResourceActivity';
|
|
20897
21025
|
action: ShepherdActionType;
|
|
@@ -21100,6 +21228,7 @@ export declare type ShepherdWorkspace = {
|
|
|
21100
21228
|
};
|
|
21101
21229
|
export declare type ShepherdWorkspaceDetectionsArgs = {
|
|
21102
21230
|
detectionId?: Maybe<Scalars['ID']>;
|
|
21231
|
+
settingId?: Maybe<Scalars['ID']>;
|
|
21103
21232
|
};
|
|
21104
21233
|
export declare type ShepherdWorkspaceConnection = {
|
|
21105
21234
|
__typename?: 'ShepherdWorkspaceConnection';
|
|
@@ -21119,6 +21248,7 @@ export declare type ShepherdWorkspaceMutations = {
|
|
|
21119
21248
|
__typename?: 'ShepherdWorkspaceMutations';
|
|
21120
21249
|
onboard?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
21121
21250
|
update?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
21251
|
+
updateDetectionSetting?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
21122
21252
|
};
|
|
21123
21253
|
export declare type ShepherdWorkspaceMutationsOnboardArgs = {
|
|
21124
21254
|
id: Scalars['ID'];
|
|
@@ -21127,7 +21257,19 @@ export declare type ShepherdWorkspaceMutationsUpdateArgs = {
|
|
|
21127
21257
|
id: Scalars['ID'];
|
|
21128
21258
|
input: ShepherdWorkspaceUpdateInput;
|
|
21129
21259
|
};
|
|
21260
|
+
export declare type ShepherdWorkspaceMutationsUpdateDetectionSettingArgs = {
|
|
21261
|
+
id: Scalars['ID'];
|
|
21262
|
+
input: ShepherdWorkspaceSettingUpdateInput;
|
|
21263
|
+
};
|
|
21130
21264
|
export declare type ShepherdWorkspaceResult = QueryError | ShepherdWorkspaceConnection;
|
|
21265
|
+
export declare type ShepherdWorkspaceSettingUpdateInput = {
|
|
21266
|
+
detectionId: Scalars['ID'];
|
|
21267
|
+
settingId: Scalars['ID'];
|
|
21268
|
+
value: ShepherdWorkspaceSettingValueInput;
|
|
21269
|
+
};
|
|
21270
|
+
export declare type ShepherdWorkspaceSettingValueInput = {
|
|
21271
|
+
thresholdValue?: Maybe<ShepherdRateThresholdValue>;
|
|
21272
|
+
};
|
|
21131
21273
|
export declare type ShepherdWorkspaceUpdateInput = {
|
|
21132
21274
|
shouldOnboard: Scalars['Boolean'];
|
|
21133
21275
|
};
|
|
@@ -22731,8 +22873,10 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
22731
22873
|
ownerId?: Maybe<Scalars['ID']>;
|
|
22732
22874
|
componentType?: Maybe<CompassComponentType>;
|
|
22733
22875
|
componentTypeId?: Maybe<Scalars['ID']>;
|
|
22876
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
22734
22877
|
importance?: Maybe<CompassScorecardImportance>;
|
|
22735
22878
|
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
22879
|
+
componentTierValues?: Maybe<Array<Scalars['String']>>;
|
|
22736
22880
|
};
|
|
22737
22881
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
22738
22882
|
__typename?: 'UpdateCompassScorecardPayload';
|