tango-api-schema 2.0.107 → 2.0.109

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.0.107",
3
+ "version": "2.0.109",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -215,6 +215,9 @@ const client = new mongoose.Schema(
215
215
  type: Number,
216
216
  default: 3
217
217
  },
218
+ matFileProgress:{
219
+ type: Array,
220
+ }
218
221
  }
219
222
  },
220
223
  reportConfigs: {
@@ -11,6 +11,36 @@ let pricingSchema = new mongoose.Schema(
11
11
  storeId: {
12
12
  type: String,
13
13
  },
14
+ store:{
15
+ type:mongoose.Types.ObjectId
16
+ },
17
+ storeName:{
18
+ type:String
19
+ },
20
+ active:{
21
+ type:Boolean
22
+ },
23
+ deployedStatus: {
24
+ type:Boolean
25
+ },
26
+ edgefirstFileDate:{
27
+ type:Date
28
+ },
29
+ date: {
30
+ type:Date
31
+ },
32
+ processfirstFileDate:{
33
+ type:Date
34
+ },
35
+ daysDifference:{
36
+ type:Number
37
+ },
38
+ camera:{
39
+ type:Array
40
+ },
41
+ cameraCount:{
42
+ type:Number
43
+ },
14
44
  products: [
15
45
  {
16
46
  productName: {
@@ -35,6 +65,21 @@ let pricingSchema = new mongoose.Schema(
35
65
  ]
36
66
  }
37
67
  ],
68
+ accountType:{
69
+ type:String
70
+ },
71
+ active:{
72
+ type:Boolean
73
+ },
74
+ activeStores:{
75
+ type:Number
76
+ },
77
+ brandName:{
78
+ type:String
79
+ },
80
+ proRate:{
81
+ type:String
82
+ },
38
83
  dateString:{
39
84
  type:String
40
85
  },