mayak-common-library 0.0.504 → 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 +15 -10
- package/dist/index.d.ts +15 -10
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/messages/en.json +7 -1
- package/messages/ru.json +7 -1
- package/messages/uk.json +7 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1010,16 +1010,19 @@ 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;
|
|
1025
|
+
site: Site;
|
|
1023
1026
|
}
|
|
1024
1027
|
declare const RealtyDetails: FC<RealtyDetailsProps>;
|
|
1025
1028
|
|
|
@@ -1226,7 +1229,9 @@ declare enum MACHINE_NAME {
|
|
|
1226
1229
|
P_LAYOUT = "planuvannya",
|
|
1227
1230
|
P_CLASS_OF_HOUSING = "klas-zhitla",
|
|
1228
1231
|
P_ROOM_LAYOUT = "shema-kimnat",
|
|
1229
|
-
CITY = "city"
|
|
1232
|
+
CITY = "city",
|
|
1233
|
+
BATH_COUNT = "bathCount",
|
|
1234
|
+
PARKING = "parting"
|
|
1230
1235
|
}
|
|
1231
1236
|
type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
|
|
1232
1237
|
declare enum SORT_NAME {
|
package/dist/index.d.ts
CHANGED
|
@@ -1010,16 +1010,19 @@ 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;
|
|
1025
|
+
site: Site;
|
|
1023
1026
|
}
|
|
1024
1027
|
declare const RealtyDetails: FC<RealtyDetailsProps>;
|
|
1025
1028
|
|
|
@@ -1226,7 +1229,9 @@ declare enum MACHINE_NAME {
|
|
|
1226
1229
|
P_LAYOUT = "planuvannya",
|
|
1227
1230
|
P_CLASS_OF_HOUSING = "klas-zhitla",
|
|
1228
1231
|
P_ROOM_LAYOUT = "shema-kimnat",
|
|
1229
|
-
CITY = "city"
|
|
1232
|
+
CITY = "city",
|
|
1233
|
+
BATH_COUNT = "bathCount",
|
|
1234
|
+
PARKING = "parting"
|
|
1230
1235
|
}
|
|
1231
1236
|
type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
|
|
1232
1237
|
declare enum SORT_NAME {
|