@mitreka/coreflow-types 0.0.22 → 0.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/auth.ts +7 -0
- package/package.json +1 -1
package/auth.ts
CHANGED
|
@@ -192,6 +192,13 @@ export type TokenPair = {
|
|
|
192
192
|
refresh_token: string;
|
|
193
193
|
};
|
|
194
194
|
|
|
195
|
+
export type UserAccount = {
|
|
196
|
+
id: string,
|
|
197
|
+
name: string,
|
|
198
|
+
email: string,
|
|
199
|
+
avatar: string
|
|
200
|
+
};
|
|
201
|
+
|
|
195
202
|
export type UserIdentity = {
|
|
196
203
|
company_id: string;
|
|
197
204
|
email: string;
|