@forge/cli-shared 3.10.0-next.2 → 3.10.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,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 48a73ca: Improve forge CLI GraphQLProviderServiceError reading
8
+
9
+ ### Patch Changes
10
+
11
+ - e7f0fb6: Added additional error tagging
12
+ - Updated dependencies [b34b84d]
13
+ - Updated dependencies [cc6e80a]
14
+ - @forge/manifest@4.9.1
15
+
3
16
  ## 3.10.0-next.2
4
17
 
5
18
  ### Minor Changes
@@ -1123,7 +1123,7 @@ export declare type AquaOutgoingEmailLogItem = {
1123
1123
  author?: Maybe<User>;
1124
1124
  issueContext?: Maybe<AquaIssueContext>;
1125
1125
  notificationDetails?: Maybe<AquaNotificationDetails>;
1126
- notificationSubType?: Maybe<Scalars['String']>;
1126
+ notificationActionType?: Maybe<Scalars['String']>;
1127
1127
  notificationType?: Maybe<Scalars['String']>;
1128
1128
  projectContext?: Maybe<AquaProjectContext>;
1129
1129
  recipient?: Maybe<User>;
@@ -1139,7 +1139,7 @@ export declare type AquaOutgoingEmailLogsQueryApi = {
1139
1139
  };
1140
1140
  export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
1141
1141
  fromTimestamp?: Maybe<Scalars['DateTime']>;
1142
- notificationSubtype?: Maybe<Scalars['String']>;
1142
+ notificationActionType?: Maybe<Scalars['String']>;
1143
1143
  notificationType?: Maybe<Scalars['String']>;
1144
1144
  projectId?: Maybe<Scalars['Long']>;
1145
1145
  toTimestamp?: Maybe<Scalars['DateTime']>;
@@ -13307,7 +13307,8 @@ export declare enum JiraProjectSortField {
13307
13307
  Name = "NAME",
13308
13308
  Key = "KEY",
13309
13309
  Lead = "LEAD",
13310
- Category = "CATEGORY"
13310
+ Category = "CATEGORY",
13311
+ LastIssueUpdatedTime = "LAST_ISSUE_UPDATED_TIME"
13311
13312
  }
13312
13313
  export declare type JiraProjectSortInput = {
13313
13314
  sortBy?: Maybe<JiraProjectSortField>;