@brimble/models 3.8.79 → 3.8.80

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.
@@ -131,6 +131,11 @@ const projectSchema = new mongoose_1.Schema({
131
131
  type: String,
132
132
  default: null,
133
133
  },
134
+ public: {
135
+ type: Boolean,
136
+ default: true,
137
+ required: false
138
+ },
134
139
  screenshot: {
135
140
  image: String,
136
141
  public_id: String,
package/dist/provider.js CHANGED
@@ -5,6 +5,7 @@ const providerSchema = new mongoose_1.Schema({
5
5
  name: { type: String, required: true },
6
6
  slug: { type: String, required: true, unique: true },
7
7
  logo: { type: String, required: true },
8
+ type: { type: String, required: false },
8
9
  enabled: { type: Boolean, default: true },
9
10
  suffix: { type: String, required: false },
10
11
  });
@@ -30,6 +30,7 @@ export interface IProject extends Document {
30
30
  dir: string;
31
31
  tlsEnabled: boolean;
32
32
  dbImage: IDbImage;
33
+ public: boolean;
33
34
  installCommand: string;
34
35
  buildCommand: string;
35
36
  startCommand: string;
@@ -3,6 +3,7 @@ export interface IProvider extends Document {
3
3
  name: string;
4
4
  slug: string;
5
5
  logo: string;
6
+ type: string;
6
7
  enabled: boolean;
7
8
  suffix: string;
8
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.8.79",
3
+ "version": "3.8.80",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",