@forge/cli-shared 3.11.1-next.0 → 3.11.1

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [c71f31a]
8
+ - @forge/manifest@4.11.0
9
+
3
10
  ## 3.11.1-next.0
4
11
 
5
12
  ### Patch Changes
@@ -3849,6 +3849,7 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
3849
3849
  };
3850
3850
  export declare type CompassUpdateMetricDefinitionInput = {
3851
3851
  id: Scalars['ID'];
3852
+ cloudId?: Maybe<Scalars['ID']>;
3852
3853
  name?: Maybe<Scalars['String']>;
3853
3854
  description?: Maybe<Scalars['String']>;
3854
3855
  format?: Maybe<CompassMetricDefinitionFormatInput>;
@@ -8380,6 +8381,10 @@ export declare type Graph = {
8380
8381
  issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
8381
8382
  issueAssociatedPrRelationship?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
8382
8383
  issueAssociatedPrRelationshipInverse?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
8384
+ sprintRetrospectivePage?: Maybe<GraphConfluencePageConnection>;
8385
+ sprintRetrospectivePageInverse?: Maybe<GraphJiraSprintConnection>;
8386
+ sprintRetrospectivePageRelationship?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
8387
+ sprintRetrospectivePageRelationshipInverse?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
8383
8388
  };
8384
8389
  export declare type GraphIssueAssociatedPrArgs = {
8385
8390
  after?: Maybe<Scalars['String']>;
@@ -8401,12 +8406,53 @@ export declare type GraphIssueAssociatedPrRelationshipInverseArgs = {
8401
8406
  first?: Maybe<Scalars['Int']>;
8402
8407
  to: Scalars['ID'];
8403
8408
  };
8409
+ export declare type GraphSprintRetrospectivePageArgs = {
8410
+ after?: Maybe<Scalars['String']>;
8411
+ first?: Maybe<Scalars['Int']>;
8412
+ from: Scalars['ID'];
8413
+ };
8414
+ export declare type GraphSprintRetrospectivePageInverseArgs = {
8415
+ after?: Maybe<Scalars['String']>;
8416
+ first?: Maybe<Scalars['Int']>;
8417
+ to: Scalars['ID'];
8418
+ };
8419
+ export declare type GraphSprintRetrospectivePageRelationshipArgs = {
8420
+ after?: Maybe<Scalars['String']>;
8421
+ first?: Maybe<Scalars['Int']>;
8422
+ from: Scalars['ID'];
8423
+ };
8424
+ export declare type GraphSprintRetrospectivePageRelationshipInverseArgs = {
8425
+ after?: Maybe<Scalars['String']>;
8426
+ first?: Maybe<Scalars['Int']>;
8427
+ to: Scalars['ID'];
8428
+ };
8429
+ export declare type GraphConfluencePage = Node & {
8430
+ __typename?: 'GraphConfluencePage';
8431
+ id: Scalars['ID'];
8432
+ page?: Maybe<ConfluencePage>;
8433
+ };
8434
+ export declare type GraphConfluencePageConnection = {
8435
+ __typename?: 'GraphConfluencePageConnection';
8436
+ edges: Array<Maybe<GraphConfluencePageEdge>>;
8437
+ pageInfo: PageInfo;
8438
+ };
8439
+ export declare type GraphConfluencePageEdge = {
8440
+ __typename?: 'GraphConfluencePageEdge';
8441
+ cursor?: Maybe<Scalars['String']>;
8442
+ node: GraphConfluencePage;
8443
+ };
8404
8444
  export declare type GraphCreateIssueAssociatedPrInput = {
8405
8445
  from: Scalars['ID'];
8406
8446
  sequenceNumber?: Maybe<Scalars['Long']>;
8407
8447
  to: Scalars['ID'];
8408
8448
  updatedAt?: Maybe<Scalars['DateTime']>;
8409
8449
  };
8450
+ export declare type GraphCreateSprintRetrospectivePageInput = {
8451
+ from: Scalars['ID'];
8452
+ sequenceNumber?: Maybe<Scalars['Long']>;
8453
+ to: Scalars['ID'];
8454
+ updatedAt?: Maybe<Scalars['DateTime']>;
8455
+ };
8410
8456
  export declare type GraphIssueAssociatedPrPayload = Payload & {
8411
8457
  __typename?: 'GraphIssueAssociatedPrPayload';
8412
8458
  errors?: Maybe<Array<MutationError>>;
@@ -8459,13 +8505,54 @@ export declare type GraphJiraPullRequestEdge = {
8459
8505
  cursor?: Maybe<Scalars['String']>;
8460
8506
  node: GraphJiraPullRequest;
8461
8507
  };
8508
+ export declare type GraphJiraSprint = Node & {
8509
+ __typename?: 'GraphJiraSprint';
8510
+ id: Scalars['ID'];
8511
+ };
8512
+ export declare type GraphJiraSprintConnection = {
8513
+ __typename?: 'GraphJiraSprintConnection';
8514
+ edges: Array<Maybe<GraphJiraSprintEdge>>;
8515
+ pageInfo: PageInfo;
8516
+ };
8517
+ export declare type GraphJiraSprintEdge = {
8518
+ __typename?: 'GraphJiraSprintEdge';
8519
+ cursor?: Maybe<Scalars['String']>;
8520
+ node: GraphJiraSprint;
8521
+ };
8462
8522
  export declare type GraphMutation = {
8463
8523
  __typename?: 'GraphMutation';
8464
8524
  createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
8525
+ createSprintRetrospectivePage?: Maybe<GraphSprintRetrospectivePagePayload>;
8465
8526
  };
8466
8527
  export declare type GraphMutationCreateIssueAssociatedPrArgs = {
8467
8528
  input: GraphCreateIssueAssociatedPrInput;
8468
8529
  };
8530
+ export declare type GraphMutationCreateSprintRetrospectivePageArgs = {
8531
+ input: GraphCreateSprintRetrospectivePageInput;
8532
+ };
8533
+ export declare type GraphSprintRetrospectivePagePayload = Payload & {
8534
+ __typename?: 'GraphSprintRetrospectivePagePayload';
8535
+ errors?: Maybe<Array<MutationError>>;
8536
+ sprintRetrospectivePageRelationship: Array<Maybe<GraphSprintRetrospectivePageRelationship>>;
8537
+ success: Scalars['Boolean'];
8538
+ };
8539
+ export declare type GraphSprintRetrospectivePageRelationship = Node & {
8540
+ __typename?: 'GraphSprintRetrospectivePageRelationship';
8541
+ from: GraphJiraSprint;
8542
+ id: Scalars['ID'];
8543
+ lastUpdated: Scalars['DateTime'];
8544
+ to: GraphConfluencePage;
8545
+ };
8546
+ export declare type GraphSprintRetrospectivePageRelationshipConnection = {
8547
+ __typename?: 'GraphSprintRetrospectivePageRelationshipConnection';
8548
+ edges: Array<Maybe<GraphSprintRetrospectivePageRelationshipEdge>>;
8549
+ pageInfo: PageInfo;
8550
+ };
8551
+ export declare type GraphSprintRetrospectivePageRelationshipEdge = {
8552
+ __typename?: 'GraphSprintRetrospectivePageRelationshipEdge';
8553
+ cursor?: Maybe<Scalars['String']>;
8554
+ node: GraphSprintRetrospectivePageRelationship;
8555
+ };
8469
8556
  export declare type HasPageInfo = {
8470
8557
  pageInfo: PageInfo;
8471
8558
  };
@@ -8478,7 +8565,7 @@ export declare type HelpCenter = Node & {
8478
8565
  type?: Maybe<HelpCenterType>;
8479
8566
  slug?: Maybe<Scalars['String']>;
8480
8567
  topics?: Maybe<Array<HelpCenterTopic>>;
8481
- layout?: Maybe<HelpCenterHomePageLayout>;
8568
+ homePageLayout?: Maybe<HelpCenterHomePageLayout>;
8482
8569
  };
8483
8570
  export declare type HelpCenterBulkCreateTopicsInput = {
8484
8571
  helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
@@ -8512,6 +8599,7 @@ export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObje
8512
8599
  export declare type HelpCenterHomePageLayout = {
8513
8600
  __typename?: 'HelpCenterHomePageLayout';
8514
8601
  layoutId: Scalars['ID'];
8602
+ data?: Maybe<HelpLayout>;
8515
8603
  };
8516
8604
  export declare type HelpCenterMutationApi = {
8517
8605
  __typename?: 'HelpCenterMutationApi';
@@ -21552,6 +21640,14 @@ export declare type ShepherdActorActivity = {
21552
21640
  message?: Maybe<Scalars['JSON']>;
21553
21641
  time: Scalars['DateTime'];
21554
21642
  };
21643
+ export declare type ShepherdActorProductAccess = {
21644
+ __typename?: 'ShepherdActorProductAccess';
21645
+ cloudId: Scalars['ID'];
21646
+ cloudSiteHostname: Scalars['String'];
21647
+ lastActiveTimestamp?: Maybe<Scalars['String']>;
21648
+ product: Scalars['String'];
21649
+ productRole: Scalars['String'];
21650
+ };
21555
21651
  export declare type ShepherdAlert = Node & {
21556
21652
  __typename?: 'ShepherdAlert';
21557
21653
  assignee?: Maybe<ShepherdUser>;
@@ -21993,6 +22089,7 @@ export declare type ShepherdUser = {
21993
22089
  __typename?: 'ShepherdUser';
21994
22090
  aaid: Scalars['ID'];
21995
22091
  createdOn?: Maybe<Scalars['DateTime']>;
22092
+ productAccess?: Maybe<Array<Maybe<ShepherdActorProductAccess>>>;
21996
22093
  user?: Maybe<User>;
21997
22094
  };
21998
22095
  export declare enum ShepherdWebhookDestinationType {
@@ -22024,6 +22121,7 @@ export declare enum ShepherdWebhookType {
22024
22121
  }
22025
22122
  export declare type ShepherdWorkspace = {
22026
22123
  __typename?: 'ShepherdWorkspace';
22124
+ actor?: Maybe<ShepherdUser>;
22027
22125
  cloudId: Scalars['ID'];
22028
22126
  cloudName?: Maybe<Scalars['String']>;
22029
22127
  detections: Array<ShepherdDetection>;
@@ -22031,6 +22129,9 @@ export declare type ShepherdWorkspace = {
22031
22129
  orgId: Scalars['ID'];
22032
22130
  shouldOnboard?: Maybe<Scalars['Boolean']>;
22033
22131
  };
22132
+ export declare type ShepherdWorkspaceActorArgs = {
22133
+ aaid: Scalars['ID'];
22134
+ };
22034
22135
  export declare type ShepherdWorkspaceDetectionsArgs = {
22035
22136
  detectionId?: Maybe<Scalars['ID']>;
22036
22137
  settingId?: Maybe<Scalars['ID']>;