@erpp/react-api-cronos-frontend 1.0.16 → 1.0.18
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/index.d.mts +2005 -8931
- package/dist/index.d.ts +2005 -8931
- package/dist/index.js +1192 -5272
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1191 -4970
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
- package/readme.md +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@erpp/react-api-cronos-frontend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.18",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -32,5 +32,6 @@
|
|
|
32
32
|
"directories": {
|
|
33
33
|
"test": "test"
|
|
34
34
|
},
|
|
35
|
-
"description": ""
|
|
35
|
+
"description": "",
|
|
36
|
+
"sideEffects": false
|
|
36
37
|
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
# Caracteristicas
|
|
4
|
+
|
|
5
|
+
- v0.1.18
|
|
6
|
+
<!-- - Se limita las exportaciones de entidades y sus hooks por entidades explicitamente solicitadas. -->
|
|
7
|
+
- Se limita las exportaciones de entidades explicitamente solicitadas.
|
|
8
|
+
- Incluyendo (APIFactory)
|
|
9
|
+
- Incluyendo hooks como (useFetchById, useFetchList, useCreate, useUpdate, useDelete, useFilterMatch)
|
|
10
|
+
- Se agrega verificación de existencia de archivos antes de generar código en APIFactory.ts.
|