tango-api-schema 2.2.66 → 2.2.68
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
|
@@ -131,7 +131,7 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
131
131
|
checkListType:{
|
|
132
132
|
type:String,
|
|
133
133
|
default:"custom",
|
|
134
|
-
enum: ["storeopenandclose","mobileusagedetection","uniformdetection","custom","customerunattended","staffleftinthemiddle",'eyetest', 'remoteoptometrist', 'storehygienemonitoring']
|
|
134
|
+
enum: ["storeopenandclose","mobileusagedetection","uniformdetection","custom","customerunattended","staffleftinthemiddle",'eyetest', 'remoteoptometrist', 'storehygienemonitoring','queuealert']
|
|
135
135
|
},
|
|
136
136
|
createdAt: {
|
|
137
137
|
type: Date,
|
|
@@ -194,6 +194,10 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
194
194
|
isPlano:{
|
|
195
195
|
type:Boolean
|
|
196
196
|
},
|
|
197
|
+
rawImageUpload: {
|
|
198
|
+
type: Boolean,
|
|
199
|
+
default:false
|
|
200
|
+
},
|
|
197
201
|
},
|
|
198
202
|
{
|
|
199
203
|
strict: true,
|
|
@@ -81,7 +81,7 @@ const processedchecklistSchema = new mongoose.Schema({
|
|
|
81
81
|
checkListType: {
|
|
82
82
|
type: String,
|
|
83
83
|
default: "custom",
|
|
84
|
-
enum: ["storeopenandclose","mobileusagedetection","uniformdetection","custom","customerunattended","staffleftinthemiddle",'eyetest', 'remoteoptometrist', 'storehygienemonitoring']
|
|
84
|
+
enum: ["storeopenandclose","mobileusagedetection","uniformdetection","custom","customerunattended","staffleftinthemiddle",'eyetest', 'remoteoptometrist', 'storehygienemonitoring','queuealert']
|
|
85
85
|
},
|
|
86
86
|
store_id: {
|
|
87
87
|
type: String,
|
|
@@ -212,7 +212,11 @@ const processedchecklistSchema = new mongoose.Schema({
|
|
|
212
212
|
},
|
|
213
213
|
planoType:{
|
|
214
214
|
type: String,
|
|
215
|
-
}
|
|
215
|
+
},
|
|
216
|
+
rawImageUpload: {
|
|
217
|
+
type: Boolean,
|
|
218
|
+
default:false
|
|
219
|
+
},
|
|
216
220
|
},
|
|
217
221
|
{
|
|
218
222
|
strict: true,
|
|
@@ -81,7 +81,7 @@ const processedchecklistconfigSchema = new mongoose.Schema({
|
|
|
81
81
|
checkListType: {
|
|
82
82
|
type: String,
|
|
83
83
|
default: "custom",
|
|
84
|
-
enum: ["storeopenandclose","mobileusagedetection","uniformdetection","custom","customerunattended","staffleftinthemiddle",'eyetest', 'remoteoptometrist', 'storehygienemonitoring']
|
|
84
|
+
enum: ["storeopenandclose","mobileusagedetection","uniformdetection","custom","customerunattended","staffleftinthemiddle",'eyetest', 'remoteoptometrist', 'storehygienemonitoring','queuealert']
|
|
85
85
|
},
|
|
86
86
|
startTime:{
|
|
87
87
|
type:Date
|
|
@@ -117,7 +117,11 @@ const processedchecklistconfigSchema = new mongoose.Schema({
|
|
|
117
117
|
},
|
|
118
118
|
isPlano:{
|
|
119
119
|
type:Boolean,
|
|
120
|
-
},
|
|
120
|
+
},
|
|
121
|
+
rawImageUpload: {
|
|
122
|
+
type: Boolean,
|
|
123
|
+
default:false
|
|
124
|
+
},
|
|
121
125
|
},
|
|
122
126
|
{
|
|
123
127
|
strict: true,
|