feat: improve monorepo dev experience

This commit is contained in:
2023-10-27 22:45:44 +02:00
parent f618725598
commit c6ab4ae48b
124 changed files with 2647 additions and 2857 deletions

View File

@@ -39,37 +39,37 @@ export interface SCGeoInformation {
export interface SCPostalAddress {
/**
* Country of the address
* @filterable
* @elasticsearch filterable
*/
addressCountry: string;
/**
* City of the address
* @filterable
* @elasticsearch filterable
*/
addressLocality: string;
/**
* State of the address
* @filterable
* @elasticsearch filterable
*/
addressRegion?: string;
/**
* Zip code of the address
* @filterable
* @elasticsearch filterable
*/
postalCode: string;
/**
* Optional post box number
* @filterable
* @elasticsearch filterable
*/
postOfficeBoxNumber?: string;
/**
* Street of the address - with house number!
* @filterable
* @elasticsearch filterable
*/
streetAddress: string;
}
@@ -94,7 +94,6 @@ export interface SCPlaceWithoutReferences extends SCThingWithoutReferences {
/**
* Opening hours of the place
* @see http://wiki.openstreetmap.org/wiki/Key:opening_hours/specification
* @keyword
*/
openingHours?: string;