Skip to content

Commit 2ecd78d

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 1bb3974 + 5b3ab44 commit 2ecd78d

File tree

345 files changed

+2160
-870
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

345 files changed

+2160
-870
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,23 @@ 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 24.1
20+
21+
- Added support for InsertAfterNode in the insert API without NodePath.
22+
- Added support for inserting nodes (runs/rows/cells/bookmarks) without NodePath.
23+
- Added support for transparency in the Watermark API.
24+
- Added support for password and encryptedPassword fields in FileReference.
25+
- Fixed missing href value in document responses.
26+
27+
1928
## Enhancements in Version 23.12
2029

2130
- Properties Name, Text, StartRange, EndRange marked as required for InsertBookmark operation.
2231
- Implemented DeleteOfficeMathObjects operation to delete all office math objects from document.
2332
- Parameter ProtectionRequest was removed from the UnprotectDocument operation. Now removing protection from a document does not require a password.
2433
- Model ProtectionRequest marked as deprecated, please use ProtectionRequestV2 instead for perform ProtectDocument operation. To change the password or protection type of protected document, the old password is no required.
34+
- Added fields Password and EncryptedPassword to FileReference for documents encrypted by password.
35+
- Removed parameter encryptedPassword2 from CompareDocument method. Please use FileReference password instead.
2536

2637

2738
## Enhancements in Version 23.11

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": "23.12.0",
3+
"version": "24.1.0",
44
"description": "Aspose.Words Cloud SDK for Node.js",
55
"homepage": "https://products.aspose.cloud/words/cloud",
66
"author": {

src/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="api.ts">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/internal/attributeInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="attributeInfo.ts">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/internal/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="auth.ts">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/internal/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="configuration.ts">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/internal/objectSerializer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="objectSerializer.ts">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/internal/requestHelper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="requestHelper.ts">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -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"] = "23.12";
134+
requestOptions.headers["x-aspose-client-version"] = "24.1";
135135
requestOptions.encoding = null;
136136

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

src/model/apiError.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="apiError.ts">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

src/model/availableFontsResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="availableFontsResponse.ts">
4-
* Copyright (c) 2023 Aspose.Words for Cloud
4+
* Copyright (c) 2024 Aspose.Words for Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

0 commit comments

Comments
 (0)