From af0e490b31ca107e95f4f2e4db4555939c7aacbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20B=C5=82a=C5=BCejewicz=20=28Peter=20Blazejewicz=29?= Date: Mon, 5 Aug 2019 22:16:26 +0200 Subject: [PATCH] [auth0-js] add documentation for `username` signup option (#37363) Update to #37259 and @auth0/auth0.js#1006 --- types/auth0-js/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/auth0-js/index.d.ts b/types/auth0-js/index.d.ts index 31b97e528d..529ef1e512 100644 --- a/types/auth0-js/index.d.ts +++ b/types/auth0-js/index.d.ts @@ -738,6 +738,7 @@ export interface DbSignUpOptions { email: string; password: string; connection: string; + /** User desired username. Required if you use a database connection and you have enabled `Requires Username` */ username?: string; scope?: string; user_metadata?: any;