joye-backend-utility 5.0.40 → 5.0.42

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.
@@ -39,6 +39,10 @@ const Brew = new mongoose_1.Schema({
39
39
  type: String,
40
40
  required: false,
41
41
  },
42
+ joyLevel: {
43
+ type: Number,
44
+ required: false,
45
+ },
42
46
  theme: {
43
47
  type: Number,
44
48
  required: false,
@@ -67,6 +71,10 @@ const Brew = new mongoose_1.Schema({
67
71
  type: Number,
68
72
  required: false,
69
73
  },
74
+ cardBrewCount: {
75
+ type: Number,
76
+ required: false,
77
+ },
70
78
  currentAverage: {
71
79
  type: Number,
72
80
  required: false,
@@ -129,6 +137,10 @@ const Brew = new mongoose_1.Schema({
129
137
  type: Object,
130
138
  required: false,
131
139
  },
140
+ cardSessionData: {
141
+ type: Object,
142
+ required: false,
143
+ },
132
144
  pie: {
133
145
  type: Object,
134
146
  required: false,
@@ -57,6 +57,7 @@ const MasterEmotions = new mongoose_1.Schema({
57
57
  required: false,
58
58
  },
59
59
  questions: { type: Array, required: false },
60
+ cardQuestions: { type: Array, required: false },
60
61
  suggestionData: {
61
62
  type: Object,
62
63
  pie: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joye-backend-utility",
3
- "version": "5.0.40",
3
+ "version": "5.0.42",
4
4
  "description": "Joye backend utility for db functions and common functions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",