mayak-common-library 0.0.366 → 0.0.367

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.
package/dist/index.d.mts CHANGED
@@ -1521,15 +1521,15 @@ interface CategoryCardProps {
1521
1521
  declare function CategoryCard({ link, title, image_url, }: CategoryCardProps): react_jsx_runtime.JSX.Element;
1522
1522
 
1523
1523
  interface DetailsProps {
1524
- studio?: boolean;
1525
- rooms?: string;
1526
- areaTotal?: string;
1527
- areaLand?: string;
1528
- floor?: string;
1529
- totalFloors?: string;
1524
+ studio?: boolean | null;
1525
+ rooms?: string | null;
1526
+ areaTotal?: string | null;
1527
+ areaLand?: string | null;
1528
+ floor?: string | null;
1529
+ totalFloors?: string | null;
1530
1530
  realtyType?: {
1531
- machineName?: string;
1532
- value?: string;
1531
+ machineName?: string | null;
1532
+ value?: string | null;
1533
1533
  };
1534
1534
  houseTypes?: string[];
1535
1535
  }
package/dist/index.d.ts CHANGED
@@ -1521,15 +1521,15 @@ interface CategoryCardProps {
1521
1521
  declare function CategoryCard({ link, title, image_url, }: CategoryCardProps): react_jsx_runtime.JSX.Element;
1522
1522
 
1523
1523
  interface DetailsProps {
1524
- studio?: boolean;
1525
- rooms?: string;
1526
- areaTotal?: string;
1527
- areaLand?: string;
1528
- floor?: string;
1529
- totalFloors?: string;
1524
+ studio?: boolean | null;
1525
+ rooms?: string | null;
1526
+ areaTotal?: string | null;
1527
+ areaLand?: string | null;
1528
+ floor?: string | null;
1529
+ totalFloors?: string | null;
1530
1530
  realtyType?: {
1531
- machineName?: string;
1532
- value?: string;
1531
+ machineName?: string | null;
1532
+ value?: string | null;
1533
1533
  };
1534
1534
  houseTypes?: string[];
1535
1535
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mayak-common-library",
3
- "version": "0.0.366",
3
+ "version": "0.0.367",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",