@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
|
@@ -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) => {
|