@forge/manifest 11.1.0 → 11.1.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/manifest
2
2
 
3
+ ## 11.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 29741cf: Fixed TypeScript errors in action validators by adding explicit type assertions for string arrays
8
+ - 354f5d1: Update manifest definitions
9
+
3
10
  ## 11.1.0
4
11
 
5
12
  ### Minor Changes
@@ -16,7 +16,7 @@ exports.validateUndefinedActionName = validateUndefinedActionName;
16
16
  function getUndefinedActionName(allModules) {
17
17
  const actionKey = (0, utils_1.cleanKey)(types_1.AllModuleTypes.CoreAction);
18
18
  const allActions = allModules[actionKey];
19
- return allActions?.filter((action) => !action.name).map((action) => action.key) ?? [];
19
+ return (allActions?.filter((action) => !action.name).map((action) => action.key) ?? []);
20
20
  }
21
21
  function getValidationError(action, yamlContentByLine) {
22
22
  return {
@@ -15,7 +15,7 @@ const validateUnreferencedActions = (allModules, yamlContentByLine) => {
15
15
  exports.validateUnreferencedActions = validateUnreferencedActions;
16
16
  function getUnreferencedActions(allModules) {
17
17
  const actionKey = (0, utils_1.cleanKey)(types_1.AllModuleTypes.CoreAction);
18
- const allActions = new Set(allModules[actionKey]?.map((action) => action.key) ?? []);
18
+ const allActions = new Set((allModules[actionKey]?.map((action) => action.key) ?? []));
19
19
  const rovoAgents = allModules[types_1.AllModuleTypes.RovoAgent];
20
20
  const automationActionProviders = allModules[types_1.AllModuleTypes.AutomationActionProvider];
21
21
  rovoAgents?.forEach((agent) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/manifest",
3
- "version": "11.1.0",
3
+ "version": "11.1.1-next.0",
4
4
  "description": "Definitions and validations of the Forge manifest",
5
5
  "main": "out/index.js",
6
6
  "scripts": {