tango-api-schema 1.0.61 → 1.0.62

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": "1.0.61",
3
+ "version": "1.0.62",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -41,6 +41,12 @@ const financeSchema = new mongoose.Schema(
41
41
  type:Boolean,
42
42
  default:false
43
43
  },
44
+ activeStores:{
45
+ type:Number
46
+ },
47
+ totalStores:{
48
+ type:Number
49
+ },
44
50
  stores: [
45
51
  {
46
52
  store: {
@@ -50,16 +56,17 @@ const financeSchema = new mongoose.Schema(
50
56
  storeId: {
51
57
  type: String
52
58
  },
53
- active: {
59
+ storeName: {
54
60
  type: String
55
61
  },
62
+ active: {
63
+ type: Boolean
64
+ },
56
65
  deployedStatus: {
57
- type: Boolean,
58
- default: false,
66
+ type: Boolean
59
67
  },
60
68
  isdeletedstore: {
61
- type: Boolean,
62
- default: false,
69
+ type: Boolean
63
70
  },
64
71
  processfirstFileDate: {
65
72
  type: Date,
@@ -70,6 +77,10 @@ const financeSchema = new mongoose.Schema(
70
77
  Date:{
71
78
  type:Date
72
79
  },
80
+ daysDifference:{
81
+ type:Number,
82
+ default:0
83
+ },
73
84
  dataProcess: {
74
85
  type: String,
75
86
  enum: [ 'hold', 'suspend', 'active', 'deActive' ],