Skip to content

Commit 497b518

Browse files
committed
ON-47530 # Added custom pdf read only validation
1 parent 96752fa commit 497b518

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Added
11+
12+
- custom pdf read only validation
13+
1014
## [11.0.0] - 2025-03-11
1115

1216
### Added

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -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",
24+
"@oneblink/types": "github:oneblink/types#ON-47529",
2525
"@types/content-disposition": "^0.5.8",
2626
"@types/jest": "^29.5.12",
2727
"@types/joi": "^17.2.3",

src/lib/forms-schema/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ const pdfSubmissionEventConfiguration = {
148148
.default([]),
149149
pdfSize: Joi.valid('A4', 'Letter'),
150150
customPdfId: Joi.string().uuid(),
151+
isCustomPdfEditable: Joi.bool().default(false),
151152
...approvalFormsInclusionConfiguration,
152153
}
153154

0 commit comments

Comments
 (0)