@decaf-ts/db-decorators 0.6.8 → 0.6.9
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 +2 -2
- package/dist/db-decorators.cjs +414 -306
- package/dist/db-decorators.esm.cjs +413 -308
- package/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/esm/model/decorators.d.ts +5 -3
- package/lib/esm/model/decorators.js +10 -7
- package/lib/esm/operations/decorators.d.ts +84 -18
- package/lib/esm/operations/decorators.js +145 -33
- package/lib/esm/operations/types.d.ts +125 -1
- package/lib/esm/operations/types.js +1 -1
- package/lib/esm/repository/utils.js +25 -33
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/model/decorators.cjs +10 -7
- package/lib/model/decorators.d.ts +5 -3
- package/lib/operations/decorators.cjs +148 -33
- package/lib/operations/decorators.d.ts +84 -18
- package/lib/operations/types.cjs +1 -1
- package/lib/operations/types.d.ts +125 -1
- package/lib/repository/utils.cjs +25 -33
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,8 +67,8 @@ The library is designed to be extensible and adaptable to different database bac
|
|
|
67
67
|
|
|
68
68
|
### How to Use
|
|
69
69
|
|
|
70
|
-
- [Initial Setup](
|
|
71
|
-
- [Installation](
|
|
70
|
+
- [Initial Setup](./workdocs/tutorials/For%20Developers.md#_initial-setup_)
|
|
71
|
+
- [Installation](./workdocs/tutorials/For%20Developers.md#installation)
|
|
72
72
|
|
|
73
73
|
## DB-Decorators Examples
|
|
74
74
|
|