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