@forge/cli-shared 3.18.1-next.1 → 3.18.1-next.3
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,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.18.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6ec038fe: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- chalk
|
|
10
|
+
|
|
11
|
+
## 3.18.1-next.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 4268a819: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- array.prototype.flatmap
|
|
18
|
+
|
|
3
19
|
## 3.18.1-next.1
|
|
4
20
|
|
|
5
21
|
### 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']>;
|
|
@@ -14986,12 +15024,18 @@ export type JiraJqlHistoryEdge = {
|
|
|
14986
15024
|
};
|
|
14987
15025
|
export declare enum JiraJqlAutocompleteType {
|
|
14988
15026
|
None = "NONE",
|
|
15027
|
+
Basic = "BASIC",
|
|
15028
|
+
Cascadingoption = "CASCADINGOPTION",
|
|
14989
15029
|
Component = "COMPONENT",
|
|
14990
15030
|
Group = "GROUP",
|
|
14991
15031
|
Issue = "ISSUE",
|
|
14992
15032
|
Issuetype = "ISSUETYPE",
|
|
15033
|
+
JwmCategory = "JWM_CATEGORY",
|
|
15034
|
+
Labels = "LABELS",
|
|
15035
|
+
Option = "OPTION",
|
|
14993
15036
|
Priority = "PRIORITY",
|
|
14994
15037
|
Project = "PROJECT",
|
|
15038
|
+
Resolution = "RESOLUTION",
|
|
14995
15039
|
Sprint = "SPRINT",
|
|
14996
15040
|
Statuscategory = "STATUSCATEGORY",
|
|
14997
15041
|
Status = "STATUS",
|
|
@@ -23759,6 +23803,7 @@ export type Query = {
|
|
|
23759
23803
|
__typename?: 'Query';
|
|
23760
23804
|
trello: TrelloQueryApi;
|
|
23761
23805
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
23806
|
+
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
23762
23807
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
23763
23808
|
devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
23764
23809
|
jiraProjectRelationshipsForDevOpsTool?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|