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 +2 -0
- package/package.json +1 -1
- package/schema/assignAudit.model.js +1 -1
- package/schema/auditLogs.model.js +1 -1
- package/schema/auditStoreData.model.js +1 -1
- package/schema/client.model.js +7 -0
- package/schema/countryCurrency.model.js +18 -0
- package/schema/storeAudit.model.js +1 -1
- package/schema/userAudit.model.js +1 -1
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
|
@@ -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
|
package/schema/client.model.js
CHANGED
|
@@ -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);
|