@dhyasama/totem-models 6.10.0 → 6.10.2
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/lib/Deal.js +2 -0
- package/package.json +1 -1
- package/.npmignore +0 -14
- package/package-lock.json +0 -1829
package/lib/Deal.js
CHANGED
|
@@ -19,6 +19,8 @@ module.exports = function(mongoose, config) {
|
|
|
19
19
|
|
|
20
20
|
action: { type: String, trim: true },
|
|
21
21
|
|
|
22
|
+
reminder: { type: Date },
|
|
23
|
+
|
|
22
24
|
sources: [{
|
|
23
25
|
person: { type: Schema.ObjectId, ref: 'Person', required: true },
|
|
24
26
|
type: { type: String, enum: ['Cold Inbound', 'Cold Outbound', 'Met at Event', 'Was Referred', 'Other'], required: true }
|
package/package.json
CHANGED