Skip to content

Commit 8fb830e

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents d87792c + caa825d commit 8fb830e

31 files changed

+4703
-10123
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ dist/*
1515
# reports
1616
reports/*
1717
/Settings/servercreds.json
18+
19+
package-lock.json

JenkinsfileRelease

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ node('words-linux') {
7979

8080
gitlabCommitStatus("audit security") {
8181
stage('audit security'){
82-
sh "npm audit fix --production"
82+
sh "npm audit fix"
8383
sh "npm audit --production --audit-level=moderate"
8484
}
8585
}

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ Feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/w
1616
- Add & remove watermarks and protection.
1717
- Read & write access to Document Object Model.
1818

19+
## Enhancements in Version 22.3
20+
21+
- Online methods returns the dictionary of files with included original filename as key instead of single file content in responses.
22+
- Parameters contained sensitive data should be passed in encrypted form. Names of the parameters have 'encrypted' prefix.
23+
- Added Encrypt method to encrypt data on the API public key. Use it to prepare values for parameters required encrypted data.
24+
- GetPublicKey method is not billable.
25+
26+
1927
## Enhancements in Version 22.2
2028

2129
- Made 'SaveOprionsData.SaveFormat' property readonly with default value.

examples/AcceptAllRevisionsOnline.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ wordsApi.acceptAllRevisionsOnline(request)
1313
.then((requestResult) => {
1414
// tslint:disable-next-line:no-console
1515
console.log("Result of Request: ", requestResult);
16-
fs.writeFileSync("test_result.docx", requestResult.body.document);
16+
fs.writeFileSync("test_result.docx", requestResult.body.document.entries().next().value);
1717
});

0 commit comments

Comments
 (0)