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