@francesco_ksh/app-ksh-mgd-schemas 1.9.1 → 1.9.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/Listing.js CHANGED
@@ -42,8 +42,18 @@ const listingSchema = new Schema(
42
42
  },
43
43
 
44
44
  postedToPinterest: {
45
- type: Boolean,
46
- default: false,
45
+ isTrue: {
46
+ type: Boolean,
47
+ },
48
+ date: {
49
+ type: Date,
50
+ },
51
+ pinId: {
52
+ type: String,
53
+ },
54
+ pinUrl: {
55
+ type: String,
56
+ },
47
57
  },
48
58
  newSchema: {
49
59
  supervised: {
package/models/User.js CHANGED
@@ -205,6 +205,9 @@ const userSchema = new Schema(
205
205
  type: Boolean,
206
206
  default: false,
207
207
  },
208
+ pinterestAuthToken: {
209
+ type: String,
210
+ },
208
211
  stripeConnect: {
209
212
  connected: {
210
213
  type: Boolean,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@francesco_ksh/app-ksh-mgd-schemas",
3
- "version": "1.9.1",
3
+ "version": "1.9.3",
4
4
  "description": "Mongoose schema definitions",
5
5
  "main": "index.js",
6
6
  "repository": {