tango-api-schema 2.6.13 → 2.6.14
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/package.json
CHANGED
|
@@ -708,6 +708,19 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
708
708
|
type: Number,
|
|
709
709
|
default: 0
|
|
710
710
|
},
|
|
711
|
+
iscoolDown:{
|
|
712
|
+
type:Boolean,
|
|
713
|
+
default:false
|
|
714
|
+
},
|
|
715
|
+
coolAlertDuration:{
|
|
716
|
+
type:Number,
|
|
717
|
+
default:0
|
|
718
|
+
},
|
|
719
|
+
coolAlertDurationUnit:{
|
|
720
|
+
type:String,
|
|
721
|
+
enum:['sec','min','hour'],
|
|
722
|
+
default:'min'
|
|
723
|
+
}
|
|
711
724
|
|
|
712
725
|
}
|
|
713
726
|
|
|
@@ -648,6 +648,19 @@ const processedchecklistconfigSchema = new mongoose.Schema({
|
|
|
648
648
|
type: Number,
|
|
649
649
|
default: 0
|
|
650
650
|
},
|
|
651
|
+
iscoolDown:{
|
|
652
|
+
type:Boolean,
|
|
653
|
+
default:false
|
|
654
|
+
},
|
|
655
|
+
coolAlertDuration:{
|
|
656
|
+
type:Number,
|
|
657
|
+
default:0
|
|
658
|
+
},
|
|
659
|
+
coolAlertDurationUnit:{
|
|
660
|
+
type:String,
|
|
661
|
+
enum:['sec','min','hour'],
|
|
662
|
+
default:'min'
|
|
663
|
+
}
|
|
651
664
|
|
|
652
665
|
}
|
|
653
666
|
|
|
@@ -1,92 +1,92 @@
|
|
|
1
|
-
import mongoose from 'mongoose';
|
|
2
|
-
|
|
3
|
-
const recurringFlagTrackerSchema = new mongoose.Schema({
|
|
4
|
-
client_id: {
|
|
5
|
-
type: String,
|
|
6
|
-
required: true,
|
|
7
|
-
},
|
|
8
|
-
sourceCheckList_id: {
|
|
9
|
-
type: mongoose.SchemaTypes.ObjectId,
|
|
10
|
-
ref: 'checklistconfig',
|
|
11
|
-
required: true,
|
|
12
|
-
},
|
|
13
|
-
checkListName: {
|
|
14
|
-
type: String,
|
|
15
|
-
},
|
|
16
|
-
coverage: {
|
|
17
|
-
type: String,
|
|
18
|
-
enum: ['store', 'user'],
|
|
19
|
-
default: 'store',
|
|
20
|
-
},
|
|
21
|
-
store_id: {
|
|
22
|
-
type: String,
|
|
23
|
-
default: '',
|
|
24
|
-
},
|
|
25
|
-
storeName: {
|
|
26
|
-
type: String,
|
|
27
|
-
},
|
|
28
|
-
user_id: {
|
|
29
|
-
type: String,
|
|
30
|
-
default: '',
|
|
31
|
-
},
|
|
32
|
-
userName: {
|
|
33
|
-
type: String,
|
|
34
|
-
},
|
|
35
|
-
userEmail: {
|
|
36
|
-
type: String,
|
|
37
|
-
},
|
|
38
|
-
section_id: {
|
|
39
|
-
type: String,
|
|
40
|
-
},
|
|
41
|
-
sectionName: {
|
|
42
|
-
type: String,
|
|
43
|
-
},
|
|
44
|
-
qno: {
|
|
45
|
-
type: String,
|
|
46
|
-
},
|
|
47
|
-
qname: {
|
|
48
|
-
type: String,
|
|
49
|
-
},
|
|
50
|
-
consecutiveCount: {
|
|
51
|
-
type: Number,
|
|
52
|
-
default: 0,
|
|
53
|
-
},
|
|
54
|
-
lastFlaggedDate: {
|
|
55
|
-
type: String,
|
|
56
|
-
},
|
|
57
|
-
lastEmailDate: {
|
|
58
|
-
type: String,
|
|
59
|
-
},
|
|
60
|
-
runAICount: {
|
|
61
|
-
type: Number,
|
|
62
|
-
default: 0,
|
|
63
|
-
},
|
|
64
|
-
lastRunAIFlaggedDate: {
|
|
65
|
-
type: String,
|
|
66
|
-
},
|
|
67
|
-
emailHistory: {
|
|
68
|
-
type: [ String ],
|
|
69
|
-
default: [],
|
|
70
|
-
},
|
|
71
|
-
lastSubmittedBy: {
|
|
72
|
-
type: String,
|
|
73
|
-
},
|
|
74
|
-
lastSubmissionDate: {
|
|
75
|
-
type: String,
|
|
76
|
-
},
|
|
77
|
-
}, {
|
|
78
|
-
strict: true,
|
|
79
|
-
versionKey: false,
|
|
80
|
-
timestamps: true,
|
|
81
|
-
});
|
|
82
|
-
|
|
83
|
-
recurringFlagTrackerSchema.index({
|
|
84
|
-
client_id: 1,
|
|
85
|
-
sourceCheckList_id: 1,
|
|
86
|
-
store_id: 1,
|
|
87
|
-
user_id: 1,
|
|
88
|
-
section_id: 1,
|
|
89
|
-
qno: 1,
|
|
90
|
-
}, { unique: true });
|
|
91
|
-
|
|
92
|
-
export default mongoose.model('recurringFlagTracker', recurringFlagTrackerSchema);
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
|
|
3
|
+
const recurringFlagTrackerSchema = new mongoose.Schema({
|
|
4
|
+
client_id: {
|
|
5
|
+
type: String,
|
|
6
|
+
required: true,
|
|
7
|
+
},
|
|
8
|
+
sourceCheckList_id: {
|
|
9
|
+
type: mongoose.SchemaTypes.ObjectId,
|
|
10
|
+
ref: 'checklistconfig',
|
|
11
|
+
required: true,
|
|
12
|
+
},
|
|
13
|
+
checkListName: {
|
|
14
|
+
type: String,
|
|
15
|
+
},
|
|
16
|
+
coverage: {
|
|
17
|
+
type: String,
|
|
18
|
+
enum: ['store', 'user'],
|
|
19
|
+
default: 'store',
|
|
20
|
+
},
|
|
21
|
+
store_id: {
|
|
22
|
+
type: String,
|
|
23
|
+
default: '',
|
|
24
|
+
},
|
|
25
|
+
storeName: {
|
|
26
|
+
type: String,
|
|
27
|
+
},
|
|
28
|
+
user_id: {
|
|
29
|
+
type: String,
|
|
30
|
+
default: '',
|
|
31
|
+
},
|
|
32
|
+
userName: {
|
|
33
|
+
type: String,
|
|
34
|
+
},
|
|
35
|
+
userEmail: {
|
|
36
|
+
type: String,
|
|
37
|
+
},
|
|
38
|
+
section_id: {
|
|
39
|
+
type: String,
|
|
40
|
+
},
|
|
41
|
+
sectionName: {
|
|
42
|
+
type: String,
|
|
43
|
+
},
|
|
44
|
+
qno: {
|
|
45
|
+
type: String,
|
|
46
|
+
},
|
|
47
|
+
qname: {
|
|
48
|
+
type: String,
|
|
49
|
+
},
|
|
50
|
+
consecutiveCount: {
|
|
51
|
+
type: Number,
|
|
52
|
+
default: 0,
|
|
53
|
+
},
|
|
54
|
+
lastFlaggedDate: {
|
|
55
|
+
type: String,
|
|
56
|
+
},
|
|
57
|
+
lastEmailDate: {
|
|
58
|
+
type: String,
|
|
59
|
+
},
|
|
60
|
+
runAICount: {
|
|
61
|
+
type: Number,
|
|
62
|
+
default: 0,
|
|
63
|
+
},
|
|
64
|
+
lastRunAIFlaggedDate: {
|
|
65
|
+
type: String,
|
|
66
|
+
},
|
|
67
|
+
emailHistory: {
|
|
68
|
+
type: [ String ],
|
|
69
|
+
default: [],
|
|
70
|
+
},
|
|
71
|
+
lastSubmittedBy: {
|
|
72
|
+
type: String,
|
|
73
|
+
},
|
|
74
|
+
lastSubmissionDate: {
|
|
75
|
+
type: String,
|
|
76
|
+
},
|
|
77
|
+
}, {
|
|
78
|
+
strict: true,
|
|
79
|
+
versionKey: false,
|
|
80
|
+
timestamps: true,
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
recurringFlagTrackerSchema.index({
|
|
84
|
+
client_id: 1,
|
|
85
|
+
sourceCheckList_id: 1,
|
|
86
|
+
store_id: 1,
|
|
87
|
+
user_id: 1,
|
|
88
|
+
section_id: 1,
|
|
89
|
+
qno: 1,
|
|
90
|
+
}, { unique: true });
|
|
91
|
+
|
|
92
|
+
export default mongoose.model('recurringFlagTracker', recurringFlagTrackerSchema);
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import mongoose from 'mongoose';
|
|
2
|
-
import { randomUUID } from 'crypto';
|
|
3
|
-
|
|
4
|
-
// schema
|
|
5
|
-
const collection = new mongoose.Schema({
|
|
6
|
-
apiKey: {
|
|
7
|
-
type: String,
|
|
8
|
-
required: true,
|
|
9
|
-
unique: true,
|
|
10
|
-
default: () => randomUUID()
|
|
11
|
-
},
|
|
12
|
-
countryName: {
|
|
13
|
-
type: String,
|
|
14
|
-
},
|
|
15
|
-
countryCode: {
|
|
16
|
-
type: String,
|
|
17
|
-
},
|
|
18
|
-
clientId: {
|
|
19
|
-
type: String,
|
|
20
|
-
},
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
timestamps: true,
|
|
24
|
-
strict: true,
|
|
25
|
-
versionKey: false,
|
|
26
|
-
});
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
collection.index({ apiKey: 1 });
|
|
30
|
-
|
|
31
|
-
export default mongoose.model('regionKey', collection, 'regionKey');
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
import { randomUUID } from 'crypto';
|
|
3
|
+
|
|
4
|
+
// schema
|
|
5
|
+
const collection = new mongoose.Schema({
|
|
6
|
+
apiKey: {
|
|
7
|
+
type: String,
|
|
8
|
+
required: true,
|
|
9
|
+
unique: true,
|
|
10
|
+
default: () => randomUUID()
|
|
11
|
+
},
|
|
12
|
+
countryName: {
|
|
13
|
+
type: String,
|
|
14
|
+
},
|
|
15
|
+
countryCode: {
|
|
16
|
+
type: String,
|
|
17
|
+
},
|
|
18
|
+
clientId: {
|
|
19
|
+
type: String,
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
timestamps: true,
|
|
24
|
+
strict: true,
|
|
25
|
+
versionKey: false,
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
collection.index({ apiKey: 1 });
|
|
30
|
+
|
|
31
|
+
export default mongoose.model('regionKey', collection, 'regionKey');
|