@forge/cli-shared 3.11.0-next.7 → 3.11.0-next.9

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,5 +1,20 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.11.0-next.9
4
+
5
+ ### Minor Changes
6
+
7
+ - f2d9cd7: Added "forge environment delete" command
8
+
9
+ ## 3.11.0-next.8
10
+
11
+ ### Patch Changes
12
+
13
+ - 97b57e7: Bumping dependencies via Renovate:
14
+
15
+ - unzipper
16
+ - @types/unzipper
17
+
3
18
  ## 3.11.0-next.7
4
19
 
5
20
  ### Patch Changes
@@ -3553,6 +3553,7 @@ export declare type CompassScorecardAppliedToComponentsThresholdFilter = {
3553
3553
  export declare type CompassScorecardComponentStats = {
3554
3554
  __typename?: 'CompassScorecardComponentStats';
3555
3555
  componentStats?: Maybe<CompassComponentStats>;
3556
+ scorecardCriteriaStats?: Maybe<Array<CompassScorecardCriteriaStats>>;
3556
3557
  totalCount: Scalars['Int'];
3557
3558
  };
3558
3559
  export declare type CompassScorecardComponentStatsQueryResult = CompassScorecardComponentStats | QueryError;
@@ -3581,6 +3582,14 @@ export declare type CompassScorecardCriteriaScore = {
3581
3582
  export declare type CompassScorecardCriteriaScoreQuery = {
3582
3583
  componentId: Scalars['ID'];
3583
3584
  };
3585
+ export declare type CompassScorecardCriteriaStats = {
3586
+ __typename?: 'CompassScorecardCriteriaStats';
3587
+ scorecardCriteriaId: Scalars['ID'];
3588
+ weight: Scalars['Int'];
3589
+ passing: Scalars['Int'];
3590
+ failing: Scalars['Int'];
3591
+ error: Scalars['Int'];
3592
+ };
3584
3593
  export declare type CompassScorecardEdge = {
3585
3594
  __typename?: 'CompassScorecardEdge';
3586
3595
  cursor: Scalars['String'];
@@ -6395,6 +6404,7 @@ export declare type DevOps = {
6395
6404
  providers?: Maybe<DevOpsProviders>;
6396
6405
  providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
6397
6406
  ariGraph?: Maybe<AriGraph>;
6407
+ graph?: Maybe<Graph>;
6398
6408
  toolchain?: Maybe<Toolchain>;
6399
6409
  };
6400
6410
  export declare type DevOpsEntitiesByAssociationsArgs = {
@@ -6751,6 +6761,7 @@ export declare type DevOpsMutation = {
6751
6761
  __typename?: 'DevOpsMutation';
6752
6762
  _empty?: Maybe<Scalars['String']>;
6753
6763
  ariGraph?: Maybe<AriGraphMutation>;
6764
+ graph?: Maybe<GraphMutation>;
6754
6765
  toolchain?: Maybe<ToolchainMutation>;
6755
6766
  };
6756
6767
  export declare type DevOpsMutation_EmptyArgs = {
@@ -8320,6 +8331,98 @@ export declare enum GrantCheckProduct {
8320
8331
  Compass = "COMPASS",
8321
8332
  NoGrantChecks = "NO_GRANT_CHECKS"
8322
8333
  }
8334
+ export declare type Graph = {
8335
+ __typename?: 'Graph';
8336
+ issueAssociatedPr?: Maybe<GraphJiraPullRequestConnection>;
8337
+ issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
8338
+ issueAssociatedPrRelationship?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
8339
+ issueAssociatedPrRelationshipInverse?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
8340
+ };
8341
+ export declare type GraphIssueAssociatedPrArgs = {
8342
+ after?: Maybe<Scalars['String']>;
8343
+ first?: Maybe<Scalars['Int']>;
8344
+ from: Scalars['ID'];
8345
+ };
8346
+ export declare type GraphIssueAssociatedPrInverseArgs = {
8347
+ after?: Maybe<Scalars['String']>;
8348
+ first?: Maybe<Scalars['Int']>;
8349
+ to: Scalars['ID'];
8350
+ };
8351
+ export declare type GraphIssueAssociatedPrRelationshipArgs = {
8352
+ after?: Maybe<Scalars['String']>;
8353
+ first?: Maybe<Scalars['Int']>;
8354
+ from: Scalars['ID'];
8355
+ };
8356
+ export declare type GraphIssueAssociatedPrRelationshipInverseArgs = {
8357
+ after?: Maybe<Scalars['String']>;
8358
+ first?: Maybe<Scalars['Int']>;
8359
+ to: Scalars['ID'];
8360
+ };
8361
+ export declare type GraphCreateIssueAssociatedPrInput = {
8362
+ from: Scalars['ID'];
8363
+ sequenceNumber?: Maybe<Scalars['Long']>;
8364
+ to: Scalars['ID'];
8365
+ updatedAt?: Maybe<Scalars['DateTime']>;
8366
+ };
8367
+ export declare type GraphIssueAssociatedPrPayload = Payload & {
8368
+ __typename?: 'GraphIssueAssociatedPrPayload';
8369
+ errors?: Maybe<Array<MutationError>>;
8370
+ issueAssociatedPrRelationship: Array<Maybe<GraphIssueAssociatedPrRelationship>>;
8371
+ success: Scalars['Boolean'];
8372
+ };
8373
+ export declare type GraphIssueAssociatedPrRelationship = Node & {
8374
+ __typename?: 'GraphIssueAssociatedPrRelationship';
8375
+ from: GraphJiraIssue;
8376
+ id: Scalars['ID'];
8377
+ lastUpdated: Scalars['DateTime'];
8378
+ to: GraphJiraPullRequest;
8379
+ };
8380
+ export declare type GraphIssueAssociatedPrRelationshipConnection = {
8381
+ __typename?: 'GraphIssueAssociatedPrRelationshipConnection';
8382
+ edges: Array<Maybe<GraphIssueAssociatedPrRelationshipEdge>>;
8383
+ pageInfo: PageInfo;
8384
+ };
8385
+ export declare type GraphIssueAssociatedPrRelationshipEdge = {
8386
+ __typename?: 'GraphIssueAssociatedPrRelationshipEdge';
8387
+ cursor?: Maybe<Scalars['String']>;
8388
+ node: GraphIssueAssociatedPrRelationship;
8389
+ };
8390
+ export declare type GraphJiraIssue = Node & {
8391
+ __typename?: 'GraphJiraIssue';
8392
+ id: Scalars['ID'];
8393
+ };
8394
+ export declare type GraphJiraIssueConnection = {
8395
+ __typename?: 'GraphJiraIssueConnection';
8396
+ edges: Array<Maybe<GraphJiraIssueEdge>>;
8397
+ pageInfo: PageInfo;
8398
+ };
8399
+ export declare type GraphJiraIssueEdge = {
8400
+ __typename?: 'GraphJiraIssueEdge';
8401
+ cursor?: Maybe<Scalars['String']>;
8402
+ node: GraphJiraIssue;
8403
+ };
8404
+ export declare type GraphJiraPullRequest = Node & {
8405
+ __typename?: 'GraphJiraPullRequest';
8406
+ id: Scalars['ID'];
8407
+ pullRequest?: Maybe<DevOpsPullRequestDetails>;
8408
+ };
8409
+ export declare type GraphJiraPullRequestConnection = {
8410
+ __typename?: 'GraphJiraPullRequestConnection';
8411
+ edges: Array<Maybe<GraphJiraPullRequestEdge>>;
8412
+ pageInfo: PageInfo;
8413
+ };
8414
+ export declare type GraphJiraPullRequestEdge = {
8415
+ __typename?: 'GraphJiraPullRequestEdge';
8416
+ cursor?: Maybe<Scalars['String']>;
8417
+ node: GraphJiraPullRequest;
8418
+ };
8419
+ export declare type GraphMutation = {
8420
+ __typename?: 'GraphMutation';
8421
+ createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
8422
+ };
8423
+ export declare type GraphMutationCreateIssueAssociatedPrArgs = {
8424
+ input: GraphCreateIssueAssociatedPrInput;
8425
+ };
8323
8426
  export declare type HasPageInfo = {
8324
8427
  pageInfo: PageInfo;
8325
8428
  };
@@ -11525,9 +11628,11 @@ export declare type JiraJqlBuilder = {
11525
11628
  };
11526
11629
  export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
11527
11630
  query?: Maybe<Scalars['String']>;
11631
+ viewContext?: Maybe<JiraJqlViewContext>;
11528
11632
  };
11529
11633
  export declare type JiraJqlBuilderHydrateJqlQueryForFilterArgs = {
11530
11634
  id: Scalars['ID'];
11635
+ viewContext?: Maybe<JiraJqlViewContext>;
11531
11636
  };
11532
11637
  export declare type JiraJqlBuilderFieldsArgs = {
11533
11638
  jqlContext?: Maybe<Scalars['String']>;
@@ -11549,6 +11654,7 @@ export declare type JiraJqlBuilderRecentFieldsArgs = {
11549
11654
  export declare type JiraJqlBuilderFieldValuesArgs = {
11550
11655
  jqlContext?: Maybe<Scalars['String']>;
11551
11656
  jqlTerm: Scalars['String'];
11657
+ viewContext?: Maybe<JiraJqlViewContext>;
11552
11658
  searchString?: Maybe<Scalars['String']>;
11553
11659
  first?: Maybe<Scalars['Int']>;
11554
11660
  after?: Maybe<Scalars['String']>;