jp-shared 1.1.19 → 1.1.21

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.
@@ -142,6 +142,14 @@ const schema = new mongoose.Schema(
142
142
  {
143
143
  profilePercentage: { type: Number, default: 0 },
144
144
  skillIds: { type: [ObjectId], ref: "skill", default: [] },
145
+ otherSkills:{
146
+ type: Array,
147
+ default: []
148
+ },
149
+ otherRoles:{
150
+ type: Array,
151
+ default: []
152
+ },
145
153
  roleIds: { type: [ObjectId], ref: "role", default: [] },
146
154
  resume: {
147
155
  type: {
@@ -1,4 +1,4 @@
1
- const { salesModel } = require("./sales-model");
1
+
2
2
 
3
3
  module.exports = {
4
4
  ActiveRecruiterModel: require("./active-model"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jp-shared",
3
- "version": "1.1.19",
3
+ "version": "1.1.21",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"