tango-api-schema 2.0.61 → 2.0.63

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.0.61",
3
+ "version": "2.0.63",
4
4
  "description": "tangoEye model schema",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -96,6 +96,12 @@ const collection = new Schema(
96
96
  type: Boolean,
97
97
  default: false,
98
98
  },
99
+ width:{
100
+ type: Number,
101
+ },
102
+ height:{
103
+ type: Number,
104
+ }
99
105
  },
100
106
  {
101
107
  strict: true,
@@ -46,7 +46,8 @@ const client = new mongoose.Schema(
46
46
  },
47
47
  paymentStatus: {
48
48
  type: String,
49
- enum: ['free','trail','paid','unbilled','due'],
49
+ enum: ['free','trial','paid','unbilled','due'],
50
+ default: 'trial'
50
51
  },
51
52
  product: [
52
53
  {
@@ -64,8 +65,8 @@ const client = new mongoose.Schema(
64
65
  },
65
66
  status: {
66
67
  type: String,
67
- enum: ['pending','trail','live'],
68
- default: 'pending'
68
+ enum: ['trial','live'],
69
+ default: 'trial'
69
70
  }
70
71
  }
71
72
  ],
@@ -192,6 +192,9 @@ const store = new mongoose.Schema(
192
192
  },
193
193
  deployed:{
194
194
  type: Boolean,
195
+ },
196
+ serialNumber:{
197
+ type: String,
195
198
  }
196
199
  },
197
200
  spocDetails: [