tango-api-schema 3.0.2 → 3.0.3
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 +197 -197
- package/package.json +25 -26
- package/schema/aiTicketConfig.js +42 -42
- package/schema/appVersion.js +39 -39
- package/schema/applicationDefault.model.js +24 -24
- package/schema/assignAudit.model.js +55 -55
- package/schema/auditConfig.model.js +41 -41
- package/schema/auditLogs.model.js +77 -77
- package/schema/auditStoreData.model.js +56 -56
- package/schema/auditUserWallet.model.js +98 -98
- package/schema/auditUsers.model.js +53 -53
- package/schema/authentication.model.js +27 -27
- package/schema/basePricing.model.js +28 -28
- package/schema/billing.model.js +99 -99
- package/schema/binaryAudit.model.js +84 -84
- package/schema/camera.model.js +211 -211
- package/schema/checklistassignconfig.js +90 -90
- package/schema/checklistconfig.js +256 -256
- package/schema/checklistlog.js +113 -113
- package/schema/checklistquestionconfig.js +153 -153
- package/schema/client.model.js +675 -675
- package/schema/clientRequest.model.js +38 -38
- package/schema/cluster.model.js +70 -70
- package/schema/controlCenterTemplateList.model.js +39 -39
- package/schema/countryCodes.model.js +26 -26
- package/schema/countryCurrency.model.js +17 -17
- package/schema/dailyPricing.model.js +86 -86
- package/schema/dataMismatchDraft.model.js +22 -22
- package/schema/domain.js +18 -18
- package/schema/download.js +124 -124
- package/schema/edgeAppVersion.model.js +33 -33
- package/schema/edgeappAuth.model.js +30 -30
- package/schema/emailers.model.js +45 -45
- package/schema/empDetectionOutput.model.js +67 -67
- package/schema/externalParameter.model.js +241 -241
- package/schema/eyetest.model.js +18 -18
- package/schema/fitting.model.js +52 -52
- package/schema/fixtureConfig.model.js +202 -206
- package/schema/fixtureLibrary.model.js +164 -164
- package/schema/fixtureShelf.model.js +72 -72
- package/schema/group.model.js +34 -34
- package/schema/hotjar.model.js +11 -11
- package/schema/infraReason.model.js +44 -44
- package/schema/internalAuth.model.js +35 -35
- package/schema/invoice.model.js +104 -104
- package/schema/ipLogs.model.js +37 -37
- package/schema/lead.model.js +76 -76
- package/schema/lenskartEmployeeMapping.model.js +63 -63
- package/schema/liveConnection.model.js +54 -54
- package/schema/locusOrder.model.js +154 -154
- package/schema/locusOrderUser.model.js +14 -14
- package/schema/loginAttempt.model.js +26 -26
- package/schema/lowcountReason.model.js +44 -44
- package/schema/mailOnlyuser.model.js +42 -42
- package/schema/matLog.model.js +26 -26
- package/schema/nobBilling.model.js +41 -41
- package/schema/notification.model.js +33 -33
- package/schema/otp.model.js +25 -25
- package/schema/paymentAccount.model.js +60 -60
- package/schema/planoCompliance.model.js +62 -62
- package/schema/planoCrestLog.model.js +17 -17
- package/schema/planoMapping.model.js +56 -56
- package/schema/planoProductCategoryDetails.model.js +33 -33
- package/schema/planoProductDetail.model.js +63 -63
- package/schema/planoQrConversionRequest.model.js +61 -61
- package/schema/planoStaticData.model.js +17 -17
- package/schema/planoTaskCompliance.model.js +244 -244
- package/schema/planoVmDetail.model.js +63 -63
- package/schema/planogram.model.js +66 -66
- package/schema/processedchecklist.js +249 -249
- package/schema/processedchecklistconfig.js +187 -187
- package/schema/processeddetection.js +85 -85
- package/schema/quality.model.js +57 -57
- package/schema/report.model.js +30 -30
- package/schema/revopConfig.model.js +19 -19
- package/schema/standaredRole.model.js +76 -76
- package/schema/store.model.js +381 -381
- package/schema/storeAudit.model.js +62 -62
- package/schema/storeEmpDetection.model.js +62 -62
- package/schema/storeFixture.model.js +206 -206
- package/schema/storeLayout.model.js +66 -66
- package/schema/streaming.model.js +29 -29
- package/schema/suspiciousActivity.model.js +54 -54
- package/schema/tagging.model.js +42 -42
- package/schema/tangoTicket.model.js +210 -210
- package/schema/taskAssign.model.js +87 -87
- package/schema/taskConfig.model.js +118 -118
- package/schema/taskProcessed.model.js +248 -248
- package/schema/taskProcessedConfig.model.js +131 -131
- package/schema/taskQuestion.model.js +46 -46
- package/schema/teams.model.js +46 -46
- package/schema/transaction.model.js +54 -54
- package/schema/traxApprover.model.js +35 -35
- package/schema/traxAuditData.model.js +64 -64
- package/schema/user.model.js +139 -139
- package/schema/userAssignedStore.model.js +41 -41
- package/schema/userAudit.model.js +77 -77
- package/schema/userEmpDetection.model.js +83 -83
- package/schema/vmType.model.js +23 -23
- package/schema/workstation.model.js +75 -75
package/index.js
CHANGED
|
@@ -1,198 +1,198 @@
|
|
|
1
|
-
import leadModel from "./schema/lead.model.js";
|
|
2
|
-
import otpModel from "./schema/otp.model.js";
|
|
3
|
-
import storeModel from "./schema/store.model.js";
|
|
4
|
-
import countryCodesModel from "./schema/countryCodes.model.js";
|
|
5
|
-
import clientModel from "./schema/client.model.js";
|
|
6
|
-
import tangoTicketModel from "./schema/tangoTicket.model.js";
|
|
7
|
-
import ipLogModel from "./schema/ipLogs.model.js";
|
|
8
|
-
import userModel from "./schema/user.model.js";
|
|
9
|
-
import edgeAppVersionModel from "./schema/edgeAppVersion.model.js";
|
|
10
|
-
import applicationDefaultModel from "./schema/applicationDefault.model.js";
|
|
11
|
-
import cameraModel from "./schema/camera.model.js";
|
|
12
|
-
import reportModel from "./schema/report.model.js";
|
|
13
|
-
import standaredRoleModel from "./schema/standaredRole.model.js";
|
|
14
|
-
import infraReasonModel from "./schema/infraReason.model.js";
|
|
15
|
-
import groupModel from "./schema/group.model.js";
|
|
16
|
-
import authenticationModel from "./schema/authentication.model.js";
|
|
17
|
-
import userAssignedStoreModel from "./schema/userAssignedStore.model.js";
|
|
18
|
-
import edgeappAuthModel from "./schema/edgeappAuth.model.js";
|
|
19
|
-
import clientRequestModel from "./schema/clientRequest.model.js";
|
|
20
|
-
import basePricingModel from "./schema/basePricing.model.js";
|
|
21
|
-
import invoiceModel from "./schema/invoice.model.js";
|
|
22
|
-
import workstationModel from "./schema/workstation.model.js";
|
|
23
|
-
import dailyPricingModel from "./schema/dailyPricing.model.js";
|
|
24
|
-
import fittingModel from "./schema/fitting.model.js";
|
|
25
|
-
import qualityCheckModel from "./schema/quality.model.js";
|
|
26
|
-
import taggingModel from "./schema/tagging.model.js";
|
|
27
|
-
import userAuditModel from "./schema/userAudit.model.js";
|
|
28
|
-
import storeAuditModel from "./schema/storeAudit.model.js";
|
|
29
|
-
import assignAuditModel from "./schema/assignAudit.model.js";
|
|
30
|
-
import auditStoreDataModel from "./schema/auditStoreData.model.js";
|
|
31
|
-
import matLogModel from "./schema/matLog.model.js";
|
|
32
|
-
import billingModel from "./schema/billing.model.js";
|
|
33
|
-
import auditLogsModel from "./schema/auditLogs.model.js";
|
|
34
|
-
import internalAuthModel from "./schema/internalAuth.model.js";
|
|
35
|
-
import paymentAccountModel from "./schema/paymentAccount.model.js";
|
|
36
|
-
import externalParameterModel from "./schema/externalParameter.model.js";
|
|
37
|
-
import transactionModel from "./schema/transaction.model.js";
|
|
38
|
-
import dataMismatchDraftModel from "./schema/dataMismatchDraft.model.js";
|
|
39
|
-
import traxAuditDataModel from "./schema/traxAuditData.model.js";
|
|
40
|
-
import binaryAuditModel from "./schema/binaryAudit.model.js";
|
|
41
|
-
import userEmpDetectionModel from "./schema/userEmpDetection.model.js";
|
|
42
|
-
import storeEmpDetectionModel from "./schema/storeEmpDetection.model.js";
|
|
43
|
-
import lowcountReasonModel from "./schema/lowcountReason.model.js";
|
|
44
|
-
import auditUserWalletModel from "./schema/auditUserWallet.model.js";
|
|
45
|
-
import mailOnlyuserModel from "./schema/mailOnlyuser.model.js";
|
|
46
|
-
import empDetectionOutputModel from "./schema/empDetectionOutput.model.js";
|
|
47
|
-
import auditUsersModel from "./schema/auditUsers.model.js";
|
|
48
|
-
import clusterModel from "./schema/cluster.model.js";
|
|
49
|
-
import teamsModel from "./schema/teams.model.js";
|
|
50
|
-
import checklistassignconfigModel from "./schema/checklistassignconfig.js";
|
|
51
|
-
import checklistconfigModel from "./schema/checklistconfig.js";
|
|
52
|
-
import checklistlogModel from "./schema/checklistlog.js";
|
|
53
|
-
import checklistquestionconfigModel from "./schema/checklistquestionconfig.js";
|
|
54
|
-
import processedchecklistModel from "./schema/processedchecklist.js";
|
|
55
|
-
import processedchecklistconfigModel from "./schema/processedchecklistconfig.js";
|
|
56
|
-
import processeddetectionModel from "./schema/processeddetection.js";
|
|
57
|
-
import domainModel from "./schema/domain.js";
|
|
58
|
-
import hotjarModel from "./schema/hotjar.model.js";
|
|
59
|
-
import downloadModel from "./schema/download.js";
|
|
60
|
-
import aiTicketConfigModel from "./schema/aiTicketConfig.js";
|
|
61
|
-
import appVersionModel from "./schema/appVersion.js";
|
|
62
|
-
import lenskartEmployeeMappingModel from "./schema/lenskartEmployeeMapping.model.js";
|
|
63
|
-
import locusOrderModel from "./schema/locusOrder.model.js";
|
|
64
|
-
import locusOrderUserModel from "./schema/locusOrderUser.model.js";
|
|
65
|
-
import controleCenterTemplateListModel from "./schema/controlCenterTemplateList.model.js";
|
|
66
|
-
import liveConnectionSchemaModel from './schema/liveConnection.model.js';
|
|
67
|
-
import taskConfigModel from './schema/taskConfig.model.js';
|
|
68
|
-
import taskQuestionModel from './schema/taskQuestion.model.js';
|
|
69
|
-
import taskAssignModel from './schema/taskAssign.model.js';
|
|
70
|
-
import taskProcessedModel from './schema/taskProcessed.model.js';
|
|
71
|
-
import taskProcessedConfigModel from './schema/taskProcessedConfig.model.js';
|
|
72
|
-
import traxApproverModel from './schema/traxApprover.model.js';
|
|
73
|
-
import nobBillingModel from "./schema/nobBilling.model.js";
|
|
74
|
-
import storeLayoutModel from "./schema/storeLayout.model.js";
|
|
75
|
-
import planogramModel from "./schema/planogram.model.js";
|
|
76
|
-
import emailersModel from "./schema/emailers.model.js";
|
|
77
|
-
import planoMappingModel from './schema/planoMapping.model.js';
|
|
78
|
-
import planoProductModel from './schema/planoProductDetail.model.js';
|
|
79
|
-
import planoVmModel from './schema/planoVmDetail.model.js';
|
|
80
|
-
import planoComplianceModel from './schema/planoCompliance.model.js';
|
|
81
|
-
import storeFixtureModel from './schema/storeFixture.model.js';
|
|
82
|
-
import fixtureConfigModel from './schema/fixtureConfig.model.js';
|
|
83
|
-
import fixtureShelfModel from './schema/fixtureShelf.model.js';
|
|
84
|
-
import planoTaskCompliance from './schema/planoTaskCompliance.model.js';
|
|
85
|
-
import planoQrConversionRequest from './schema/planoQrConversionRequest.model.js';
|
|
86
|
-
import planoStaticData from './schema/planoStaticData.model.js';
|
|
87
|
-
import suspiciousActivityModel from "./schema/suspiciousActivity.model.js";
|
|
88
|
-
import auditConfigModel from "./schema/auditConfig.model.js";
|
|
89
|
-
import revopConfigModel from "./schema/revopConfig.model.js";
|
|
90
|
-
import planoCrestLogModel from './schema/planoCrestLog.model.js';
|
|
91
|
-
import countryCurrencyModel from './schema/countryCurrency.model.js';
|
|
92
|
-
import fixtureLibraryModel from './schema/fixtureLibrary.model.js';
|
|
93
|
-
import vmTypeModel from "./schema/vmType.model.js";
|
|
94
|
-
import planoProductCategoryModel from './schema/planoProductCategoryDetails.model.js'
|
|
95
|
-
import streamingModel from './schema/streaming.model.js';
|
|
96
|
-
import loginAttempt from "./schema/loginAttempt.model.js";
|
|
97
|
-
import notification from "./schema/notification.model.js";
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
export default {
|
|
101
|
-
leadModel,
|
|
102
|
-
otpModel,
|
|
103
|
-
storeModel,
|
|
104
|
-
countryCodesModel,
|
|
105
|
-
clientModel,
|
|
106
|
-
tangoTicketModel,
|
|
107
|
-
ipLogModel,
|
|
108
|
-
userModel,
|
|
109
|
-
edgeAppVersionModel,
|
|
110
|
-
applicationDefaultModel,
|
|
111
|
-
cameraModel,
|
|
112
|
-
reportModel,
|
|
113
|
-
standaredRoleModel,
|
|
114
|
-
infraReasonModel,
|
|
115
|
-
groupModel,
|
|
116
|
-
authenticationModel,
|
|
117
|
-
userAssignedStoreModel,
|
|
118
|
-
edgeappAuthModel,
|
|
119
|
-
clientRequestModel,
|
|
120
|
-
basePricingModel,
|
|
121
|
-
invoiceModel,
|
|
122
|
-
workstationModel,
|
|
123
|
-
dailyPricingModel,
|
|
124
|
-
fittingModel,
|
|
125
|
-
qualityCheckModel,
|
|
126
|
-
taggingModel,
|
|
127
|
-
userAuditModel,
|
|
128
|
-
storeAuditModel,
|
|
129
|
-
assignAuditModel,
|
|
130
|
-
auditStoreDataModel,
|
|
131
|
-
matLogModel,
|
|
132
|
-
billingModel,
|
|
133
|
-
auditLogsModel,
|
|
134
|
-
internalAuthModel,
|
|
135
|
-
paymentAccountModel,
|
|
136
|
-
externalParameterModel,
|
|
137
|
-
transactionModel,
|
|
138
|
-
dataMismatchDraftModel,
|
|
139
|
-
traxAuditDataModel,
|
|
140
|
-
binaryAuditModel,
|
|
141
|
-
userEmpDetectionModel,
|
|
142
|
-
storeEmpDetectionModel,
|
|
143
|
-
lowcountReasonModel,
|
|
144
|
-
auditUserWalletModel,
|
|
145
|
-
mailOnlyuserModel,
|
|
146
|
-
empDetectionOutputModel,
|
|
147
|
-
auditUsersModel,
|
|
148
|
-
clusterModel,
|
|
149
|
-
teamsModel,
|
|
150
|
-
checklistassignconfigModel,
|
|
151
|
-
checklistconfigModel,
|
|
152
|
-
checklistlogModel,
|
|
153
|
-
checklistquestionconfigModel,
|
|
154
|
-
processedchecklistModel,
|
|
155
|
-
processedchecklistconfigModel,
|
|
156
|
-
processeddetectionModel,
|
|
157
|
-
domainModel,
|
|
158
|
-
hotjarModel,
|
|
159
|
-
downloadModel,
|
|
160
|
-
aiTicketConfigModel,
|
|
161
|
-
appVersionModel,
|
|
162
|
-
lenskartEmployeeMappingModel,
|
|
163
|
-
locusOrderModel,
|
|
164
|
-
locusOrderUserModel,
|
|
165
|
-
controleCenterTemplateListModel,
|
|
166
|
-
liveConnectionSchemaModel,
|
|
167
|
-
taskConfigModel,
|
|
168
|
-
taskQuestionModel,
|
|
169
|
-
taskAssignModel,
|
|
170
|
-
taskProcessedModel,
|
|
171
|
-
taskProcessedConfigModel,
|
|
172
|
-
traxApproverModel,
|
|
173
|
-
nobBillingModel,
|
|
174
|
-
storeLayoutModel,
|
|
175
|
-
planogramModel,
|
|
176
|
-
emailersModel,
|
|
177
|
-
planoMappingModel,
|
|
178
|
-
planoProductModel,
|
|
179
|
-
planoComplianceModel,
|
|
180
|
-
storeFixtureModel,
|
|
181
|
-
fixtureConfigModel,
|
|
182
|
-
fixtureShelfModel,
|
|
183
|
-
planoTaskCompliance,
|
|
184
|
-
planoQrConversionRequest,
|
|
185
|
-
planoStaticData,
|
|
186
|
-
suspiciousActivityModel,
|
|
187
|
-
auditConfigModel,
|
|
188
|
-
revopConfigModel,
|
|
189
|
-
planoCrestLogModel,
|
|
190
|
-
countryCurrencyModel,
|
|
191
|
-
fixtureLibraryModel,
|
|
192
|
-
planoVmModel,
|
|
193
|
-
vmTypeModel,
|
|
194
|
-
planoProductCategoryModel,
|
|
195
|
-
streamingModel,
|
|
196
|
-
loginAttempt,
|
|
197
|
-
notification
|
|
1
|
+
import leadModel from "./schema/lead.model.js";
|
|
2
|
+
import otpModel from "./schema/otp.model.js";
|
|
3
|
+
import storeModel from "./schema/store.model.js";
|
|
4
|
+
import countryCodesModel from "./schema/countryCodes.model.js";
|
|
5
|
+
import clientModel from "./schema/client.model.js";
|
|
6
|
+
import tangoTicketModel from "./schema/tangoTicket.model.js";
|
|
7
|
+
import ipLogModel from "./schema/ipLogs.model.js";
|
|
8
|
+
import userModel from "./schema/user.model.js";
|
|
9
|
+
import edgeAppVersionModel from "./schema/edgeAppVersion.model.js";
|
|
10
|
+
import applicationDefaultModel from "./schema/applicationDefault.model.js";
|
|
11
|
+
import cameraModel from "./schema/camera.model.js";
|
|
12
|
+
import reportModel from "./schema/report.model.js";
|
|
13
|
+
import standaredRoleModel from "./schema/standaredRole.model.js";
|
|
14
|
+
import infraReasonModel from "./schema/infraReason.model.js";
|
|
15
|
+
import groupModel from "./schema/group.model.js";
|
|
16
|
+
import authenticationModel from "./schema/authentication.model.js";
|
|
17
|
+
import userAssignedStoreModel from "./schema/userAssignedStore.model.js";
|
|
18
|
+
import edgeappAuthModel from "./schema/edgeappAuth.model.js";
|
|
19
|
+
import clientRequestModel from "./schema/clientRequest.model.js";
|
|
20
|
+
import basePricingModel from "./schema/basePricing.model.js";
|
|
21
|
+
import invoiceModel from "./schema/invoice.model.js";
|
|
22
|
+
import workstationModel from "./schema/workstation.model.js";
|
|
23
|
+
import dailyPricingModel from "./schema/dailyPricing.model.js";
|
|
24
|
+
import fittingModel from "./schema/fitting.model.js";
|
|
25
|
+
import qualityCheckModel from "./schema/quality.model.js";
|
|
26
|
+
import taggingModel from "./schema/tagging.model.js";
|
|
27
|
+
import userAuditModel from "./schema/userAudit.model.js";
|
|
28
|
+
import storeAuditModel from "./schema/storeAudit.model.js";
|
|
29
|
+
import assignAuditModel from "./schema/assignAudit.model.js";
|
|
30
|
+
import auditStoreDataModel from "./schema/auditStoreData.model.js";
|
|
31
|
+
import matLogModel from "./schema/matLog.model.js";
|
|
32
|
+
import billingModel from "./schema/billing.model.js";
|
|
33
|
+
import auditLogsModel from "./schema/auditLogs.model.js";
|
|
34
|
+
import internalAuthModel from "./schema/internalAuth.model.js";
|
|
35
|
+
import paymentAccountModel from "./schema/paymentAccount.model.js";
|
|
36
|
+
import externalParameterModel from "./schema/externalParameter.model.js";
|
|
37
|
+
import transactionModel from "./schema/transaction.model.js";
|
|
38
|
+
import dataMismatchDraftModel from "./schema/dataMismatchDraft.model.js";
|
|
39
|
+
import traxAuditDataModel from "./schema/traxAuditData.model.js";
|
|
40
|
+
import binaryAuditModel from "./schema/binaryAudit.model.js";
|
|
41
|
+
import userEmpDetectionModel from "./schema/userEmpDetection.model.js";
|
|
42
|
+
import storeEmpDetectionModel from "./schema/storeEmpDetection.model.js";
|
|
43
|
+
import lowcountReasonModel from "./schema/lowcountReason.model.js";
|
|
44
|
+
import auditUserWalletModel from "./schema/auditUserWallet.model.js";
|
|
45
|
+
import mailOnlyuserModel from "./schema/mailOnlyuser.model.js";
|
|
46
|
+
import empDetectionOutputModel from "./schema/empDetectionOutput.model.js";
|
|
47
|
+
import auditUsersModel from "./schema/auditUsers.model.js";
|
|
48
|
+
import clusterModel from "./schema/cluster.model.js";
|
|
49
|
+
import teamsModel from "./schema/teams.model.js";
|
|
50
|
+
import checklistassignconfigModel from "./schema/checklistassignconfig.js";
|
|
51
|
+
import checklistconfigModel from "./schema/checklistconfig.js";
|
|
52
|
+
import checklistlogModel from "./schema/checklistlog.js";
|
|
53
|
+
import checklistquestionconfigModel from "./schema/checklistquestionconfig.js";
|
|
54
|
+
import processedchecklistModel from "./schema/processedchecklist.js";
|
|
55
|
+
import processedchecklistconfigModel from "./schema/processedchecklistconfig.js";
|
|
56
|
+
import processeddetectionModel from "./schema/processeddetection.js";
|
|
57
|
+
import domainModel from "./schema/domain.js";
|
|
58
|
+
import hotjarModel from "./schema/hotjar.model.js";
|
|
59
|
+
import downloadModel from "./schema/download.js";
|
|
60
|
+
import aiTicketConfigModel from "./schema/aiTicketConfig.js";
|
|
61
|
+
import appVersionModel from "./schema/appVersion.js";
|
|
62
|
+
import lenskartEmployeeMappingModel from "./schema/lenskartEmployeeMapping.model.js";
|
|
63
|
+
import locusOrderModel from "./schema/locusOrder.model.js";
|
|
64
|
+
import locusOrderUserModel from "./schema/locusOrderUser.model.js";
|
|
65
|
+
import controleCenterTemplateListModel from "./schema/controlCenterTemplateList.model.js";
|
|
66
|
+
import liveConnectionSchemaModel from './schema/liveConnection.model.js';
|
|
67
|
+
import taskConfigModel from './schema/taskConfig.model.js';
|
|
68
|
+
import taskQuestionModel from './schema/taskQuestion.model.js';
|
|
69
|
+
import taskAssignModel from './schema/taskAssign.model.js';
|
|
70
|
+
import taskProcessedModel from './schema/taskProcessed.model.js';
|
|
71
|
+
import taskProcessedConfigModel from './schema/taskProcessedConfig.model.js';
|
|
72
|
+
import traxApproverModel from './schema/traxApprover.model.js';
|
|
73
|
+
import nobBillingModel from "./schema/nobBilling.model.js";
|
|
74
|
+
import storeLayoutModel from "./schema/storeLayout.model.js";
|
|
75
|
+
import planogramModel from "./schema/planogram.model.js";
|
|
76
|
+
import emailersModel from "./schema/emailers.model.js";
|
|
77
|
+
import planoMappingModel from './schema/planoMapping.model.js';
|
|
78
|
+
import planoProductModel from './schema/planoProductDetail.model.js';
|
|
79
|
+
import planoVmModel from './schema/planoVmDetail.model.js';
|
|
80
|
+
import planoComplianceModel from './schema/planoCompliance.model.js';
|
|
81
|
+
import storeFixtureModel from './schema/storeFixture.model.js';
|
|
82
|
+
import fixtureConfigModel from './schema/fixtureConfig.model.js';
|
|
83
|
+
import fixtureShelfModel from './schema/fixtureShelf.model.js';
|
|
84
|
+
import planoTaskCompliance from './schema/planoTaskCompliance.model.js';
|
|
85
|
+
import planoQrConversionRequest from './schema/planoQrConversionRequest.model.js';
|
|
86
|
+
import planoStaticData from './schema/planoStaticData.model.js';
|
|
87
|
+
import suspiciousActivityModel from "./schema/suspiciousActivity.model.js";
|
|
88
|
+
import auditConfigModel from "./schema/auditConfig.model.js";
|
|
89
|
+
import revopConfigModel from "./schema/revopConfig.model.js";
|
|
90
|
+
import planoCrestLogModel from './schema/planoCrestLog.model.js';
|
|
91
|
+
import countryCurrencyModel from './schema/countryCurrency.model.js';
|
|
92
|
+
import fixtureLibraryModel from './schema/fixtureLibrary.model.js';
|
|
93
|
+
import vmTypeModel from "./schema/vmType.model.js";
|
|
94
|
+
import planoProductCategoryModel from './schema/planoProductCategoryDetails.model.js'
|
|
95
|
+
import streamingModel from './schema/streaming.model.js';
|
|
96
|
+
import loginAttempt from "./schema/loginAttempt.model.js";
|
|
97
|
+
import notification from "./schema/notification.model.js";
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
export default {
|
|
101
|
+
leadModel,
|
|
102
|
+
otpModel,
|
|
103
|
+
storeModel,
|
|
104
|
+
countryCodesModel,
|
|
105
|
+
clientModel,
|
|
106
|
+
tangoTicketModel,
|
|
107
|
+
ipLogModel,
|
|
108
|
+
userModel,
|
|
109
|
+
edgeAppVersionModel,
|
|
110
|
+
applicationDefaultModel,
|
|
111
|
+
cameraModel,
|
|
112
|
+
reportModel,
|
|
113
|
+
standaredRoleModel,
|
|
114
|
+
infraReasonModel,
|
|
115
|
+
groupModel,
|
|
116
|
+
authenticationModel,
|
|
117
|
+
userAssignedStoreModel,
|
|
118
|
+
edgeappAuthModel,
|
|
119
|
+
clientRequestModel,
|
|
120
|
+
basePricingModel,
|
|
121
|
+
invoiceModel,
|
|
122
|
+
workstationModel,
|
|
123
|
+
dailyPricingModel,
|
|
124
|
+
fittingModel,
|
|
125
|
+
qualityCheckModel,
|
|
126
|
+
taggingModel,
|
|
127
|
+
userAuditModel,
|
|
128
|
+
storeAuditModel,
|
|
129
|
+
assignAuditModel,
|
|
130
|
+
auditStoreDataModel,
|
|
131
|
+
matLogModel,
|
|
132
|
+
billingModel,
|
|
133
|
+
auditLogsModel,
|
|
134
|
+
internalAuthModel,
|
|
135
|
+
paymentAccountModel,
|
|
136
|
+
externalParameterModel,
|
|
137
|
+
transactionModel,
|
|
138
|
+
dataMismatchDraftModel,
|
|
139
|
+
traxAuditDataModel,
|
|
140
|
+
binaryAuditModel,
|
|
141
|
+
userEmpDetectionModel,
|
|
142
|
+
storeEmpDetectionModel,
|
|
143
|
+
lowcountReasonModel,
|
|
144
|
+
auditUserWalletModel,
|
|
145
|
+
mailOnlyuserModel,
|
|
146
|
+
empDetectionOutputModel,
|
|
147
|
+
auditUsersModel,
|
|
148
|
+
clusterModel,
|
|
149
|
+
teamsModel,
|
|
150
|
+
checklistassignconfigModel,
|
|
151
|
+
checklistconfigModel,
|
|
152
|
+
checklistlogModel,
|
|
153
|
+
checklistquestionconfigModel,
|
|
154
|
+
processedchecklistModel,
|
|
155
|
+
processedchecklistconfigModel,
|
|
156
|
+
processeddetectionModel,
|
|
157
|
+
domainModel,
|
|
158
|
+
hotjarModel,
|
|
159
|
+
downloadModel,
|
|
160
|
+
aiTicketConfigModel,
|
|
161
|
+
appVersionModel,
|
|
162
|
+
lenskartEmployeeMappingModel,
|
|
163
|
+
locusOrderModel,
|
|
164
|
+
locusOrderUserModel,
|
|
165
|
+
controleCenterTemplateListModel,
|
|
166
|
+
liveConnectionSchemaModel,
|
|
167
|
+
taskConfigModel,
|
|
168
|
+
taskQuestionModel,
|
|
169
|
+
taskAssignModel,
|
|
170
|
+
taskProcessedModel,
|
|
171
|
+
taskProcessedConfigModel,
|
|
172
|
+
traxApproverModel,
|
|
173
|
+
nobBillingModel,
|
|
174
|
+
storeLayoutModel,
|
|
175
|
+
planogramModel,
|
|
176
|
+
emailersModel,
|
|
177
|
+
planoMappingModel,
|
|
178
|
+
planoProductModel,
|
|
179
|
+
planoComplianceModel,
|
|
180
|
+
storeFixtureModel,
|
|
181
|
+
fixtureConfigModel,
|
|
182
|
+
fixtureShelfModel,
|
|
183
|
+
planoTaskCompliance,
|
|
184
|
+
planoQrConversionRequest,
|
|
185
|
+
planoStaticData,
|
|
186
|
+
suspiciousActivityModel,
|
|
187
|
+
auditConfigModel,
|
|
188
|
+
revopConfigModel,
|
|
189
|
+
planoCrestLogModel,
|
|
190
|
+
countryCurrencyModel,
|
|
191
|
+
fixtureLibraryModel,
|
|
192
|
+
planoVmModel,
|
|
193
|
+
vmTypeModel,
|
|
194
|
+
planoProductCategoryModel,
|
|
195
|
+
streamingModel,
|
|
196
|
+
loginAttempt,
|
|
197
|
+
notification
|
|
198
198
|
};
|
package/package.json
CHANGED
|
@@ -1,26 +1,25 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tango-api-schema",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "tangoEye model schema",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"test": "echo \"Error: no test specified\" && exit 1",
|
|
9
|
-
"start": "node index.js"
|
|
10
|
-
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://praveen22raj@bitbucket.org/tangoeye-retail/tango-api-schema.git"
|
|
14
|
-
},
|
|
15
|
-
"author": "praveenraj",
|
|
16
|
-
"license": "ISC",
|
|
17
|
-
"bugs": {
|
|
18
|
-
"url": "https://bitbucket.org/tangoeye-retail/tango-api-schema/issues"
|
|
19
|
-
},
|
|
20
|
-
"homepage": "https://bitbucket.org/tangoeye-retail/tango-api-schema#readme",
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"express": "^4.21.1",
|
|
23
|
-
"mongoose": "^7.5.3"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tango-api-schema",
|
|
3
|
+
"version": "3.0.3",
|
|
4
|
+
"description": "tangoEye model schema",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
9
|
+
"start": "node index.js"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://praveen22raj@bitbucket.org/tangoeye-retail/tango-api-schema.git"
|
|
14
|
+
},
|
|
15
|
+
"author": "praveenraj",
|
|
16
|
+
"license": "ISC",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://bitbucket.org/tangoeye-retail/tango-api-schema/issues"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://bitbucket.org/tangoeye-retail/tango-api-schema#readme",
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"express": "^4.21.1",
|
|
23
|
+
"mongoose": "^7.5.3"
|
|
24
|
+
}
|
|
25
|
+
}
|
package/schema/aiTicketConfig.js
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
import mongoose from 'mongoose';
|
|
2
|
-
|
|
3
|
-
const aiTicketConfigSchema = new mongoose.Schema({
|
|
4
|
-
client_id: {
|
|
5
|
-
type: String
|
|
6
|
-
},
|
|
7
|
-
reason: {
|
|
8
|
-
type: String
|
|
9
|
-
},
|
|
10
|
-
from_email: {
|
|
11
|
-
type: String
|
|
12
|
-
},
|
|
13
|
-
to_email: {
|
|
14
|
-
type: String
|
|
15
|
-
},
|
|
16
|
-
description: {
|
|
17
|
-
type: String
|
|
18
|
-
},
|
|
19
|
-
checklistName: {
|
|
20
|
-
type: String
|
|
21
|
-
},
|
|
22
|
-
questionName: {
|
|
23
|
-
type: String
|
|
24
|
-
},
|
|
25
|
-
answerType: {
|
|
26
|
-
type: String
|
|
27
|
-
},
|
|
28
|
-
imageURL: {
|
|
29
|
-
type: String
|
|
30
|
-
},
|
|
31
|
-
requested_date: {
|
|
32
|
-
type: Date,
|
|
33
|
-
default: Date.now
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
strict: true,
|
|
38
|
-
versionKey: false,
|
|
39
|
-
timestamps: true,
|
|
40
|
-
},
|
|
41
|
-
);
|
|
42
|
-
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
|
|
3
|
+
const aiTicketConfigSchema = new mongoose.Schema({
|
|
4
|
+
client_id: {
|
|
5
|
+
type: String
|
|
6
|
+
},
|
|
7
|
+
reason: {
|
|
8
|
+
type: String
|
|
9
|
+
},
|
|
10
|
+
from_email: {
|
|
11
|
+
type: String
|
|
12
|
+
},
|
|
13
|
+
to_email: {
|
|
14
|
+
type: String
|
|
15
|
+
},
|
|
16
|
+
description: {
|
|
17
|
+
type: String
|
|
18
|
+
},
|
|
19
|
+
checklistName: {
|
|
20
|
+
type: String
|
|
21
|
+
},
|
|
22
|
+
questionName: {
|
|
23
|
+
type: String
|
|
24
|
+
},
|
|
25
|
+
answerType: {
|
|
26
|
+
type: String
|
|
27
|
+
},
|
|
28
|
+
imageURL: {
|
|
29
|
+
type: String
|
|
30
|
+
},
|
|
31
|
+
requested_date: {
|
|
32
|
+
type: Date,
|
|
33
|
+
default: Date.now
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
strict: true,
|
|
38
|
+
versionKey: false,
|
|
39
|
+
timestamps: true,
|
|
40
|
+
},
|
|
41
|
+
);
|
|
42
|
+
|
|
43
43
|
export default mongoose.model( 'aiTicketConfig', aiTicketConfigSchema);
|
package/schema/appVersion.js
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import mongoose from 'mongoose';
|
|
2
|
-
|
|
3
|
-
const appVersionSchema = new mongoose.Schema({
|
|
4
|
-
appName:{
|
|
5
|
-
type: String,
|
|
6
|
-
enum: ['android', 'ios'],
|
|
7
|
-
default: "android"
|
|
8
|
-
},
|
|
9
|
-
appVersion:{
|
|
10
|
-
type: String,
|
|
11
|
-
default: ""
|
|
12
|
-
},
|
|
13
|
-
appVersionNo:{
|
|
14
|
-
type: Number,
|
|
15
|
-
default: 0
|
|
16
|
-
},
|
|
17
|
-
forceUpdate:{
|
|
18
|
-
type: Boolean,
|
|
19
|
-
default: false
|
|
20
|
-
},
|
|
21
|
-
createdAt: {
|
|
22
|
-
type: Date,
|
|
23
|
-
default: Date.now
|
|
24
|
-
},
|
|
25
|
-
updatedAt: {
|
|
26
|
-
type: Date,
|
|
27
|
-
default: Date.now
|
|
28
|
-
},
|
|
29
|
-
clientId: {
|
|
30
|
-
type: String,
|
|
31
|
-
},
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
strict: true,
|
|
35
|
-
versionKey: false,
|
|
36
|
-
timestamps: true,
|
|
37
|
-
},
|
|
38
|
-
);
|
|
39
|
-
|
|
1
|
+
import mongoose from 'mongoose';
|
|
2
|
+
|
|
3
|
+
const appVersionSchema = new mongoose.Schema({
|
|
4
|
+
appName:{
|
|
5
|
+
type: String,
|
|
6
|
+
enum: ['android', 'ios'],
|
|
7
|
+
default: "android"
|
|
8
|
+
},
|
|
9
|
+
appVersion:{
|
|
10
|
+
type: String,
|
|
11
|
+
default: ""
|
|
12
|
+
},
|
|
13
|
+
appVersionNo:{
|
|
14
|
+
type: Number,
|
|
15
|
+
default: 0
|
|
16
|
+
},
|
|
17
|
+
forceUpdate:{
|
|
18
|
+
type: Boolean,
|
|
19
|
+
default: false
|
|
20
|
+
},
|
|
21
|
+
createdAt: {
|
|
22
|
+
type: Date,
|
|
23
|
+
default: Date.now
|
|
24
|
+
},
|
|
25
|
+
updatedAt: {
|
|
26
|
+
type: Date,
|
|
27
|
+
default: Date.now
|
|
28
|
+
},
|
|
29
|
+
clientId: {
|
|
30
|
+
type: String,
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
strict: true,
|
|
35
|
+
versionKey: false,
|
|
36
|
+
timestamps: true,
|
|
37
|
+
},
|
|
38
|
+
);
|
|
39
|
+
|
|
40
40
|
export default mongoose.model( 'appVersion', appVersionSchema);
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import { Schema, model } from 'mongoose';
|
|
2
|
-
|
|
3
|
-
const collection = new Schema(
|
|
4
|
-
{
|
|
5
|
-
type: {
|
|
6
|
-
type: String,
|
|
7
|
-
},
|
|
8
|
-
subType: {
|
|
9
|
-
type: String,
|
|
10
|
-
},
|
|
11
|
-
data: {
|
|
12
|
-
type: Object,
|
|
13
|
-
},
|
|
14
|
-
active: {
|
|
15
|
-
type: Boolean,
|
|
16
|
-
},
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
timestamps: true,
|
|
20
|
-
strict: true,
|
|
21
|
-
versionKey: false,
|
|
22
|
-
} );
|
|
23
|
-
|
|
24
|
-
export default model( 'applicationDefault', collection, 'applicationDefault' );
|
|
1
|
+
import { Schema, model } from 'mongoose';
|
|
2
|
+
|
|
3
|
+
const collection = new Schema(
|
|
4
|
+
{
|
|
5
|
+
type: {
|
|
6
|
+
type: String,
|
|
7
|
+
},
|
|
8
|
+
subType: {
|
|
9
|
+
type: String,
|
|
10
|
+
},
|
|
11
|
+
data: {
|
|
12
|
+
type: Object,
|
|
13
|
+
},
|
|
14
|
+
active: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
timestamps: true,
|
|
20
|
+
strict: true,
|
|
21
|
+
versionKey: false,
|
|
22
|
+
} );
|
|
23
|
+
|
|
24
|
+
export default model( 'applicationDefault', collection, 'applicationDefault' );
|