@brimble/models 2.5.7 → 2.5.8
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/project/index.js
CHANGED
|
@@ -170,6 +170,10 @@ const projectSchema = new mongoose_1.Schema({
|
|
|
170
170
|
type: String,
|
|
171
171
|
default: null,
|
|
172
172
|
},
|
|
173
|
+
vaultToken: {
|
|
174
|
+
type: String,
|
|
175
|
+
default: null,
|
|
176
|
+
},
|
|
173
177
|
}, { timestamps: true });
|
|
174
178
|
exports.default = (0, mongoose_1.model)("Project", projectSchema);
|
|
175
179
|
exports.DeletedProject = (0, mongoose_1.model)("DeletedProject", projectSchema);
|
package/package.json
CHANGED
package/project/index.ts
CHANGED