shuttlepro-shared 1.3.93 → 1.3.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.
@@ -15,7 +15,7 @@ const notificationSettingsRepository = require("./notificationSettings.repositor
15
15
  const customerProfileRepository = require("./customerProfile.repository");
16
16
  const customerTimelineRepository = require("./customerTimeline.repository");
17
17
  const shopRepository = require("./shop.repository");
18
-
18
+ const interactiveRepository = require("./interactive.repository");
19
19
  exports.module = {
20
20
  workspaceRepository,
21
21
  integrationRepository,
@@ -34,4 +34,5 @@ exports.module = {
34
34
  customerProfileRepository,
35
35
  customerTimelineRepository,
36
36
  shopRepository,
37
+ interactiveRepository,
37
38
  };
@@ -61,6 +61,9 @@ const AutomationAction = new Schema({
61
61
  deleteComment: {
62
62
  enabled: { type: Boolean, default: false },
63
63
  },
64
+ hideComment: {
65
+ enabled: { type: Boolean, default: false },
66
+ },
64
67
  closeChat: {
65
68
  enabled: { type: Boolean, default: false },
66
69
  },
package/models.js CHANGED
@@ -43,6 +43,7 @@ const FormTemplate = require("./models/FormTemplate");
43
43
  const GoogleClientInfo = require("./models/GoogleClientInfo");
44
44
  const GoogleCredentials = require("./models/GoogleCredentials");
45
45
  const Integration = require("./models/Integration");
46
+ const Interactive = require("./models/Interactive");
46
47
  const InternalComments = require("./models/InternalComments");
47
48
  const InternalThreads = require("./models/InternalThreads");
48
49
  const JobDesign = require("./models/JobDesign");
@@ -151,6 +152,7 @@ module.exports = {
151
152
  GoogleClientInfo,
152
153
  GoogleCredentials,
153
154
  Integration,
155
+ Interactive,
154
156
  InternalComments,
155
157
  InternalThreads,
156
158
  JobDesign,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.3.93",
3
+ "version": "1.3.95",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {