@brimble/models 2.4.81 → 2.4.82

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.
@@ -80,11 +80,15 @@ const projectSchema = new mongoose_1.Schema({
80
80
  },
81
81
  passwordEnabled: {
82
82
  type: Boolean,
83
- default: false,
83
+ default: false
84
+ },
85
+ backupEnabled: {
86
+ type: Boolean,
87
+ default: false
84
88
  },
85
89
  disabled: {
86
90
  type: Boolean,
87
- default: false,
91
+ default: false
88
92
  },
89
93
  password: {
90
94
  type: String,
package/dist/server.js CHANGED
@@ -50,6 +50,7 @@ const serverSchema = new mongoose_1.Schema({
50
50
  required: true,
51
51
  },
52
52
  tag: String,
53
+ domain: String,
53
54
  specifications: {
54
55
  type: Object,
55
56
  default: {},
@@ -12,6 +12,7 @@ import { IAutoScalingGroup } from "../auto-scaling-group";
12
12
  export interface IProject extends Document {
13
13
  name: string;
14
14
  healthCheckPath?: string;
15
+ backupEnabled: boolean;
15
16
  domains: Array<IDomain>;
16
17
  environments: Array<IEnv>;
17
18
  uuid: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "2.4.81",
3
+ "version": "2.4.82",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/project/index.ts CHANGED
@@ -80,11 +80,15 @@ const projectSchema = new Schema(
80
80
  },
81
81
  passwordEnabled: {
82
82
  type: Boolean,
83
- default: false,
83
+ default: false
84
+ },
85
+ backupEnabled: {
86
+ type: Boolean,
87
+ default: false
84
88
  },
85
89
  disabled: {
86
90
  type: Boolean,
87
- default: false,
91
+ default: false
88
92
  },
89
93
  password: {
90
94
  type: String,
package/server.ts CHANGED
@@ -51,6 +51,7 @@ const serverSchema = new Schema(
51
51
  required: true,
52
52
  },
53
53
  tag: String,
54
+ domain: String,
54
55
  specifications: {
55
56
  type: Object,
56
57
  default: {},
@@ -13,6 +13,7 @@ import { IAutoScalingGroup } from "../auto-scaling-group";
13
13
  export interface IProject extends Document {
14
14
  name: string;
15
15
  healthCheckPath?: string;
16
+ backupEnabled: boolean;
16
17
  domains: Array<IDomain>;
17
18
  environments: Array<IEnv>;
18
19
  uuid: number;