mayak-common-library 0.0.636 → 0.0.637
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1025,6 +1025,7 @@ interface RealtyDetailsProps {
|
|
|
1025
1025
|
propertyType?: string | null;
|
|
1026
1026
|
furnishStatus?: string | null;
|
|
1027
1027
|
construction?: string | null;
|
|
1028
|
+
stars?: string | null;
|
|
1028
1029
|
className?: string;
|
|
1029
1030
|
site: Site;
|
|
1030
1031
|
}
|
|
@@ -1240,7 +1241,8 @@ declare enum MACHINE_NAME {
|
|
|
1240
1241
|
PROPERTY_TYPE = "property-type",
|
|
1241
1242
|
CONSTRUCTION = "construction",
|
|
1242
1243
|
FURNISH_STATUS = "furnish-status",
|
|
1243
|
-
STATUS_OF_BUILDING = "status-building"
|
|
1244
|
+
STATUS_OF_BUILDING = "status-building",
|
|
1245
|
+
STARS = "stars"
|
|
1244
1246
|
}
|
|
1245
1247
|
type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
|
|
1246
1248
|
declare enum SORT_NAME {
|
package/dist/index.d.ts
CHANGED
|
@@ -1025,6 +1025,7 @@ interface RealtyDetailsProps {
|
|
|
1025
1025
|
propertyType?: string | null;
|
|
1026
1026
|
furnishStatus?: string | null;
|
|
1027
1027
|
construction?: string | null;
|
|
1028
|
+
stars?: string | null;
|
|
1028
1029
|
className?: string;
|
|
1029
1030
|
site: Site;
|
|
1030
1031
|
}
|
|
@@ -1240,7 +1241,8 @@ declare enum MACHINE_NAME {
|
|
|
1240
1241
|
PROPERTY_TYPE = "property-type",
|
|
1241
1242
|
CONSTRUCTION = "construction",
|
|
1242
1243
|
FURNISH_STATUS = "furnish-status",
|
|
1243
|
-
STATUS_OF_BUILDING = "status-building"
|
|
1244
|
+
STATUS_OF_BUILDING = "status-building",
|
|
1245
|
+
STARS = "stars"
|
|
1244
1246
|
}
|
|
1245
1247
|
type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
|
|
1246
1248
|
declare enum SORT_NAME {
|