Skip to content

Commit 111f63a

Browse files
authored
Exclude deprecated Outlook Calendar, Outlook Mail, and SharePoint and redirect to microsoft-* replacements (#874)
* Ignore deprecated OutlookCalendar, OutlookMail, and SharePoint from docs generation These toolkits are being renamed to microsoft_* prefix (ArcadeAI/monorepo#601). Adding them to the ignore list stops the auto-generator from re-processing them while keeping existing doc pages accessible via direct URL during migration. * Fix Sharepoint toolkit ID casing in ignored-toolkits.txt * Revert unintended formatting changes to FAQ page Restores app/en/resources/faq/page.mdx to its state on main. The formatting changes (indentation loss, backtick count changes) were accidentally included in earlier commits on this * Redirect deprecated toolkit URLs to microsoft_* replacements Maps old Outlook Calendar, Outlook Mail, and SharePoint toolkit doc URLs to their new microsoft-* prefixed equivalents so existing links and bookmarks keep working after the rename. * Move deprecated toolkits from ignore list to exclusion list For renames (Scenario B), the old toolkit should be excluded (not ignored) so the generator deletes stale output. The redirects added in the previous commit handle forwarding old URLs to the new microsoft-* pages.
1 parent 46e0421 commit 111f63a

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

next.config.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -894,6 +894,26 @@ const nextConfig: NextConfig = withLlmsTxt({
894894
destination: "/:locale/get-started/mcp-clients/:path*",
895895
permanent: true,
896896
},
897+
// Deprecated toolkit renames (microsoft_* prefix, ArcadeAI/monorepo#601)
898+
{
899+
source:
900+
"/:locale/resources/integrations/productivity/outlook-calendar",
901+
destination:
902+
"/:locale/resources/integrations/productivity/microsoft-outlook-calendar",
903+
permanent: true,
904+
},
905+
{
906+
source: "/:locale/resources/integrations/productivity/outlook-mail",
907+
destination:
908+
"/:locale/resources/integrations/productivity/microsoft-outlook-mail",
909+
permanent: true,
910+
},
911+
{
912+
source: "/:locale/resources/integrations/productivity/sharepoint",
913+
destination:
914+
"/:locale/resources/integrations/productivity/microsoft-sharepoint",
915+
permanent: true,
916+
},
897917
];
898918
},
899919
headers: async () => [

toolkit-docs-generator/excluded-toolkits.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@
22
Google
33
Microsoft
44

5+
# Deprecated — renamed to microsoft_* prefix (see ArcadeAI/monorepo#601)
6+
OutlookCalendar
7+
OutlookMail
8+
Sharepoint
9+

0 commit comments

Comments
 (0)