@forge/cli-shared 3.6.2-next.1-experimental-58938ba → 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 CHANGED
@@ -1,12 +1,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 3.6.2-next.1-experimental-58938ba
3
+ ## 3.7.0-next.3
4
+
5
+ ### Minor Changes
6
+
7
+ - 1911d76: Added "forge environment create" command
8
+
9
+ ## 3.6.2-next.2
4
10
 
5
11
  ### Patch Changes
6
12
 
7
- - 1eca527f: Type-safe argument and option handling
8
- - Updated dependencies [23a89df6]
9
- - @forge/manifest@4.7.1-next.0-experimental-58938ba
13
+ - 589467c: Bumping dependencies via Renovate:
14
+
15
+ - cross-spawn
10
16
 
11
17
  ## 3.6.2-next.1
12
18
 
@@ -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';
@@ -9242,7 +9251,8 @@ export declare enum JiraCmdbAttributeType {
9242
9251
  Version = "VERSION",
9243
9252
  Project = "PROJECT",
9244
9253
  Status = "STATUS",
9245
- BitbucketRepo = "BITBUCKET_REPO"
9254
+ BitbucketRepo = "BITBUCKET_REPO",
9255
+ OpsgenieTeam = "OPSGENIE_TEAM"
9246
9256
  }
9247
9257
  export declare type JiraCmdbAvatar = {
9248
9258
  __typename?: 'JiraCmdbAvatar';
@@ -9342,6 +9352,7 @@ export declare type JiraCmdbObjectAttributeValue = {
9342
9352
  status?: Maybe<JiraCmdbStatusType>;
9343
9353
  project?: Maybe<JiraProject>;
9344
9354
  bitbucketRepo?: Maybe<JiraCmdbBitbucketRepository>;
9355
+ opsgenieTeam?: Maybe<JiraOpsgenieTeam>;
9345
9356
  value?: Maybe<Scalars['String']>;
9346
9357
  displayValue?: Maybe<Scalars['String']>;
9347
9358
  searchValue?: Maybe<Scalars['String']>;
@@ -10869,6 +10880,16 @@ export declare type JiraIssueNavigatorPageInfo = {
10869
10880
  firstIssueKeyFromNextPage?: Maybe<Scalars['String']>;
10870
10881
  lastIssueKeyFromPreviousPage?: Maybe<Scalars['String']>;
10871
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
+ };
10872
10893
  export declare type JiraIssuePullRequestDevSummary = {
10873
10894
  __typename?: 'JiraIssuePullRequestDevSummary';
10874
10895
  count?: Maybe<Scalars['Int']>;
@@ -11128,6 +11149,16 @@ export declare enum JiraIssueViewTimestampDisplayMode {
11128
11149
  Absolute = "ABSOLUTE",
11129
11150
  Relative = "RELATIVE"
11130
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
+ };
11131
11162
  export declare enum JiraJqlAutocompleteType {
11132
11163
  None = "NONE",
11133
11164
  Component = "COMPONENT",
@@ -11819,6 +11850,7 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
11819
11850
  };
11820
11851
  export declare type JiraMutation = {
11821
11852
  __typename?: 'JiraMutation';
11853
+ userPreferences?: Maybe<JiraUserPreferencesMutation>;
11822
11854
  updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
11823
11855
  createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
11824
11856
  addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
@@ -11868,6 +11900,9 @@ export declare type JiraMutation = {
11868
11900
  updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
11869
11901
  deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
11870
11902
  };
11903
+ export declare type JiraMutationUserPreferencesArgs = {
11904
+ cloudId: Scalars['ID'];
11905
+ };
11871
11906
  export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
11872
11907
  input: JiraUpdateReleaseNotesConfigurationInput;
11873
11908
  };
@@ -12214,6 +12249,12 @@ export declare type JiraOAuthDevOpsProvider = JiraDevOpsProvider & {
12214
12249
  marketplaceApp?: Maybe<MarketplaceApp>;
12215
12250
  };
12216
12251
  export declare type JiraOnIssueCreatedForUserResponseType = JiraProjectConnection | JiraIssueAndProject;
12252
+ export declare type JiraOpsgenieTeam = Node & {
12253
+ __typename?: 'JiraOpsgenieTeam';
12254
+ id: Scalars['ID'];
12255
+ name?: Maybe<Scalars['String']>;
12256
+ url?: Maybe<Scalars['String']>;
12257
+ };
12217
12258
  export declare type JiraOption = Node & {
12218
12259
  __typename?: 'JiraOption';
12219
12260
  id: Scalars['ID'];
@@ -12318,6 +12359,10 @@ export declare type JiraPeopleFieldUsersArgs = {
12318
12359
  before?: Maybe<Scalars['String']>;
12319
12360
  suggested?: Maybe<Scalars['Boolean']>;
12320
12361
  };
12362
+ export declare type JiraPermission = {
12363
+ __typename?: 'JiraPermission';
12364
+ hasPermission?: Maybe<Scalars['Boolean']>;
12365
+ };
12321
12366
  export declare type JiraPermissionConfiguration = {
12322
12367
  __typename?: 'JiraPermissionConfiguration';
12323
12368
  tag: JiraPermissionTagEnum;
@@ -12436,6 +12481,9 @@ export declare enum JiraPermissionTagEnum {
12436
12481
  Deprecated = "DEPRECATED",
12437
12482
  New = "NEW"
12438
12483
  }
12484
+ export declare enum JiraPermissionType {
12485
+ BrowseProjects = "BROWSE_PROJECTS"
12486
+ }
12439
12487
  export declare type JiraPlatformAttachment = JiraAttachment & Node & {
12440
12488
  __typename?: 'JiraPlatformAttachment';
12441
12489
  id: Scalars['ID'];
@@ -12556,6 +12604,8 @@ export declare type JiraProject = Node & {
12556
12604
  favouriteValue?: Maybe<JiraFavouriteValue>;
12557
12605
  lead?: Maybe<User>;
12558
12606
  issueTypes?: Maybe<JiraIssueTypeConnection>;
12607
+ lastUpdated?: Maybe<Scalars['DateTime']>;
12608
+ lastUpdatedFormatted?: Maybe<Scalars['String']>;
12559
12609
  devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
12560
12610
  devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
12561
12611
  linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
@@ -12577,6 +12627,9 @@ export declare type JiraProjectIssueTypesArgs = {
12577
12627
  last?: Maybe<Scalars['Int']>;
12578
12628
  before?: Maybe<Scalars['String']>;
12579
12629
  };
12630
+ export declare type JiraProjectLastUpdatedFormattedArgs = {
12631
+ format?: Maybe<JiraProjectDateTimeFormat>;
12632
+ };
12580
12633
  export declare type JiraProjectDevOpsToolRelationshipsArgs = {
12581
12634
  first?: Maybe<Scalars['Int']>;
12582
12635
  after?: Maybe<Scalars['String']>;
@@ -12811,12 +12864,22 @@ export declare type JiraProjectCategoryEdge = {
12811
12864
  node?: Maybe<JiraProjectCategory>;
12812
12865
  cursor: Scalars['String'];
12813
12866
  };
12867
+ export declare type JiraProjectCategoryFilterInput = {
12868
+ categoryIds?: Maybe<Array<Scalars['Int']>>;
12869
+ };
12814
12870
  export declare type JiraProjectConnection = HasTotal & HasPageInfo & {
12815
12871
  __typename?: 'JiraProjectConnection';
12816
12872
  totalCount?: Maybe<Scalars['Int']>;
12817
12873
  pageInfo: PageInfo;
12818
12874
  edges?: Maybe<Array<Maybe<JiraProjectEdge>>>;
12819
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
+ }
12820
12883
  export declare type JiraProjectEdge = {
12821
12884
  __typename?: 'JiraProjectEdge';
12822
12885
  node?: Maybe<JiraProject>;
@@ -12977,6 +13040,7 @@ export declare type JiraQuery = {
12977
13040
  childIssuesLimit?: Maybe<Scalars['Long']>;
12978
13041
  first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
12979
13042
  getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
13043
+ jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
12980
13044
  allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
12981
13045
  grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
12982
13046
  viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
@@ -13011,6 +13075,7 @@ export declare type JiraQuery = {
13011
13075
  issueSearchStable?: Maybe<JiraIssueConnection>;
13012
13076
  issueSearchTotalCount?: Maybe<Scalars['Int']>;
13013
13077
  issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
13078
+ permission?: Maybe<JiraPermission>;
13014
13079
  requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
13015
13080
  requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
13016
13081
  devOps?: Maybe<JiraDevOpsQuery>;
@@ -13106,6 +13171,14 @@ export declare type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
13106
13171
  export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
13107
13172
  cloudId: Scalars['ID'];
13108
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
+ };
13109
13182
  export declare type JiraQueryAllGrantTypeKeysArgs = {
13110
13183
  cloudId: Scalars['ID'];
13111
13184
  };
@@ -13192,6 +13265,7 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
13192
13265
  last?: Maybe<Scalars['Int']>;
13193
13266
  after?: Maybe<Scalars['String']>;
13194
13267
  before?: Maybe<Scalars['String']>;
13268
+ filter?: Maybe<JiraProjectCategoryFilterInput>;
13195
13269
  };
13196
13270
  export declare type JiraQueryJiraProjectsArgs = {
13197
13271
  ids: Array<Scalars['ID']>;
@@ -13280,6 +13354,10 @@ export declare type JiraQueryIssueSearchStatusArgs = {
13280
13354
  cloudId: Scalars['ID'];
13281
13355
  jql: Scalars['String'];
13282
13356
  };
13357
+ export declare type JiraQueryPermissionArgs = {
13358
+ cloudId: Scalars['ID'];
13359
+ type: JiraPermissionType;
13360
+ };
13283
13361
  export declare type JiraQueryRequestTypeTemplatesArgs = {
13284
13362
  cloudId: Scalars['ID'];
13285
13363
  };
@@ -15042,10 +15120,23 @@ export declare type JiraUserPreferences = {
15042
15120
  issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']>;
15043
15121
  issueViewSidebarResizeRatio?: Maybe<Scalars['String']>;
15044
15122
  issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
15123
+ jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
15124
+ issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
15045
15125
  };
15046
15126
  export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
15047
15127
  projectKey: Scalars['String'];
15048
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
+ };
15049
15140
  export declare type JiraVersion = Node & {
15050
15141
  __typename?: 'JiraVersion';
15051
15142
  id: Scalars['ID'];
@@ -15542,6 +15633,27 @@ export declare type JiraWorkManagementUpdateOverviewPayload = Payload & {
15542
15633
  errors?: Maybe<Array<MutationError>>;
15543
15634
  jwmOverview?: Maybe<JiraWorkManagementOverview>;
15544
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
+ };
15545
15657
  export declare type JiraWorklog = Node & {
15546
15658
  __typename?: 'JiraWorklog';
15547
15659
  id: Scalars['ID'];
@@ -19193,10 +19305,12 @@ export declare type RoadmapChildItem = {
19193
19305
  itemTypeId: Scalars['ID'];
19194
19306
  parentId?: Maybe<Scalars['ID']>;
19195
19307
  summary?: Maybe<Scalars['String']>;
19308
+ assigneeId?: Maybe<Scalars['ID']>;
19196
19309
  assignee?: Maybe<User>;
19197
19310
  dueDateRFC3339?: Maybe<Scalars['Date']>;
19198
19311
  startDateRFC3339?: Maybe<Scalars['Date']>;
19199
19312
  status?: Maybe<RoadmapItemStatus>;
19313
+ statusId?: Maybe<Scalars['ID']>;
19200
19314
  dependencies?: Maybe<Array<Scalars['ID']>>;
19201
19315
  color?: Maybe<RoadmapPaletteColor>;
19202
19316
  rank?: Maybe<Scalars['String']>;
@@ -19354,6 +19468,7 @@ export declare type RoadmapItem = {
19354
19468
  startDate?: Maybe<Scalars['DateTime']>;
19355
19469
  startDateRFC3339?: Maybe<Scalars['Date']>;
19356
19470
  status?: Maybe<RoadmapItemStatus>;
19471
+ statusId?: Maybe<Scalars['ID']>;
19357
19472
  statusCategory?: Maybe<RoadmapItemStatusCategory>;
19358
19473
  createdDate?: Maybe<Scalars['DateTime']>;
19359
19474
  resolutionDate?: Maybe<Scalars['DateTime']>;
@@ -19414,9 +19529,11 @@ export declare type RoadmapLevelOneItem = {
19414
19529
  parentId?: Maybe<Scalars['ID']>;
19415
19530
  summary?: Maybe<Scalars['String']>;
19416
19531
  assignee?: Maybe<User>;
19532
+ assigneeId?: Maybe<Scalars['ID']>;
19417
19533
  dueDateRFC3339?: Maybe<Scalars['Date']>;
19418
19534
  startDateRFC3339?: Maybe<Scalars['Date']>;
19419
19535
  status?: Maybe<RoadmapItemStatus>;
19536
+ statusId?: Maybe<Scalars['ID']>;
19420
19537
  dependencies?: Maybe<Array<Scalars['ID']>>;
19421
19538
  color?: Maybe<RoadmapPaletteColor>;
19422
19539
  rank?: Maybe<Scalars['String']>;
@@ -19428,6 +19545,7 @@ export declare type RoadmapLevelOneItem = {
19428
19545
  inferredStartDate?: Maybe<Scalars['Date']>;
19429
19546
  resolved?: Maybe<Scalars['Boolean']>;
19430
19547
  childIssueCount: Scalars['Int'];
19548
+ progress: Array<RoadmapProgressEntry>;
19431
19549
  };
19432
19550
  export declare type RoadmapLevelOneItemConnection = {
19433
19551
  __typename?: 'RoadmapLevelOneItemConnection';
@@ -19476,6 +19594,11 @@ export declare enum RoadmapPaletteColor {
19476
19594
  DarkOrange = "DARK_ORANGE",
19477
19595
  DarkGrey = "DARK_GREY"
19478
19596
  }
19597
+ export declare type RoadmapProgressEntry = {
19598
+ __typename?: 'RoadmapProgressEntry';
19599
+ statusCategoryId: Scalars['ID'];
19600
+ count: Scalars['Int'];
19601
+ };
19479
19602
  export declare type RoadmapProject = {
19480
19603
  __typename?: 'RoadmapProject';
19481
19604
  id: Scalars['ID'];
@@ -20538,11 +20661,6 @@ export declare type ShepherdAlert = Node & {
20538
20661
  updatedOn?: Maybe<Scalars['DateTime']>;
20539
20662
  workspaceId?: Maybe<Scalars['ID']>;
20540
20663
  };
20541
- export declare enum ShepherdAlertDescriptionType {
20542
- AlertInfo = "ALERT_INFO",
20543
- Investigate = "INVESTIGATE",
20544
- Remediate = "REMEDIATE"
20545
- }
20546
20664
  export declare type ShepherdAlertEdge = {
20547
20665
  __typename?: 'ShepherdAlertEdge';
20548
20666
  cursor?: Maybe<Scalars['String']>;
@@ -20561,12 +20679,6 @@ export declare type ShepherdAlertQueriesByWorkspaceArgs = {
20561
20679
  workspaceId: Scalars['ID'];
20562
20680
  };
20563
20681
  export declare type ShepherdAlertResult = QueryError | ShepherdAlert;
20564
- export declare enum ShepherdAlertSeverity {
20565
- Critical = "CRITICAL",
20566
- High = "HIGH",
20567
- Low = "LOW",
20568
- Medium = "MEDIUM"
20569
- }
20570
20682
  export declare enum ShepherdAlertStatus {
20571
20683
  InProgress = "IN_PROGRESS",
20572
20684
  Triaged = "TRIAGED",
@@ -20710,6 +20822,7 @@ export declare type ShepherdDetection = {
20710
20822
  id: Scalars['ID'];
20711
20823
  product: ShepherdAtlassianProduct;
20712
20824
  scanningInfo: ShepherdDetectionScanningInfo;
20825
+ settings?: Maybe<Array<ShepherdDetectionSetting>>;
20713
20826
  title: Scalars['String'];
20714
20827
  };
20715
20828
  export declare enum ShepherdDetectionScanningFrequency {
@@ -20720,6 +20833,14 @@ export declare type ShepherdDetectionScanningInfo = {
20720
20833
  __typename?: 'ShepherdDetectionScanningInfo';
20721
20834
  scanningFrequency: ShepherdDetectionScanningFrequency;
20722
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;
20723
20844
  export declare type ShepherdEmailConnection = {
20724
20845
  __typename?: 'ShepherdEmailConnection';
20725
20846
  edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
@@ -20739,6 +20860,12 @@ export declare type ShepherdEmailSubscription = Node & ShepherdSubscription & {
20739
20860
  updatedBy?: Maybe<Scalars['String']>;
20740
20861
  updatedOn?: Maybe<Scalars['DateTime']>;
20741
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
+ };
20742
20869
  export declare type ShepherdGenericQueryErrorExtension = QueryErrorExtension & {
20743
20870
  __typename?: 'ShepherdGenericQueryErrorExtension';
20744
20871
  errorType?: Maybe<Scalars['String']>;
@@ -20809,6 +20936,10 @@ export declare type ShepherdMutationUpdateSubscriptionArgs = {
20809
20936
  id: Scalars['ID'];
20810
20937
  input: ShepherdUpdateSubscriptionInput;
20811
20938
  };
20939
+ export declare enum ShepherdMutationErrorType {
20940
+ NoProductAccess = "NO_PRODUCT_ACCESS",
20941
+ Unauthorized = "UNAUTHORIZED"
20942
+ }
20812
20943
  export declare type ShepherdOrganization = {
20813
20944
  __typename?: 'ShepherdOrganization';
20814
20945
  createdOn: Scalars['DateTime'];
@@ -20873,6 +21004,17 @@ export declare enum ShepherdQueryErrorType {
20873
21004
  NoProductAccess = "NO_PRODUCT_ACCESS",
20874
21005
  Unauthorized = "UNAUTHORIZED"
20875
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
+ }
20876
21018
  export declare type ShepherdResourceActivity = {
20877
21019
  __typename?: 'ShepherdResourceActivity';
20878
21020
  action: ShepherdActionType;
@@ -21081,6 +21223,7 @@ export declare type ShepherdWorkspace = {
21081
21223
  };
21082
21224
  export declare type ShepherdWorkspaceDetectionsArgs = {
21083
21225
  detectionId?: Maybe<Scalars['ID']>;
21226
+ settingId?: Maybe<Scalars['ID']>;
21084
21227
  };
21085
21228
  export declare type ShepherdWorkspaceConnection = {
21086
21229
  __typename?: 'ShepherdWorkspaceConnection';
@@ -21100,6 +21243,7 @@ export declare type ShepherdWorkspaceMutations = {
21100
21243
  __typename?: 'ShepherdWorkspaceMutations';
21101
21244
  onboard?: Maybe<ShepherdWorkspaceMutationPayload>;
21102
21245
  update?: Maybe<ShepherdWorkspaceMutationPayload>;
21246
+ updateDetectionSetting?: Maybe<ShepherdWorkspaceMutationPayload>;
21103
21247
  };
21104
21248
  export declare type ShepherdWorkspaceMutationsOnboardArgs = {
21105
21249
  id: Scalars['ID'];
@@ -21108,7 +21252,19 @@ export declare type ShepherdWorkspaceMutationsUpdateArgs = {
21108
21252
  id: Scalars['ID'];
21109
21253
  input: ShepherdWorkspaceUpdateInput;
21110
21254
  };
21255
+ export declare type ShepherdWorkspaceMutationsUpdateDetectionSettingArgs = {
21256
+ id: Scalars['ID'];
21257
+ input: ShepherdWorkspaceSettingUpdateInput;
21258
+ };
21111
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
+ };
21112
21268
  export declare type ShepherdWorkspaceUpdateInput = {
21113
21269
  shouldOnboard: Scalars['Boolean'];
21114
21270
  };
@@ -22712,8 +22868,10 @@ export declare type UpdateCompassScorecardInput = {
22712
22868
  ownerId?: Maybe<Scalars['ID']>;
22713
22869
  componentType?: Maybe<CompassComponentType>;
22714
22870
  componentTypeId?: Maybe<Scalars['ID']>;
22871
+ componentTypeIds?: Maybe<Array<Scalars['ID']>>;
22715
22872
  importance?: Maybe<CompassScorecardImportance>;
22716
22873
  componentLabelNames?: Maybe<Array<Scalars['String']>>;
22874
+ componentTierValues?: Maybe<Array<Scalars['String']>>;
22717
22875
  };
22718
22876
  export declare type UpdateCompassScorecardPayload = Payload & {
22719
22877
  __typename?: 'UpdateCompassScorecardPayload';