tango-api-schema 2.2.112 → 2.2.114

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
@@ -87,6 +87,7 @@ import suspiciousActivityModel from "./schema/suspiciousActivity.model.js";
87
87
  import auditConfigModel from "./schema/auditConfig.model.js";
88
88
  import revopConfigModel from "./schema/revopConfig.model.js";
89
89
  import planoCrestLogModel from './schema/planoCrestLog.model.js';
90
+ import countryCurrencyModel from './schema/countryCurrency.model.js';
90
91
 
91
92
 
92
93
 
@@ -180,4 +181,5 @@ export default {
180
181
  auditConfigModel,
181
182
  revopConfigModel,
182
183
  planoCrestLogModel,
184
+ countryCurrencyModel,
183
185
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.2.112",
3
+ "version": "2.2.114",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -15,7 +15,7 @@ const assignAudit = new mongoose.Schema( {
15
15
  },
16
16
  moduleType:{
17
17
  type:String,
18
- enum:["traffic", "zone"]
18
+ enum:["traffic", "zone",'track']
19
19
  },
20
20
  zoneName: {
21
21
  type:String
@@ -15,7 +15,7 @@ const auditLogSchema = new mongoose.Schema( {
15
15
  },
16
16
  moduleType:{
17
17
  type:String,
18
- enum:["traffic", "zone", "uniform-detection","mobile-detection", "hygiene","open-time","close-time"]
18
+ enum:["traffic", "zone", 'track',"uniform-detection","mobile-detection", "hygiene","open-time","close-time"]
19
19
  },
20
20
  zoneName:{
21
21
  type:String
@@ -20,7 +20,7 @@ const auditStoreData = new mongoose.Schema( {
20
20
  },
21
21
  moduleType:{
22
22
  type: String,
23
- enum:['traffic','zone']
23
+ enum:['traffic','zone','track']
24
24
  },
25
25
  zoneName:{
26
26
  type: String
@@ -209,6 +209,10 @@ const client = new mongoose.Schema(
209
209
  type: Boolean,
210
210
  default: false
211
211
  },
212
+ trackAudit: {
213
+ type: Boolean,
214
+ default: false
215
+ },
212
216
  count:{
213
217
  type:Number,
214
218
  default:200
@@ -226,6 +230,9 @@ const client = new mongoose.Schema(
226
230
  trafficQueueName: {
227
231
  type: String,
228
232
  },
233
+ trackQueueName: {
234
+ type: String,
235
+ },
229
236
  traxQueueName: {
230
237
  unattendedCustomer :{
231
238
  type:String
@@ -0,0 +1,18 @@
1
+ /**
2
+ * @name countryCurrencyModel
3
+ * @description planoCrestLog Schema
4
+ */
5
+
6
+ import mongoose from "mongoose";
7
+
8
+ const collection = new mongoose.Schema(
9
+ {
10
+ },
11
+ {
12
+ timestamps: true,
13
+ strict: false,
14
+ versionKey: false,
15
+ }
16
+ );
17
+
18
+ export default mongoose.model("countryCurrency", collection);
@@ -18,7 +18,7 @@ const storeAuditSchema = new mongoose.Schema( {
18
18
  },
19
19
  moduleType:{
20
20
  type: String,
21
- enum: [ 'traffic', 'zone' ],
21
+ enum: [ 'traffic', 'zone', 'track' ],
22
22
  },
23
23
  auditType: {
24
24
  type: String,
@@ -21,7 +21,7 @@ const userAuditSchem = new mongoose.Schema( {
21
21
  },
22
22
  moduleType:{
23
23
  type: String,
24
- enum: [ 'traffic', 'zone' ],
24
+ enum: [ 'traffic', 'zone', "track" ],
25
25
  },
26
26
  auditType: {
27
27
  type: String,