mayak-common-library 0.0.822 → 0.0.824
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1670,12 +1670,12 @@ interface DetailsProps {
|
|
|
1670
1670
|
machineName?: string | null;
|
|
1671
1671
|
value?: string | null;
|
|
1672
1672
|
};
|
|
1673
|
-
houseTypes?: Array<string | undefined> | null;
|
|
1673
|
+
houseTypes?: Array<string | undefined | null> | null;
|
|
1674
1674
|
}
|
|
1675
1675
|
|
|
1676
1676
|
interface RealtyCardProps {
|
|
1677
1677
|
href: string;
|
|
1678
|
-
tags?: Array<string | undefined>;
|
|
1678
|
+
tags?: Array<string | undefined | null>;
|
|
1679
1679
|
details: DetailsProps;
|
|
1680
1680
|
images?: Array<string | null>;
|
|
1681
1681
|
address?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1670,12 +1670,12 @@ interface DetailsProps {
|
|
|
1670
1670
|
machineName?: string | null;
|
|
1671
1671
|
value?: string | null;
|
|
1672
1672
|
};
|
|
1673
|
-
houseTypes?: Array<string | undefined> | null;
|
|
1673
|
+
houseTypes?: Array<string | undefined | null> | null;
|
|
1674
1674
|
}
|
|
1675
1675
|
|
|
1676
1676
|
interface RealtyCardProps {
|
|
1677
1677
|
href: string;
|
|
1678
|
-
tags?: Array<string | undefined>;
|
|
1678
|
+
tags?: Array<string | undefined | null>;
|
|
1679
1679
|
details: DetailsProps;
|
|
1680
1680
|
images?: Array<string | null>;
|
|
1681
1681
|
address?: string;
|