@brimble/models 2.3.5 → 2.3.6

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.
@@ -107,6 +107,7 @@ const projectSchema = new mongoose_1.Schema({
107
107
  type: Number,
108
108
  default: 3,
109
109
  },
110
+ nomadJobId: String,
110
111
  specs: Object,
111
112
  last_requested: mongoose_1.Schema.Types.Date,
112
113
  isPaused: Boolean,
@@ -24,6 +24,7 @@ export interface IProject extends Document {
24
24
  outputDirectory: string;
25
25
  user_id: IUser;
26
26
  monitor_id: string;
27
+ nomadJobId: string;
27
28
  repo: {
28
29
  name: string;
29
30
  full_name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "2.3.5",
3
+ "version": "2.3.6",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/project/index.ts CHANGED
@@ -107,6 +107,7 @@ const projectSchema = new Schema(
107
107
  type: Number,
108
108
  default: 3,
109
109
  },
110
+ nomadJobId: String,
110
111
  specs: Object,
111
112
  last_requested: Schema.Types.Date,
112
113
  isPaused: Boolean,
@@ -25,6 +25,7 @@ export interface IProject extends Document {
25
25
  outputDirectory: string;
26
26
  user_id: IUser;
27
27
  monitor_id: string;
28
+ nomadJobId: string;
28
29
  repo: {
29
30
  name: string;
30
31
  full_name: string;