Skip to content

Commit

Permalink
chore(formatting): Fixed formatting mistakes (#1440)
Browse files Browse the repository at this point in the history
fixed formatting mistakes have sneaked into prod

Co-authored-by: CommanderStorm <[email protected]>
  • Loading branch information
github-actions[bot] and CommanderStorm authored Aug 13, 2024
1 parent ec0e473 commit 8cdfd61
Showing 1 changed file with 4 additions and 23 deletions.
27 changes: 4 additions & 23 deletions webclient/app/api_types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
/**
Expand Down Expand Up @@ -164,6 +158,10 @@ export type webhooks = Record<string, never>;

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} */
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 8cdfd61

Please sign in to comment.