@brimble/models 3.8.25 → 3.8.27

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.
@@ -234,6 +234,10 @@ const projectSchema = new mongoose_1.Schema({
234
234
  type: String,
235
235
  default: null,
236
236
  },
237
+ persistent_mount_path: {
238
+ type: String,
239
+ required: false
240
+ },
237
241
  volumeMount: {
238
242
  type: String,
239
243
  required: false,
@@ -29,6 +29,7 @@ export interface IProject extends Document {
29
29
  dir: string;
30
30
  tlsEnabled: boolean;
31
31
  dbImage: IDbImage;
32
+ persistent_mount_path: string;
32
33
  installCommand: string;
33
34
  buildCommand: string;
34
35
  startCommand: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.8.25",
3
+ "version": "3.8.27",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/project/index.ts CHANGED
@@ -234,6 +234,10 @@ const projectSchema = new Schema(
234
234
  type: String,
235
235
  default: null,
236
236
  },
237
+ persistent_mount_path: {
238
+ type: String,
239
+ required: false
240
+ },
237
241
  volumeMount: {
238
242
  type: String,
239
243
  required: false,
@@ -30,6 +30,7 @@ export interface IProject extends Document {
30
30
  dir: string;
31
31
  tlsEnabled: boolean;
32
32
  dbImage: IDbImage;
33
+ persistent_mount_path: string;
33
34
  installCommand: string;
34
35
  buildCommand: string;
35
36
  startCommand: string;