@brimble/models 3.8.161 → 3.8.163

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/db-image.js CHANGED
@@ -52,6 +52,10 @@ const dbImageSchema = new mongoose_1.Schema({
52
52
  type: Number,
53
53
  required: true,
54
54
  },
55
+ httpPort: {
56
+ type: Number,
57
+ required: false,
58
+ },
55
59
  ha: {
56
60
  type: Boolean,
57
61
  required: false,
@@ -95,6 +99,16 @@ const dbImageSchema = new mongoose_1.Schema({
95
99
  type: Array,
96
100
  default: [],
97
101
  },
102
+ httpTitle: {
103
+ type: String,
104
+ required: false,
105
+ default: "",
106
+ },
107
+ httpSubtext: {
108
+ type: String,
109
+ required: false,
110
+ default: "",
111
+ },
98
112
  protocol: {
99
113
  required: true,
100
114
  type: mongoose_1.Schema.Types.Mixed,
@@ -19,6 +19,7 @@ export interface IDbImage extends Document {
19
19
  analytics: boolean;
20
20
  has_port: boolean;
21
21
  port: number;
22
+ httpPort?: number;
22
23
  volumePath: string;
23
24
  protocol: string | string[];
24
25
  tls_enabled: boolean;
@@ -26,6 +27,8 @@ export interface IDbImage extends Document {
26
27
  workbench: boolean;
27
28
  workbench_mode: WorkbenchMode;
28
29
  workbench_password: boolean;
30
+ httpTitle: string;
31
+ httpSubtext: string;
29
32
  params: Record<any, any>;
30
33
  recommendations: Array<{
31
34
  cpu: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimble/models",
3
- "version": "3.8.161",
3
+ "version": "3.8.163",
4
4
  "description": "Brimble models",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",