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: number | null;
212
+ azimuthAngle?: number | null;
217
213
  /** Тип недвижимости */
218
214
  businessType?: string | null;
219
215
  /** С отделкой или без */
220
216
  isDecoration?: boolean | null;
221
217
  /** С мокрой точкой */
222
- isWaterPipes: boolean | null;
218
+ isWaterPipes?: boolean | null;
223
219
  /** Данные всего проекта */
224
- project: IProject | null;
220
+ project?: IProject | null;
225
221
  /** Забронировано или нет????? */
226
222
  reservations?: string[] | null;
227
223
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "stone-kit",
3
3
  "description": "uikit for redesign",
4
4
  "private": false,
5
- "version": "0.0.84",
5
+ "version": "0.0.87",
6
6
  "author": "Mollycodd1e",
7
7
  "license": "ISC",
8
8
  "type": "module",