@passlock/node 0.9.29 → 0.9.30

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 CHANGED
@@ -21,6 +21,13 @@ export declare class PasslockUnsafe {
21
21
  readonly familyName?: string;
22
22
  readonly email?: string;
23
23
  readonly emailVerified?: boolean;
24
+ readonly user?: {
25
+ readonly id: string;
26
+ readonly email: string;
27
+ readonly givenName: string;
28
+ readonly familyName: string;
29
+ readonly emailVerified: boolean;
30
+ };
24
31
  readonly iss: string;
25
32
  readonly aud: string;
26
33
  readonly sub: string;
@@ -32,13 +39,6 @@ export declare class PasslockUnsafe {
32
39
  readonly userVerified: boolean;
33
40
  readonly authType: "email" | "apple" | "google" | "passkey";
34
41
  readonly authId: string;
35
- readonly user?: {
36
- readonly id: string;
37
- readonly email: string;
38
- readonly givenName: string;
39
- readonly familyName: string;
40
- readonly emailVerified: boolean;
41
- };
42
42
  readonly authStatement: {
43
43
  readonly userVerified: boolean;
44
44
  readonly authType: "email" | "apple" | "google" | "passkey";
@@ -60,6 +60,13 @@ export declare class Passlock {
60
60
  readonly familyName?: string;
61
61
  readonly email?: string;
62
62
  readonly emailVerified?: boolean;
63
+ readonly user?: {
64
+ readonly id: string;
65
+ readonly email: string;
66
+ readonly givenName: string;
67
+ readonly familyName: string;
68
+ readonly emailVerified: boolean;
69
+ };
63
70
  readonly iss: string;
64
71
  readonly aud: string;
65
72
  readonly sub: string;
@@ -71,13 +78,6 @@ export declare class Passlock {
71
78
  readonly userVerified: boolean;
72
79
  readonly authType: "email" | "apple" | "google" | "passkey";
73
80
  readonly authId: string;
74
- readonly user?: {
75
- readonly id: string;
76
- readonly email: string;
77
- readonly givenName: string;
78
- readonly familyName: string;
79
- readonly emailVerified: boolean;
80
- };
81
81
  readonly authStatement: {
82
82
  readonly userVerified: boolean;
83
83
  readonly authType: "email" | "apple" | "google" | "passkey";
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const PASSLOCK_CLIENT_VERSION = "0.9.29";
1
+ export declare const PASSLOCK_CLIENT_VERSION = "0.9.30";
package/dist/version.js CHANGED
@@ -1,2 +1,2 @@
1
- export const PASSLOCK_CLIENT_VERSION = '0.9.29';
1
+ export const PASSLOCK_CLIENT_VERSION = '0.9.30';
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@passlock/node",
3
3
  "type": "module",
4
- "version": "0.9.29",
4
+ "version": "0.9.30",
5
5
  "description": "Passkey authentication and social login for node.js/express apps",
6
6
  "keywords": [
7
7
  "passkey",
@@ -38,30 +38,30 @@
38
38
  "!dist/**/*.spec.*"
39
39
  ],
40
40
  "dependencies": {
41
- "effect": "3.8.3",
42
- "@passlock/shared": "0.9.29"
41
+ "effect": "3.8.4",
42
+ "@passlock/shared": "0.9.30"
43
43
  },
44
44
  "devDependencies": {
45
- "@effect/schema": "0.74.0",
45
+ "@effect/schema": "0.74.1",
46
46
  "@qetza/replacetokens": "^1.7.0",
47
47
  "@total-typescript/tsconfig": "^1.0.4",
48
48
  "@trivago/prettier-plugin-sort-imports": "^4.3.0",
49
49
  "@tsconfig/node20": "^20.1.4",
50
- "@types/node": "^22.5.5",
51
- "@typescript-eslint/eslint-plugin": "^8.6.0",
52
- "@typescript-eslint/parser": "^8.6.0",
53
- "@vitest/coverage-v8": "^2.1.1",
54
- "@vitest/ui": "^2.1.1",
55
- "eslint": "^9.10.0",
50
+ "@types/node": "^22.7.4",
51
+ "@typescript-eslint/eslint-plugin": "^8.8.0",
52
+ "@typescript-eslint/parser": "^8.8.0",
53
+ "@vitest/coverage-v8": "^2.1.2",
54
+ "@vitest/ui": "^2.1.2",
55
+ "eslint": "^9.12.0",
56
56
  "eslint-config-prettier": "^9.1.0",
57
- "globals": "^15.9.0",
57
+ "globals": "^15.10.0",
58
58
  "prettier": "^3.3.3",
59
59
  "publint": "^0.2.11",
60
60
  "rimraf": "^6.0.1",
61
61
  "tsx": "^4.19.1",
62
62
  "typescript": "^5.6.2",
63
- "vite": "^5.4.6",
64
- "vitest": "^2.1.1"
63
+ "vite": "^5.4.8",
64
+ "vitest": "^2.1.2"
65
65
  },
66
66
  "scripts": {
67
67
  "clean": "rimraf ./dist",