@stndrds/schema 1.0.0-alpha.147 → 1.0.0-alpha.148
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.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -3014,6 +3014,12 @@ interface UserProfile extends Timestamps {
|
|
|
3014
3014
|
* Last login timestamp (updated on each successful auth)
|
|
3015
3015
|
*/
|
|
3016
3016
|
lastLoginAt?: Date;
|
|
3017
|
+
/**
|
|
3018
|
+
* Whether the user is still pending their initial invitation (has never logged in).
|
|
3019
|
+
* Derived field — true when `lastLoginAt` is unset.
|
|
3020
|
+
* Used by the UI to gate "Resend invite" vs "Reset access" actions.
|
|
3021
|
+
*/
|
|
3022
|
+
invitePending: boolean;
|
|
3017
3023
|
}
|
|
3018
3024
|
/**
|
|
3019
3025
|
* Data required to create a new user profile.
|
package/dist/index.d.ts
CHANGED
|
@@ -3014,6 +3014,12 @@ interface UserProfile extends Timestamps {
|
|
|
3014
3014
|
* Last login timestamp (updated on each successful auth)
|
|
3015
3015
|
*/
|
|
3016
3016
|
lastLoginAt?: Date;
|
|
3017
|
+
/**
|
|
3018
|
+
* Whether the user is still pending their initial invitation (has never logged in).
|
|
3019
|
+
* Derived field — true when `lastLoginAt` is unset.
|
|
3020
|
+
* Used by the UI to gate "Resend invite" vs "Reset access" actions.
|
|
3021
|
+
*/
|
|
3022
|
+
invitePending: boolean;
|
|
3017
3023
|
}
|
|
3018
3024
|
/**
|
|
3019
3025
|
* Data required to create a new user profile.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stndrds/schema",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.148",
|
|
4
4
|
"description": "Standard schema definitions and utilities",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"expr-eval": "^2.0.2",
|
|
132
132
|
"libphonenumber-js": "^1.12.31",
|
|
133
133
|
"zod": "^4.2.1",
|
|
134
|
-
"@stndrds/constants": "1.0.0-alpha.
|
|
134
|
+
"@stndrds/constants": "1.0.0-alpha.148"
|
|
135
135
|
},
|
|
136
136
|
"devDependencies": {
|
|
137
137
|
"@types/node": "^25.0.3",
|