@forge/cli-shared 3.6.2-next.2 → 3.7.0-next.3
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 +6 -0
- package/out/graphql/graphql-types.d.ts +150 -11
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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';
|
|
@@ -10871,6 +10880,16 @@ export declare type JiraIssueNavigatorPageInfo = {
|
|
|
10871
10880
|
firstIssueKeyFromNextPage?: Maybe<Scalars['String']>;
|
|
10872
10881
|
lastIssueKeyFromPreviousPage?: Maybe<Scalars['String']>;
|
|
10873
10882
|
};
|
|
10883
|
+
export declare enum JiraIssueNavigatorSearchLayout {
|
|
10884
|
+
List = "LIST",
|
|
10885
|
+
Detail = "DETAIL"
|
|
10886
|
+
}
|
|
10887
|
+
export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
10888
|
+
__typename?: 'JiraIssueNavigatorSearchLayoutMutationPayload';
|
|
10889
|
+
success: Scalars['Boolean'];
|
|
10890
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10891
|
+
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
10892
|
+
};
|
|
10874
10893
|
export declare type JiraIssuePullRequestDevSummary = {
|
|
10875
10894
|
__typename?: 'JiraIssuePullRequestDevSummary';
|
|
10876
10895
|
count?: Maybe<Scalars['Int']>;
|
|
@@ -11130,6 +11149,16 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
11130
11149
|
Absolute = "ABSOLUTE",
|
|
11131
11150
|
Relative = "RELATIVE"
|
|
11132
11151
|
}
|
|
11152
|
+
export declare enum JiraJqlBuilderSearchMode {
|
|
11153
|
+
Basic = "BASIC",
|
|
11154
|
+
Advanced = "ADVANCED"
|
|
11155
|
+
}
|
|
11156
|
+
export declare type JiraJqlBuilderSearchModeMutationPayload = Payload & {
|
|
11157
|
+
__typename?: 'JiraJQLBuilderSearchModeMutationPayload';
|
|
11158
|
+
success: Scalars['Boolean'];
|
|
11159
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11160
|
+
userSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
11161
|
+
};
|
|
11133
11162
|
export declare enum JiraJqlAutocompleteType {
|
|
11134
11163
|
None = "NONE",
|
|
11135
11164
|
Component = "COMPONENT",
|
|
@@ -11821,6 +11850,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
11821
11850
|
};
|
|
11822
11851
|
export declare type JiraMutation = {
|
|
11823
11852
|
__typename?: 'JiraMutation';
|
|
11853
|
+
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
11824
11854
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
11825
11855
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
11826
11856
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
@@ -11870,6 +11900,9 @@ export declare type JiraMutation = {
|
|
|
11870
11900
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11871
11901
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
11872
11902
|
};
|
|
11903
|
+
export declare type JiraMutationUserPreferencesArgs = {
|
|
11904
|
+
cloudId: Scalars['ID'];
|
|
11905
|
+
};
|
|
11873
11906
|
export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
11874
11907
|
input: JiraUpdateReleaseNotesConfigurationInput;
|
|
11875
11908
|
};
|
|
@@ -12326,6 +12359,10 @@ export declare type JiraPeopleFieldUsersArgs = {
|
|
|
12326
12359
|
before?: Maybe<Scalars['String']>;
|
|
12327
12360
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
12328
12361
|
};
|
|
12362
|
+
export declare type JiraPermission = {
|
|
12363
|
+
__typename?: 'JiraPermission';
|
|
12364
|
+
hasPermission?: Maybe<Scalars['Boolean']>;
|
|
12365
|
+
};
|
|
12329
12366
|
export declare type JiraPermissionConfiguration = {
|
|
12330
12367
|
__typename?: 'JiraPermissionConfiguration';
|
|
12331
12368
|
tag: JiraPermissionTagEnum;
|
|
@@ -12444,6 +12481,9 @@ export declare enum JiraPermissionTagEnum {
|
|
|
12444
12481
|
Deprecated = "DEPRECATED",
|
|
12445
12482
|
New = "NEW"
|
|
12446
12483
|
}
|
|
12484
|
+
export declare enum JiraPermissionType {
|
|
12485
|
+
BrowseProjects = "BROWSE_PROJECTS"
|
|
12486
|
+
}
|
|
12447
12487
|
export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
12448
12488
|
__typename?: 'JiraPlatformAttachment';
|
|
12449
12489
|
id: Scalars['ID'];
|
|
@@ -12564,6 +12604,8 @@ export declare type JiraProject = Node & {
|
|
|
12564
12604
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
12565
12605
|
lead?: Maybe<User>;
|
|
12566
12606
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
12607
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
12608
|
+
lastUpdatedFormatted?: Maybe<Scalars['String']>;
|
|
12567
12609
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
12568
12610
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
12569
12611
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
@@ -12585,6 +12627,9 @@ export declare type JiraProjectIssueTypesArgs = {
|
|
|
12585
12627
|
last?: Maybe<Scalars['Int']>;
|
|
12586
12628
|
before?: Maybe<Scalars['String']>;
|
|
12587
12629
|
};
|
|
12630
|
+
export declare type JiraProjectLastUpdatedFormattedArgs = {
|
|
12631
|
+
format?: Maybe<JiraProjectDateTimeFormat>;
|
|
12632
|
+
};
|
|
12588
12633
|
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
12589
12634
|
first?: Maybe<Scalars['Int']>;
|
|
12590
12635
|
after?: Maybe<Scalars['String']>;
|
|
@@ -12819,12 +12864,22 @@ export declare type JiraProjectCategoryEdge = {
|
|
|
12819
12864
|
node?: Maybe<JiraProjectCategory>;
|
|
12820
12865
|
cursor: Scalars['String'];
|
|
12821
12866
|
};
|
|
12867
|
+
export declare type JiraProjectCategoryFilterInput = {
|
|
12868
|
+
categoryIds?: Maybe<Array<Scalars['Int']>>;
|
|
12869
|
+
};
|
|
12822
12870
|
export declare type JiraProjectConnection = HasTotal & HasPageInfo & {
|
|
12823
12871
|
__typename?: 'JiraProjectConnection';
|
|
12824
12872
|
totalCount?: Maybe<Scalars['Int']>;
|
|
12825
12873
|
pageInfo: PageInfo;
|
|
12826
12874
|
edges?: Maybe<Array<Maybe<JiraProjectEdge>>>;
|
|
12827
12875
|
};
|
|
12876
|
+
export declare enum JiraProjectDateTimeFormat {
|
|
12877
|
+
Relative = "RELATIVE",
|
|
12878
|
+
TimeFormat = "TIME_FORMAT",
|
|
12879
|
+
DayFormat = "DAY_FORMAT",
|
|
12880
|
+
CompleteDatetimeFormat = "COMPLETE_DATETIME_FORMAT",
|
|
12881
|
+
DayMonthYearFormat = "DAY_MONTH_YEAR_FORMAT"
|
|
12882
|
+
}
|
|
12828
12883
|
export declare type JiraProjectEdge = {
|
|
12829
12884
|
__typename?: 'JiraProjectEdge';
|
|
12830
12885
|
node?: Maybe<JiraProject>;
|
|
@@ -12985,6 +13040,7 @@ export declare type JiraQuery = {
|
|
|
12985
13040
|
childIssuesLimit?: Maybe<Scalars['Long']>;
|
|
12986
13041
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
12987
13042
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
13043
|
+
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
12988
13044
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
12989
13045
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
12990
13046
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -13019,6 +13075,7 @@ export declare type JiraQuery = {
|
|
|
13019
13075
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
13020
13076
|
issueSearchTotalCount?: Maybe<Scalars['Int']>;
|
|
13021
13077
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
13078
|
+
permission?: Maybe<JiraPermission>;
|
|
13022
13079
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
13023
13080
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
13024
13081
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
@@ -13114,6 +13171,14 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
|
13114
13171
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
13115
13172
|
cloudId: Scalars['ID'];
|
|
13116
13173
|
};
|
|
13174
|
+
export declare type JiraQueryJwmViewItemsArgs = {
|
|
13175
|
+
cloudId?: Maybe<Scalars['ID']>;
|
|
13176
|
+
jql: Scalars['String'];
|
|
13177
|
+
first?: Maybe<Scalars['Int']>;
|
|
13178
|
+
after?: Maybe<Scalars['String']>;
|
|
13179
|
+
last?: Maybe<Scalars['Int']>;
|
|
13180
|
+
before?: Maybe<Scalars['String']>;
|
|
13181
|
+
};
|
|
13117
13182
|
export declare type JiraQueryAllGrantTypeKeysArgs = {
|
|
13118
13183
|
cloudId: Scalars['ID'];
|
|
13119
13184
|
};
|
|
@@ -13200,6 +13265,7 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
13200
13265
|
last?: Maybe<Scalars['Int']>;
|
|
13201
13266
|
after?: Maybe<Scalars['String']>;
|
|
13202
13267
|
before?: Maybe<Scalars['String']>;
|
|
13268
|
+
filter?: Maybe<JiraProjectCategoryFilterInput>;
|
|
13203
13269
|
};
|
|
13204
13270
|
export declare type JiraQueryJiraProjectsArgs = {
|
|
13205
13271
|
ids: Array<Scalars['ID']>;
|
|
@@ -13288,6 +13354,10 @@ export declare type JiraQueryIssueSearchStatusArgs = {
|
|
|
13288
13354
|
cloudId: Scalars['ID'];
|
|
13289
13355
|
jql: Scalars['String'];
|
|
13290
13356
|
};
|
|
13357
|
+
export declare type JiraQueryPermissionArgs = {
|
|
13358
|
+
cloudId: Scalars['ID'];
|
|
13359
|
+
type: JiraPermissionType;
|
|
13360
|
+
};
|
|
13291
13361
|
export declare type JiraQueryRequestTypeTemplatesArgs = {
|
|
13292
13362
|
cloudId: Scalars['ID'];
|
|
13293
13363
|
};
|
|
@@ -15050,10 +15120,23 @@ export declare type JiraUserPreferences = {
|
|
|
15050
15120
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']>;
|
|
15051
15121
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']>;
|
|
15052
15122
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
15123
|
+
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
15124
|
+
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
15053
15125
|
};
|
|
15054
15126
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
15055
15127
|
projectKey: Scalars['String'];
|
|
15056
15128
|
};
|
|
15129
|
+
export declare type JiraUserPreferencesMutation = {
|
|
15130
|
+
__typename?: 'JiraUserPreferencesMutation';
|
|
15131
|
+
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
15132
|
+
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
15133
|
+
};
|
|
15134
|
+
export declare type JiraUserPreferencesMutationSetJqlBuilderSearchModeArgs = {
|
|
15135
|
+
searchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
15136
|
+
};
|
|
15137
|
+
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
15138
|
+
searchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
15139
|
+
};
|
|
15057
15140
|
export declare type JiraVersion = Node & {
|
|
15058
15141
|
__typename?: 'JiraVersion';
|
|
15059
15142
|
id: Scalars['ID'];
|
|
@@ -15550,6 +15633,27 @@ export declare type JiraWorkManagementUpdateOverviewPayload = Payload & {
|
|
|
15550
15633
|
errors?: Maybe<Array<MutationError>>;
|
|
15551
15634
|
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
15552
15635
|
};
|
|
15636
|
+
export declare type JiraWorkManagementViewItem = Node & {
|
|
15637
|
+
__typename?: 'JiraWorkManagementViewItem';
|
|
15638
|
+
id: Scalars['ID'];
|
|
15639
|
+
issueId?: Maybe<Scalars['Long']>;
|
|
15640
|
+
fields?: Maybe<Array<JiraIssueField>>;
|
|
15641
|
+
};
|
|
15642
|
+
export declare type JiraWorkManagementViewItemFieldsArgs = {
|
|
15643
|
+
fieldIds: Array<Maybe<Scalars['String']>>;
|
|
15644
|
+
};
|
|
15645
|
+
export declare type JiraWorkManagementViewItemConnection = {
|
|
15646
|
+
__typename?: 'JiraWorkManagementViewItemConnection';
|
|
15647
|
+
edges?: Maybe<Array<Maybe<JiraWorkManagementViewItemEdge>>>;
|
|
15648
|
+
pageInfo?: Maybe<PageInfo>;
|
|
15649
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
15650
|
+
};
|
|
15651
|
+
export declare type JiraWorkManagementViewItemConnectionResult = JiraWorkManagementViewItemConnection | QueryError;
|
|
15652
|
+
export declare type JiraWorkManagementViewItemEdge = {
|
|
15653
|
+
__typename?: 'JiraWorkManagementViewItemEdge';
|
|
15654
|
+
node?: Maybe<JiraWorkManagementViewItem>;
|
|
15655
|
+
cursor?: Maybe<Scalars['String']>;
|
|
15656
|
+
};
|
|
15553
15657
|
export declare type JiraWorklog = Node & {
|
|
15554
15658
|
__typename?: 'JiraWorklog';
|
|
15555
15659
|
id: Scalars['ID'];
|
|
@@ -20557,11 +20661,6 @@ export declare type ShepherdAlert = Node & {
|
|
|
20557
20661
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
20558
20662
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
20559
20663
|
};
|
|
20560
|
-
export declare enum ShepherdAlertDescriptionType {
|
|
20561
|
-
AlertInfo = "ALERT_INFO",
|
|
20562
|
-
Investigate = "INVESTIGATE",
|
|
20563
|
-
Remediate = "REMEDIATE"
|
|
20564
|
-
}
|
|
20565
20664
|
export declare type ShepherdAlertEdge = {
|
|
20566
20665
|
__typename?: 'ShepherdAlertEdge';
|
|
20567
20666
|
cursor?: Maybe<Scalars['String']>;
|
|
@@ -20580,12 +20679,6 @@ export declare type ShepherdAlertQueriesByWorkspaceArgs = {
|
|
|
20580
20679
|
workspaceId: Scalars['ID'];
|
|
20581
20680
|
};
|
|
20582
20681
|
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
20682
|
export declare enum ShepherdAlertStatus {
|
|
20590
20683
|
InProgress = "IN_PROGRESS",
|
|
20591
20684
|
Triaged = "TRIAGED",
|
|
@@ -20729,6 +20822,7 @@ export declare type ShepherdDetection = {
|
|
|
20729
20822
|
id: Scalars['ID'];
|
|
20730
20823
|
product: ShepherdAtlassianProduct;
|
|
20731
20824
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
20825
|
+
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
20732
20826
|
title: Scalars['String'];
|
|
20733
20827
|
};
|
|
20734
20828
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
@@ -20739,6 +20833,14 @@ export declare type ShepherdDetectionScanningInfo = {
|
|
|
20739
20833
|
__typename?: 'ShepherdDetectionScanningInfo';
|
|
20740
20834
|
scanningFrequency: ShepherdDetectionScanningFrequency;
|
|
20741
20835
|
};
|
|
20836
|
+
export declare type ShepherdDetectionSetting = {
|
|
20837
|
+
__typename?: 'ShepherdDetectionSetting';
|
|
20838
|
+
description?: Maybe<Scalars['JSON']>;
|
|
20839
|
+
id: Scalars['ID'];
|
|
20840
|
+
title: Scalars['String'];
|
|
20841
|
+
value: ShepherdDetectionSettingValueType;
|
|
20842
|
+
};
|
|
20843
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdRateThresholdSetting;
|
|
20742
20844
|
export declare type ShepherdEmailConnection = {
|
|
20743
20845
|
__typename?: 'ShepherdEmailConnection';
|
|
20744
20846
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -20758,6 +20860,12 @@ export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
|
|
|
20758
20860
|
updatedBy?: Maybe<Scalars['String']>;
|
|
20759
20861
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
20760
20862
|
};
|
|
20863
|
+
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
20864
|
+
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
20865
|
+
errorType?: Maybe<Scalars['String']>;
|
|
20866
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
20867
|
+
type?: Maybe<ShepherdMutationErrorType>;
|
|
20868
|
+
};
|
|
20761
20869
|
export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
|
|
20762
20870
|
__typename?: 'ShepherdGenericQueryErrorExtension';
|
|
20763
20871
|
errorType?: Maybe<Scalars['String']>;
|
|
@@ -20828,6 +20936,10 @@ export declare type ShepherdMutationUpdateSubscriptionArgs = {
|
|
|
20828
20936
|
id: Scalars['ID'];
|
|
20829
20937
|
input: ShepherdUpdateSubscriptionInput;
|
|
20830
20938
|
};
|
|
20939
|
+
export declare enum ShepherdMutationErrorType {
|
|
20940
|
+
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
20941
|
+
Unauthorized = "UNAUTHORIZED"
|
|
20942
|
+
}
|
|
20831
20943
|
export declare type ShepherdOrganization = {
|
|
20832
20944
|
__typename?: 'ShepherdOrganization';
|
|
20833
20945
|
createdOn: Scalars['DateTime'];
|
|
@@ -20892,6 +21004,17 @@ export declare enum ShepherdQueryErrorType {
|
|
|
20892
21004
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
20893
21005
|
Unauthorized = "UNAUTHORIZED"
|
|
20894
21006
|
}
|
|
21007
|
+
export declare type ShepherdRateThresholdSetting = {
|
|
21008
|
+
__typename?: 'ShepherdRateThresholdSetting';
|
|
21009
|
+
currentValue?: Maybe<ShepherdRateThresholdValue>;
|
|
21010
|
+
defaultValue: ShepherdRateThresholdValue;
|
|
21011
|
+
values?: Maybe<Array<Maybe<ShepherdRateThresholdValue>>>;
|
|
21012
|
+
};
|
|
21013
|
+
export declare enum ShepherdRateThresholdValue {
|
|
21014
|
+
High = "HIGH",
|
|
21015
|
+
Low = "LOW",
|
|
21016
|
+
Medium = "MEDIUM"
|
|
21017
|
+
}
|
|
20895
21018
|
export declare type ShepherdResourceActivity = {
|
|
20896
21019
|
__typename?: 'ShepherdResourceActivity';
|
|
20897
21020
|
action: ShepherdActionType;
|
|
@@ -21100,6 +21223,7 @@ export declare type ShepherdWorkspace = {
|
|
|
21100
21223
|
};
|
|
21101
21224
|
export declare type ShepherdWorkspaceDetectionsArgs = {
|
|
21102
21225
|
detectionId?: Maybe<Scalars['ID']>;
|
|
21226
|
+
settingId?: Maybe<Scalars['ID']>;
|
|
21103
21227
|
};
|
|
21104
21228
|
export declare type ShepherdWorkspaceConnection = {
|
|
21105
21229
|
__typename?: 'ShepherdWorkspaceConnection';
|
|
@@ -21119,6 +21243,7 @@ export declare type ShepherdWorkspaceMutations = {
|
|
|
21119
21243
|
__typename?: 'ShepherdWorkspaceMutations';
|
|
21120
21244
|
onboard?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
21121
21245
|
update?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
21246
|
+
updateDetectionSetting?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
21122
21247
|
};
|
|
21123
21248
|
export declare type ShepherdWorkspaceMutationsOnboardArgs = {
|
|
21124
21249
|
id: Scalars['ID'];
|
|
@@ -21127,7 +21252,19 @@ export declare type ShepherdWorkspaceMutationsUpdateArgs = {
|
|
|
21127
21252
|
id: Scalars['ID'];
|
|
21128
21253
|
input: ShepherdWorkspaceUpdateInput;
|
|
21129
21254
|
};
|
|
21255
|
+
export declare type ShepherdWorkspaceMutationsUpdateDetectionSettingArgs = {
|
|
21256
|
+
id: Scalars['ID'];
|
|
21257
|
+
input: ShepherdWorkspaceSettingUpdateInput;
|
|
21258
|
+
};
|
|
21130
21259
|
export declare type ShepherdWorkspaceResult = QueryError | ShepherdWorkspaceConnection;
|
|
21260
|
+
export declare type ShepherdWorkspaceSettingUpdateInput = {
|
|
21261
|
+
detectionId: Scalars['ID'];
|
|
21262
|
+
settingId: Scalars['ID'];
|
|
21263
|
+
value: ShepherdWorkspaceSettingValueInput;
|
|
21264
|
+
};
|
|
21265
|
+
export declare type ShepherdWorkspaceSettingValueInput = {
|
|
21266
|
+
thresholdValue?: Maybe<ShepherdRateThresholdValue>;
|
|
21267
|
+
};
|
|
21131
21268
|
export declare type ShepherdWorkspaceUpdateInput = {
|
|
21132
21269
|
shouldOnboard: Scalars['Boolean'];
|
|
21133
21270
|
};
|
|
@@ -22731,8 +22868,10 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
22731
22868
|
ownerId?: Maybe<Scalars['ID']>;
|
|
22732
22869
|
componentType?: Maybe<CompassComponentType>;
|
|
22733
22870
|
componentTypeId?: Maybe<Scalars['ID']>;
|
|
22871
|
+
componentTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
22734
22872
|
importance?: Maybe<CompassScorecardImportance>;
|
|
22735
22873
|
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
22874
|
+
componentTierValues?: Maybe<Array<Scalars['String']>>;
|
|
22736
22875
|
};
|
|
22737
22876
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
22738
22877
|
__typename?: 'UpdateCompassScorecardPayload';
|