@brimble/models 2.6.1 → 2.6.2

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.
@@ -145,6 +145,10 @@ const projectSchema = new mongoose_1.Schema({
145
145
  type: Boolean,
146
146
  default: false,
147
147
  },
148
+ authEnabled: {
149
+ type: Boolean,
150
+ default: false,
151
+ },
148
152
  uri: {
149
153
  type: String,
150
154
  default: null,
@@ -49,6 +49,7 @@ export interface IProject extends Document {
49
49
  maintenance: boolean;
50
50
  passwordEnabled: boolean;
51
51
  disabled: boolean;
52
+ authEnabled: boolean;
52
53
  password: string | null;
53
54
  deployedInCluster: boolean;
54
55
  screenshot: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/project/index.ts CHANGED
@@ -145,6 +145,10 @@ const projectSchema = new Schema(
145
145
  type: Boolean,
146
146
  default: false,
147
147
  },
148
+ authEnabled: {
149
+ type: Boolean,
150
+ default: false,
151
+ },
148
152
  uri: {
149
153
  type: String,
150
154
  default: null,
@@ -50,6 +50,7 @@ export interface IProject extends Document {
50
50
  maintenance: boolean;
51
51
  passwordEnabled: boolean;
52
52
  disabled: boolean;
53
+ authEnabled: boolean;
53
54
  password: string | null;
54
55
  deployedInCluster: boolean;
55
56
  screenshot: {