@vibe-flats/booking-engine-common-server 1.0.31 → 1.0.32
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.
|
@@ -5,6 +5,7 @@ export interface AreaDocument extends mongoose.Document {
|
|
|
5
5
|
externalName: string;
|
|
6
6
|
publicId: string;
|
|
7
7
|
city: CityDocument;
|
|
8
|
+
description: string;
|
|
8
9
|
}
|
|
9
10
|
export declare const AreaModel: (connection: mongoose.Connection) => mongoose.Model<AreaDocument, {}, {}, {}, mongoose.Document<unknown, {}, AreaDocument> & AreaDocument & Required<{
|
|
10
11
|
_id: unknown;
|
|
@@ -4,6 +4,7 @@ export interface CityDocument extends mongoose.Document {
|
|
|
4
4
|
externalName: string;
|
|
5
5
|
publicId: string;
|
|
6
6
|
slug: string;
|
|
7
|
+
description: string;
|
|
7
8
|
}
|
|
8
9
|
export declare const CityModel: (connection: mongoose.Connection) => mongoose.Model<CityDocument, {}, {}, {}, mongoose.Document<unknown, {}, CityDocument> & CityDocument & Required<{
|
|
9
10
|
_id: unknown;
|