From 3ed8a7f36b5b884247f88e28cfc75b2db2c3ee64 Mon Sep 17 00:00:00 2001 From: CommanderStorm <26258709+CommanderStorm@users.noreply.github.com> Date: Wed, 14 Aug 2024 17:05:11 +0000 Subject: [PATCH] fixed formatting mistakes have sneaked into prod --- 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: {