From 76ab63a20061c72c504434a771b121c25e926131 Mon Sep 17 00:00:00 2001 From: olsch01 Date: Thu, 26 Feb 2026 08:53:15 -0500 Subject: [PATCH] Fix TypeScript nullable types for subscription fields Co-Authored-By: Claude Opus 4.6 --- .../modules/organizations/entities/organization.entity.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/modules/organizations/entities/organization.entity.ts b/backend/src/modules/organizations/entities/organization.entity.ts index f9cdfa9..3ef35ec 100644 --- a/backend/src/modules/organizations/entities/organization.entity.ts +++ b/backend/src/modules/organizations/entities/organization.entity.ts @@ -62,13 +62,13 @@ export class Organization { planLevel: string; @Column({ name: 'payment_date', type: 'date', nullable: true }) - paymentDate: Date; + paymentDate: Date | null; @Column({ name: 'confirmation_number', nullable: true }) - confirmationNumber: string; + confirmationNumber: string | null; @Column({ name: 'renewal_date', type: 'date', nullable: true }) - renewalDate: Date; + renewalDate: Date | null; @CreateDateColumn({ name: 'created_at', type: 'timestamptz' }) createdAt: Date;