refactor: autoRemount as boolean

This commit is contained in:
Nicolas Meienberger
2025-09-27 10:51:31 +02:00
parent 592a8f52b7
commit 082192f38a
12 changed files with 239 additions and 81 deletions

View File

@@ -13,7 +13,7 @@ export type ListVolumesResponses = {
*/
200: {
volumes: Array<{
autoRemount: 0 | 1;
autoRemount: boolean;
config:
| {
backend: "directory";
@@ -209,7 +209,7 @@ export type GetVolumeResponses = {
used: number;
};
volume: {
autoRemount: 0 | 1;
autoRemount: boolean;
config:
| {
backend: "directory";