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

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,47 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.11.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [c71f31a]
8
+ - @forge/manifest@4.11.0-next.0
9
+
10
+ ## 3.11.0
11
+
12
+ ### Minor Changes
13
+
14
+ - f2d9cd7: Added "forge environment delete" command
15
+ - 52f15e18: Improve reading of AppDeploymentFailedError by adding requestId
16
+
17
+ ### Patch Changes
18
+
19
+ - 04a9b36: Node Runtime tunnel now reports an error if --debug is enabled
20
+ - 87b2440: Bumping dependencies via Renovate:
21
+
22
+ - recursive-readdir
23
+ - @types/recursive-readdir
24
+
25
+ - 3e7edfb: Fix consistency of environment name in the CLI
26
+ - 97b57e7: Bumping dependencies via Renovate:
27
+
28
+ - unzipper
29
+ - @types/unzipper
30
+
31
+ - b91c323: output request ID in analytics for all GraphQL errors
32
+ - Updated dependencies [9c3f9e4]
33
+ - Updated dependencies [6e015d7]
34
+ - Updated dependencies [6cb6ad2]
35
+ - Updated dependencies [59c693ee]
36
+ - @forge/manifest@4.10.0
37
+
38
+ ## 3.11.0-next.10
39
+
40
+ ### Patch Changes
41
+
42
+ - Updated dependencies [6cb6ad2]
43
+ - @forge/manifest@4.10.0-next.3
44
+
3
45
  ## 3.11.0-next.9
4
46
 
5
47
  ### 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"
@@ -2110,6 +2111,8 @@ export declare type CompassCatalogMutationApi = {
2110
2111
  updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
2111
2112
  deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
2112
2113
  createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
2114
+ createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
2115
+ deleteStarredComponent?: Maybe<DeleteCompassStarredComponentPayload>;
2113
2116
  };
2114
2117
  export declare type CompassCatalogMutationApiCreateComponentArgs = {
2115
2118
  cloudId: Scalars['ID'];
@@ -2278,6 +2281,12 @@ export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
2278
2281
  export declare type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
2279
2282
  input: CreateCompassComponentFromTemplateInput;
2280
2283
  };
