@brimble/models 2.5.5 → 2.5.7
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 +4 -0
- package/dist/subscription.js +4 -0
- package/dist/types/project/index.d.ts +1 -0
- package/dist/types/subscription.d.ts +1 -0
- package/package.json +1 -1
- package/project/index.ts +4 -0
- package/subscription.ts +4 -0
- package/types/project/index.ts +1 -0
- package/types/subscription.ts +1 -0
package/dist/project/index.js
CHANGED
|
@@ -166,6 +166,10 @@ 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
|
+
},
|
|
169
173
|
}, { timestamps: true });
|
|
170
174
|
exports.default = (0, mongoose_1.model)("Project", projectSchema);
|
|
171
175
|
exports.DeletedProject = (0, mongoose_1.model)("DeletedProject", projectSchema);
|
package/dist/subscription.js
CHANGED
|
@@ -3,6 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const mongoose_1 = require("mongoose");
|
|
4
4
|
const enum_1 = require("./enum");
|
|
5
5
|
const subscriptionSchema = new mongoose_1.Schema({
|
|
6
|
+
initial_start_date: {
|
|
7
|
+
type: String,
|
|
8
|
+
required: true,
|
|
9
|
+
},
|
|
6
10
|
team_id: {
|
|
7
11
|
type: mongoose_1.Schema.Types.ObjectId,
|
|
8
12
|
ref: "Team",
|
package/package.json
CHANGED
package/project/index.ts
CHANGED
package/subscription.ts
CHANGED
package/types/project/index.ts
CHANGED