stone-kit 0.0.84 → 0.0.87
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.
|
@@ -51,11 +51,7 @@ interface ILotPromo {
|
|
|
51
51
|
/** Категория */
|
|
52
52
|
category: string;
|
|
53
53
|
/** Ссылка на иконку */
|
|
54
|
-
icoImg:
|
|
55
|
-
attributes: {
|
|
56
|
-
url: string;
|
|
57
|
-
};
|
|
58
|
-
};
|
|
54
|
+
icoImg: string;
|
|
59
55
|
/** hex цвет */
|
|
60
56
|
color: string;
|
|
61
57
|
}
|
|
@@ -213,15 +209,15 @@ interface ILot {
|
|
|
213
209
|
floorPlanImg: string;
|
|
214
210
|
}[];
|
|
215
211
|
/** Угол азимута */
|
|
216
|
-
azimuthAngle
|
|
212
|
+
azimuthAngle?: number | null;
|
|
217
213
|
/** Тип недвижимости */
|
|
218
214
|
businessType?: string | null;
|
|
219
215
|
/** С отделкой или без */
|
|
220
216
|
isDecoration?: boolean | null;
|
|
221
217
|
/** С мокрой точкой */
|
|
222
|
-
isWaterPipes
|
|
218
|
+
isWaterPipes?: boolean | null;
|
|
223
219
|
/** Данные всего проекта */
|
|
224
|
-
project
|
|
220
|
+
project?: IProject | null;
|
|
225
221
|
/** Забронировано или нет????? */
|
|
226
222
|
reservations?: string[] | null;
|
|
227
223
|
}
|