@brimble/models 3.8.121 → 3.8.123

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.
@@ -364,6 +364,11 @@ const projectSchema = new mongoose_1.Schema({
364
364
  type: String,
365
365
  required: false
366
366
  },
367
+ sendReport: {
368
+ type: Boolean,
369
+ default: false,
370
+ required: false
371
+ },
367
372
  volumeMount: {
368
373
  type: String,
369
374
  required: false,
package/dist/server.js CHANGED
@@ -96,6 +96,11 @@ const serverSchema = new mongoose_1.Schema({
96
96
  type: String,
97
97
  required: false,
98
98
  },
99
+ force_deactivation: {
100
+ type: Boolean,
101
+ required: false,
102
+ default: false
103
+ },
99
104
  meta: {
100
105
  type: Object,
101
106
  default: {},
@@ -44,6 +44,7 @@ export interface IProject extends Document {
44
44
  ip: string;
45
45
  dir: string;
46
46
  tlsEnabled: boolean;
47
+ sendReport: boolean;
47
48
  pgbouncerEnabled: boolean;
48
49
  pgbouncerConfig?: IPgBouncerConfig | null;
49
50
  tlsEnabledAt?: Date | null;
@@ -8,6 +8,7 @@ export interface IServer extends Document {
8
8
  ipv6?: string;
9
9
  domain?: string;
10
10
  node_id: string;
11
+ force_deactivation: string;
11
12
  userId: mongoose.Types.ObjectId;
12
13
  teamId?: mongoose.Types.ObjectId;
13
14
  ip_address: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.8.121",
3
+ "version": "3.8.123",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",