From a3d9f3db6fe5abbd53c1b9ac2ebacafe16c00444 Mon Sep 17 00:00:00 2001 From: Matthew Dierker Date: Sun, 23 Aug 2020 17:13:41 -0700 Subject: [PATCH] fix: change Name on address to be optional --- src/sections/orders.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sections/orders.ts b/src/sections/orders.ts index 55f03095..b21f3a1f 100644 --- a/src/sections/orders.ts +++ b/src/sections/orders.ts @@ -97,7 +97,7 @@ const conditionSubtype: Codec = oneOf( ) const Address = Codec.interface({ - Name: string, + Name: optional(string), AddressLine1: optional(string), AddressLine2: optional(string), AddressLine3: optional(string),