refactor: Link ownership-costs to documents feature (#29) #30

Merged
egullickson merged 5 commits from issue-29-link-ownership-costs into main 2026-01-15 01:23:57 +00:00
Showing only changes of commit 1d95eba395 - Show all commits

View File

@@ -50,8 +50,8 @@ export const UpdateOwnershipCostSchema = z.object({
}); });
export type UpdateOwnershipCostRequest = z.infer<typeof UpdateOwnershipCostSchema>; export type UpdateOwnershipCostRequest = z.infer<typeof UpdateOwnershipCostSchema>;
// Response types // Response type (alias to OwnershipCost)
export interface OwnershipCostResponse extends OwnershipCost {} export type OwnershipCostResponse = OwnershipCost;
// TCO aggregation stats // TCO aggregation stats
// NOTE: Extended for backward compatibility with vehicles service // NOTE: Extended for backward compatibility with vehicles service