@forge/cli-shared 3.5.0-next.5 → 3.5.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,30 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.5.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [40b251cf]
8
+ - @forge/manifest@4.5.4-next.0
9
+
10
+ ## 3.5.0
11
+
12
+ ### Minor Changes
13
+
14
+ - bbca9be: Forge CLI error handling and analytics changes
15
+
16
+ ### Patch Changes
17
+
18
+ - bae4bce: Explicitly state the supported node versions when using the CLI
19
+ - b7428f7: Update CLI copy for forge contributors add and remove
20
+ - a36488f: Bundle Node runtime wrapper using Webpack
21
+ - 6cda566: Add a way to inspect bundler output
22
+ - 8d0dc10: Use a single global to pass information from the runtime
23
+ - fed846f: Updated inquirer to version 8, fixed issues with inquirer table and testing
24
+ - Updated dependencies [4ac7253]
25
+ - Updated dependencies [8f01fae]
26
+ - @forge/manifest@4.5.3
27
+
3
28
  ## 3.5.0-next.5
4
29
 
5
30
  ### Minor Changes
@@ -12109,6 +12109,27 @@ export declare enum JiraProjectType {
12109
12109
  Business = "BUSINESS",
12110
12110
  Software = "SOFTWARE"
12111
12111
  }
12112
+ export declare type JiraProjectTypeDetails = Node & {
12113
+ __typename?: 'JiraProjectTypeDetails';
12114
+ id: Scalars['ID'];
12115
+ type: JiraProjectType;
12116
+ key: Scalars['String'];
12117
+ formattedKey: Scalars['String'];
12118
+ description: Scalars['String'];
12119
+ icon: Scalars['String'];
12120
+ color: Scalars['String'];
12121
+ weight?: Maybe<Scalars['Int']>;
12122
+ };
12123
+ export declare type JiraProjectTypeDetailsConnection = {
12124
+ __typename?: 'JiraProjectTypeDetailsConnection';
12125
+ pageInfo: PageInfo;
12126
+ edges?: Maybe<Array<Maybe<JiraProjectTypeDetailsEdge>>>;
12127
+ };
12128
+ export declare type JiraProjectTypeDetailsEdge = {
12129
+ __typename?: 'JiraProjectTypeDetailsEdge';
12130
+ node?: Maybe<JiraProjectTypeDetails>;
12131
+ cursor: Scalars['String'];
12132
+ };
12112
12133
  export declare type JiraPullRequestReviewer = {
12113
12134
  __typename?: 'JiraPullRequestReviewer';
12114
12135
  avatar?: Maybe<JiraAvatar>;
@@ -12157,6 +12178,7 @@ export declare type JiraQuery = {
12157
12178
  issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
12158
12179
  lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
12159
12180
  issueHierarchyConfigUpdateTask?: Maybe<JiraHierarchyConfigTask>;
12181
+ allJiraProjectTypes?: Maybe<JiraProjectTypeDetailsConnection>;
12160
12182
  jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
12161
12183
  jiraProjectByKey?: Maybe<JiraProject>;
12162
12184
  version?: Maybe<JiraVersionResult>;
@@ -12326,6 +12348,13 @@ export declare type JiraQueryLockedIssueTypeIdsArgs = {
12326
12348
  export declare type JiraQueryIssueHierarchyConfigUpdateTaskArgs = {
12327
12349
  cloudId: Scalars['ID'];
12328
12350
  };
12351
+ export declare type JiraQueryAllJiraProjectTypesArgs = {
12352
+ cloudId: Scalars['ID'];
12353
+ first?: Maybe<Scalars['Int']>;
12354
+ last?: Maybe<Scalars['Int']>;
12355
+ after?: Maybe<Scalars['String']>;
12356
+ before?: Maybe<Scalars['String']>;
12357
+ };
12329
12358
  export declare type JiraQueryJiraProjectsArgs = {
12330
12359
  ids: Array<Scalars['ID']>;
12331
12360
  };
@@ -17727,7 +17756,7 @@ export declare type ProjectAvatars = {
17727
17756
  };
17728
17757
  export declare type Query = {
17729
17758
  __typename?: 'Query';
17730
- trello?: Maybe<TrelloQueryApi>;
17759
+ trello: TrelloQueryApi;
17731
17760
  customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
17732
17761
  jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
17733
17762
  devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;