From 185cfa394b80a918b93601b80d4cd1afa6c14cc2 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 c7d2d4c99..1f57b77e0 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; } }