diff --git a/core/type/src/user.ts b/core/type/src/user.ts index 534bb7e8c..7ab76d537 100644 --- a/core/type/src/user.ts +++ b/core/type/src/user.ts @@ -54,3 +54,8 @@ export interface User extends AlwatrDocumentObject { */ postalCode?: string; } + +export interface UserAuth { + id: string; + token: string; +}