1
0
Fork 0
mirror of https://github.com/s-frick/effigenix.git synced 2026-03-28 12:09:35 +01:00

feat(tui): Edit-Screen für Lagerort-Bearbeitung (Name, Temperaturbereich)

StorageLocationEditScreen mit Formular für Name und Temperaturbereich.
StorageType wird als immutable angezeigt. Erreichbar über [Bearbeiten] im
DetailScreen. Vervollständigt Story 1.2 im Frontend.
This commit is contained in:
Sebastian Frick 2026-02-23 23:02:58 +01:00
parent 614f3ece30
commit 5020df5d93
6 changed files with 192 additions and 4 deletions

View file

@ -71,7 +71,7 @@ export interface paths {
path?: never;
cookie?: never;
};
get?: never;
get: operations["getStorageLocation"];
put: operations["updateStorageLocation"];
post?: never;
delete?: never;
@ -1885,6 +1885,28 @@ export interface operations {
};
};
};
getStorageLocation: {
parameters: {
query?: never;
header?: never;
path: {
id: string;
};
cookie?: never;
};
requestBody?: never;
responses: {
/** @description OK */
200: {
headers: {
[name: string]: unknown;
};
content: {
"*/*": components["schemas"]["StorageLocationResponse"];
};
};
};
};
updateStorageLocation: {
parameters: {
query?: never;