tango-api-schema 2.0.81 → 2.0.83

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.81",
3
+ "version": "2.0.83",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -24,6 +24,12 @@ let pricingSchema = new mongoose.Schema(
24
24
  },
25
25
  featureStoreCount: {
26
26
  type: Number,
27
+ },
28
+ storeRange:{
29
+ type:String
30
+ },
31
+ basePrice:{
32
+ type:Number
27
33
  }
28
34
  }
29
35
  ]
@@ -49,6 +49,12 @@ const invoiceSchema = new mongoose.Schema(
49
49
  paymentReferenceId: {
50
50
  type:String
51
51
  },
52
+ fromDate:{
53
+ type:Date
54
+ },
55
+ toDate:{
56
+ type:Date
57
+ },
52
58
  },{
53
59
  strict: true,
54
60
  versionKey: false,
@@ -43,6 +43,26 @@ const workStationModel = new Schema(
43
43
  trim: true,
44
44
  enum: [ 'x32', 'x64' ],
45
45
  },
46
+ triggerProcessId:{
47
+ type: String,
48
+ trim: true,
49
+ },
50
+ isRestartRequired:{
51
+ type: Boolean,
52
+ default: false,
53
+ },
54
+ deleteInterval:{
55
+ type: Number,
56
+ trim: true,
57
+ },
58
+ deleteExe:{
59
+ type: Boolean,
60
+ default: false,
61
+ },
62
+ isSocketEnable:{
63
+ type: Boolean,
64
+ default: false,
65
+ },
46
66
  },
47
67
  {
48
68
  strict: true,