@mindline/sync 1.0.1 → 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/.d.ts ADDED
@@ -0,0 +1 @@
1
+ declare module '@mindline/sync';
package/README.md CHANGED
@@ -35,6 +35,10 @@ In order to enable the preset you have to define it in your babel.config.json fi
35
35
  npm install class-transformer --save
36
36
  npm install reflect-metadata --save
37
37
  ```
38
+ ## install @mindline/sync package to speak to backend
39
+ ``` js
40
+ npm install @mindline/sync --save
41
+ ```
38
42
  # 2. Latest releases
39
43
  # 3. API references
40
44
  # 4. Unit Test
package/index.js CHANGED
@@ -124,4 +124,12 @@ module.exports = {
124
124
  readobjects,
125
125
  User, VirtualTenant, SyncTenant, SyncConfig,
126
126
  readConfigs
127
+ };
128
+
129
+ export {
130
+ sum,
131
+ helloNpm,
132
+ readobjects,
133
+ User, VirtualTenant, SyncTenant, SyncConfig,
134
+ readConfigs
127
135
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindline/sync",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "sync is a node.js package encapsulating javscript classes required for configuring Mindline sync service.",
5
5
  "main": "index.js",
6
6
  "scripts": {