shuttlepro-shared 1.4.77 → 1.4.79
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 +4 -0
- package/models.js +2 -0
- package/package.json +1 -1
package/models/Workspace.js
CHANGED
|
@@ -357,6 +357,10 @@ const workspaceSchema = new mongoose.Schema(
|
|
|
357
357
|
tokens: { type: Number, default: 0 },
|
|
358
358
|
limit: { type: Number, default: 0 },
|
|
359
359
|
},
|
|
360
|
+
hideMarketingTemplates: {
|
|
361
|
+
type: Boolean,
|
|
362
|
+
default: false,
|
|
363
|
+
},
|
|
360
364
|
},
|
|
361
365
|
{ timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
|
|
362
366
|
);
|
package/models.js
CHANGED
|
@@ -109,6 +109,7 @@ const Workflow = require("./models/Workflow");
|
|
|
109
109
|
const Workspace = require("./models/Workspace");
|
|
110
110
|
const Shop = require("./models/Shop");
|
|
111
111
|
const Call = require("./models/Call");
|
|
112
|
+
const Webhook = require("./models/Webhook");
|
|
112
113
|
|
|
113
114
|
module.exports = {
|
|
114
115
|
Activity,
|
|
@@ -222,4 +223,5 @@ module.exports = {
|
|
|
222
223
|
WorkflowRun,
|
|
223
224
|
Shop,
|
|
224
225
|
Call,
|
|
226
|
+
Webhook,
|
|
225
227
|
};
|