From 1a2476abb3ea5642ab7e47ee85270d5c4127cc9a 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 4255877e9..c518a98c2 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; } }