tango-api-schema 2.0.112 → 2.0.114
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
package/schema/client.model.js
CHANGED
|
@@ -323,6 +323,14 @@ const client = new mongoose.Schema(
|
|
|
323
323
|
type: Boolean,
|
|
324
324
|
default: false,
|
|
325
325
|
},
|
|
326
|
+
isExcludedArea:{
|
|
327
|
+
type:Boolean,
|
|
328
|
+
default:true
|
|
329
|
+
},
|
|
330
|
+
updateFeatureConfig:{
|
|
331
|
+
type:Boolean,
|
|
332
|
+
default:true
|
|
333
|
+
},
|
|
326
334
|
},
|
|
327
335
|
document: {
|
|
328
336
|
addressProof: {
|
|
@@ -17,10 +17,10 @@ let pricingSchema = new mongoose.Schema(
|
|
|
17
17
|
storeName:{
|
|
18
18
|
type:String
|
|
19
19
|
},
|
|
20
|
-
|
|
21
|
-
type:
|
|
20
|
+
status:{
|
|
21
|
+
type:String
|
|
22
22
|
},
|
|
23
|
-
|
|
23
|
+
firstFile: {
|
|
24
24
|
type:Boolean
|
|
25
25
|
},
|
|
26
26
|
edgefirstFileDate:{
|
|
@@ -46,21 +46,9 @@ let pricingSchema = new mongoose.Schema(
|
|
|
46
46
|
productName: {
|
|
47
47
|
type: String,
|
|
48
48
|
},
|
|
49
|
-
status: {
|
|
50
|
-
type: String,
|
|
51
|
-
},
|
|
52
|
-
price: {
|
|
53
|
-
type: Number,
|
|
54
|
-
},
|
|
55
|
-
featureStoreCount: {
|
|
56
|
-
type: Number,
|
|
57
|
-
},
|
|
58
49
|
storeRange:{
|
|
59
50
|
type:String
|
|
60
51
|
},
|
|
61
|
-
basePrice:{
|
|
62
|
-
type:Number
|
|
63
|
-
}
|
|
64
52
|
}
|
|
65
53
|
]
|
|
66
54
|
}
|
|
@@ -68,8 +56,8 @@ let pricingSchema = new mongoose.Schema(
|
|
|
68
56
|
accountType:{
|
|
69
57
|
type:String
|
|
70
58
|
},
|
|
71
|
-
|
|
72
|
-
type:
|
|
59
|
+
status:{
|
|
60
|
+
type:String
|
|
73
61
|
},
|
|
74
62
|
activeStores:{
|
|
75
63
|
type:Number
|