fintalk-pkg 2.7.3 → 2.7.5
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/model/Customer.js +4 -1
- package/package.json +1 -1
package/model/Customer.js
CHANGED
|
@@ -133,9 +133,12 @@ var CustomerSchema = new Schema({
|
|
|
133
133
|
noAgentsEvent: String,
|
|
134
134
|
nextEvent: String,
|
|
135
135
|
locale: String,
|
|
136
|
+
postbackHeaders: Object,
|
|
137
|
+
postbackUrl: String,
|
|
136
138
|
},
|
|
137
139
|
{
|
|
138
|
-
timestamps: true
|
|
140
|
+
timestamps: true,
|
|
141
|
+
saveUnknown: ['postbackHeaders']
|
|
139
142
|
});
|
|
140
143
|
|
|
141
144
|
/* creditCards: [{ type: mongoose.Schema.Types.ObjectId, ref: "CreditCard" }],*/
|