cmp-aws-database 0.1.3 → 0.1.5
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/index.js +4 -4
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
1
|
+
export { InternalUserModel } from './dist/internal-user/internal-user-model';
|
|
2
|
+
export { internalUserDao } from './dist/internal-user/internal-user-dao';
|
|
3
|
+
export { GenericDAO } from './dist/base-dao';
|
|
4
|
+
export { BaseModel } from './dist/base-model';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cmp-aws-database",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"bin": {
|
|
5
5
|
"craft-my-plate-database": "bin/craft-my-plate-database.js"
|
|
6
6
|
},
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"description": "The package \"cmp-aws-database\" is for its database, which defines global tables. These tables are designed to be imported and used across multiple applications of \"craft-my-plate.\"",
|
|
28
28
|
"main": "index.js",
|
|
29
|
-
"type": "
|
|
29
|
+
"type": "commonjs",
|
|
30
30
|
"directories": {
|
|
31
31
|
"lib": "lib",
|
|
32
32
|
"test": "test"
|