Update address handling in third-party components and types for consistency.

- Replaced `address_id` with `id` in `ThirdPartyEdit.vue` and associated logic.
- Introduced `SetAddress` type to standardize address references in write operations.
- Updated `SetThirdParty` and related types to use `SetAddress` for better type safety.
This commit is contained in:
2025-10-24 17:03:27 +02:00
parent f1bf6023ff
commit ffac143ab9
3 changed files with 16 additions and 7 deletions

View File

@@ -182,6 +182,13 @@ export interface Address {
isNoAddress: boolean;
}
/**
* Associate an existing address in write operations.
*/
export interface SetAddress {
id: number;
}
export interface AddressWithPoint extends Address {
point: Point;
}