From 40ac32620639a9565d5be15e79cfb5fb7f71083f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 19:16:15 +0200 Subject: [PATCH] chore(formatting): Fixed formatting mistakes (#1445) fixed formatting mistakes have sneaked into prod Co-authored-by: CommanderStorm <26258709+CommanderStorm@users.noreply.github.com> --- webclient/app/api_types/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webclient/app/api_types/index.ts b/webclient/app/api_types/index.ts index 22a1e443c..7446882f4 100644 --- a/webclient/app/api_types/index.ts +++ b/webclient/app/api_types/index.ts @@ -159,8 +159,10 @@ export type webhooks = Record; export type components = { schemas: { readonly RemoteMap: { + /** @description name of the map */ readonly name: string; - readonly path: string; + /** @description where the indoor geojson is located at */ + readonly url?: string; }; /** @description GeoJSon object The coordinate reference system for all GeoJSON coordinates is a geographic coordinate reference system, using the World Geodetic System 1984 (WGS 84) datum, with longitude and latitude units of decimal degrees. This is equivalent to the coordinate reference system identified by the Open Geospatial Consortium (OGC) URN An OPTIONAL third-position element SHALL be the height in meters above or below the WGS 84 reference ellipsoid. In the absence of elevation values, applications sensitive to height or depth SHOULD interpret positions as being at local ground or sea level. */ readonly GeoJsonObject: {