tango-api-schema 2.1.38 → 2.1.39

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.1.38",
3
+ "version": "2.1.39",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -74,10 +74,7 @@ const user = new mongoose.Schema(
74
74
  },
75
75
  isEdit: {
76
76
  type: Boolean,
77
- },
78
- isDelete: {
79
- type: Boolean,
80
- },
77
+ },
81
78
  },
82
79
  ],
83
80
  },
@@ -109,6 +106,9 @@ const user = new mongoose.Schema(
109
106
  employeeId:{
110
107
  type:String
111
108
  },
109
+ assignedStores:{
110
+ type:Array
111
+ }
112
112
  },
113
113
  {
114
114
  strict: true,