@opengis/fastify-table 1.1.11 → 1.1.12

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/Changelog.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # fastify-table
2
2
 
3
- ## 1.1.11 - 24.09.2024
3
+ ## 1.1.12 - 24.09.2024
4
4
 
5
5
  - fix update crud editor id/date + geom
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opengis/fastify-table",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
4
4
  "type": "module",
5
5
  "description": "core-plugins",
6
6
  "main": "index.js",
package/utils.js CHANGED
@@ -23,6 +23,7 @@ import checkXSS from './crud/controllers/utils/checkXSS.js';
23
23
  import gisIRColumn from './table/controllers/utils/gisIRColumn.js';
24
24
  import getMeta from './pg/funcs/getMeta.js';
25
25
  import getAccess from './crud/funcs/getAccess.js';
26
+ import getSelectVal from './table/funcs/metaFormat/getSelectVal.js';
26
27
 
27
28
  export default null;
28
29
  export {
@@ -45,4 +46,5 @@ export {
45
46
  gisIRColumn,
46
47
  getMeta,
47
48
  getAccess,
49
+ getSelectVal,
48
50
  };