tango-api-schema 2.6.50 → 2.6.52
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 +268 -268
- package/package.json +1 -1
- package/schema/bankTransaction.model.js +94 -94
- package/schema/billing.model.js +135 -135
- package/schema/estimate.model.js +89 -89
- package/schema/invoice.model.js +156 -156
- package/schema/paymentAccount.model.js +60 -60
- package/schema/paymentReminder.model.js +46 -46
- package/schema/purchaseOrder.model.js +59 -59
- package/schema/recurringFlagTracker.model.js +92 -92
- package/schema/storeLayout.model.js +5 -0
- package/schema/tangoTicket.model.js +15 -1
- package/schema/transaction.model.js +54 -54
|
@@ -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);
|
|
@@ -95,6 +95,11 @@ const storeLayoutSchema = new mongoose.Schema( {
|
|
|
95
95
|
type: Array,
|
|
96
96
|
default: [],
|
|
97
97
|
},
|
|
98
|
+
// KissFlow project item identifier (set via createCADPlanoKISSFLOW cadCreation step).
|
|
99
|
+
// Request field is `projectItemId`; stored here as `kissflowProjectItemId`.
|
|
100
|
+
kissflowProjectItemId:{
|
|
101
|
+
type: String,
|
|
102
|
+
},
|
|
98
103
|
},
|
|
99
104
|
{
|
|
100
105
|
strict: true,
|
|
@@ -13,7 +13,7 @@ const tangoTickets = new mongoose.Schema(
|
|
|
13
13
|
},
|
|
14
14
|
issueType: {
|
|
15
15
|
type: String,
|
|
16
|
-
enum: ['infra', 'mat', 'highcount', 'lowcount', 'installation']
|
|
16
|
+
enum: ['infra', 'mat', 'highcount', 'lowcount', 'installation', 'cameraanglechange', 'ipchange', 'resolutionchange']
|
|
17
17
|
},
|
|
18
18
|
productModule: {
|
|
19
19
|
type: String,
|
|
@@ -74,6 +74,20 @@ const tangoTickets = new mongoose.Schema(
|
|
|
74
74
|
type: String
|
|
75
75
|
},
|
|
76
76
|
},
|
|
77
|
+
cameraAngleChange: {
|
|
78
|
+
changeType: { type: String },
|
|
79
|
+
streamName: { type: String },
|
|
80
|
+
cameraId: { type: String },
|
|
81
|
+
cameraName: { type: String },
|
|
82
|
+
zone: { type: String },
|
|
83
|
+
reason: { type: String },
|
|
84
|
+
expectedImage: { type: String },
|
|
85
|
+
actualImage: { type: String },
|
|
86
|
+
expectedResolution: { type: String },
|
|
87
|
+
actualResolution: { type: String },
|
|
88
|
+
registeredIp: { type: String },
|
|
89
|
+
currentIp: { type: String },
|
|
90
|
+
},
|
|
77
91
|
ticketDetails: {
|
|
78
92
|
matStatus:{
|
|
79
93
|
type: String,
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
import mongoose from 'mongoose';
|
|
2
|
-
|
|
3
|
-
const transactionSchema = new mongoose.Schema(
|
|
4
|
-
{
|
|
5
|
-
clientId: {
|
|
6
|
-
type: String
|
|
7
|
-
},
|
|
8
|
-
orderId: {
|
|
9
|
-
type: String
|
|
10
|
-
},
|
|
11
|
-
paymentId: {
|
|
12
|
-
type: String
|
|
13
|
-
},
|
|
14
|
-
debtType: {
|
|
15
|
-
type: String,
|
|
16
|
-
enum: [ 'wallet', 'razor' ],
|
|
17
|
-
},
|
|
18
|
-
billingDate: {
|
|
19
|
-
type: Date
|
|
20
|
-
},
|
|
21
|
-
invoice: {
|
|
22
|
-
type: String
|
|
23
|
-
},
|
|
24
|
-
groupName: {
|
|
25
|
-
type: String
|
|
26
|
-
},
|
|
27
|
-
groupId: {
|
|
28
|
-
type: mongoose.Types.ObjectId
|
|
29
|
-
},
|
|
30
|
-
amount: {
|
|
31
|
-
type: Number
|
|
32
|
-
},
|
|
33
|
-
currency: {
|
|
34
|
-
type: String,
|
|
35
|
-
enum: [ 'dollar', 'inr', 'singaporedollar', 'euro', 'aed' ],
|
|
36
|
-
},
|
|
37
|
-
transactionType: {
|
|
38
|
-
type: String,
|
|
39
|
-
enum: [ 'credit', 'debt' ],
|
|
40
|
-
},
|
|
41
|
-
balanceCredit: {
|
|
42
|
-
type: Number
|
|
43
|
-
},
|
|
44
|
-
balanceCreditCurrency: {
|
|
45
|
-
type: String,
|
|
46
|
-
enum: [ 'dollar', 'inr', 'singaporedollar', 'euro', 'aed' ],
|
|
47
|
-
},
|
|
48
|
-
}, {
|
|
49
|
-
strict: true,
|
|
50
|
-
versionKey: false,
|
|
51
|
-
timestamps: true,
|
|
52
|
-
}
|
|
53
|
-
)
|
|
54
|
-
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
|
|
3
|
+
const transactionSchema = new mongoose.Schema(
|
|
4
|
+
{
|
|
5
|
+
clientId: {
|
|
6
|
+
type: String
|
|
7
|
+
},
|
|
8
|
+
orderId: {
|
|
9
|
+
type: String
|
|
10
|
+
},
|
|
11
|
+
paymentId: {
|
|
12
|
+
type: String
|
|
13
|
+
},
|
|
14
|
+
debtType: {
|
|
15
|
+
type: String,
|
|
16
|
+
enum: [ 'wallet', 'razor' ],
|
|
17
|
+
},
|
|
18
|
+
billingDate: {
|
|
19
|
+
type: Date
|
|
20
|
+
},
|
|
21
|
+
invoice: {
|
|
22
|
+
type: String
|
|
23
|
+
},
|
|
24
|
+
groupName: {
|
|
25
|
+
type: String
|
|
26
|
+
},
|
|
27
|
+
groupId: {
|
|
28
|
+
type: mongoose.Types.ObjectId
|
|
29
|
+
},
|
|
30
|
+
amount: {
|
|
31
|
+
type: Number
|
|
32
|
+
},
|
|
33
|
+
currency: {
|
|
34
|
+
type: String,
|
|
35
|
+
enum: [ 'dollar', 'inr', 'singaporedollar', 'euro', 'aed' ],
|
|
36
|
+
},
|
|
37
|
+
transactionType: {
|
|
38
|
+
type: String,
|
|
39
|
+
enum: [ 'credit', 'debt' ],
|
|
40
|
+
},
|
|
41
|
+
balanceCredit: {
|
|
42
|
+
type: Number
|
|
43
|
+
},
|
|
44
|
+
balanceCreditCurrency: {
|
|
45
|
+
type: String,
|
|
46
|
+
enum: [ 'dollar', 'inr', 'singaporedollar', 'euro', 'aed' ],
|
|
47
|
+
},
|
|
48
|
+
}, {
|
|
49
|
+
strict: true,
|
|
50
|
+
versionKey: false,
|
|
51
|
+
timestamps: true,
|
|
52
|
+
}
|
|
53
|
+
)
|
|
54
|
+
|
|
55
55
|
export default mongoose.model('transaction', transactionSchema);
|