@brimble/models 3.8.122 → 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.
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: {},
@@ -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.122",
3
+ "version": "3.8.123",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",