Skip to content

Commit 2b9c1e9

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents e292ea4 + d3ce48f commit 2b9c1e9

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ 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.5
20+
21+
- Internal API fixes and improvments.
22+
1923
## Enhancements in Version 22.4
2024

2125
- Added ExportShapesAsSvg to HtmlSaveOption.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asposewordscloud",
3-
"version": "22.4.0",
3+
"version": "22.5.0",
44
"description": "Aspose.Words Cloud SDK for Node.js",
55
"homepage": "https://products.aspose.cloud/words/cloud",
66
"author": {

src/internal/requestHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ async function invokeApiMethodInternal(requestOptions: request.OptionsWithUri, c
131131
requestOptions.timeout = 1000 * confguration.timeout;
132132

133133
requestOptions.headers["x-aspose-client"] = "nodejs sdk";
134-
requestOptions.headers["x-aspose-client-version"] = "22.4";
134+
requestOptions.headers["x-aspose-client-version"] = "22.5";
135135

136136
requestOptions.uri = encodeURI(requestOptions.uri.toString());
137137

src/model/pageSetup.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,7 @@ export namespace PageSetup {
457457
Tabloid = 'Tabloid' as any,
458458
Paper10x14 = 'Paper10x14' as any,
459459
Paper11x17 = 'Paper11x17' as any,
460+
Number10Envelope = 'Number10Envelope' as any,
460461
Custom = 'Custom' as any
461462
}
462463

src/model/paragraphFormatBase.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,8 @@ export namespace ParagraphFormatBase {
333333
ArabicMediumKashida = 'ArabicMediumKashida' as any,
334334
ArabicHighKashida = 'ArabicHighKashida' as any,
335335
ArabicLowKashida = 'ArabicLowKashida' as any,
336-
ThaiDistributed = 'ThaiDistributed' as any
336+
ThaiDistributed = 'ThaiDistributed' as any,
337+
MathElementCenterAsGroup = 'MathElementCenterAsGroup' as any
337338
}
338339

339340
export enum DropCapPositionEnum {

src/model/pdfDigitalSignatureDetailsData.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,9 @@ export class PdfDigitalSignatureDetailsData {
109109
// tslint:disable-next-line:no-namespace
110110
export namespace PdfDigitalSignatureDetailsData {
111111
export enum HashAlgorithmEnum {
112-
Sha1 = 'Sha1' as any,
113112
Sha256 = 'Sha256' as any,
114113
Sha384 = 'Sha384' as any,
115114
Sha512 = 'Sha512' as any,
116-
Md5 = 'Md5' as any,
117115
RipeMD160 = 'RipeMD160' as any
118116
}
119117
}

0 commit comments

Comments
 (0)