tango-api-schema 1.0.60 → 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.60",
3
+ "version": "1.0.62",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -6,8 +6,12 @@ const financeSchema = new mongoose.Schema(
6
6
  brandName: {
7
7
  type: String
8
8
  },
9
- brandIndex: {
10
- type: Number,
9
+ dateString:{
10
+ type:String
11
+ },
12
+ dateIso:{
13
+ type:Date,
14
+ default:new Date()
11
15
  },
12
16
  clientId: {
13
17
  type: String,
@@ -37,6 +41,12 @@ const financeSchema = new mongoose.Schema(
37
41
  type:Boolean,
38
42
  default:false
39
43
  },
44
+ activeStores:{
45
+ type:Number
46
+ },
47
+ totalStores:{
48
+ type:Number
49
+ },
40
50
  stores: [
41
51
  {
42
52
  store: {
@@ -46,25 +56,30 @@ const financeSchema = new mongoose.Schema(
46
56
  storeId: {
47
57
  type: String
48
58
  },
49
- active: {
59
+ storeName: {
50
60
  type: String
51
61
  },
62
+ active: {
63
+ type: Boolean
64
+ },
52
65
  deployedStatus: {
53
- type: Boolean,
54
- default: false,
66
+ type: Boolean
55
67
  },
56
68
  isdeletedstore: {
57
- type: Boolean,
58
- default: false,
69
+ type: Boolean
59
70
  },
60
- firstFileDate: {
71
+ processfirstFileDate: {
61
72
  type: Date,
62
73
  },
63
- edgeFileDate:{
74
+ edgefirstFileDate:{
64
75
  type: Date,
65
76
  },
77
+ Date:{
78
+ type:Date
79
+ },
66
80
  daysDifference:{
67
- type:Number
81
+ type:Number,
82
+ default:0
68
83
  },
69
84
  dataProcess: {
70
85
  type: String,