tango-api-schema 2.0.10 → 2.0.12

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 CHANGED
@@ -4,7 +4,14 @@ import storeModel from "./schema/store.model.js";
4
4
  import countryCodesModel from './schema/countryCodes.model.js';
5
5
  import clientModel from "./schema/client.model.js";
6
6
  import tangoTicketModel from "./schema/tangoTicket.model.js"
7
- import virtualAccountModel from "./schema/virtualAccount.model.js"
7
+ import virtualAccountModel from "./schema/virtualAccount.model.js";
8
+ import ipLogModel from "./schema/ipLogs.model.js";
9
+ import userModel from "./schema/user.model.js";
10
+ import edgeAppVersionModel from './schema/edgeAppVersion.model.js';
11
+ import applicationDefaultModel from "./schema/applicationDefault.model.js";
12
+ import cameraModel from "./schema/camera.model.js";
13
+ import reportModel from "./schema/report.model.js";
14
+
8
15
 
9
16
  export default {
10
17
  leadModel,
@@ -14,4 +21,10 @@ export default {
14
21
  clientModel,
15
22
  tangoTicketModel,
16
23
  virtualAccountModel,
24
+ ipLogModel,
25
+ userModel,
26
+ edgeAppVersionModel,
27
+ applicationDefaultModel,
28
+ cameraModel,
29
+ userModel
17
30
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.0.10",
3
+ "version": "2.0.12",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
File without changes