@brimble/models 3.8.128 → 3.8.131

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/dist/db-image.js CHANGED
@@ -73,6 +73,11 @@ const dbImageSchema = new mongoose_1.Schema({
73
73
  required: false,
74
74
  default: false
75
75
  },
76
+ erd: {
77
+ type: Boolean,
78
+ required: false,
79
+ default: false
80
+ },
76
81
  recommendations: {
77
82
  required: false,
78
83
  type: Array,
@@ -315,10 +315,6 @@ const projectSchema = new mongoose_1.Schema({
315
315
  type: String,
316
316
  default: null,
317
317
  },
318
- cronCommandPath: {
319
- type: String,
320
- default: null,
321
- },
322
318
  cronCommand: {
323
319
  type: String,
324
320
  default: null,
@@ -13,6 +13,7 @@ export interface IDbImage extends Document {
13
13
  backup_supported: boolean;
14
14
  image: string;
15
15
  free: boolean;
16
+ erd: boolean;
16
17
  analytics: boolean;
17
18
  has_port: boolean;
18
19
  port: number;
@@ -121,7 +121,6 @@ export interface IProject extends Document {
121
121
  cronEnabled?: boolean;
122
122
  cronExpression?: string | null;
123
123
  cronTimezone?: string | null;
124
- cronCommandPath?: string | null;
125
124
  cronCommand?: string | null;
126
125
  last_backup_url?: string;
127
126
  last_backup_at?: Date;
@@ -9,7 +9,6 @@ export interface IWorkerRun extends Document {
9
9
  namespace: string | null;
10
10
  status: WorkerRunStatus;
11
11
  trigger: WorkerRunTrigger | null;
12
- commandPath: string | null;
13
12
  command: string | null;
14
13
  exitCode: number | null;
15
14
  output: string | null;
@@ -42,10 +42,6 @@ const workerRunSchema = new mongoose_1.Schema({
42
42
  enum: Object.values(enum_1.WorkerRunTrigger),
43
43
  default: null,
44
44
  },
45
- commandPath: {
46
- type: String,
47
- default: null,
48
- },
49
45
  command: {
50
46
  type: String,
51
47
  default: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.8.128",
3
+ "version": "3.8.131",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",