From 8cdfd617707fb8e7b0780476634693468c5eac38 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 17:46:28 +0200 Subject: [PATCH] chore(formatting): Fixed formatting mistakes (#1440) fixed formatting mistakes have sneaked into prod Co-authored-by: CommanderStorm <26258709+CommanderStorm@users.noreply.github.com> --- webclient/app/api_types/index.ts | 27 ++++----------------------- 1 file changed, 4 insertions(+), 23 deletions(-) diff --git a/webclient/app/api_types/index.ts b/webclient/app/api_types/index.ts index b786867b0..22a1e443c 100644 --- a/webclient/app/api_types/index.ts +++ b/webclient/app/api_types/index.ts @@ -69,12 +69,6 @@ export type paths = { * @description Get all features of a certain indoor map */ get: operations["get-indoor-map"]; - parameters: { - path: { - /** @description id of the map returned by prior listing */ - id: string; - }; - }; }; "/api/feedback/get_token": { /** @@ -164,6 +158,10 @@ export type webhooks = Record; export type components = { schemas: { + readonly RemoteMap: { + readonly name: string; + readonly path: 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: { /** @enum {string} */ @@ -795,23 +793,6 @@ export type components = { /** Format: double */ readonly lon: number; }; - readonly IndoorMap: { - readonly beforeLayerId?: string; - readonly bounds: readonly number[]; - readonly defaultLevel: string; - readonly geojson: components["schemas"]["FeatureCollection"]; - readonly layers: readonly string[]; - readonly layersToHide: readonly string[]; - readonly levelsRange: { - readonly min: number; - readonly max: number; - }; - readonly showFeaturesWithEmptyLevel: boolean; - }; - readonly RemoteMap: { - readonly name: string; - readonly path: string; - }; }; responses: never; parameters: never;