Skip to content

Commit cbe57c4

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 1e9eba0 + 975f9fb commit cbe57c4

File tree

5 files changed

+5
-16
lines changed

5 files changed

+5
-16
lines changed

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.7.0",
3+
"version": "23.8.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"] = "23.7";
134+
requestOptions.headers["x-aspose-client-version"] = "23.8";
135135
requestOptions.encoding = null;
136136

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

src/model/epubSaveOptionsData.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ export class EpubSaveOptionsData extends HtmlSaveOptionsData {
4242
*/
4343
public static attributeTypeMap: Array<AttributeInfo> = [
4444
{
45-
name: "epubNavigationMapLevel",
46-
baseName: "EpubNavigationMapLevel",
45+
name: "navigationMapLevel",
46+
baseName: "NavigationMapLevel",
4747
type: "number",
4848
}
4949
];
@@ -58,7 +58,7 @@ export class EpubSaveOptionsData extends HtmlSaveOptionsData {
5858
/**
5959
* Gets or sets the maximum level of headings populated to the navigation map when exporting.
6060
*/
61-
public epubNavigationMapLevel: number;
61+
public navigationMapLevel: number;
6262

6363
public constructor(init?: Partial< EpubSaveOptionsData >) {
6464
super(init);

src/model/saveOptionsData.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,6 @@ export abstract class SaveOptionsData implements ModelInterface {
9696
baseName: "UpdateLastSavedTimeProperty",
9797
type: "boolean",
9898
},
99-
{
100-
name: "updateSdtContent",
101-
baseName: "UpdateSdtContent",
102-
type: "boolean",
103-
},
10499
{
105100
name: "zipOutput",
106101
baseName: "ZipOutput",
@@ -177,11 +172,6 @@ export abstract class SaveOptionsData implements ModelInterface {
177172
*/
178173
public updateLastSavedTimeProperty: boolean;
179174

180-
/**
181-
* Gets or sets a value indicating whether content of StructuredDocumentTag is updated before saving.
182-
*/
183-
public updateSdtContent: boolean;
184-
185175
/**
186176
* Gets or sets a value indicating whether to zip output or not.
187177
* The default value is false.

test/document/loadWebDocumentTests.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ describe("loadWebDocument", () => {
4343
fileName: "google.doc",
4444
dmlEffectsRenderingMode: model.DocSaveOptionsData.DmlEffectsRenderingModeEnum.None,
4545
dmlRenderingMode: model.DocSaveOptionsData.DmlRenderingModeEnum.DrawingML,
46-
updateSdtContent: false,
4746
zipOutput: false
4847
})
4948
const requestData = new model.LoadWebDocumentData({

0 commit comments

Comments
 (0)