@meridianjs/meridian 2.7.0 → 2.7.2

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.
@@ -8,7 +8,7 @@ export const GET = async (req, res) => {
8
8
  const term = `%${q}%`;
9
9
  filters.$or = [{ name: { $ilike: term } }, { slug: { $ilike: term } }];
10
10
  }
11
- const [workspaces] = await workspaceService.listAndCountWorkspaces(filters, { limit: 20 });
11
+ const [workspaces] = await workspaceService.listAndCountWorkspaces(filters, { limit: 50 });
12
12
  // Batch the membership + pending-request lookups into two queries total
13
13
  // instead of two per result row.
14
14
  const userId = req.user?.id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meridianjs/meridian",
3
- "version": "2.7.0",
3
+ "version": "2.7.2",
4
4
  "description": "Default API routes, workflows, links, and subscribers for Meridian applications",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -20,13 +20,13 @@
20
20
  "prepublishOnly": "cd ../.. && npm run check:routes && cd packages/meridian && npm run build"
21
21
  },
22
22
  "dependencies": {
23
- "@meridianjs/framework": "^2.7.0",
24
- "@meridianjs/framework-utils": "^2.7.0",
25
- "@meridianjs/workflow-engine": "^2.7.0",
26
- "@meridianjs/types": "^2.7.0",
23
+ "@meridianjs/framework": "^2.7.2",
24
+ "@meridianjs/framework-utils": "^2.7.2",
25
+ "@meridianjs/workflow-engine": "^2.7.2",
26
+ "@meridianjs/types": "^2.7.2",
27
27
  "@meridianjs/user": "^2.0.0",
28
28
  "@meridianjs/workspace": "^1.2.1",
29
- "@meridianjs/auth": "^2.7.0",
29
+ "@meridianjs/auth": "^2.7.2",
30
30
  "@meridianjs/project": "^2.0.0",
31
31
  "@meridianjs/issue": "^2.0.0",
32
32
  "@meridianjs/sprint": "^1.0.1",