From f3d0441f1f2070b1976c322e6ff72562cab17492 Mon Sep 17 00:00:00 2001 From: Ella Nan <38847123+ellanan@users.noreply.github.com> Date: Fri, 31 Jul 2026 09:57:42 -0400 Subject: [PATCH] feat: add line_3 to order address types Orders API now supports an optional third address line (line_3) on order billing and shipping addresses and on shipping group addresses. The field is omitted from responses when empty. --- src/types/order.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/order.d.ts b/src/types/order.d.ts index d0ef70d..509c1fa 100644 --- a/src/types/order.d.ts +++ b/src/types/order.d.ts @@ -38,6 +38,7 @@ export interface OrderAddressBase { company_name?: string line_1: string line_2?: string + line_3?: string city?: string postcode: string county?: string