From 4f7aeb8b84b8b308a31358e10794a715dcd8fdb0 Mon Sep 17 00:00:00 2001 From: Elaina Lee Date: Thu, 1 May 2025 11:35:13 -0700 Subject: [PATCH 1/5] disabled error throwing for not having template registered in manifest.json --- validate_templates.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate_templates.ts b/validate_templates.ts index e3c22b6..000e9f1 100644 --- a/validate_templates.ts +++ b/validate_templates.ts @@ -294,7 +294,7 @@ if (registeredNotExisting.length) { const templatesNotRegistered = allManifestDirectories.filter(item => !manifestNamesList.includes(item)); if (templatesNotRegistered.length) { console.error(`Template(s) ${JSON.stringify(templatesNotRegistered)} found in the repository are not registered in manifest.json.`); - throw ''; + // throw ''; // Disabling error throwing, considering purposefully non-registered templates } for (const folderName of manifestNamesList) { From cf45f7810cb51f88976d971fe1b3810b3808d226 Mon Sep 17 00:00:00 2001 From: Elaina Lee Date: Thu, 1 May 2025 11:35:51 -0700 Subject: [PATCH 2/5] removed templates with issues from manifest.json as requested --- manifest.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/manifest.json b/manifest.json index 8573c05..ba2ec48 100644 --- a/manifest.json +++ b/manifest.json @@ -51,8 +51,6 @@ "vectorize-servicebus-aisearch-schedule", "tool-send-email-outlook", "tool-get-weather-msn", - "tool-post-message-teams", - "tool-post-adaptive-card-teams", "tool-get-rows-dataverse", "tool-get-rows-sql", "tool-execute-query-sql", From 6444ae4653e83855468392c4e89e48e45fe09e76 Mon Sep 17 00:00:00 2001 From: Riley Evans Date: Thu, 1 May 2025 11:09:02 -0500 Subject: [PATCH 3/5] Fix MSN Weather template typo --- tool-get-weather-msn/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool-get-weather-msn/manifest.json b/tool-get-weather-msn/manifest.json index 4f6d9e1..a56d18e 100644 --- a/tool-get-weather-msn/manifest.json +++ b/tool-get-weather-msn/manifest.json @@ -1,6 +1,6 @@ { "id": "tool-get-weather-msn", - "title": "Get Weather forecase for today via MSN Weather", + "title": "Get Weather forecast for today via MSN Weather", "summary": "Get the weather forecast for today using MSN Weather API.", "description": "This workflow retrieves the weather forecast for today using the MSN Weather API. It is designed to be triggered by an HTTP request and to provide weather information.", "skus": [ @@ -30,4 +30,4 @@ "tags": [ "Tools" ] -} \ No newline at end of file +} From feb20471a992a0378399723e028b634c566a3d16 Mon Sep 17 00:00:00 2001 From: Riley Evans Date: Thu, 1 May 2025 13:26:40 -0500 Subject: [PATCH 4/5] Update manifest.json --- tool-get-weather-msn/default/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool-get-weather-msn/default/manifest.json b/tool-get-weather-msn/default/manifest.json index 2e5757d..7f2b4af 100644 --- a/tool-get-weather-msn/default/manifest.json +++ b/tool-get-weather-msn/default/manifest.json @@ -1,6 +1,6 @@ { "id": "default", - "title": "Get Weather forecase for today via MSN Weather", + "title": "Get Weather forecast for today via MSN Weather", "summary": "Get the weather forecast for today using MSN Weather API.", "description": "This workflow retrieves the weather forecast for today using the MSN Weather API. It is designed to be triggered by an HTTP request and to provide weather information.", "artifacts": [ @@ -22,4 +22,4 @@ "kind": "shared" } } -} \ No newline at end of file +} From b3b8789367bb3854dddf3cf616bf64749dfc0e25 Mon Sep 17 00:00:00 2001 From: Elaina Lee Date: Thu, 1 May 2025 12:07:45 -0700 Subject: [PATCH 5/5] removed from agent manifest --- agentservicemanifest.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/agentservicemanifest.json b/agentservicemanifest.json index 52f8f58..c2874a4 100644 --- a/agentservicemanifest.json +++ b/agentservicemanifest.json @@ -1,8 +1,6 @@ [ "tool-send-email-outlook", "tool-get-weather-msn", - "tool-post-message-teams", - "tool-post-adaptive-card-teams", "tool-get-rows-dataverse", "tool-get-rows-sql", "tool-execute-query-sql",