tango-api-schema 2.5.10 → 2.5.11

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.5.10",
3
+ "version": "2.5.11",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -15,6 +15,10 @@ const planoTaskCompliance = new mongoose.Schema(
15
15
  status:{
16
16
  type:String
17
17
  },
18
+ userAction: {
19
+ type: String,
20
+ enum: ['keepPlano', 'acceptAi']
21
+ },
18
22
  userName: {
19
23
  type: String
20
24
  },
@@ -196,10 +200,6 @@ const planoTaskCompliance = new mongoose.Schema(
196
200
  default: 'pending',
197
201
  enum: ['agree', 'disagree', 'pending']
198
202
  },
199
- userAction: {
200
- type: String,
201
- enum: ['keepPlano', 'acceptAi']
202
- },
203
203
  image: {
204
204
  type: String
205
205
  },