tango-api-schema 2.2.39 → 2.2.41

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.2.39",
3
+ "version": "2.2.41",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -3,12 +3,10 @@ import mongoose from 'mongoose';
3
3
  const checklistassignconfigSchema = new mongoose.Schema({
4
4
  store_id: {
5
5
  type: String,
6
- required:true,
7
6
  default:''
8
7
  },
9
8
  storeName: {
10
9
  type: String,
11
- required:true,
12
10
  default:''
13
11
  },
14
12
  userId: {
@@ -63,7 +61,16 @@ const checklistassignconfigSchema = new mongoose.Schema({
63
61
  },
64
62
  sendNotification:{
65
63
  type:Boolean,
66
- default:false,
64
+ default:false,
65
+ },
66
+ clusterName:{
67
+ type:String,
68
+ },
69
+ teamName:{
70
+ type:String
71
+ },
72
+ assignId:{
73
+ type:mongoose.Types.ObjectId
67
74
  }
68
75
  },
69
76
  {
@@ -48,6 +48,9 @@ const planoComplianceSchema = new mongoose.Schema(
48
48
  type:Date,
49
49
  required:true
50
50
  },
51
+ planoMappingId:{
52
+ type: mongoose.Types.ObjectId,
53
+ },
51
54
  },
52
55
  {
53
56
  strict: true,