@vibe-flats/booking-engine-common-server 1.0.132 → 1.0.134
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/build/src/config/app.js
CHANGED
|
@@ -106,6 +106,7 @@ export interface UnitDocument extends mongoose.Document {
|
|
|
106
106
|
}[];
|
|
107
107
|
}[];
|
|
108
108
|
salesBlockWarning: string;
|
|
109
|
+
hasOpenExtensionLink: boolean;
|
|
109
110
|
}
|
|
110
111
|
export declare const UnitModel: (connection: mongoose.Connection) => mongoose.Model<UnitDocument, {}, {}, {}, mongoose.Document<unknown, {}, UnitDocument> & UnitDocument & Required<{
|
|
111
112
|
_id: unknown;
|
|
@@ -155,7 +155,8 @@ 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 }
|
|
159
160
|
}, {
|
|
160
161
|
timestamps: true,
|
|
161
162
|
versionKey: false,
|