mayak-common-library 0.0.505 → 0.0.506
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 +14 -10
- package/dist/index.d.ts +14 -10
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/messages/en.json +5 -1
- package/messages/ru.json +5 -1
- package/messages/uk.json +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1010,15 +1010,17 @@ interface RealtyDetailsProps {
|
|
|
1010
1010
|
machineName?: string;
|
|
1011
1011
|
value?: string;
|
|
1012
1012
|
};
|
|
1013
|
-
areaTotal?: string;
|
|
1014
|
-
areaLand?: string;
|
|
1015
|
-
areaLiving?: string;
|
|
1016
|
-
areaKitchen?: string;
|
|
1017
|
-
rooms?: string;
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1013
|
+
areaTotal?: string | null;
|
|
1014
|
+
areaLand?: string | null;
|
|
1015
|
+
areaLiving?: string | null;
|
|
1016
|
+
areaKitchen?: string | null;
|
|
1017
|
+
rooms?: string | number | null;
|
|
1018
|
+
baths?: number | null;
|
|
1019
|
+
parkingCount?: string | number | null;
|
|
1020
|
+
floor?: string | null;
|
|
1021
|
+
totalFloors?: string | null;
|
|
1022
|
+
repair?: string | null;
|
|
1023
|
+
roomCountLink?: string | null;
|
|
1022
1024
|
className?: string;
|
|
1023
1025
|
site: Site;
|
|
1024
1026
|
}
|
|
@@ -1227,7 +1229,9 @@ declare enum MACHINE_NAME {
|
|
|
1227
1229
|
P_LAYOUT = "planuvannya",
|
|
1228
1230
|
P_CLASS_OF_HOUSING = "klas-zhitla",
|
|
1229
1231
|
P_ROOM_LAYOUT = "shema-kimnat",
|
|
1230
|
-
CITY = "city"
|
|
1232
|
+
CITY = "city",
|
|
1233
|
+
BATH_COUNT = "bathCount",
|
|
1234
|
+
PARKING = "parting"
|
|
1231
1235
|
}
|
|
1232
1236
|
type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
|
|
1233
1237
|
declare enum SORT_NAME {
|
package/dist/index.d.ts
CHANGED
|
@@ -1010,15 +1010,17 @@ interface RealtyDetailsProps {
|
|
|
1010
1010
|
machineName?: string;
|
|
1011
1011
|
value?: string;
|
|
1012
1012
|
};
|
|
1013
|
-
areaTotal?: string;
|
|
1014
|
-
areaLand?: string;
|
|
1015
|
-
areaLiving?: string;
|
|
1016
|
-
areaKitchen?: string;
|
|
1017
|
-
rooms?: string;
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1013
|
+
areaTotal?: string | null;
|
|
1014
|
+
areaLand?: string | null;
|
|
1015
|
+
areaLiving?: string | null;
|
|
1016
|
+
areaKitchen?: string | null;
|
|
1017
|
+
rooms?: string | number | null;
|
|
1018
|
+
baths?: number | null;
|
|
1019
|
+
parkingCount?: string | number | null;
|
|
1020
|
+
floor?: string | null;
|
|
1021
|
+
totalFloors?: string | null;
|
|
1022
|
+
repair?: string | null;
|
|
1023
|
+
roomCountLink?: string | null;
|
|
1022
1024
|
className?: string;
|
|
1023
1025
|
site: Site;
|
|
1024
1026
|
}
|
|
@@ -1227,7 +1229,9 @@ declare enum MACHINE_NAME {
|
|
|
1227
1229
|
P_LAYOUT = "planuvannya",
|
|
1228
1230
|
P_CLASS_OF_HOUSING = "klas-zhitla",
|
|
1229
1231
|
P_ROOM_LAYOUT = "shema-kimnat",
|
|
1230
|
-
CITY = "city"
|
|
1232
|
+
CITY = "city",
|
|
1233
|
+
BATH_COUNT = "bathCount",
|
|
1234
|
+
PARKING = "parting"
|
|
1231
1235
|
}
|
|
1232
1236
|
type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
|
|
1233
1237
|
declare enum SORT_NAME {
|