@lark-apaas/fullstack-nestjs-core 1.1.24-alpha.28 → 1.1.24-alpha.29

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
@@ -34571,7 +34571,7 @@ function createLegacyPathRedirectMiddleware() {
34571
34571
  const match = req.path.match(pattern);
34572
34572
  if (match) {
34573
34573
  const appId = match[1];
34574
- const suffix = match[2] || "/";
34574
+ const suffix = match[2] || "";
34575
34575
  const querySuffix = req.originalUrl.slice(req.path.length);
34576
34576
  const normalized = basePath.replace(/\/+$/, "");
34577
34577
  const basePrefix = normalized.slice(0, normalized.lastIndexOf("/"));
package/dist/index.js CHANGED
@@ -34550,7 +34550,7 @@ function createLegacyPathRedirectMiddleware() {
34550
34550
  const match = req.path.match(pattern);
34551
34551
  if (match) {
34552
34552
  const appId = match[1];
34553
- const suffix = match[2] || "/";
34553
+ const suffix = match[2] || "";
34554
34554
  const querySuffix = req.originalUrl.slice(req.path.length);
34555
34555
  const normalized = basePath.replace(/\/+$/, "");
34556
34556
  const basePrefix = normalized.slice(0, normalized.lastIndexOf("/"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/fullstack-nestjs-core",
3
- "version": "1.1.24-alpha.28",
3
+ "version": "1.1.24-alpha.29",
4
4
  "description": "FullStack Nestjs Core",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",