From 5af79f487bd1537676d017ae09563e53d18458c4 Mon Sep 17 00:00:00 2001 From: ST-DDT Date: Sat, 21 May 2022 16:25:00 +0200 Subject: feat: use localized fake pattern in street (#966) --- src/definitions/address.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src/definitions') diff --git a/src/definitions/address.ts b/src/definitions/address.ts index a7300e5f..49ccb405 100644 --- a/src/definitions/address.ts +++ b/src/definitions/address.ts @@ -14,7 +14,11 @@ export type AddressDefinitions = LocaleEntry<{ postcode: string | string[]; /** - * Names of actual cities + * The patterns to generate city names. + */ + city: string[]; + /** + * The names of actual cities. */ city_name: string[]; /** @@ -59,6 +63,14 @@ export type AddressDefinitions = LocaleEntry<{ */ building_number: string[]; + /** + * The patterns to generate street names. + */ + street: string[]; + /** + * The names of actual streets. + */ + street_name: string[]; /** * Common street prefixes */ -- cgit v1.2.3