shuttlepro-shared 1.3.58 → 1.3.60

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.
@@ -40,6 +40,10 @@ const AutomationAction = new Schema({
40
40
  templateId: descriptionJoin,
41
41
  sendTicketNumber: descriptionJoin,
42
42
  alreadyTicketTemplateId: descriptionJoin,
43
+ columnId: {
44
+ type: mongoose.Schema.Types.ObjectId,
45
+ ref: "Column",
46
+ },
43
47
  },
44
48
  commentReplyPrivately: {
45
49
  enabled: { type: Boolean, default: false },
@@ -95,7 +99,6 @@ const AutomationAction = new Schema({
95
99
  enabled: { type: Boolean, default: false },
96
100
  notificationMemberIds: [userJoin],
97
101
  },
98
-
99
102
  orderConfirmation: {
100
103
  type: [Schema.Types.Mixed],
101
104
  default: [],
@@ -12,7 +12,8 @@ const DescriptionTemplateSchema = new Schema(
12
12
  body: {},
13
13
  arbitraryValues: {},
14
14
  moduleType: { type: String, default: "" },
15
- subType: { type: String, default: "" }
15
+ subType: { type: String, default: "" },
16
+ default: { type: Boolean, default: false },
16
17
  },
17
18
  { timestamps: true, toJSON: { virtuals: true }, toObject: { virtuals: true } }
18
19
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.3.58",
3
+ "version": "1.3.60",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {