From 51568ed505b3abfd681e343a69c1c12de0ad785a Mon Sep 17 00:00:00 2001 From: Chris Earle Date: Tue, 7 Jan 2020 06:08:57 -0500 Subject: [PATCH] ClientOptions["cloud"] should have optional auth fields (#1032) --- index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index f0879b818..e634c6fc9 100644 --- a/index.d.ts +++ b/index.d.ts @@ -101,8 +101,8 @@ interface ClientOptions { cloud?: { id: string; // TODO: remove username and password here in 8 - username: string; - password: string; + username?: string; + password?: string; } }