Skip to content

Commit 34f698f

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 9aec777 + 4f0c399 commit 34f698f

30 files changed

+120
-74
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ 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 25.11
20+
21+
- Added 'OfficeMathExportMode' property for TextSaveOptionsData class.
22+
- Added 'ExportFloatingShapesAsInlineTag' property for PdfSaveOptionsData class.
23+
24+
1925
## Enhancements in Version 25.8
2026

2127

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": "25.10.0",
3+
"version": "25.11.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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export class WordsApi implements Encryptor {
106106
}
107107

108108
/**
109-
* Accepts all revisions in the document.
109+
* Accepts all the revisions in the document.
110110
* @param requestObj contains request parameters
111111
*/
112112
public async acceptAllRevisions(requestObj: model.AcceptAllRevisionsRequest): Promise< model.WordsIncomingMessage< model.RevisionsModificationResponse > > {
@@ -124,7 +124,7 @@ export class WordsApi implements Encryptor {
124124
}
125125

126126
/**
127-
* Accepts all revisions in the document.
127+
* Accepts all the revisions in the document.
128128
* @param requestObj contains request parameters
129129
*/
130130
public async acceptAllRevisionsOnline(requestObj: model.AcceptAllRevisionsOnlineRequest): Promise< model.WordsIncomingMessage< model.AcceptAllRevisionsOnlineResponse > > {
@@ -3106,7 +3106,7 @@ export class WordsApi implements Encryptor {
31063106
}
31073107

31083108
/**
3109-
* Get assymetric public key.
3109+
* Get asymmetric public key.
31103110
* @param requestObj contains request parameters
31113111
*/
31123112
public async getPublicKey(requestObj: model.GetPublicKeyRequest): Promise< model.WordsIncomingMessage< model.PublicKeyResponse > > {

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"] = "25.10";
134+
requestOptions.headers["x-aspose-client-version"] = "25.11";
135135
requestOptions.encoding = null;
136136

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

src/model/comment.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ export class Comment extends CommentLink {
101101

102102
/**
103103
* Gets or sets the author name for a comment.
104-
* Cannot be null.Default is empty string.
104+
* Cannot be null.Default is an empty string.
105105
*/
106106
public author: string;
107107

108108
/**
109109
* Gets or sets the initials of the user associated with a specific comment.
110-
* Cannot be null.Default is empty string.
110+
* Cannot be null.Default is an empty string.
111111
*/
112112
public initial: string;
113113

src/model/commentBase.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ export abstract class CommentBase implements ModelInterface {
9292

9393
/**
9494
* Gets or sets the author name for a comment.
95-
* Cannot be null.Default is empty string.
95+
* Cannot be null.Default is an empty string.
9696
*/
9797
public author: string;
9898

9999
/**
100100
* Gets or sets the initials of the user associated with a specific comment.
101-
* Cannot be null.Default is empty string.
101+
* Cannot be null.Default is an empty string.
102102
*/
103103
public initial: string;
104104

src/model/compressOptions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ export class CompressOptions implements ModelInterface {
5959
}
6060

6161
/**
62-
* Gets or sets the quality level of images from 0 to 100. Default value is 75.
62+
* Gets or sets the quality level of images from 0 to 100. The default value is 75.
6363
*/
6464
public imagesQuality: number;
6565

6666
/**
6767
* Gets or sets the resize factor of images.
6868
* This value determines how many times the size of the images in the document will be reduced.
69-
* The parameter value must be greater than 1 for resizing. Default value is 1 and has no effect on images size.
69+
* The parameter value must be greater than 1 for resizing. The default value is 1 and has no effect on images size.
7070
*/
7171
public imagesReduceSizeFactor: number;
7272

src/model/customXmlPart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class CustomXmlPart extends CustomXmlPartLink {
6868

6969
/**
7070
* Gets or sets the custom xml part data.
71-
* Cannot be null.Default is empty string.
71+
* Cannot be null.Default is an empty string.
7272
*/
7373
public data: string;
7474

src/model/fieldOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export class FieldOptions implements ModelInterface {
116116
}
117117

118118
/**
119-
* Gets or sets Curren tUser.
119+
* Gets or sets Current User.
120120
*/
121121
public currentUser: UserInformation;
122122

src/model/footnote.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export class Footnote extends FootnoteLink {
9191

9292
/**
9393
* Gets or sets the custom reference mark to be used for this footnote.
94-
* Default value is Empty, meaning auto-numbered footnotes are used.
94+
* The default value is Empty, meaning auto-numbered footnotes are used.
9595
* RTF-format can only store 1 symbol as custom reference mark, so upon export only the first symbol will be written others will be discard.
9696
*/
9797
public referenceMark: string;

0 commit comments

Comments
 (0)