@opengis/admin 0.3.35 → 0.3.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengis/admin",
3
- "version": "0.3.35",
3
+ "version": "0.3.36",
4
4
  "description": "This project Softpro Admin",
5
5
  "main": "dist/admin.js",
6
6
  "type": "module",
@@ -48,7 +48,7 @@
48
48
  "@fullcalendar/vue3": "^6.1.15",
49
49
  "@opengis/fastify-auth": "^1.0.73",
50
50
  "@opengis/fastify-file": "^1.0.42",
51
- "@opengis/fastify-table": "^1.2.85",
51
+ "@opengis/fastify-table": "^1.2.87",
52
52
  "@opengis/v3-core": "^0.3.93",
53
53
  "@opengis/v3-filter": "^0.0.72",
54
54
  "@tiptap/core": "^2.8.0",
@@ -12,7 +12,7 @@ import tableInfo from "./controllers/tableInfo.js";
12
12
  export default async function route(fastify) {
13
13
  const policy = ['user'];
14
14
  fastify.get(`/token-info/:token`, { config: { policy: ['admin'] } }, tokenInfo);
15
- fastify.get(`/table-data/:table`, { config: { policy }, schema: tableDataSchema }, tableData);
15
+ fastify.get(`/table-data/:table`, { config: { policy: ['user', 'no-sql'] }, schema: tableDataSchema }, tableData);
16
16
  fastify.get(`/card-data/:token`, { config: { policy }, scheme: cardTabDataSchema }, cardTabData);
17
17
  fastify.get(`/table-data/:table/:id`, { config: { policy }, schema: tableDataIdSchema }, cardData);
18
18
  fastify.get(`/table-filter/:table`, { config: { policy }, schema: tableFilterSchema }, tableFilter);