@vibe-flats/booking-engine-common-server 1.0.148 → 1.0.149
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.
|
@@ -9,7 +9,9 @@ export interface ChannelDocument extends mongoose.Document {
|
|
|
9
9
|
isExternal: boolean;
|
|
10
10
|
isActive: boolean;
|
|
11
11
|
excludeUtilities: boolean;
|
|
12
|
-
|
|
12
|
+
website: {
|
|
13
|
+
sourceOverride: string;
|
|
14
|
+
};
|
|
13
15
|
}
|
|
14
16
|
export declare const ChannelModel: (connection: mongoose.Connection) => mongoose.Model<ChannelDocument, {}, {}, {}, mongoose.Document<unknown, {}, ChannelDocument> & ChannelDocument & Required<{
|
|
15
17
|
_id: unknown;
|
|
@@ -48,9 +48,11 @@ const schema = new mongoose_1.default.Schema({
|
|
|
48
48
|
required: false,
|
|
49
49
|
default: false
|
|
50
50
|
},
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
website: {
|
|
52
|
+
sourceOverride: {
|
|
53
|
+
type: String,
|
|
54
|
+
required: false
|
|
55
|
+
}
|
|
54
56
|
}
|
|
55
57
|
}, {
|
|
56
58
|
timestamps: true
|