@brimble/models 3.8.90 → 3.8.92
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
package/dist/project/index.js
CHANGED
|
@@ -169,6 +169,14 @@ const projectSchema = new mongoose_1.Schema({
|
|
|
169
169
|
enum: Object.values(enum_1.PROJECT_DISABLED_BY),
|
|
170
170
|
default: null,
|
|
171
171
|
},
|
|
172
|
+
isDeleted: {
|
|
173
|
+
type: Boolean,
|
|
174
|
+
default: false,
|
|
175
|
+
},
|
|
176
|
+
deletedAt: {
|
|
177
|
+
type: Date,
|
|
178
|
+
default: null,
|
|
179
|
+
},
|
|
172
180
|
password: {
|
|
173
181
|
type: String,
|
|
174
182
|
default: null,
|
package/dist/types/db-image.d.ts
CHANGED
|
@@ -70,6 +70,8 @@ export interface IProject extends Document {
|
|
|
70
70
|
disabled: boolean;
|
|
71
71
|
disabled_at?: Date | null;
|
|
72
72
|
disabled_by?: PROJECT_DISABLED_BY | null;
|
|
73
|
+
isDeleted: boolean;
|
|
74
|
+
deletedAt?: Date | null;
|
|
73
75
|
authEnabled: boolean;
|
|
74
76
|
password: string | null;
|
|
75
77
|
deployedInCluster: boolean;
|