@brimble/models 3.8.156 → 3.8.157
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 +1 -9
- package/dist/enum/index.d.ts +1 -2
- package/dist/enum/index.js +0 -1
- package/dist/types/db-image.d.ts +1 -3
- package/package.json +1 -1
package/dist/db-image.js
CHANGED
|
@@ -36,10 +36,6 @@ const dbImageSchema = new mongoose_1.Schema({
|
|
|
36
36
|
type: Boolean,
|
|
37
37
|
default: true,
|
|
38
38
|
},
|
|
39
|
-
restore_supported: {
|
|
40
|
-
type: Boolean,
|
|
41
|
-
default: true,
|
|
42
|
-
},
|
|
43
39
|
has_port: {
|
|
44
40
|
type: Boolean,
|
|
45
41
|
default: true,
|
|
@@ -67,10 +63,6 @@ const dbImageSchema = new mongoose_1.Schema({
|
|
|
67
63
|
enum: Object.values(enum_1.WorkbenchMode),
|
|
68
64
|
required: false,
|
|
69
65
|
},
|
|
70
|
-
workbench_password: {
|
|
71
|
-
type: Boolean,
|
|
72
|
-
default: true,
|
|
73
|
-
},
|
|
74
66
|
volumePath: {
|
|
75
67
|
type: String,
|
|
76
68
|
required: true,
|
|
@@ -93,7 +85,7 @@ const dbImageSchema = new mongoose_1.Schema({
|
|
|
93
85
|
},
|
|
94
86
|
protocol: {
|
|
95
87
|
required: true,
|
|
96
|
-
type:
|
|
88
|
+
type: String,
|
|
97
89
|
},
|
|
98
90
|
tls_enabled: {
|
|
99
91
|
type: Boolean,
|
package/dist/enum/index.d.ts
CHANGED
|
@@ -206,8 +206,7 @@ export declare enum DatabaseEngine {
|
|
|
206
206
|
MongoDB = "mongodb",
|
|
207
207
|
Redis = "redis",
|
|
208
208
|
WordPress = "wordpress",
|
|
209
|
-
SQLite = "sqlite"
|
|
210
|
-
DuckDB = "duckdb"
|
|
209
|
+
SQLite = "sqlite"
|
|
211
210
|
}
|
|
212
211
|
export declare enum EmailDeadLetterStatus {
|
|
213
212
|
PENDING = "pending",
|
package/dist/enum/index.js
CHANGED
|
@@ -245,7 +245,6 @@ var DatabaseEngine;
|
|
|
245
245
|
DatabaseEngine["Redis"] = "redis";
|
|
246
246
|
DatabaseEngine["WordPress"] = "wordpress";
|
|
247
247
|
DatabaseEngine["SQLite"] = "sqlite";
|
|
248
|
-
DatabaseEngine["DuckDB"] = "duckdb";
|
|
249
248
|
})(DatabaseEngine || (exports.DatabaseEngine = DatabaseEngine = {}));
|
|
250
249
|
var EmailDeadLetterStatus;
|
|
251
250
|
(function (EmailDeadLetterStatus) {
|
package/dist/types/db-image.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ export interface IDbImage extends Document {
|
|
|
11
11
|
is_available: boolean;
|
|
12
12
|
is_default: boolean;
|
|
13
13
|
backup_supported: boolean;
|
|
14
|
-
restore_supported?: boolean;
|
|
15
14
|
image: string;
|
|
16
15
|
free: boolean;
|
|
17
16
|
erd: boolean;
|
|
@@ -19,12 +18,11 @@ export interface IDbImage extends Document {
|
|
|
19
18
|
has_port: boolean;
|
|
20
19
|
port: number;
|
|
21
20
|
volumePath: string;
|
|
22
|
-
protocol: string
|
|
21
|
+
protocol: string;
|
|
23
22
|
tls_enabled: boolean;
|
|
24
23
|
ha: boolean;
|
|
25
24
|
workbench: boolean;
|
|
26
25
|
workbench_mode: WorkbenchMode;
|
|
27
|
-
workbench_password?: boolean;
|
|
28
26
|
params: Record<any, any>;
|
|
29
27
|
recommendations?: Array<{
|
|
30
28
|
cpu: string;
|