tango-api-schema 2.2.65 → 2.2.67

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.65",
3
+ "version": "2.2.67",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -194,6 +194,10 @@ const checklistconfigSchema = new mongoose.Schema({
194
194
  isPlano:{
195
195
  type:Boolean
196
196
  },
197
+ rawImageUpload: {
198
+ type: Boolean,
199
+ default:false
200
+ },
197
201
  },
198
202
  {
199
203
  strict: true,
@@ -44,6 +44,9 @@ const planoQrConversionRequest = new mongoose.Schema(
44
44
  type: String,
45
45
  },
46
46
  },
47
+ receivedQr:{
48
+ type: Array
49
+ }
47
50
  },
48
51
  {
49
52
  strict: true,
@@ -212,7 +212,11 @@ const processedchecklistSchema = new mongoose.Schema({
212
212
  },
213
213
  planoType:{
214
214
  type: String,
215
- }
215
+ },
216
+ rawImageUpload: {
217
+ type: Boolean,
218
+ default:false
219
+ },
216
220
  },
217
221
  {
218
222
  strict: true,
@@ -117,7 +117,11 @@ const processedchecklistconfigSchema = new mongoose.Schema({
117
117
  },
118
118
  isPlano:{
119
119
  type:Boolean,
120
- },
120
+ },
121
+ rawImageUpload: {
122
+ type: Boolean,
123
+ default:false
124
+ },
121
125
  },
122
126
  {
123
127
  strict: true,
@@ -101,6 +101,10 @@ const taskSchema = new mongoose.Schema(
101
101
  default: 'store',
102
102
  enum: ["store", "user", "checklist"]
103
103
  },
104
+ rawImageUpload: {
105
+ type: Boolean,
106
+ default:false
107
+ },
104
108
  },
105
109
  {
106
110
  strict: true,
@@ -204,7 +204,10 @@ const processedTaskSchema = new mongoose.Schema(
204
204
  planoId:{
205
205
  type:mongoose.SchemaTypes.ObjectId,
206
206
  },
207
-
207
+ rawImageUpload: {
208
+ type: Boolean,
209
+ default:false
210
+ },
208
211
  },
209
212
  {
210
213
  strict: true,
@@ -114,6 +114,10 @@ const processestaskconfigSchema = new mongoose.Schema({
114
114
  default: 'store',
115
115
  enum: ["store", "user", "checklist"]
116
116
  },
117
+ rawImageUpload: {
118
+ type: Boolean,
119
+ default:false
120
+ },
117
121
  },
118
122
  {
119
123
  strict: true,