@forge/cli-shared 3.18.1-next.1 → 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
|
@@ -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>;
|