Fin opportunity

This commit is contained in:
2026-06-09 13:31:05 +02:00
parent fb0af73a0b
commit 5faef46663
10 changed files with 241 additions and 12 deletions
@@ -13,5 +13,6 @@ export interface CreateCommunicationDto {
calling?: string | null;
email?: string | null;
meeting?: string | null;
contactId?: number;
}
@@ -14,5 +14,10 @@ export interface GetCommunicationDto {
calling?: string | null;
email?: string | null;
meeting?: string | null;
contactId?: number;
contactFirstName?: string | null;
contactLastName?: string | null;
contactEmail?: string | null;
contactPhoneNumber?: string | null;
}
@@ -11,6 +11,6 @@
export interface UpdateStaffDto {
f4T2NumberApproval?: string | null;
f4T2ExpirationDate?: string;
f4T2ExpirationDate?: Date | null;
}