tango-api-schema 2.0.40 → 2.0.42

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/index.js CHANGED
@@ -43,5 +43,7 @@ export default {
43
43
  groupModel,
44
44
  authenticationModel,
45
45
  userAssignedStoreModel,
46
- edgeappAuthModel
46
+ edgeappAuthModel,
47
+ clientRequestModel,
48
+ basePricingModel,
47
49
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-api-schema",
3
- "version": "2.0.40",
3
+ "version": "2.0.42",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -14,7 +14,11 @@ const group = new mongoose.Schema(
14
14
  },
15
15
  description: {
16
16
  type: String
17
- }
17
+ },
18
+ isActive: {
19
+ type: Boolean,
20
+ default: true
21
+ }
18
22
  },
19
23
  {
20
24
  strict: true,