shuttlepro-shared 1.4.92 → 1.4.94

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: "" },
@@ -366,6 +367,10 @@ const workspaceSchema = new mongoose.Schema(
366
367
  type: Boolean,
367
368
  default: false,
368
369
  },
370
+ isOrderConfirmedViaConversation: {
371
+ type: Boolean,
372
+ default: false,
373
+ },
369
374
  },
370
375
  { timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
371
376
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.4.92",
3
+ "version": "1.4.94",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {