joye-backend-utility 4.1.9 → 4.1.11
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/dist/schema/user.js
CHANGED
|
@@ -12,6 +12,10 @@ const User = new mongoose_1.Schema({
|
|
|
12
12
|
required: true,
|
|
13
13
|
index: true,
|
|
14
14
|
},
|
|
15
|
+
postPieScreen: {
|
|
16
|
+
type: String,
|
|
17
|
+
required: false,
|
|
18
|
+
},
|
|
15
19
|
happinessCounterLifetime: {
|
|
16
20
|
type: Object,
|
|
17
21
|
yesCount: {
|
|
@@ -130,5 +134,9 @@ const User = new mongoose_1.Schema({
|
|
|
130
134
|
type: Number,
|
|
131
135
|
required: false,
|
|
132
136
|
},
|
|
137
|
+
createTimestamp: {
|
|
138
|
+
type: Number,
|
|
139
|
+
required: false,
|
|
140
|
+
},
|
|
133
141
|
});
|
|
134
142
|
exports.UserSchema = User;
|