mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-08-26 06:09:41 +00:00
fix: general fixes on date types and some typos
This commit is contained in:
@ -26,7 +26,7 @@ export class CustomerResponseDto {
|
||||
nationalId!: string;
|
||||
|
||||
@ApiProperty()
|
||||
nationaIdExpiry!: Date;
|
||||
nationalIdExpiry!: Date;
|
||||
|
||||
@ApiProperty()
|
||||
countryOfResidence!: string;
|
||||
@ -66,7 +66,7 @@ export class CustomerResponseDto {
|
||||
this.lastName = customer.lastName;
|
||||
this.dateOfBirth = customer.dateOfBirth;
|
||||
this.nationalId = customer.nationalId;
|
||||
this.nationaIdExpiry = customer.nationaIdExpiry;
|
||||
this.nationalIdExpiry = customer.nationalIdExpiry;
|
||||
this.countryOfResidence = customer.countryOfResidence;
|
||||
this.sourceOfIncome = customer.sourceOfIncome;
|
||||
this.profession = customer.profession;
|
||||
|
@ -38,7 +38,7 @@ export class Customer extends BaseEntity {
|
||||
nationalId!: string;
|
||||
|
||||
@Column('date', { nullable: true, name: 'national_id_expiry' })
|
||||
nationaIdExpiry!: Date;
|
||||
nationalIdExpiry!: Date;
|
||||
|
||||
@Column('varchar', { length: 255, nullable: true, name: 'country_of_residence' })
|
||||
countryOfResidence!: string;
|
||||
|
@ -24,7 +24,7 @@ export class SavingGoal extends BaseEntity {
|
||||
@Column({ type: 'varchar', length: 255, name: 'description', nullable: true })
|
||||
description!: string;
|
||||
|
||||
@Column({ type: 'date', name: 'due_date' })
|
||||
@Column({ type: 'timestamp with time zone', name: 'due_date' })
|
||||
dueDate!: Date;
|
||||
|
||||
@Column({
|
||||
|
@ -36,10 +36,10 @@ export class Task extends BaseEntity {
|
||||
@Column({ type: 'varchar', name: 'task_frequency' })
|
||||
taskFrequency!: TaskFrequency;
|
||||
|
||||
@Column({ type: 'date', name: 'start_date' })
|
||||
@Column({ type: 'timestamp with time zone', name: 'start_date' })
|
||||
startDate!: Date;
|
||||
|
||||
@Column({ type: 'date', name: 'due_date' })
|
||||
@Column({ type: 'timestamp with time zone', name: 'due_date' })
|
||||
dueDate!: Date;
|
||||
|
||||
@Column({ type: 'boolean', name: 'is_proof_required' })
|
||||
|
Reference in New Issue
Block a user