@lark-apaas/devtool-kits 1.2.24-alpha.8 → 1.2.24-beta.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/dist/index.cjs CHANGED
@@ -3638,7 +3638,7 @@ async function fetchRoutesFromBackend(basePath) {
3638
3638
  }
3639
3639
  const debugRoutes = routeConfig.routes;
3640
3640
  return debugRoutes.filter((route) => {
3641
- return route.path.includes("/api/") && !route.path.includes("__framework__") && !route.path.includes("__innerapi__") && !route.path.includes("/api/capability");
3641
+ return route.path.includes("/api/") && !route.path.includes("__framework__") && !route.path.includes("__innerapi__") && !route.path.includes("__PLATFORM__") && !route.path.includes("/api/capability") && !route.path.includes("/api/authnpaas") && !route.path.includes("/api/sdk_innerapi");
3642
3642
  }).map((route) => {
3643
3643
  const apiPathMatch = route.path.match(/\/api\/.*/);
3644
3644
  const apiPath = apiPathMatch ? apiPathMatch[0] : route.path;