mayak-common-library 0.0.505 → 0.0.507
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 -11
- package/dist/index.d.ts +15 -11
- 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
|
@@ -1007,18 +1007,20 @@ declare const RealtyAddress: FC<RealtyAddressProps>;
|
|
|
1007
1007
|
|
|
1008
1008
|
interface RealtyDetailsProps {
|
|
1009
1009
|
realtyType?: {
|
|
1010
|
-
machineName?: string;
|
|
1010
|
+
machineName?: string | null;
|
|
1011
1011
|
value?: string;
|
|
1012
1012
|
};
|
|
1013
|
-
areaTotal?: string;
|
|
1014
|
-
areaLand?: string;
|
|
1015
|
-
areaLiving?: string;
|
|
1016
|
-
areaKitchen?: string;
|
|
1017
|
-
rooms?:
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1013
|
+
areaTotal?: string | null;
|
|
1014
|
+
areaLand?: string | null;
|
|
1015
|
+
areaLiving?: string | null;
|
|
1016
|
+
areaKitchen?: string | null;
|
|
1017
|
+
rooms?: 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
|
@@ -1007,18 +1007,20 @@ declare const RealtyAddress: FC<RealtyAddressProps>;
|
|
|
1007
1007
|
|
|
1008
1008
|
interface RealtyDetailsProps {
|
|
1009
1009
|
realtyType?: {
|
|
1010
|
-
machineName?: string;
|
|
1010
|
+
machineName?: string | null;
|
|
1011
1011
|
value?: string;
|
|
1012
1012
|
};
|
|
1013
|
-
areaTotal?: string;
|
|
1014
|
-
areaLand?: string;
|
|
1015
|
-
areaLiving?: string;
|
|
1016
|
-
areaKitchen?: string;
|
|
1017
|
-
rooms?:
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1013
|
+
areaTotal?: string | null;
|
|
1014
|
+
areaLand?: string | null;
|
|
1015
|
+
areaLiving?: string | null;
|
|
1016
|
+
areaKitchen?: string | null;
|
|
1017
|
+
rooms?: 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 {
|