@vibe-flats/booking-engine-common-server 1.0.113 → 1.0.114

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.
@@ -19,6 +19,9 @@ export interface MarketDocument extends mongoose.Document {
19
19
  answer: string;
20
20
  }[];
21
21
  };
22
+ furnishedFinder: {
23
+ extractString: string;
24
+ };
22
25
  createdAt: Date;
23
26
  updatedAt: Date;
24
27
  }
@@ -52,6 +52,13 @@ const schema = new mongoose_1.default.Schema({
52
52
  ]
53
53
  }),
54
54
  _id: false
55
+ },
56
+ furnishedFinder: {
57
+ type: new mongoose_1.default.Schema({
58
+ extractString: { type: String }
59
+ }),
60
+ required: false,
61
+ _id: false
55
62
  }
56
63
  }, {
57
64
  timestamps: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-flats/booking-engine-common-server",
3
- "version": "1.0.113",
3
+ "version": "1.0.114",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",