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.
- package/models/Workspace.js +5 -0
- package/package.json +1 -1
package/models/Workspace.js
CHANGED
|
@@ -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
|
);
|