@brimble/models 3.8.92 → 3.8.94

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.
@@ -85,6 +85,7 @@ const projectSchema = new mongoose_1.Schema({
85
85
  buildCommand: String,
86
86
  startCommand: String,
87
87
  outputDirectory: String,
88
+ runtimeVersions: Object,
88
89
  repo: Object,
89
90
  rootDir: String,
90
91
  isPrivate: {
@@ -95,6 +96,10 @@ const projectSchema = new mongoose_1.Schema({
95
96
  type: Boolean,
96
97
  default: false
97
98
  },
99
+ pgbouncerEnabled: {
100
+ type: Boolean,
101
+ default: false,
102
+ },
98
103
  tlsEnabledAt: {
99
104
  type: Date,
100
105
  default: null,
@@ -12,6 +12,7 @@ import { IAutoScalingGroup } from "../auto-scaling-group";
12
12
  import { IProjectEnvironment } from "../project-environment";
13
13
  import { IRegion } from "../region";
14
14
  import { IVolume } from "../volume";
15
+ export type RuntimeVersions = Record<string, string>;
15
16
  export interface IProject extends Document {
16
17
  name: string;
17
18
  healthCheckPath?: string;
@@ -31,6 +32,7 @@ export interface IProject extends Document {
31
32
  ip: string;
32
33
  dir: string;
33
34
  tlsEnabled: boolean;
35
+ pgbouncerEnabled: boolean;
34
36
  tlsEnabledAt?: Date | null;
35
37
  tlsCaObjectKey?: string | null;
36
38
  tlsServerCertExpiresAt?: Date | null;
@@ -43,6 +45,7 @@ export interface IProject extends Document {
43
45
  buildCommand: string;
44
46
  startCommand: string;
45
47
  outputDirectory: string;
48
+ runtimeVersions?: RuntimeVersions | null;
46
49
  workBenchEnabled: boolean;
47
50
  user_id: IUser;
48
51
  monitor_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.8.92",
3
+ "version": "3.8.94",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",