data-primals-engine 1.2.6-rc2 → 1.2.6
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/README.md +1 -1
- package/client/package-lock.json +247 -4354
- package/client/package.json +16 -15
- package/client/src/App.scss +1 -0
- package/client/src/DataEditor.jsx +1 -1
- package/client/src/Field.jsx +4 -16
- package/client/src/translations.js +17 -0
- package/package.json +120 -120
- package/src/engine.js +0 -1
- package/src/filter.js +35 -5
- package/src/modules/data/data.core.js +72 -1
- package/src/modules/data/data.js +59 -101
- package/src/modules/data/data.routes.js +2 -2
- package/src/modules/mongodb.js +3 -1
- package/src/modules/workflow.js +66 -70
- package/test/data.integration.test.js +1 -1
- package/test/workflow.actions.integration.test.js +474 -0
package/README.md
CHANGED
|
@@ -315,7 +315,7 @@ curl -X DELETE http://localhost:7633/api/data?_user=demo \
|
|
|
315
315
|
Make sure you use the code below to initialize the user :
|
|
316
316
|
```javascript
|
|
317
317
|
import express from "express";
|
|
318
|
-
import {Engine, insertData, searchData } from '
|
|
318
|
+
import {Engine, insertData, searchData } from 'data-primals-engine';
|
|
319
319
|
|
|
320
320
|
// Ensure the engine is initialized
|
|
321
321
|
|