
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@mappedin/mvf-address
Advanced tools
The address extension for MVF. Allows specifying an address for the entire bundle, as well as addresses for individual floor stacks.
The address extension for MVF. Allows specifying an address for the entire bundle, as well as addresses for individual floor stacks.
An Address object is an object with keys representing different types of address data, and values that contain the data in that format. As of right now, only one schema is supported: the display type. Addresses of the display type have a single displayAddress property, which is a formatted string that can be displayed directly to a user.
Future versions of this extension may add new types of structured address data, on new properties of the Address type.
Definition:
export type Address = {
display?: {
displayAddress?: string
}
}
export type AddressExtension = {
primary?: Address,
floorStack?: Record<FloorStackId, Address>
}
Example:
{
address: {
primary: {
display: {
displayAddress: "5788 Wunsch Cliffs, Iristown, IA 75553"
}
},
floorStack: {
fs_0000001: {
display: {
displayAddress: "5788 Wunsch Cliffs, Iristown, IA 75553"
}
}
}
}
}
FAQs
The address extension for MVF. Allows specifying an address for the entire bundle, as well as addresses for individual floor stacks.
We found that @mappedin/mvf-address demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.