feat: add profiles session API

This commit is contained in:
Matthieu
2025-09-17 23:11:25 +02:00
parent 83251b532c
commit df5bbeecb7
78 changed files with 3000 additions and 836 deletions

10
dist/shared/dto/constructeur.dto.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
export declare class CreateConstructeurDto {
name: string;
email?: string;
phone?: string;
}
export declare class UpdateConstructeurDto {
name?: string;
email?: string;
phone?: string;
}