stone-kit 0.0.84 → 0.0.85
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.
|
@@ -213,15 +213,15 @@ interface ILot {
|
|
|
213
213
|
floorPlanImg: string;
|
|
214
214
|
}[];
|
|
215
215
|
/** Угол азимута */
|
|
216
|
-
azimuthAngle
|
|
216
|
+
azimuthAngle?: number | null;
|
|
217
217
|
/** Тип недвижимости */
|
|
218
218
|
businessType?: string | null;
|
|
219
219
|
/** С отделкой или без */
|
|
220
220
|
isDecoration?: boolean | null;
|
|
221
221
|
/** С мокрой точкой */
|
|
222
|
-
isWaterPipes
|
|
222
|
+
isWaterPipes?: boolean | null;
|
|
223
223
|
/** Данные всего проекта */
|
|
224
|
-
project
|
|
224
|
+
project?: IProject | null;
|
|
225
225
|
/** Забронировано или нет????? */
|
|
226
226
|
reservations?: string[] | null;
|
|
227
227
|
}
|