2284
+ export declare type CompassCatalogMutationApiCreateStarredComponentArgs = {
2285
+ input: CreateCompassStarredComponentInput;
2286
+ };
2287
+ export declare type CompassCatalogMutationApiDeleteStarredComponentArgs = {
2288
+ input: DeleteCompassStarredComponentInput;
2289
+ };
2281
2290
  export declare type CompassCatalogQueryApi = {
2282
2291
  __typename?: 'CompassCatalogQueryApi';
2283
2292
  component?: Maybe<CompassComponentResult>;
@@ -2298,6 +2307,7 @@ export declare type CompassCatalogQueryApi = {
2298
2307
  eventSource?: Maybe<CompassEventSourceResult>;
2299
2308
  customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
2300
2309
  metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
2310
+ starredComponents?: Maybe<CompassStarredComponentsResult>;
2301
2311
  };
2302
2312
  export declare type CompassCatalogQueryApiComponentArgs = {
2303
2313
  id: Scalars['ID'];
@@ -2365,6 +2375,9 @@ export declare type CompassCatalogQueryApiMetricValuesTimeSeriesArgs = {
2365
2375
  cloudId: Scalars['ID'];
2366
2376
  metricSourceId: Scalars['ID'];
2367
2377
  };
2378
+ export declare type CompassCatalogQueryApiStarredComponentsArgs = {
2379
+ cloudId: Scalars['ID'];
2380
+ };
2368
2381
  export declare type CompassChangeMetadata = {
2369
2382
  __typename?: 'CompassChangeMetadata';
2370
2383
  createdAt?: Maybe<Scalars['DateTime']>;
@@ -3306,6 +3319,7 @@ export declare type CompassMetricDefinition = Node & {
3306
3319
  type: CompassMetricDefinitionType;
3307
3320
  metricSources?: Maybe<CompassMetricSourcesQueryResult>;
3308
3321
  derivedEventTypes?: Maybe<Array<CompassEventType>>;
3322
+ isPinned?: Maybe<Scalars['Boolean']>;
3309
3323
  };
3310
3324
  export declare type CompassMetricDefinitionMetricSourcesArgs = {
3311
3325
  query?: Maybe<CompassMetricSourcesQuery>;
@@ -3692,6 +3706,18 @@ export declare type CompassSloMetricSourceConfigurationInput = {
3692
3706
  goodQuery: Scalars['String'];
3693
3707
  badQuery: Scalars['String'];
3694
3708
  };
3709
+ export declare type CompassStarredComponentConnection = {
3710
+ __typename?: 'CompassStarredComponentConnection';
3711
+ nodes?: Maybe<Array<CompassComponent>>;
3712
+ edges?: Maybe<Array<CompassStarredComponentEdge>>;
3713
+ pageInfo: PageInfo;
3714
+ };
3715
+ export declare type CompassStarredComponentEdge = {
3716
+ __typename?: 'CompassStarredComponentEdge';
3717
+ cursor: Scalars['String'];
3718
+ node?: Maybe<CompassComponent>;
3719
+ };
3720
+ export declare type CompassStarredComponentsResult = CompassStarredComponentConnection | QueryError;
3695
3721
  export declare type CompassSynchronizeLinkAssociationsInput = {
3696
3722
  cloudId: Scalars['ID'];
3697
3723
  forgeAppId: Scalars['ID'];
@@ -3826,6 +3852,7 @@ export declare type CompassUpdateMetricDefinitionInput = {
3826
3852
  name?: Maybe<Scalars['String']>;
3827
3853
  description?: Maybe<Scalars['String']>;
3828
3854
  format?: Maybe<CompassMetricDefinitionFormatInput>;
3855
+ isPinned?: Maybe<Scalars['Boolean']>;
3829
3856
  };
3830
3857
  export declare type CompassUpdateMetricDefinitionPayload = Payload & {
3831
3858
  __typename?: 'CompassUpdateMetricDefinitionPayload';
@@ -5396,6 +5423,14 @@ export declare type CreateCompassScorecardPayload = Payload & {
5396
5423
  errors?: Maybe<Array<MutationError>>;
5397
5424
  scorecardDetails?: Maybe<CompassScorecard>;
5398
5425
  };
5426
+ export declare type CreateCompassStarredComponentInput = {
5427
+ componentId: Scalars['ID'];
5428
+ };
5429
+ export declare type CreateCompassStarredComponentPayload = Payload & {
5430
+ __typename?: 'CreateCompassStarredComponentPayload';
5431
+ success: Scalars['Boolean'];
5432
+ errors?: Maybe<Array<MutationError>>;
5433
+ };
5399
5434
  export declare type CreateCustomFilterInput = {
5400
5435
  boardId: Scalars['ID'];
5401
5436
  name: Scalars['String'];
@@ -6187,6 +6222,14 @@ export declare type DeleteCompassScorecardPayload = Payload & {
6187
6222
  errors?: Maybe<Array<MutationError>>;
6188
6223
  scorecardId: Scalars['ID'];
6189
6224
  };
6225
+ export declare type DeleteCompassStarredComponentInput = {
6226
+ componentId: Scalars['ID'];
6227
+ };
6228
+ export declare type DeleteCompassStarredComponentPayload = Payload & {
6229
+ __typename?: 'DeleteCompassStarredComponentPayload';
6230
+ success: Scalars['Boolean'];
6231
+ errors?: Maybe<Array<MutationError>>;
6232
+ };
6190
6233
  export declare type DeleteCustomFilterInput = {
6191
6234
  boardId: Scalars['ID'];
6192
6235
  customFilterId: Scalars['String'];
@@ -8432,7 +8475,10 @@ export declare type HasTotal = {
8432
8475
  export declare type HelpCenter = Node & {
8433
8476
  __typename?: 'HelpCenter';
8434
8477
  id: Scalars['ID'];
8478
+ type?: Maybe<HelpCenterType>;
8479
+ slug?: Maybe<Scalars['String']>;
8435
8480
  topics?: Maybe<Array<HelpCenterTopic>>;
8481
+ layout?: Maybe<HelpCenterHomePageLayout>;
8436
8482
  };
8437
8483
  export declare type HelpCenterBulkCreateTopicsInput = {
8438
8484
  helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
@@ -8463,6 +8509,10 @@ export declare type HelpCenterDeleteUpdateTopicPayload = Payload & {
8463
8509
  topicIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedTopicIds>>;
8464
8510
  };
8465
8511
  export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError;
8512
+ export declare type HelpCenterHomePageLayout = {
8513
+ __typename?: 'HelpCenterHomePageLayout';
8514
+ layoutId: Scalars['ID'];
8515
+ };
8466
8516
  export declare type HelpCenterMutationApi = {
8467
8517
  __typename?: 'HelpCenterMutationApi';
8468
8518
  createTopic?: Maybe<HelpCenterCreateTopicPayload>;
@@ -8553,6 +8603,9 @@ export declare type HelpCenterTopicItemInput = {
8553
8603
  ari: Scalars['ID'];
8554
8604
  };
8555
8605
  export declare type HelpCenterTopicResult = HelpCenterTopic | QueryError;
8606
+ export declare enum HelpCenterType {
8607
+ Advanced = "ADVANCED"
8608
+ }
8556
8609
  export declare type HelpCenterUpdateTopicInput = {
8557
8610
  productName: Scalars['String'];
8558
8611
  topicId: Scalars['ID'];
@@ -8570,6 +8623,145 @@ export declare type HelpCenterUpdateTopicsOrderPayload = Payload & {
8570
8623
  success: Scalars['Boolean'];
8571
8624
  errors?: Maybe<Array<MutationError>>;
8572
8625
  };
8626
+ export declare type HelpLayout = Node & {
8627
+ __typename?: 'HelpLayout';
8628
+ id: Scalars['ID'];
8629
+ sections?: Maybe<HelpLayoutSectionConnection>;
8630
+ };
8631
+ export declare type HelpLayoutSectionsArgs = {
8632
+ first?: Maybe<Scalars['Int']>;
8633
+ after?: Maybe<Scalars['String']>;
8634
+ };
8635
+ export declare type HelpLayoutCell = {
8636
+ __typename?: 'HelpLayoutCell';
8637
+ span: Scalars['Int'];
8638
+ elements?: Maybe<Array<Maybe<HelpLayoutElement>>>;
8639
+ };
8640
+ export declare type HelpLayoutCellElementsArgs = {
8641
+ supported: Array<HelpLayoutElementTypeName>;
8642
+ };
8643
+ export declare type HelpLayoutCellInput = {
8644
+ span: Scalars['Int'];
8645
+ elements: Array<HelpLayoutElementInput>;
8646
+ };
8647
+ export declare type HelpLayoutCreationInput = {
8648
+ sections: Array<HelpLayoutSectionInput>;
8649
+ };
8650
+ export declare type HelpLayoutElement = HelpLayoutTextElement | HelpLayoutImageElement | HelpLayoutHeroElement;
8651
+ export declare type HelpLayoutElementInput = {
8652
+ elementType: HelpLayoutElementTypeInput;
8653
+ imageConfigInput?: Maybe<HelpLayoutImageConfigInput>;
8654
+ textConfigInput?: Maybe<HelpLayoutTextConfigInput>;
8655
+ };
8656
+ export declare type HelpLayoutElementType = {
8657
+ name?: Maybe<HelpLayoutElementTypeName>;
8658
+ displayName?: Maybe<Scalars['String']>;
8659
+ iconUrl?: Maybe<Scalars['String']>;
8660
+ };
8661
+ export declare enum HelpLayoutElementTypeInput {
8662
+ Image = "IMAGE",
8663
+ Text = "TEXT"
8664
+ }
8665
+ export declare enum HelpLayoutElementTypeName {
8666
+ Image = "IMAGE",
8667
+ Text = "TEXT",
8668
+ Hero = "HERO"
8669
+ }
8670
+ export declare type HelpLayoutHeroElement = {
8671
+ __typename?: 'HelpLayoutHeroElement';
8672
+ config?: Maybe<HelpLayoutHeroElementConfig>;
8673
+ };
8674
+ export declare type HelpLayoutHeroElementConfig = {
8675
+ __typename?: 'HelpLayoutHeroElementConfig';
8676
+ header?: Maybe<Scalars['String']>;
8677
+ isSearchBarShown?: Maybe<Scalars['Boolean']>;
8678
+ backgroundImageUrl?: Maybe<Scalars['String']>;
8679
+ };
8680
+ export declare type HelpLayoutHeroElementType = HelpLayoutElementType & {
8681
+ __typename?: 'HelpLayoutHeroElementType';
8682
+ name?: Maybe<HelpLayoutElementTypeName>;
8683
+ displayName?: Maybe<Scalars['String']>;
8684
+ iconUrl?: Maybe<Scalars['String']>;
8685
+ };
8686
+ export declare type HelpLayoutImageConfigInput = {
8687
+ fileId?: Maybe<Scalars['String']>;
8688
+ altText?: Maybe<Scalars['String']>;
8689
+ caption?: Maybe<Scalars['String']>;
8690
+ };
8691
+ export declare type HelpLayoutImageElement = {
8692
+ __typename?: 'HelpLayoutImageElement';
8693
+ config?: Maybe<HelpLayoutImageElementConfig>;
8694
+ };
8695
+ export declare type HelpLayoutImageElementConfig = {
8696
+ __typename?: 'HelpLayoutImageElementConfig';
8697
+ fileId?: Maybe<Scalars['String']>;
8698
+ altText?: Maybe<Scalars['String']>;
8699
+ caption?: Maybe<Scalars['String']>;
8700
+ };
8701
+ export declare type HelpLayoutImageElementType = HelpLayoutElementType & {
8702
+ __typename?: 'HelpLayoutImageElementType';
8703
+ name?: Maybe<HelpLayoutElementTypeName>;
8704
+ displayName?: Maybe<Scalars['String']>;
8705
+ iconUrl?: Maybe<Scalars['String']>;
8706
+ };
8707
+ export declare type HelpLayoutMutationApi = {
8708
+ __typename?: 'HelpLayoutMutationApi';
8709
+ createLayout: Scalars['ID'];
8710
+ deleteLayout?: Maybe<Scalars['Boolean']>;
8711
+ updateLayout?: Maybe<Scalars['Boolean']>;
8712
+ };
8713
+ export declare type HelpLayoutMutationApiCreateLayoutArgs = {
8714
+ input: HelpLayoutCreationInput;
8715
+ };
8716
+ export declare type HelpLayoutMutationApiDeleteLayoutArgs = {
8717
+ layoutId: Scalars['ID'];
8718
+ };
8719
+ export declare type HelpLayoutMutationApiUpdateLayoutArgs = {
8720
+ layoutId: Scalars['ID'];
8721
+ input: HelpLayoutCreationInput;
8722
+ };
8723
+ export declare type HelpLayoutQueryApi = {
8724
+ __typename?: 'HelpLayoutQueryApi';
8725
+ layout?: Maybe<HelpLayout>;
8726
+ elementTypes?: Maybe<Array<Maybe<HelpLayoutElementType>>>;
8727
+ };
8728
+ export declare type HelpLayoutQueryApiLayoutArgs = {
8729
+ id: Scalars['ID'];
8730
+ };
8731
+ export declare type HelpLayoutSectionConnection = {
8732
+ __typename?: 'HelpLayoutSectionConnection';
8733
+ edges?: Maybe<Array<Maybe<HelpLayoutSectionEdge>>>;
8734
+ pageInfo: PageInfo;
8735
+ };
8736
+ export declare type HelpLayoutSectionEdge = {
8737
+ __typename?: 'HelpLayoutSectionEdge';
8738
+ cursor: Scalars['String'];
8739
+ node?: Maybe<HelpLayoutSectionNode>;
8740
+ };
8741
+ export declare type HelpLayoutSectionInput = {
8742
+ cells: Array<HelpLayoutCellInput>;
8743
+ };
8744
+ export declare type HelpLayoutSectionNode = {
8745
+ __typename?: 'HelpLayoutSectionNode';
8746
+ cells?: Maybe<Array<Maybe<HelpLayoutCell>>>;
8747
+ };
8748
+ export declare type HelpLayoutTextConfigInput = {
8749
+ adf?: Maybe<Scalars['String']>;
8750
+ };
8751
+ export declare type HelpLayoutTextElement = {
8752
+ __typename?: 'HelpLayoutTextElement';
8753
+ config?: Maybe<HelpLayoutTextElementConfig>;
8754
+ };
8755
+ export declare type HelpLayoutTextElementConfig = {
8756
+ __typename?: 'HelpLayoutTextElementConfig';
8757
+ adf?: Maybe<Scalars['String']>;
8758
+ };
8759
+ export declare type HelpLayoutTextElementType = HelpLayoutElementType & {
8760
+ __typename?: 'HelpLayoutTextElementType';
8761
+ name?: Maybe<HelpLayoutElementTypeName>;
8762
+ displayName?: Maybe<Scalars['String']>;
8763
+ iconUrl?: Maybe<Scalars['String']>;
8764
+ };
8573
8765
  export declare type HelpObjectStoreArticle = HelpObjectStoreHelpObject & Node & {
8574
8766
  __typename?: 'HelpObjectStoreArticle';
8575
8767
  id: Scalars['ID'];
@@ -12308,6 +12500,7 @@ export declare type JiraMutation = {
12308
12500
  saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
12309
12501
  createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
12310
12502
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
12503
+ updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
12311
12504
  replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
12312
12505
  userPreferences?: Maybe<JiraUserPreferencesMutation>;
12313
12506
  updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
@@ -12394,6 +12587,9 @@ export declare type JiraMutationCreateJiraVersionArgs = {
12394
12587
  export declare type JiraMutationUpdateJiraVersionArgs = {
12395
12588
  input: JiraVersionUpdateMutationInput;
12396
12589
  };
12590
+ export declare type JiraMutationUpdateJiraVersionDriverArgs = {
12591
+ input: JiraUpdateVersionDriverInput;
12592
+ };
12397
12593
  export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
12398
12594
  id: Scalars['ID'];
12399
12595
  input: JiraReplaceIssueSearchViewFieldSetsInput;
@@ -13111,6 +13307,7 @@ export declare type JiraProject = Node & {
13111
13307
  opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
13112
13308
  servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
13113
13309
  opsgenieTeamsAvailableToLinkWith?: Maybe<OpsgenieTeamConnection>;
13310
+ suggestedDriversForJiraVersion?: Maybe<JiraVersionDriverConnection>;
13114
13311
  softwareBoards?: Maybe<BoardScopeConnection>;
13115
13312
  confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
13116
13313
  };
@@ -13177,6 +13374,9 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
13177
13374
  first?: Maybe<Scalars['Int']>;
13178
13375
  after?: Maybe<Scalars['String']>;
13179
13376
  };
13377
+ export declare type JiraProjectSuggestedDriversForJiraVersionArgs = {
13378
+ searchText?: Maybe<Scalars['String']>;
13379
+ };
13180
13380
  export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
13181
13381
  first?: Maybe<Scalars['Int']>;
13182
13382
  after?: Maybe<Scalars['String']>;
@@ -15581,6 +15781,10 @@ export declare type JiraUpdateVersionDescriptionInput = {
15581
15781
  id: Scalars['ID'];
15582
15782
  description?: Maybe<Scalars['String']>;
15583
15783
  };
15784
+ export declare type JiraUpdateVersionDriverInput = {
15785
+ id: Scalars['ID'];
15786
+ driver?: Maybe<Scalars['ID']>;
15787
+ };
15584
15788
  export declare type JiraUpdateVersionNameInput = {
15585
15789
  id: Scalars['ID'];
15586
15790
  name: Scalars['String'];
@@ -15624,6 +15828,10 @@ export declare type JiraUpdateVersionWarningConfigPayload = Payload & {
15624
15828
  __typename?: 'JiraUpdateVersionWarningConfigPayload';
15625
15829
  success: Scalars['Boolean'];
15626
15830
  errors?: Maybe<Array<MutationError>>;
15831
+ version?: Maybe<JiraVersionResult>;
15832
+ };
15833
+ export declare type JiraUpdateVersionWarningConfigPayloadVersionArgs = {
15834
+ id: Scalars['ID'];
15627
15835
  };
15628
15836
  export declare type JiraUpdateVotesFieldInput = {
15629
15837
  id: Scalars['ID'];
@@ -15877,6 +16085,16 @@ export declare type JiraVersionDetailPageIssuesIssuesArgs = {
15877
16085
  last?: Maybe<Scalars['Int']>;
15878
16086
  before?: Maybe<Scalars['String']>;
15879
16087
  };
16088
+ export declare type JiraVersionDriverConnection = {
16089
+ __typename?: 'JiraVersionDriverConnection';
16090
+ pageInfo: PageInfo;
16091
+ edges?: Maybe<Array<Maybe<JiraVersionDriverEdge>>>;
16092
+ };
16093
+ export declare type JiraVersionDriverEdge = {
16094
+ __typename?: 'JiraVersionDriverEdge';
16095
+ node?: Maybe<User>;
16096
+ cursor: Scalars['String'];
16097
+ };
15880
16098
  export declare type JiraVersionEdge = {
15881
16099
  __typename?: 'JiraVersionEdge';
15882
16100
  node?: Maybe<JiraVersion>;
@@ -16958,6 +17176,7 @@ export declare type Mutation = {
16958
17176
  createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
16959
17177
  updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
16960
17178
  deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
17179
+ helpLayout?: Maybe<HelpLayoutMutationApi>;
16961
17180
  virtualAgent?: Maybe<VirtualAgentMutationApi>;
16962
17181
  createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
16963
17182
  createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
@@ -17421,6 +17640,9 @@ export declare type MutationDeleteJwmOverviewArgs = {
17421
17640
  cloudId: Scalars['ID'];
17422
17641
  input: JiraWorkManagementDeleteOverviewInput;
17423
17642
  };
17643
+ export declare type MutationHelpLayoutArgs = {
17644
+ cloudId?: Maybe<Scalars['ID']>;
17645
+ };
17424
17646
  export declare type MutationCreateAppDeploymentUrlArgs = {
17425
17647
  input: CreateAppDeploymentUrlInput;
17426
17648
  };
@@ -17545,6 +17767,23 @@ export declare type NewSplitIssueResponse = {
17545
17767
  id: Scalars['ID'];
17546
17768
  key: Scalars['String'];
17547
17769
  };
17770
+ export declare type NlpSearchResponse = {
17771
+ __typename?: 'NlpSearchResponse';
17772
+ nlpResult?: Maybe<Scalars['String']>;
17773
+ sources?: Maybe<Array<NlpSource>>;
17774
+ };
17775
+ export declare enum NlpSearchResultType {
17776
+ Page = "page",
17777
+ Blogpost = "blogpost"
17778
+ }
17779
+ export declare type NlpSource = {
17780
+ __typename?: 'NlpSource';
17781
+ id: Scalars['ID'];
17782
+ title: Scalars['String'];
17783
+ url: Scalars['URL'];
17784
+ iconUrl?: Maybe<Scalars['URL']>;
17785
+ type: NlpSearchResultType;
17786
+ };
17548
17787
  export declare type Node = {
17549
17788
  id: Scalars['ID'];
17550
17789
  };
@@ -17810,6 +18049,18 @@ export declare type PartnerCatalogApi = {
17810
18049
  export declare type PartnerCatalogApiPartnerOfferingDetailsArgs = {
17811
18050
  where?: Maybe<PartnerOfferingFilter>;
17812
18051
  };
18052
+ export declare type PartnerCloudApp = PartnerOfferingNode & {
18053
+ __typename?: 'PartnerCloudApp';
18054
+ key: Scalars['ID'];
18055
+ name?: Maybe<Scalars['String']>;
18056
+ sku?: Maybe<Scalars['String']>;
18057
+ level?: Maybe<Scalars['Int']>;
18058
+ supportedBillingSystems?: Maybe<Array<Maybe<Scalars['String']>>>;
18059
+ hostingType?: Maybe<Scalars['String']>;
18060
+ pricingType?: Maybe<Scalars['String']>;
18061
+ billingType?: Maybe<Scalars['String']>;
18062
+ parent?: Maybe<Scalars['String']>;
18063
+ };
17813
18064
  export declare enum PartnerCloudLicenseType {
17814
18065
  Academic = "ACADEMIC",
17815
18066
  Commercial = "COMMERCIAL",
@@ -17829,6 +18080,11 @@ export declare type PartnerCloudProduct = PartnerCloudProductNode & {
17829
18080
  offerings?: Maybe<Array<Maybe<PartnerOfferingItem>>>;
17830
18081
  uncollectibleAction?: Maybe<PartnerUncollectibleAction>;
17831
18082
  };
18083
+ export declare type PartnerCloudProductItem = PartnerCloudProductNode & {
18084
+ __typename?: 'PartnerCloudProductItem';
18085
+ key: Scalars['ID'];
18086
+ name?: Maybe<Scalars['String']>;
18087
+ };
17832
18088
  export declare type PartnerCloudProductNode = {
17833
18089
  key: Scalars['ID'];
17834
18090
  name?: Maybe<Scalars['String']>;
@@ -17851,7 +18107,7 @@ export declare type PartnerOfferingDetailsResponse = {
17851
18107
  __typename?: 'PartnerOfferingDetailsResponse';
17852
18108
  btfApps?: Maybe<Array<Maybe<PartnerBtfProduct>>>;
17853
18109
  btfProducts?: Maybe<Array<Maybe<PartnerBtfProduct>>>;
17854
- cloudApps?: Maybe<Array<Maybe<PartnerOfferingItem>>>;
18110
+ cloudApps?: Maybe<Array<Maybe<PartnerCloudApp>>>;
17855
18111
  cloudProducts?: Maybe<Array<Maybe<PartnerCloudProduct>>>;
17856
18112
  };
17857
18113
  export declare type PartnerOfferingFilter = {
@@ -17874,7 +18130,7 @@ export declare type PartnerOfferingItem = PartnerOfferingNode & {
17874
18130
  export declare type PartnerOfferingListResponse = {
17875
18131
  __typename?: 'PartnerOfferingListResponse';
17876
18132
  btfProducts?: Maybe<Array<Maybe<PartnerBtfProduct>>>;
17877
- cloudProducts?: Maybe<Array<Maybe<PartnerCloudProduct>>>;
18133
+ cloudProducts?: Maybe<Array<Maybe<PartnerCloudProductItem>>>;
17878
18134
  };
17879
18135
  export declare type PartnerOfferingNode = {
17880
18136
  key: Scalars['ID'];
@@ -19323,6 +19579,7 @@ export declare type Query = {
19323
19579
  jwmOverviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
19324
19580
  tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
19325
19581
  surfacePlatform: SurfacePlatformQueryApi;
19582
+ helpLayout?: Maybe<HelpLayoutQueryApi>;
19326
19583
  xflow?: Maybe<Scalars['String']>;
19327
19584
  virtualAgent?: Maybe<VirtualAgentQueryApi>;
19328
19585
  jiraReleases?: Maybe<JiraReleases>;
@@ -19330,6 +19587,7 @@ export declare type Query = {
19330
19587
  jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
19331
19588
  oauthClients?: Maybe<OAuthClientsQuery>;
19332
19589
  helpCenter?: Maybe<HelpCenterQueryApi>;
19590
+ nlpSearch?: Maybe<Array<NlpSearchResponse>>;
19333
19591
  };
19334
19592
  export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
19335
19593
  id: Scalars['ID'];
@@ -19688,6 +19946,9 @@ export declare type QueryTenantContextsArgs = {
19688
19946
  cloudIds?: Maybe<Array<Scalars['ID']>>;
19689
19947
  hostNames?: Maybe<Array<Scalars['String']>>;
19690
19948
  };
19949
+ export declare type QueryHelpLayoutArgs = {
19950
+ cloudId?: Maybe<Scalars['ID']>;
19951
+ };
19691
19952
  export declare type QueryAppDeploymentArgs = {
19692
19953
  appId: Scalars['ID'];
19693
19954
  environmentKey: Scalars['String'];
@@ -19696,6 +19957,10 @@ export declare type QueryAppDeploymentArgs = {
19696
19957
  export declare type QueryHelpCenterArgs = {
19697
19958
  cloudId: Scalars['ID'];
19698
19959
  };
19960
+ export declare type QueryNlpSearchArgs = {
19961
+ query?: Maybe<Scalars['String']>;
19962
+ locations: Array<Scalars['String']>;
19963
+ };
19699
19964
  export declare type QueryError = {
19700
19965
  __typename?: 'QueryError';
19701
19966
  identifier?: Maybe<Scalars['ID']>;
@@ -19749,6 +20014,7 @@ export declare enum RateLimitingCurrency {
19749
20014
  ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
19750
20015
  DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
19751
20016
  DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
20017
+ HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
19752
20018
  ForgeAuditLogsCurrency = "FORGE_AUDIT_LOGS_CURRENCY",
19753
20019
  ForgeAppContributorCurrency = "FORGE_APP_CONTRIBUTOR_CURRENCY",
19754
20020
  HelpCenterCurrency = "HELP_CENTER_CURRENCY",
@@ -20883,6 +21149,7 @@ export declare type SearchConfluenceFilter = {
20883
21149
  export declare type SearchConfluencePageBlogAttachment = SearchResult & {
20884
21150
  __typename?: 'SearchConfluencePageBlogAttachment';
20885
21151
  id: Scalars['ID'];
21152
+ entityId?: Maybe<Scalars['String']>;
20886
21153
  title: Scalars['String'];
20887
21154
  url: Scalars['URL'];
20888
21155
  iconUrl?: Maybe<Scalars['URL']>;
@@ -20908,6 +21175,7 @@ export declare type SearchConfluenceRangeFilter = {
20908
21175
  export declare type SearchConfluenceResultSpace = {
20909
21176
  __typename?: 'SearchConfluenceResultSpace';
20910
21177
  id: Scalars['ID'];
21178
+ spaceId?: Maybe<Scalars['String']>;
20911
21179
  name?: Maybe<Scalars['String']>;
20912
21180
  key?: Maybe<Scalars['String']>;
20913
21181
  webUiLink?: Maybe<Scalars['String']>;
@@ -20915,6 +21183,7 @@ export declare type SearchConfluenceResultSpace = {
20915
21183
  export declare type SearchConfluenceSpace = SearchResult & {
20916
21184
  __typename?: 'SearchConfluenceSpace';
20917
21185
  id: Scalars['ID'];
21186
+ entityId?: Maybe<Scalars['String']>;
20918
21187
  title: Scalars['String'];
20919
21188
  url: Scalars['URL'];
20920
21189
  iconUrl?: Maybe<Scalars['URL']>;
@@ -22523,11 +22792,17 @@ export declare type SupportRequests = {
22523
22792
  export declare type SurfacePlatformQueryApi = {
22524
22793
  __typename?: 'SurfacePlatformQueryApi';
22525
22794
  surface?: Maybe<SurfacePlatformSurface>;
22795
+ surfaceV2?: Maybe<SurfacePlatformSurfaceV2>;
22526
22796
  };
22527
22797
  export declare type SurfacePlatformQueryApiSurfaceArgs = {
22528
22798
  context?: Maybe<Scalars['JSON']>;
22529
22799
  id: Scalars['ID'];
22530
22800
  };
22801
+ export declare type SurfacePlatformQueryApiSurfaceV2Args = {
22802
+ context?: Maybe<Scalars['JSON']>;
22803
+ key: Scalars['String'];
22804
+ type: Scalars['String'];
22805
+ };
22531
22806
  export declare type SurfacePlatformSurface = {
22532
22807
  __typename?: 'SurfacePlatformSurface';
22533
22808
  channels?: Maybe<Array<Maybe<Scalars['String']>>>;
@@ -22539,6 +22814,19 @@ export declare type SurfacePlatformSurface = {
22539
22814
  version?: Maybe<Scalars['String']>;
22540
22815
  zones?: Maybe<Scalars['JSON']>;
22541
22816
  };
22817
+ export declare type SurfacePlatformSurfaceV2 = {
22818
+ __typename?: 'SurfacePlatformSurfaceV2';
22819
+ channel?: Maybe<Scalars['String']>;
22820
+ definitionVersion?: Maybe<Scalars['String']>;
22821
+ description?: Maybe<Scalars['String']>;
22822
+ fields?: Maybe<Scalars['JSON']>;
22823
+ key?: Maybe<Scalars['String']>;
22824
+ label?: Maybe<Scalars['String']>;
22825
+ locale?: Maybe<Scalars['String']>;
22826
+ revision?: Maybe<Scalars['Int']>;
22827
+ type?: Maybe<Scalars['String']>;
22828
+ zones?: Maybe<Scalars['JSON']>;
22829
+ };
22542
22830
  export declare type Swimlane = {
22543
22831
  __typename?: 'Swimlane';
22544
22832
  id?: Maybe<Scalars['ID']>;
@@ -23022,7 +23310,7 @@ export declare type TrelloBoard = {
23022
23310
  prefs: TrelloBoardPrefs;
23023
23311
  shortLink: Scalars['TrelloShortLink'];
23024
23312
  viewer?: Maybe<TrelloBoardViewer>;
23025
- workspace?: Maybe<TrelloWorkspaceInfo>;
23313
+ workspace?: Maybe<TrelloWorkspace>;
23026
23314
  };
23027
23315
  export declare type TrelloBoardBackground = {
23028
23316
  __typename?: 'TrelloBoardBackground';
@@ -23100,12 +23388,12 @@ export declare type TrelloListLimits = {
23100
23388
  export declare type TrelloQueryApi = {
23101
23389
  __typename?: 'TrelloQueryApi';
23102
23390
  board?: Maybe<TrelloBoard>;
23103
- echo: Scalars['String'];
23391
+ echo?: Maybe<Scalars['String']>;
23104
23392
  list?: Maybe<TrelloList>;
23105
- recentBoardsByIds: Array<Maybe<TrelloBoard>>;
23106
- templateCategories: Array<TrelloTemplateGalleryCategory>;
23393
+ recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
23394
+ templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
23107
23395
  templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
23108
- templateLanguages: Array<TrelloTemplateGalleryLanguage>;
23396
+ templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
23109
23397
  };
23110
23398
  export declare type TrelloQueryApiBoardArgs = {
23111
23399
  id: Scalars['ID'];
@@ -23173,8 +23461,8 @@ export declare type TrelloTemplateGalleryLanguage = {
23173
23461
  locale: Scalars['String'];
23174
23462
  localizedDescription: Scalars['String'];
23175
23463
  };
23176
- export declare type TrelloWorkspaceInfo = {
23177
- __typename?: 'TrelloWorkspaceInfo';
23464
+ export declare type TrelloWorkspace = {
23465
+ __typename?: 'TrelloWorkspace';
23178
23466
  displayName: Scalars['String'];
23179
23467
  id: Scalars['ID'];
23180
23468
  };