shuttlepro-shared 1.3.1 → 1.3.3

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/Order.js CHANGED
@@ -136,6 +136,10 @@ const OrderSchema = new Schema(
136
136
  paymentDate: { type: String, default: "" },
137
137
  paymentDetails: {},
138
138
  },
139
+ merged: {
140
+ status: { type: String, default: "open" },
141
+ details: [],
142
+ },
139
143
  credentials: {},
140
144
  ticketId: { type: String, default: "" },
141
145
  sender: { type: String, default: "" },
@@ -94,7 +94,7 @@ const feedbackFormSchema = new mongoose.Schema({
94
94
  ],
95
95
  integrationId: [
96
96
  {
97
- type: Schema.Types.ObjectId,
97
+ type: mongoose.Schema.Types.ObjectId,
98
98
  ref: "Integration",
99
99
  default: null,
100
100
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {