@dynamatix/cat-shared 0.0.118 → 0.0.119

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.
@@ -31,8 +31,9 @@ const documentSchema = new mongoose.Schema({
31
31
  type: String,
32
32
  required: false
33
33
  },
34
- status: { // doc current status (pending, approved, rejected, ...)
35
- type: String,
34
+ statusLid: { // doc current status lookup id (pending, approved, rejected, ...)
35
+ type: mongoose.Schema.Types.ObjectId,
36
+ ref: "Lookup",
36
37
  required: false
37
38
  },
38
39
  fileSize: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamatix/cat-shared",
3
- "version": "0.0.118",
3
+ "version": "0.0.119",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"