From 6b7aad4d77892e426e7f33ee213fb60dc1d34243 Mon Sep 17 00:00:00 2001 From: Nate Waddoups Date: Sun, 30 Jun 2024 06:05:26 -0700 Subject: [PATCH] [ts] Fix multipass_identifier type (#654) --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index bc5a896..e56f86e 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1408,7 +1408,7 @@ declare namespace Shopify { last_name: string; metafield?: IObjectMetafield; // From https://help.shopify.com/api/reference/customer but not visible in test API call phone: string; - multipass_identifier: null; + multipass_identifier: string | null; last_order_id: number | null; last_order_name: string | null; note: string | null;