@vibe-flats/booking-engine-common-server 1.0.134 → 1.0.135

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.
@@ -107,6 +107,7 @@ export interface UnitDocument extends mongoose.Document {
107
107
  }[];
108
108
  salesBlockWarning: string;
109
109
  hasOpenExtensionLink: boolean;
110
+ lengthOfStayType: 'long_term' | 'hybrid' | 'nightly';
110
111
  }
111
112
  export declare const UnitModel: (connection: mongoose.Connection) => mongoose.Model<UnitDocument, {}, {}, {}, mongoose.Document<unknown, {}, UnitDocument> & UnitDocument & Required<{
112
113
  _id: unknown;
@@ -156,7 +156,8 @@ const schema = new mongoose_1.default.Schema({
156
156
  _id: false
157
157
  },
158
158
  salesBlockWarning: { type: String, required: false },
159
- hasOpenExtensionLink: { type: Boolean, required: false }
159
+ hasOpenExtensionLink: { type: Boolean, required: false },
160
+ lengthOfStayType: { type: String, required: false }
160
161
  }, {
161
162
  timestamps: true,
162
163
  versionKey: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-flats/booking-engine-common-server",
3
- "version": "1.0.134",
3
+ "version": "1.0.135",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",