Skip to content

Commit edacc20

Browse files
committed
README and package update
1 parent 1916d4e commit edacc20

2 files changed

Lines changed: 16 additions & 5 deletions

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ SDK for building integrations in Hyperproof.
44

55
## Release Notes
66

7+
### 2.0.0
8+
9+
- **Breaking:** Updated to Node.js 22
10+
- **Breaking:** Removed `ErrorName` enum and `RefreshTokenError` class
11+
- Added `CredentialFieldType` enum (moved from `@hyperproof/hypersync-models`)
12+
- Added HTTP agent management with connection pooling and keep-alive support
13+
- Expanded `HyperproofApiClient` with additional API methods
14+
- Plus other bug fixes and performance enhancements
15+
716
### 1.2.0
817

918
- Update TypeScript to version 5.5.4

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperproof/integration-sdk",
3-
"version": "1.2.0",
3+
"version": "2.0.0",
44
"description": "Hyperproof Integration SDK",
55
"license": "MIT",
66
"repository": {
@@ -14,7 +14,7 @@
1414
"lint": "./node_modules/eslint/bin/eslint.js src/**/*.ts"
1515
},
1616
"engines": {
17-
"node": "^16.19.1 || ^18.17.1"
17+
"node": "22"
1818
},
1919
"dependencies": {
2020
"@js-joda/core": "3.2.0",
@@ -23,8 +23,8 @@
2323
"@pollyjs/persister-fs": "6.0.6",
2424
"abort-controller": "3.0.0",
2525
"body-parser": "1.20.3",
26-
"express": "4.21.0",
27-
"form-data": "3.0.0",
26+
"express": "4.21.2",
27+
"form-data": "3.0.4",
2828
"html-entities": "2.5.2",
2929
"http-errors": "2.0.0",
3030
"http-status-codes": "2.3.0",
@@ -34,12 +34,14 @@
3434
"node-fetch": "2.7.0",
3535
"query-string": "7.1.3",
3636
"superagent": "10.1.0",
37+
"uuid": "10.0.0",
3738
"xss": "1.0.15"
3839
},
3940
"devDependencies": {
4041
"@types/express": "^4.17.21",
41-
"@types/node-fetch": "^2.6.11",
42+
"@types/node-fetch": "^2.6.13",
4243
"@types/superagent": "^8.1.9",
44+
"@types/uuid": "^8.3.1",
4345
"@typescript-eslint/eslint-plugin": "8.7.0",
4446
"@typescript-eslint/parser": "8.7.0",
4547
"copyfiles": "^2.4.1",

0 commit comments

Comments
 (0)