Skip to content

Commit 6697c73

Browse files
committed
Merge branch 'master' into ON-47530
2 parents a070da4 + f291eea commit 6697c73

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- custom pdf read only validation
1313

14+
## [11.0.1] - 2025-03-19
15+
16+
### Fixed
17+
18+
- `Forms.getForm()` using legacy endpoint.
19+
1420
## [11.0.0] - 2025-03-11
1521

1622
### Added

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@oneblink/sdk",
33
"description": "OneBlink SDK to serve as an entry point for all OneBlink Services in NodeJS",
4-
"version": "11.0.0",
4+
"version": "11.0.1",
55
"author": "OneBlink <[email protected]> (https://oneblink.io)",
66
"bugs": {
77
"url": "https://github.com/oneblink/sdk-node-js/issues"
@@ -21,7 +21,7 @@
2121
"@aws-sdk/client-s3": "^3.637.0",
2222
"@microsoft/eslint-plugin-sdl": "^0.2.2",
2323
"@oneblink/release-cli": "^3.2.1",
24-
"@oneblink/types": "github:oneblink/types#ON-47529",
24+
"@oneblink/types": "github:oneblink/types",
2525
"@types/content-disposition": "^0.5.8",
2626
"@types/jest": "^29.5.12",
2727
"@types/joi": "^17.2.3",

src/classes/Forms.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ export default class Forms extends OneBlinkAPI {
875875
return Promise.reject(new TypeError('Must supply "formId" as a number'))
876876
}
877877

878-
return super.searchRequest(`/forms/${formId}`, {
878+
return super.searchRequest(`/v2/forms/${formId}`, {
879879
injectForms: injectForms || false,
880880
})
881881
}

0 commit comments

Comments
 (0)