@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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -3257,7 +3257,7 @@ async function fetchRoutesFromBackend(basePath) {
|
|
|
3257
3257
|
}
|
|
3258
3258
|
const debugRoutes = routeConfig.routes;
|
|
3259
3259
|
return debugRoutes.filter((route) => {
|
|
3260
|
-
return route.path.includes("/api/") && !route.path.includes("__framework__") && !route.path.includes("__innerapi__") && !route.path.includes("/api/capability");
|
|
3260
|
+
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");
|
|
3261
3261
|
}).map((route) => {
|
|
3262
3262
|
const apiPathMatch = route.path.match(/\/api\/.*/);
|
|
3263
3263
|
const apiPath = apiPathMatch ? apiPathMatch[0] : route.path;
|