dce-reactkit 3.4.0-beta.3 → 3.4.0-beta.4
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/cjs/index.js +338 -981
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +329 -972
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/helpers/addDBEditorEndpoints.ts +5 -2
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import express from 'express';
|
|
2
2
|
|
|
3
|
-
// Import
|
|
4
|
-
import
|
|
3
|
+
// Import shared helpers
|
|
4
|
+
import genRouteHandler from './genRouteHandler';
|
|
5
5
|
import generateEndpointPath from '../components/DBEntryManagerPanel/helpers/generateEndpointPath';
|
|
6
6
|
|
|
7
|
+
// Import shared types
|
|
8
|
+
import ParamType from '../types/ParamType';
|
|
9
|
+
|
|
7
10
|
/**
|
|
8
11
|
* Interface for a collection in the database
|
|
9
12
|
* @author Yuen Ler Chow
|