tango-api-schema 2.0.89 → 2.0.91
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 +1 -1
- package/schema/client.model.js +5 -2
- package/schema/store.model.js +0 -4
package/package.json
CHANGED
package/schema/client.model.js
CHANGED
|
@@ -196,7 +196,10 @@ const client = new mongoose.Schema(
|
|
|
196
196
|
enum:[1,2,3,4,5,6,8,9,10,11,12],
|
|
197
197
|
default:1
|
|
198
198
|
},
|
|
199
|
-
|
|
199
|
+
emailAlert:{
|
|
200
|
+
type: Boolean,
|
|
201
|
+
default: false
|
|
202
|
+
}
|
|
200
203
|
},
|
|
201
204
|
reportConfigs: {
|
|
202
205
|
report: {
|
|
@@ -406,7 +409,7 @@ const client = new mongoose.Schema(
|
|
|
406
409
|
type: Array,
|
|
407
410
|
default: [ '*' ],
|
|
408
411
|
},
|
|
409
|
-
}
|
|
412
|
+
}
|
|
410
413
|
},
|
|
411
414
|
{
|
|
412
415
|
strict: true,
|
package/schema/store.model.js
CHANGED