@forge/cli-shared 3.4.1-next.1 → 3.4.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,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.4.1-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - bae4bce4: Explicitly state the supported node versions when using the CLI
8
+
9
+ ## 3.4.1-next.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 6cda566: Add a way to inspect bundler output
14
+
3
15
  ## 3.4.1-next.1
4
16
 
5
17
  ### Patch Changes
@@ -13930,7 +13930,9 @@ export declare enum JiraVersionIssueTableColumn {
13930
13930
  BuildStatus = "BUILD_STATUS",
13931
13931
  DeploymentStatus = "DEPLOYMENT_STATUS",
13932
13932
  FeatureFlagStatus = "FEATURE_FLAG_STATUS",
13933
- MoreAction = "MORE_ACTION"
13933
+ MoreAction = "MORE_ACTION",
13934
+ Warnings = "WARNINGS",
13935
+ IssuePriority = "ISSUE_PRIORITY"
13934
13936
  }
13935
13937
  export declare type JiraVersionIssueTableColumnHiddenStateInput = {
13936
13938
  hiddenColumns: Array<JiraVersionIssueTableColumn>;
@@ -18801,6 +18803,12 @@ export declare type ScopeSprintIssue = {
18801
18803
  issueSummary: Scalars['String'];
18802
18804
  estimate: Scalars['Float'];
18803
18805
  };
18806
+ export declare type SearchAbTest = {
18807
+ __typename?: 'SearchAbTest';
18808
+ abTestId?: Maybe<Scalars['String']>;
18809
+ experimentId?: Maybe<Scalars['String']>;
18810
+ controlId?: Maybe<Scalars['String']>;
18811
+ };
18804
18812
  export declare type SearchAnalyticsInput = {
18805
18813
  queryVersion?: Maybe<Scalars['Int']>;
18806
18814
  searchSessionId?: Maybe<Scalars['String']>;
@@ -18815,6 +18823,11 @@ export declare enum SearchBoardProductType {
18815
18823
  Software = "SOFTWARE",
18816
18824
  Business = "BUSINESS"
18817
18825
  }
18826
+ export declare enum SearchConfluenceDocumentStatus {
18827
+ Current = "CURRENT",
18828
+ Archived = "ARCHIVED",
18829
+ Draft = "DRAFT"
18830
+ }
18818
18831
  export declare type SearchConfluenceFilter = {
18819
18832
  spacesFilter?: Maybe<Array<Scalars['String']>>;
18820
18833
  contributorsFilter?: Maybe<Array<Scalars['String']>>;
@@ -18823,6 +18836,9 @@ export declare type SearchConfluenceFilter = {
18823
18836
  ancestorIdsFilter?: Maybe<Array<Scalars['String']>>;
18824
18837
  range?: Maybe<Array<Maybe<SearchConfluenceRangeFilter>>>;
18825
18838
  containerStatus?: Maybe<Array<Maybe<SearchContainerStatus>>>;
18839
+ types?: Maybe<Array<Scalars['String']>>;
18840
+ contentStatuses?: Maybe<Array<SearchConfluenceDocumentStatus>>;
18841
+ titleMatchOnly?: Maybe<Scalars['Boolean']>;
18826
18842
  };
18827
18843
  export declare type SearchConfluencePageBlogAttachment = SearchResult & {
18828
18844
  __typename?: 'SearchConfluencePageBlogAttachment';
@@ -18832,7 +18848,9 @@ export declare type SearchConfluencePageBlogAttachment = SearchResult & {
18832
18848
  iconUrl?: Maybe<Scalars['URL']>;
18833
18849
  type: SearchResultType;
18834
18850
  description: Scalars['String'];
18835
- lastModifiedDate?: Maybe<Scalars['DateTime']>;
18851
+ lastModified?: Maybe<Scalars['DateTime']>;
18852
+ excerpt?: Maybe<Scalars['String']>;
18853
+ iconCssClass?: Maybe<Scalars['String']>;
18836
18854
  space?: Maybe<SearchSpace>;
18837
18855
  pageEntity?: Maybe<ConfluencePage>;
18838
18856
  };
@@ -18853,7 +18871,7 @@ export declare type SearchConfluenceSpace = SearchResult & {
18853
18871
  iconUrl?: Maybe<Scalars['URL']>;
18854
18872
  type: SearchResultType;
18855
18873
  description: Scalars['String'];
18856
- lastModifiedDate?: Maybe<Scalars['DateTime']>;
18874
+ lastModified?: Maybe<Scalars['DateTime']>;
18857
18875
  spaceEntity?: Maybe<ConfluenceSpace>;
18858
18876
  };
18859
18877
  export declare enum SearchContainerStatus {
@@ -18881,6 +18899,7 @@ export declare type SearchItemConnection = {
18881
18899
  edges: Array<SearchResultItemEdge>;
18882
18900
  pageInfo: PageInfo;
18883
18901
  totalCount?: Maybe<Scalars['Int']>;
18902
+ abTest?: Maybe<SearchAbTest>;
18884
18903
  };
18885
18904
  export declare type SearchJiraFilter = {
18886
18905
  boardFilter?: Maybe<SearchBoardFilter>;
@@ -18978,13 +18997,17 @@ export declare type SearchResultJiraProject = SearchResult & {
18978
18997
  project?: Maybe<JiraProject>;
18979
18998
  };
18980
18999
  export declare enum SearchResultType {
19000
+ Page = "page",
18981
19001
  Blogpost = "blogpost",
18982
19002
  Space = "space",
19003
+ Attachment = "attachment",
19004
+ Comment = "comment",
18983
19005
  Board = "board",
18984
19006
  Filter = "filter",
18985
19007
  Issue = "issue",
18986
19008
  Plan = "plan",
18987
- Project = "project"
19009
+ Project = "project",
19010
+ Unrecognised = "unrecognised"
18988
19011
  }
18989
19012
  export declare type SearchSpace = {
18990
19013
  __typename?: 'SearchSpace';