shuttlepro-shared 1.4.93 → 1.4.95

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.
@@ -235,6 +235,7 @@ const workspaceSchema = new mongoose.Schema(
235
235
  },
236
236
  isDeleted: { type: Boolean, default: false },
237
237
  isPaymentDue: { type: Boolean, default: false },
238
+ isPaymentClosable: { type: Boolean, default: false },
238
239
  ticketsByConversation: { type: Boolean, default: false },
239
240
  businessHours: {
240
241
  startTime: { type: String, default: "" },
@@ -370,6 +371,10 @@ const workspaceSchema = new mongoose.Schema(
370
371
  type: Boolean,
371
372
  default: false,
372
373
  },
374
+ autoSubmitResolutionType: {
375
+ type: Boolean,
376
+ default: false,
377
+ },
373
378
  },
374
379
  { timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
375
380
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.4.93",
3
+ "version": "1.4.95",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {