@hmcts/rpx-xui-node-lib 2.28.0 → 2.29.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/auth/models/mySessionData.interface.d.ts +25 -0
- package/dist/auth/models/mySessionData.interface.d.ts.map +1 -0
- package/dist/auth/models/mySessionData.interface.js +3 -0
- package/dist/auth/models/mySessionData.interface.js.map +1 -0
- package/dist/auth/models/sessionData.interface.d.ts +7 -0
- package/dist/auth/models/sessionData.interface.d.ts.map +1 -0
- package/dist/auth/models/sessionData.interface.js +3 -0
- package/dist/auth/models/sessionData.interface.js.map +1 -0
- package/dist/auth/models/strategy.class.d.ts +3 -2
- package/dist/auth/models/strategy.class.d.ts.map +1 -1
- package/dist/auth/models/strategy.class.js +36 -14
- package/dist/auth/models/strategy.class.js.map +1 -1
- package/dist/auth/oidc/models/openid.class.d.ts.map +1 -1
- package/dist/auth/oidc/models/openid.class.js +10 -9
- package/dist/auth/oidc/models/openid.class.js.map +1 -1
- package/dist/session/models/redisSessionStore.class.d.ts +1 -1
- package/dist/session/models/redisSessionStore.class.d.ts.map +1 -1
- package/dist/session/models/redisSessionStore.class.js +28 -2
- package/dist/session/models/redisSessionStore.class.js.map +1 -1
- package/package.json +27 -21
- package/CHANGELOG.md +0 -572
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmcts/rpx-xui-node-lib",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Common
|
|
3
|
+
"version": "2.29.1",
|
|
4
|
+
"description": "Common nodejs library components for XUI",
|
|
5
5
|
"main": "dist/index",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"commit": "git cz",
|
|
15
15
|
"ci:lint": "eslint \"*/**/*.{js,ts}\" --quiet",
|
|
16
16
|
"ci": "yarn && yarn ci:lint && yarn build",
|
|
17
|
-
"watch": "tsc --watch"
|
|
17
|
+
"watch": "tsc --watch",
|
|
18
|
+
"prepare": "husky"
|
|
18
19
|
},
|
|
19
20
|
"repository": {
|
|
20
21
|
"type": "git",
|
|
@@ -40,20 +41,20 @@
|
|
|
40
41
|
"dist/**/*"
|
|
41
42
|
],
|
|
42
43
|
"devDependencies": {
|
|
43
|
-
"@commitlint/cli": "^8.
|
|
44
|
+
"@commitlint/cli": "^17.8.1",
|
|
44
45
|
"@commitlint/config-conventional": "^8.2.0",
|
|
45
|
-
"@semantic-release/changelog": "^
|
|
46
|
-
"@semantic-release/git": "^
|
|
47
|
-
"@semantic-release/github": "^
|
|
48
|
-
"@types/connect-redis": "^0.0.
|
|
46
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
47
|
+
"@semantic-release/git": "^10.0.1",
|
|
48
|
+
"@semantic-release/github": "^8.1.0",
|
|
49
|
+
"@types/connect-redis": "^0.0.23",
|
|
49
50
|
"@types/csurf": "^1.9.36",
|
|
50
51
|
"@types/debug": "^4.1.5",
|
|
51
52
|
"@types/express": "^4.17.2",
|
|
52
|
-
"@types/express-session": "
|
|
53
|
+
"@types/express-session": "1.17.10",
|
|
53
54
|
"@types/hapi__joi": "^17.1.0",
|
|
54
55
|
"@types/jest": "^29.4.0",
|
|
55
56
|
"@types/jwt-decode": "^2.2.1",
|
|
56
|
-
"@types/node": "^
|
|
57
|
+
"@types/node": "^18.17.0",
|
|
57
58
|
"@types/passport": "^1.0.2",
|
|
58
59
|
"@types/passport-oauth2": "^1.4.9",
|
|
59
60
|
"@types/session-file-store": "^1.2.1",
|
|
@@ -61,23 +62,23 @@
|
|
|
61
62
|
"@typescript-eslint/parser": "^3.10.1",
|
|
62
63
|
"commitizen": "^4.0.3",
|
|
63
64
|
"commitlint-config-cz": "^0.13.1",
|
|
64
|
-
"cz-conventional-changelog": "^3.0
|
|
65
|
-
"eslint": "^
|
|
65
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
66
|
+
"eslint": "^7.32.0",
|
|
66
67
|
"eslint-config-prettier": "^6.15.0",
|
|
67
68
|
"eslint-plugin-prettier": "^3.3.1",
|
|
68
|
-
"husky": "
|
|
69
|
-
"jest": "^
|
|
69
|
+
"husky": "^8.0.0",
|
|
70
|
+
"jest": "^29.7.0",
|
|
70
71
|
"jest-environment-jsdom": "^27.5.1",
|
|
71
72
|
"lint-staged": "^10.2.2",
|
|
72
73
|
"prettier": "^2.0.5",
|
|
73
|
-
"semantic-release": "^
|
|
74
|
-
"standard-version": "^
|
|
74
|
+
"semantic-release": "^19.0.2",
|
|
75
|
+
"standard-version": "^9.5.0",
|
|
75
76
|
"supports-color": "^7.1.0",
|
|
76
|
-
"ts-jest": "^
|
|
77
|
+
"ts-jest": "^29.1.4",
|
|
77
78
|
"ts-node": "^10.8.1",
|
|
78
79
|
"tslint": "^6.1.0",
|
|
79
80
|
"tslint-config-prettier": "^1.18.0",
|
|
80
|
-
"typescript": "^4.
|
|
81
|
+
"typescript": "^4.8.2"
|
|
81
82
|
},
|
|
82
83
|
"config": {
|
|
83
84
|
"commitizen": {
|
|
@@ -94,16 +95,21 @@
|
|
|
94
95
|
"deepmerge": "^4.2.2",
|
|
95
96
|
"express": "^4.17.1",
|
|
96
97
|
"express-session": "^1.17.0",
|
|
97
|
-
"jest-mock-axios": "^4.
|
|
98
|
-
"jest-ts-auto-mock": "^2.
|
|
98
|
+
"jest-mock-axios": "^4.7.3",
|
|
99
|
+
"jest-ts-auto-mock": "^2.1.0",
|
|
99
100
|
"jwt-decode": "^2.2.0",
|
|
100
101
|
"openid-client": "^3.10.0",
|
|
101
102
|
"otplib": "^12.0.1",
|
|
102
103
|
"passport": "^0.4.1",
|
|
103
104
|
"passport-oauth2": "^1.5.0",
|
|
104
105
|
"redis": "^3.0.2",
|
|
105
|
-
"session-file-store": "^1.
|
|
106
|
+
"session-file-store": "^1.5.0",
|
|
106
107
|
"ts-auto-mock": "^3.5.0",
|
|
107
108
|
"ttypescript": "^1.5.13"
|
|
109
|
+
},
|
|
110
|
+
"resolutions": {
|
|
111
|
+
"@babel/traverse": "7.23.2",
|
|
112
|
+
"minimatch": "3.0.5",
|
|
113
|
+
"minimist": "1.2.6"
|
|
108
114
|
}
|
|
109
115
|
}
|