@aooth/user 0.1.60 → 0.1.62

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aooth/user",
3
- "version": "0.1.60",
3
+ "version": "0.1.62",
4
4
  "description": "User credential primitives for aoothjs",
5
5
  "keywords": [
6
6
  "aoothjs",
@@ -60,14 +60,14 @@
60
60
  "access": "public"
61
61
  },
62
62
  "devDependencies": {
63
- "@atscript/core": "^0.1.88",
64
- "@atscript/db": "^0.1.126",
65
- "@atscript/db-sql-tools": "^0.1.126",
66
- "@atscript/db-sqlite": "^0.1.126",
67
- "@atscript/typescript": "^0.1.88",
63
+ "@atscript/core": "^0.1.93",
64
+ "@atscript/db": "^0.1.129",
65
+ "@atscript/db-sql-tools": "^0.1.129",
66
+ "@atscript/db-sqlite": "^0.1.129",
67
+ "@atscript/typescript": "^0.1.93",
68
68
  "@types/better-sqlite3": "^7.6.13",
69
69
  "better-sqlite3": "^12.6.2",
70
- "unplugin-atscript": "^0.1.88"
70
+ "unplugin-atscript": "^0.1.93"
71
71
  },
72
72
  "peerDependencies": {
73
73
  "@atscript/db": ">=0.1.79"
@@ -37,24 +37,24 @@ export declare class AoothFederatedIdentity {
37
37
  "provider": string
38
38
  "subject": string
39
39
  "userId": string
40
- "email"?: string
41
- "emailVerified"?: boolean
42
- "displayName"?: string
43
- "avatarUrl"?: string
40
+ "email"?: string | null
41
+ "emailVerified"?: boolean | null
42
+ "displayName"?: string | null
43
+ "avatarUrl"?: string | null
44
44
  "linkedAt": number /* timestamp */
45
- "lastLoginAt"?: number /* timestamp */
45
+ "lastLoginAt"?: number /* timestamp */ | null
46
46
  }
47
47
  static __ownProps: {
48
48
  "id": string
49
49
  "provider": string
50
50
  "subject": string
51
51
  "userId": string
52
- "email"?: string
53
- "emailVerified"?: boolean
54
- "displayName"?: string
55
- "avatarUrl"?: string
52
+ "email"?: string | null
53
+ "emailVerified"?: boolean | null
54
+ "displayName"?: string | null
55
+ "avatarUrl"?: string | null
56
56
  "linkedAt": number /* timestamp */
57
- "lastLoginAt"?: number /* timestamp */
57
+ "lastLoginAt"?: number /* timestamp */ | null
58
58
  }
59
59
 
60
60
  static __pk: string