@ruiapp/rapid-core 0.1.78 → 0.1.79

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.ts CHANGED
@@ -6,6 +6,7 @@ export * from "./core/server";
6
6
  export * from "./core/http-types";
7
7
  export * from "./core/actionHandler";
8
8
  export * from "./utilities/jwtUtility";
9
+ export { mapDbRowToEntity } from "./dataAccess/entityMapper";
9
10
  export * as bootstrapApplicationConfig from "./bootstrapApplicationConfig";
10
11
  export { default as MetaManagePlugin } from "./plugins/metaManage/MetaManagePlugin";
11
12
  export { default as DataManagePlugin } from "./plugins/dataManage/DataManagePlugin";
package/dist/index.js CHANGED
@@ -7370,4 +7370,5 @@ exports.bootstrapApplicationConfig = bootstrapApplicationConfig$1;
7370
7370
  exports.createJwt = createJwt;
7371
7371
  exports.decodeJwt = decodeJwt;
7372
7372
  exports.generateJwtSecretKey = generateJwtSecretKey;
7373
+ exports.mapDbRowToEntity = mapDbRowToEntity;
7373
7374
  exports.verifyJwt = verifyJwt;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruiapp/rapid-core",
3
- "version": "0.1.78",
3
+ "version": "0.1.79",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -12,6 +12,8 @@ export * from "./core/actionHandler";
12
12
 
13
13
  export * from "./utilities/jwtUtility";
14
14
 
15
+ export { mapDbRowToEntity } from "./dataAccess/entityMapper";
16
+
15
17
  export * as bootstrapApplicationConfig from "./bootstrapApplicationConfig";
16
18
 
17
19
  export { default as MetaManagePlugin } from "./plugins/metaManage/MetaManagePlugin";