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.
- 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: "" },
|
|
@@ -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
|
);
|