tango-api-schema 2.2.143 → 2.2.144
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
|
@@ -210,6 +210,16 @@ const checklistconfigSchema = new mongoose.Schema({
|
|
|
210
210
|
type:Array
|
|
211
211
|
},
|
|
212
212
|
},
|
|
213
|
+
alertType: {
|
|
214
|
+
mobile: {
|
|
215
|
+
type: Boolean,
|
|
216
|
+
default: true
|
|
217
|
+
},
|
|
218
|
+
web: {
|
|
219
|
+
type: Boolean,
|
|
220
|
+
default: false
|
|
221
|
+
}
|
|
222
|
+
},
|
|
213
223
|
storeOpenClose:{
|
|
214
224
|
buffer: {
|
|
215
225
|
openTime:{
|
|
@@ -141,6 +141,16 @@ const processedchecklistconfigSchema = new mongoose.Schema({
|
|
|
141
141
|
type:Array
|
|
142
142
|
},
|
|
143
143
|
},
|
|
144
|
+
alertType: {
|
|
145
|
+
mobile: {
|
|
146
|
+
type: Boolean,
|
|
147
|
+
default: true
|
|
148
|
+
},
|
|
149
|
+
web: {
|
|
150
|
+
type: Boolean,
|
|
151
|
+
default: false
|
|
152
|
+
}
|
|
153
|
+
},
|
|
144
154
|
storeOpenClose:{
|
|
145
155
|
buffer: {
|
|
146
156
|
openTime:{
|