Orders en todas las etapas

This commit is contained in:
2026-02-27 11:16:45 +01:00
parent 8ca3d095e6
commit 04a6e50b7a
10 changed files with 79 additions and 92 deletions

View File

@@ -72,3 +72,14 @@ export type UpdateOrderDTO =
new_status: OrderStatus,
reason?: string
}
export type FinishOrderDTO =
(
{ id: number, correlation_id?: never } |
{ id?: never, correlation_id: string }
)
&
{
reason?: string
}