From 73f2bb05a83ccd10eaede12b922096b6f78f2905 Mon Sep 17 00:00:00 2001 From: Jacob Singer Date: Fri, 28 Jul 2023 14:02:37 -0700 Subject: [PATCH] fix(BrandDto): add clientUrl (#28) --- index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 71cea1d..0159006 100644 --- a/index.d.ts +++ b/index.d.ts @@ -139,6 +139,7 @@ export interface BrandDto { termsUrl: string | null; privacyUrl: string | null; customer: CustomerDto; + clientUrl: string | null; } /** @@ -153,7 +154,7 @@ export interface PresentationRequestDto { expirationDate: string | null; // ms since epoch, unix timestamp requestingBrand: BrandDto; issuingBrands: BrandDto[]; - description?: string | null + description?: string | null; } /**