@authgate/browser 0.5.0 → 0.5.1
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/dist/index.d.ts +4 -0
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -84,6 +84,10 @@ export type CurrentUser = {
|
|
|
84
84
|
id: string;
|
|
85
85
|
email: string;
|
|
86
86
|
username: string;
|
|
87
|
+
/** Whether the user account is disabled */
|
|
88
|
+
disabled: boolean;
|
|
89
|
+
/** Account creation time (ISO 8601) */
|
|
90
|
+
created_at: string;
|
|
87
91
|
};
|
|
88
92
|
/**
|
|
89
93
|
* Fetches the currently authenticated user's identity.
|
package/dist/index.js
CHANGED
package/package.json
CHANGED