@autofleet/zehut 1.0.2 → 1.0.3

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.ts ADDED
@@ -0,0 +1,5 @@
1
+ import User from './src/user';
2
+
3
+ export {
4
+ User
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/zehut",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "manage user's identity",
5
5
  "scripts": {
6
6
  "build": "tsc",
package/src/user/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- import * as Network from '@autofleet/network';
1
+ import Network from '@autofleet/network';
2
2
  const CACHE_LIFETIME_IN_SEC = 10;
3
3
  const IdentityNetwork = new Network({
4
4
  serviceName: 'IDENTITY_MS',
package/index.js DELETED
@@ -1,5 +0,0 @@
1
- const User = require('./src/user');
2
-
3
- module.exports = {
4
- User
5
- };