Added Date export based on user timezone

This commit is contained in:
Joao Ramos
2024-01-16 18:42:12 +00:00
parent d0b0dfb16f
commit 01a9da3a5b
7 changed files with 92 additions and 6 deletions

View File

@@ -78,6 +78,7 @@ export interface DemographicInformation {
gender: Gender;
employment: EmploymentStatus;
passport_id?: string;
timezone?: string;
}
export interface DemographicCorporateInformation {
@@ -85,6 +86,7 @@ export interface DemographicCorporateInformation {
phone: string;
gender: Gender;
position: string;
timezone?: string;
}
export type Gender = "male" | "female" | "other";