@forge/cli-shared 3.18.1-next.0 → 3.18.1-next.2

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.18.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 4268a819: Bumping dependencies via Renovate:
8
+
9
+ - array.prototype.flatmap
10
+
11
+ ## 3.18.1-next.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [0a747ea2]
16
+ - @forge/manifest@4.20.1-next.0
17
+
3
18
  ## 3.18.1-next.0
4
19
 
5
20
  ### Patch Changes
@@ -10743,6 +10743,44 @@ export type GraphSprintRetrospectivePageRelationshipEdge = {
10743
10743
  cursor?: Maybe<Scalars['String']>;
10744
10744
  node: GraphSprintRetrospectivePageRelationship;
10745
10745
  };
10746
+ export type GrowthRecContext = {
10747
+ userId?: Maybe<Scalars['ID']>;
10748
+ tenantId?: Maybe<Scalars['ID']>;
10749
+ orgId?: Maybe<Scalars['ID']>;
10750
+ product?: Maybe<Scalars['String']>;
10751
+ subproduct?: Maybe<Scalars['String']>;
10752
+ containers?: Maybe<Scalars['JSON']>;
10753
+ locale?: Maybe<Scalars['String']>;
10754
+ sessionId?: Maybe<Scalars['ID']>;
10755
+ useCase?: Maybe<Scalars['String']>;
10756
+ };
10757
+ export type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendation & {
10758
+ __typename?: 'GrowthRecJiraTemplateRecommendation';
10759
+ entityId: Scalars['ID'];
10760
+ reasons?: Maybe<Array<Scalars['String']>>;
10761
+ };
10762
+ export type GrowthRecProductRecommendation = GrowthRecRecommendation & {
10763
+ __typename?: 'GrowthRecProductRecommendation';
10764
+ entityId: Scalars['ID'];
10765
+ reasons?: Maybe<Array<Scalars['String']>>;
10766
+ };
10767
+ export type GrowthRecQuery = {
10768
+ __typename?: 'GrowthRecQuery';
10769
+ recommendations?: Maybe<GrowthRecRecommendationsResult>;
10770
+ };
10771
+ export type GrowthRecQueryRecommendationsArgs = {
10772
+ context?: Maybe<GrowthRecContext>;
10773
+ first?: Maybe<Scalars['Int']>;
10774
+ };
10775
+ export type GrowthRecRecommendation = {
10776
+ entityId: Scalars['ID'];
10777
+ reasons?: Maybe<Array<Scalars['String']>>;
10778
+ };
10779
+ export type GrowthRecRecommendations = {
10780
+ __typename?: 'GrowthRecRecommendations';
10781
+ data?: Maybe<Array<GrowthRecRecommendation>>;
10782
+ };
10783
+ export type GrowthRecRecommendationsResult = GrowthRecRecommendations | QueryError;
10746
10784
  export type HamsEntitlement = CommerceEntitlement & {
10747
10785
  __typename?: 'HamsEntitlement';
10748
10786
  accountId?: Maybe<Scalars['String']>;
@@ -23759,6 +23797,7 @@ export type Query = {
23759
23797
  __typename?: 'Query';
23760
23798
  trello: TrelloQueryApi;
23761
23799
  customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
23800
+ growthRecommendations?: Maybe<GrowthRecQuery>;
23762
23801
  jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
23763
23802
  devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
23764
23803
  jiraProjectRelationshipsForDevOpsTool?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;