ClientOptions["cloud"] should have optional auth fields (#1032)

This commit is contained in:
Chris Earle
2020-01-07 06:08:57 -05:00
committed by Tomas Della Vedova
parent 6cef0aff18
commit 185cfa394b

4
index.d.ts vendored
View File

@ -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;
}
}