From 9e955aaf90be6bffca667ca2923b59929bdbd10d Mon Sep 17 00:00:00 2001 From: Stephon Brown Date: Thu, 18 Sep 2025 16:27:29 -0400 Subject: [PATCH] fix(billing): allow for nullable taxId for families organizations --- .../models/request/preview-organization-invoice.request.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/common/src/billing/models/request/preview-organization-invoice.request.ts b/libs/common/src/billing/models/request/preview-organization-invoice.request.ts index bfeecb4eb23..a66dc5c46a5 100644 --- a/libs/common/src/billing/models/request/preview-organization-invoice.request.ts +++ b/libs/common/src/billing/models/request/preview-organization-invoice.request.ts @@ -45,9 +45,9 @@ class SecretsManager { class TaxInformation { postalCode: string; country: string; - taxId: string; + taxId: string | null; - constructor(postalCode: string, country: string, taxId: string) { + constructor(postalCode: string, country: string, taxId: string | null) { this.postalCode = postalCode; this.country = country; this.taxId = taxId;