@decaf-ts/core 0.4.0 → 0.4.1
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 +7 -1
- package/dist/core.cjs +3 -3
- package/dist/core.esm.cjs +3 -3
- package/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/model/construction.js +2 -2
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/model/construction.cjs +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
@@ -37,7 +37,13 @@ Documentation available [here](https://decaf-ts.github.io/core/)
|
|
37
37
|
|
38
38
|
### Description
|
39
39
|
|
40
|
-
|
40
|
+
More opinionated (but very convenient) extension of `db-decorators`, and exposes all the functionality from the previous modules in a very extensible and developer friendly way:
|
41
|
+
- wraps any storage (blockchain, relational/non-relational databases and any other storage mechanism);
|
42
|
+
- automates the boiled plate code from `decorator-validation`, `db-decorators` and `injectable-decorators`;
|
43
|
+
- provides raw access to the storage;
|
44
|
+
- provides querying capabilities;
|
45
|
+
- Provides Repository apis for all selector Models;
|
46
|
+
- Initializes the storage according to the selected Models;
|
41
47
|
|
42
48
|
### How to Use
|
43
49
|
|