shuttlepro-shared 1.4.86 → 1.4.88

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.
@@ -110,8 +110,6 @@ 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 },
115
113
  },
116
114
  { timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
117
115
  );
@@ -234,6 +234,7 @@ const workspaceSchema = new mongoose.Schema(
234
234
  default: 30,
235
235
  },
236
236
  isDeleted: { type: Boolean, default: false },
237
+ isPaymentDue: { type: Boolean, default: false },
237
238
  ticketsByConversation: { type: Boolean, default: false },
238
239
  businessHours: {
239
240
  startTime: { type: String, default: "" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.4.86",
3
+ "version": "1.4.88",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {