@brimble/models 3.0.9 → 3.1.1

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/framework.js CHANGED
@@ -18,6 +18,11 @@ const frameworkSchema = new mongoose_1.Schema({
18
18
  type: String,
19
19
  required: true,
20
20
  },
21
+ supported: {
22
+ type: Boolean,
23
+ required: false,
24
+ default: true
25
+ },
21
26
  tagline: {
22
27
  type: String,
23
28
  required: false,
@@ -5,6 +5,7 @@ export interface IFramework extends Document {
5
5
  demo?: string;
6
6
  logo: string;
7
7
  tagline?: string;
8
+ supported: boolean;
8
9
  description?: string;
9
10
  website: string;
10
11
  envPrefix?: string;
package/framework.ts CHANGED
@@ -19,6 +19,11 @@ const frameworkSchema: Schema = new Schema(
19
19
  type: String,
20
20
  required: true,
21
21
  },
22
+ supported: {
23
+ type: Boolean,
24
+ required: false,
25
+ default: true
26
+ },
22
27
  tagline: {
23
28
  type: String,
24
29
  required: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.0.9",
3
+ "version": "3.1.1",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -6,6 +6,7 @@ export interface IFramework extends Document {
6
6
  demo?: string;
7
7
  logo: string;
8
8
  tagline?: string;
9
+ supported: boolean;
9
10
  description?: string;
10
11
  website: string;
11
12
  envPrefix?: string;