archetecture security fix

This commit is contained in:
root
2026-06-11 03:22:12 -04:00
parent 6def9993da
commit 9483750161
3126 changed files with 177194 additions and 37211 deletions
+23
View File
@@ -0,0 +1,23 @@
export declare function findMany(where: any, skip: number, take: number): Promise<any>;
export declare function findById(id: string, companyId: string): Promise<any>;
export declare function findFirst(id: string, companyId: string): Promise<any>;
export declare function create(data: any): Promise<any>;
export declare function updateById(id: string, data: any): Promise<any>;
export declare function softDelete(id: string, companyId: string): Promise<any>;
export declare function setPublished(id: string, companyId: string, isPublished: boolean): Promise<any>;
export declare function findReservationConflicts(vehicleId: string, companyId: string, start: Date, end: Date): Promise<any>;
export declare function findCalendarBlockConflicts(vehicleId: string, start: Date, end: Date): Promise<any>;
export declare function findCalendarEvents(vehicleId: string, companyId: string, rangeStart: Date, rangeEnd: Date): Promise<any>;
export declare function createCalendarBlock(data: any): Promise<any>;
export declare function deleteCalendarBlock(id: string, vehicleId: string): Promise<any>;
export declare function findMaintenanceLogs(vehicleId: string): Promise<any>;
export declare function createMaintenanceLog(data: any): Promise<any>;
export declare function findPricingConfiguration(vehicleId: string): Promise<any>;
export declare function createPricingConfiguration(data: any): Promise<any>;
export declare function updatePricingConfiguration(id: string, data: any): Promise<any>;
export declare function findPricingRule(id: string, configurationId: string): Promise<any>;
export declare function createPricingRule(data: any): Promise<any>;
export declare function updatePricingRule(id: string, data: any): Promise<any>;
export declare function deletePricingRule(id: string, configurationId: string): Promise<any>;
export declare function createPriceHistory(data: any): Promise<any>;
//# sourceMappingURL=vehicle.repo.d.ts.map