shuttlepro-shared 1.4.85 → 1.4.86

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/models/Card.js CHANGED
@@ -71,6 +71,10 @@ const cardSchema = new mongoose.Schema(
71
71
  completionDate: {
72
72
  type: String,
73
73
  },
74
+ ticketMovedTime: {
75
+ type: Date,
76
+ default: null,
77
+ },
74
78
  updatedDate: {
75
79
  type: Date,
76
80
  default: Date.now,
@@ -110,6 +110,8 @@ const conversationSchema = new mongoose.Schema(
110
110
  cc: { type: String, default: "" },
111
111
  bcc: { type: String, default: "" },
112
112
  isReplied: { type: Boolean, default: false },
113
+ isWorkflow: { type: Boolean, default: false },
114
+ workflowId: { type: Schema.Types.ObjectId, ref: "UserWorkflow", default: null },
113
115
  },
114
116
  { timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
115
117
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.4.85",
3
+ "version": "1.4.86",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/dump.rdb DELETED
Binary file