@forge/cli-shared 2.3.0 → 2.3.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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 2.3.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [54bf134]
8
+ - @forge/manifest@3.3.1-next.0
9
+
3
10
  ## 2.3.0
4
11
 
5
12
  ### Minor Changes
@@ -1001,6 +1001,7 @@ export declare type BasicBoardFeatureView = Node & {
1001
1001
  status?: Maybe<Scalars['String']>;
1002
1002
  canEnable?: Maybe<Scalars['Boolean']>;
1003
1003
  learnMoreLink?: Maybe<Scalars['String']>;
1004
+ learnMoreArticleId?: Maybe<Scalars['String']>;
1004
1005
  imageUri?: Maybe<Scalars['String']>;
1005
1006
  };
1006
1007
  export declare enum BitbucketPermission {
@@ -5345,6 +5346,7 @@ export declare type EstimationBoardFeatureView = Node & {
5345
5346
  status?: Maybe<Scalars['String']>;
5346
5347
  canEnable?: Maybe<Scalars['Boolean']>;
5347
5348
  learnMoreLink?: Maybe<Scalars['String']>;
5349
+ learnMoreArticleId?: Maybe<Scalars['String']>;
5348
5350
  imageUri?: Maybe<Scalars['String']>;
5349
5351
  permissibleEstimationTypes?: Maybe<Array<Maybe<PermissibleEstimationType>>>;
5350
5352
  selectedEstimationType?: Maybe<PermissibleEstimationType>;
@@ -6543,6 +6545,7 @@ export declare type JiraColorField = Node & JiraIssueField & JiraIssueFieldConfi
6543
6545
  };
6544
6546
  export declare type JiraComment = {
6545
6547
  commentId: Scalars['ID'];
6548
+ issue?: Maybe<JiraIssue>;
6546
6549
  webUrl?: Maybe<Scalars['URL']>;
6547
6550
  author?: Maybe<User>;
6548
6551
  updateAuthor?: Maybe<User>;
@@ -6551,6 +6554,10 @@ export declare type JiraComment = {
6551
6554
  updated?: Maybe<Scalars['DateTime']>;
6552
6555
  permissionLevel?: Maybe<JiraPermissionLevel>;
6553
6556
  };
6557
+ export declare type JiraCommentByIdInput = {
6558
+ issueId: Scalars['ID'];
6559
+ id: Scalars['ID'];
6560
+ };
6554
6561
  export declare type JiraCommentConnection = {
6555
6562
  __typename?: 'JiraCommentConnection';
6556
6563
  indicativeCount?: Maybe<Scalars['Int']>;
@@ -8832,6 +8839,7 @@ export declare type JiraPlatformComment = JiraComment & Node & {
8832
8839
  __typename?: 'JiraPlatformComment';
8833
8840
  id: Scalars['ID'];
8834
8841
  commentId: Scalars['ID'];
8842
+ issue?: Maybe<JiraIssue>;
8835
8843
  webUrl?: Maybe<Scalars['URL']>;
8836
8844
  author?: Maybe<User>;
8837
8845
  updateAuthor?: Maybe<User>;
@@ -9175,8 +9183,10 @@ export declare type JiraQuery = {
9175
9183
  issueSearchStable?: Maybe<JiraIssueConnection>;
9176
9184
  issueByKey?: Maybe<JiraIssue>;
9177
9185
  issueById?: Maybe<JiraIssue>;
9186
+ issuesById?: Maybe<Array<Maybe<JiraIssue>>>;
9178
9187
  screenIdByIssueId?: Maybe<Scalars['Long']>;
9179
9188
  screenIdByIssueKey?: Maybe<Scalars['Long']>;
9189
+ commentsById?: Maybe<Array<Maybe<JiraComment>>>;
9180
9190
  epicLinkFieldKey?: Maybe<Scalars['String']>;
9181
9191
  applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
9182
9192
  filter?: Maybe<JiraFilter>;
@@ -9252,12 +9262,18 @@ export declare type JiraQueryIssueByKeyArgs = {
9252
9262
  export declare type JiraQueryIssueByIdArgs = {
9253
9263
  id: Scalars['ID'];
9254
9264
  };
9265
+ export declare type JiraQueryIssuesByIdArgs = {
9266
+ ids: Array<Scalars['ID']>;
9267
+ };
9255
9268
  export declare type JiraQueryScreenIdByIssueIdArgs = {
9256
9269
  issueId: Scalars['ID'];
9257
9270
  };
9258
9271
  export declare type JiraQueryScreenIdByIssueKeyArgs = {
9259
9272
  issueKey: Scalars['String'];
9260
9273
  };
9274
+ export declare type JiraQueryCommentsByIdArgs = {
9275
+ input: Array<JiraCommentByIdInput>;
9276
+ };
9261
9277
  export declare type JiraQueryApplicationPropertiesByKeyArgs = {
9262
9278
  cloudId: Scalars['ID'];
9263
9279
  keys: Array<Scalars['String']>;
@@ -9738,6 +9754,7 @@ export declare type JiraServiceManagementComment = JiraComment & Node & {
9738
9754
  __typename?: 'JiraServiceManagementComment';
9739
9755
  id: Scalars['ID'];
9740
9756
  commentId: Scalars['ID'];
9757
+ issue?: Maybe<JiraIssue>;
9741
9758
  webUrl?: Maybe<Scalars['URL']>;
9742
9759
  author?: Maybe<User>;
9743
9760
  updateAuthor?: Maybe<User>;