@forge/cli-shared 3.11.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,19 @@
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
+
10
+ ## 3.11.1-next.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [c71f31a]
15
+ - @forge/manifest@4.11.0-next.0
16
+
3
17
  ## 3.11.0
4
18
 
5
19
  ### Minor Changes
@@ -411,6 +411,7 @@ export declare type AppContributor = {
411
411
  email?: Maybe<Scalars['String']>;
412
412
  status: Scalars['String'];
413
413
  isOwner?: Maybe<Scalars['Boolean']>;
414
+ avatarUrl?: Maybe<Scalars['String']>;
414
415
  };
415
416
  export declare enum AppContributorRole {
416
417
  Admin = "ADMIN"
@@ -3848,6 +3849,7 @@ export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
3848
3849
  };
3849
3850
  export declare type CompassUpdateMetricDefinitionInput = {
3850
3851
  id: Scalars['ID'];
3852
+ cloudId?: Maybe<Scalars['ID']>;
3851
3853
  name?: Maybe<Scalars['String']>;
3852
3854
  description?: Maybe<Scalars['String']>;
3853
3855
  format?: Maybe<CompassMetricDefinitionFormatInput>;
@@ -8379,6 +8381,10 @@ export declare type Graph = {
8379
8381
  issueAssociatedPrInverse?: Maybe<GraphJiraIssueConnection>;
8380
8382
  issueAssociatedPrRelationship?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
8381
8383
  issueAssociatedPrRelationshipInverse?: Maybe<GraphIssueAssociatedPrRelationshipConnection>;
8384
+ sprintRetrospectivePage?: Maybe<GraphConfluencePageConnection>;
8385
+ sprintRetrospectivePageInverse?: Maybe<GraphJiraSprintConnection>;
8386
+ sprintRetrospectivePageRelationship?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
8387
+ sprintRetrospectivePageRelationshipInverse?: Maybe<GraphSprintRetrospectivePageRelationshipConnection>;
8382
8388
  };
8383
8389
  export declare type GraphIssueAssociatedPrArgs = {
8384
8390
  after?: Maybe<Scalars['String']>;
@@ -8400,12 +8406,53 @@ export declare type GraphIssueAssociatedPrRelationshipInverseArgs = {
8400
8406
  first?: Maybe<Scalars['Int']>;
8401
8407
  to: Scalars['ID'];
8402
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
+ };
8403
8444
  export declare type GraphCreateIssueAssociatedPrInput = {
8404
8445
  from: Scalars['ID'];
8405
8446
  sequenceNumber?: Maybe<Scalars['Long']>;
8406
8447
  to: Scalars['ID'];
8407
8448
  updatedAt?: Maybe<Scalars['DateTime']>;
8408
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
+ };
8409
8456
  export declare type GraphIssueAssociatedPrPayload = Payload & {
8410
8457
  __typename?: 'GraphIssueAssociatedPrPayload';
8411
8458
  errors?: Maybe<Array<MutationError>>;
@@ -8458,13 +8505,54 @@ export declare type GraphJiraPullRequestEdge = {
8458
8505
  cursor?: Maybe<Scalars['String']>;
8459
8506
  node: GraphJiraPullRequest;
8460
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
+ };
8461
8522
  export declare type GraphMutation = {
8462
8523
  __typename?: 'GraphMutation';
8463
8524
  createIssueAssociatedPr?: Maybe<GraphIssueAssociatedPrPayload>;
8525
+ createSprintRetrospectivePage?: Maybe<GraphSprintRetrospectivePagePayload>;
8464
8526
  };
8465
8527
  export declare type GraphMutationCreateIssueAssociatedPrArgs = {
8466
8528
  input: GraphCreateIssueAssociatedPrInput;
8467
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
+ };
8468
8556
  export declare type HasPageInfo = {
8469
8557
  pageInfo: PageInfo;
8470
8558
  };
@@ -8477,7 +8565,7 @@ export declare type HelpCenter = Node & {
8477
8565
  type?: Maybe<HelpCenterType>;
8478
8566
  slug?: Maybe<Scalars['String']>;
8479
8567
  topics?: Maybe<Array<HelpCenterTopic>>;
8480
- layout?: Maybe<HelpCenterHomePageLayout>;
8568
+ homePageLayout?: Maybe<HelpCenterHomePageLayout>;
8481
8569
  };
8482
8570
  export declare type HelpCenterBulkCreateTopicsInput = {
8483
8571
  helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
@@ -8511,6 +8599,7 @@ export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObje
8511
8599
  export declare type HelpCenterHomePageLayout = {
8512
8600
  __typename?: 'HelpCenterHomePageLayout';
8513
8601
  layoutId: Scalars['ID'];
8602
+ data?: Maybe<HelpLayout>;
8514
8603
  };
8515
8604
  export declare type HelpCenterMutationApi = {
8516
8605
  __typename?: 'HelpCenterMutationApi';
@@ -12499,6 +12588,7 @@ export declare type JiraMutation = {
12499
12588
  saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
12500
12589
  createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
12501
12590
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
12591
+ updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
12502
12592
  replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
12503
12593
  userPreferences?: Maybe<JiraUserPreferencesMutation>;
12504
12594
  updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
@@ -12585,6 +12675,9 @@ export declare type JiraMutationCreateJiraVersionArgs = {
12585
12675
  export declare type JiraMutationUpdateJiraVersionArgs = {
12586
12676
  input: JiraVersionUpdateMutationInput;
12587
12677
  };
12678
+ export declare type JiraMutationUpdateJiraVersionDriverArgs = {
12679
+ input: JiraUpdateVersionDriverInput;
12680
+ };
12588
12681
  export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
12589
12682
  id: Scalars['ID'];
12590
12683
  input: JiraReplaceIssueSearchViewFieldSetsInput;
@@ -13302,6 +13395,7 @@ export declare type JiraProject = Node & {
13302
13395
  opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
13303
13396
  servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
13304
13397
  opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
13398
+ suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
13305
13399
  softwareBoards?: Maybe<BoardScopeConnection>;
13306
13400
  confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
13307
13401
  };
@@ -13368,6 +13462,9 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
13368
13462
  first?: Maybe<Scalars['Int']>;
13369
13463
  after?: Maybe<Scalars['String']>;
13370
13464
  };
13465
+ export declare type JiraProjectSuggestedDriversForJiraVersionArgs = {
13466
+ searchText?: Maybe<Scalars['String']>;
13467
+ };
13371
13468
  export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
13372
13469
  first?: Maybe<Scalars['Int']>;
13373
13470
  after?: Maybe<Scalars['String']>;
@@ -15772,6 +15869,10 @@ export declare type JiraUpdateVersionDescriptionInput = {
15772
15869
  id: Scalars['ID'];
15773
15870
  description?: Maybe<Scalars['String']>;
15774
15871
  };
15872
+ export declare type JiraUpdateVersionDriverInput = {
15873
+ id: Scalars['ID'];
15874
+ driver?: Maybe<Scalars['ID']>;
15875
+ };
15775
15876
  export declare type JiraUpdateVersionNameInput = {
15776
15877
  id: Scalars['ID'];
15777
15878
  name: Scalars['String'];
@@ -15815,6 +15916,10 @@ export declare type JiraUpdateVersionWarningConfigPayload = Payload & {
15815
15916
  __typename?: 'JiraUpdateVersionWarningConfigPayload';
15816
15917
  success: Scalars['Boolean'];
15817
15918
  errors?: Maybe<Array<MutationError>>;
15919
+ version?: Maybe<JiraVersionResult>;
15920
+ };
15921
+ export declare type JiraUpdateVersionWarningConfigPayloadVersionArgs = {
15922
+ id: Scalars['ID'];
15818
15923
  };
15819
15924
  export declare type JiraUpdateVotesFieldInput = {
15820
15925
  id: Scalars['ID'];
@@ -16068,6 +16173,16 @@ export declare type JiraVersionDetailPageIssuesIssuesArgs = {
16068
16173
  last?: Maybe<Scalars['Int']>;
16069
16174
  before?: Maybe<Scalars['String']>;
16070
16175
  };
16176
+ export declare type JiraVersionDriverConnection = {
16177
+ __typename?: 'JiraVersionDriverConnection';
16178
+ pageInfo: PageInfo;
16179
+ edges?: Maybe<Array<Maybe<JiraVersionDriverEdge>>>;
16180
+ };
16181
+ export declare type JiraVersionDriverEdge = {
16182
+ __typename?: 'JiraVersionDriverEdge';
16183
+ node?: Maybe<User>;
16184
+ cursor: Scalars['String'];
16185
+ };
16071
16186
  export declare type JiraVersionEdge = {
16072
16187
  __typename?: 'JiraVersionEdge';
16073
16188
  node?: Maybe<JiraVersion>;
@@ -17740,6 +17855,23 @@ export declare type NewSplitIssueResponse = {
17740
17855
  id: Scalars['ID'];
17741
17856
  key: Scalars['String'];
17742
17857
  };
17858
+ export declare type NlpSearchResponse = {
17859
+ __typename?: 'NlpSearchResponse';
17860
+ nlpResult?: Maybe<Scalars['String']>;
17861
+ sources?: Maybe<Array<NlpSource>>;
17862
+ };
17863
+ export declare enum NlpSearchResultType {
17864
+ Page = "page",
17865
+ Blogpost = "blogpost"
17866
+ }
17867
+ export declare type NlpSource = {
17868
+ __typename?: 'NlpSource';
17869
+ id: Scalars['ID'];
17870
+ title: Scalars['String'];
17871
+ url: Scalars['URL'];
17872
+ iconUrl?: Maybe<Scalars['URL']>;
17873
+ type: NlpSearchResultType;
17874
+ };
17743
17875
  export declare type Node = {
17744
17876
  id: Scalars['ID'];
17745
17877
  };
@@ -19543,6 +19675,7 @@ export declare type Query = {
19543
19675
  jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
19544
19676
  oauthClients?: Maybe<OAuthClientsQuery>;
19545
19677
  helpCenter?: Maybe<HelpCenterQueryApi>;
19678
+ nlpSearch?: Maybe<Array<NlpSearchResponse>>;
19546
19679
  };
19547
19680
  export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
19548
19681
  id: Scalars['ID'];
@@ -19912,6 +20045,10 @@ export declare type QueryAppDeploymentArgs = {
19912
20045
  export declare type QueryHelpCenterArgs = {
19913
20046
  cloudId: Scalars['ID'];
19914
20047
  };
20048
+ export declare type QueryNlpSearchArgs = {
20049
+ query?: Maybe<Scalars['String']>;
20050
+ locations: Array<Scalars['String']>;
20051
+ };
19915
20052
  export declare type QueryError = {
19916
20053
  __typename?: 'QueryError';
19917
20054
  identifier?: Maybe<Scalars['ID']>;
@@ -21100,6 +21237,7 @@ export declare type SearchConfluenceFilter = {
21100
21237
  export declare type SearchConfluencePageBlogAttachment = SearchResult & {
21101
21238
  __typename?: 'SearchConfluencePageBlogAttachment';
21102
21239
  id: Scalars['ID'];
21240
+ entityId?: Maybe<Scalars['String']>;
21103
21241
  title: Scalars['String'];
21104
21242
  url: Scalars['URL'];
21105
21243
  iconUrl?: Maybe<Scalars['URL']>;
@@ -21125,6 +21263,7 @@ export declare type SearchConfluenceRangeFilter = {
21125
21263
  export declare type SearchConfluenceResultSpace = {
21126
21264
  __typename?: 'SearchConfluenceResultSpace';
21127
21265
  id: Scalars['ID'];
21266
+ spaceId?: Maybe<Scalars['String']>;
21128
21267
  name?: Maybe<Scalars['String']>;
21129
21268
  key?: Maybe<Scalars['String']>;
21130
21269
  webUiLink?: Maybe<Scalars['String']>;
@@ -21132,6 +21271,7 @@ export declare type SearchConfluenceResultSpace = {
21132
21271
  export declare type SearchConfluenceSpace = SearchResult & {
21133
21272
  __typename?: 'SearchConfluenceSpace';
21134
21273
  id: Scalars['ID'];
21274
+ entityId?: Maybe<Scalars['String']>;
21135
21275
  title: Scalars['String'];
21136
21276
  url: Scalars['URL'];
21137
21277
  iconUrl?: Maybe<Scalars['URL']>;
@@ -21500,6 +21640,14 @@ export declare type ShepherdActorActivity = {
21500
21640
  message?: Maybe<Scalars['JSON']>;
21501
21641
  time: Scalars['DateTime'];
21502
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
+ };
21503
21651
  export declare type ShepherdAlert = Node & {
21504
21652
  __typename?: 'ShepherdAlert';
21505
21653
  assignee?: Maybe<ShepherdUser>;
@@ -21941,6 +22089,7 @@ export declare type ShepherdUser = {
21941
22089
  __typename?: 'ShepherdUser';
21942
22090
  aaid: Scalars['ID'];
21943
22091
  createdOn?: Maybe<Scalars['DateTime']>;
22092
+ productAccess?: Maybe<Array<Maybe<ShepherdActorProductAccess>>>;
21944
22093
  user?: Maybe<User>;
21945
22094
  };
21946
22095
  export declare enum ShepherdWebhookDestinationType {
@@ -21972,6 +22121,7 @@ export declare enum ShepherdWebhookType {
21972
22121
  }
21973
22122
  export declare type ShepherdWorkspace = {
21974
22123
  __typename?: 'ShepherdWorkspace';
22124
+ actor?: Maybe<ShepherdUser>;
21975
22125
  cloudId: Scalars['ID'];
21976
22126
  cloudName?: Maybe<Scalars['String']>;
21977
22127
  detections: Array<ShepherdDetection>;
@@ -21979,6 +22129,9 @@ export declare type ShepherdWorkspace = {
21979
22129
  orgId: Scalars['ID'];
21980
22130
  shouldOnboard?: Maybe<Scalars['Boolean']>;
21981
22131
  };
22132
+ export declare type ShepherdWorkspaceActorArgs = {
22133
+ aaid: Scalars['ID'];
22134
+ };
21982
22135
  export declare type ShepherdWorkspaceDetectionsArgs = {
21983
22136
  detectionId?: Maybe<Scalars['ID']>;
21984
22137
  settingId?: Maybe<Scalars['ID']>;
@@ -22740,11 +22893,17 @@ export declare type SupportRequests = {
22740
22893
  export declare type SurfacePlatformQueryApi = {
22741
22894
  __typename?: 'SurfacePlatformQueryApi';
22742
22895
  surface?: Maybe<SurfacePlatformSurface>;
22896
+ surfaceV2?: Maybe<SurfacePlatformSurfaceV2>;
22743
22897
  };
22744
22898
  export declare type SurfacePlatformQueryApiSurfaceArgs = {
22745
22899
  context?: Maybe<Scalars['JSON']>;
22746
22900
  id: Scalars['ID'];
22747
22901
  };
22902
+ export declare type SurfacePlatformQueryApiSurfaceV2Args = {
22903
+ context?: Maybe<Scalars['JSON']>;
22904
+ key: Scalars['String'];
22905
+ type: Scalars['String'];
22906
+ };
22748
22907
  export declare type SurfacePlatformSurface = {
22749
22908
  __typename?: 'SurfacePlatformSurface';
22750
22909
  channels?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -22756,6 +22915,19 @@ export declare type SurfacePlatformSurface = {
22756
22915
  version?: Maybe<Scalars['String']>;
22757
22916
  zones?: Maybe<Scalars['JSON']>;
22758
22917
  };
22918
+ export declare type SurfacePlatformSurfaceV2 = {
22919
+ __typename?: 'SurfacePlatformSurfaceV2';
22920
+ channel?: Maybe<Scalars['String']>;
22921
+ definitionVersion?: Maybe<Scalars['String']>;
22922
+ description?: Maybe<Scalars['String']>;
22923
+ fields?: Maybe<Scalars['JSON']>;
22924
+ key?: Maybe<Scalars['String']>;
22925
+ label?: Maybe<Scalars['String']>;
22926
+ locale?: Maybe<Scalars['String']>;
22927
+ revision?: Maybe<Scalars['Int']>;
22928
+ type?: Maybe<Scalars['String']>;
22929
+ zones?: Maybe<Scalars['JSON']>;
22930
+ };
22759
22931
  export declare type Swimlane = {
22760
22932
  __typename?: 'Swimlane';
22761
22933
  id?: Maybe<Scalars['ID']>;