fix(f4): expose recurrence state and close ci type gaps

This commit is contained in:
2026-09-08 13:52:24 -03:00
parent 95a41f39d7
commit 30353c338b
6 changed files with 64 additions and 7 deletions
@@ -16,12 +16,12 @@ import type {
} from './dto/inventory-function.dto';
import { AssetHistoryService } from './asset-history.service';
interface InventoryFunctionRow {
export interface InventoryFunctionRow {
id: string; code: string; name: string; description: string | null;
isActive: boolean; sortOrder: number; createdAt: Date; updatedAt: Date;
}
interface FunctionAssignmentRow {
export interface FunctionAssignmentRow {
id: string; assetId: string; functionId: string; functionCode: string; functionName: string;
validFrom: Date; validUntil: Date | null; reason: string | null;
changedBy: string | null; changedByUsername: string | null; createdAt: Date;