Skip to content

Commit c166cd2

Browse files
SDK regenerated by CI server [ci skip]
1 parent b37dc84 commit c166cd2

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ Feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/w
1818

1919
## Enhancements in Version 22.10
2020

21+
- Added 'CacheHeaderFooterShapes' property for PdfSaveOptionsData class.
2122
- FileReference structure has been added that allows to determine how the document will be accessed: from the remote storage, or loaded directly in the request.
2223
- The 'AppendDocument' and 'AppendDocumentOnline' methods takes a 'FileReference' instead of an 'href' property.
24+
- Added property 'StartingNumber' for 'PageNumbers' class.
25+
- Added property 'GlobalCultureName' for 'FieldOptions' class.
2326

2427

2528
## Enhancements in Version 22.9

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.9.0",
3+
"version": "22.10.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.9";
134+
requestOptions.headers["x-aspose-client-version"] = "22.10";
135135

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

src/model/pdfSaveOptionsData.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
4949
* Attribute type map
5050
*/
5151
public static attributeTypeMap: Array<AttributeInfo> = [
52+
{
53+
name: "cacheHeaderFooterShapes",
54+
baseName: "CacheHeaderFooterShapes",
55+
type: "boolean",
56+
},
5257
{
5358
name: "compliance",
5459
baseName: "Compliance",
@@ -183,6 +188,11 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
183188
return super.getAttributeTypeMap().concat(PdfSaveOptionsData.attributeTypeMap);
184189
}
185190

191+
/**
192+
* Gets or sets a value indicating whether or not to cache shapes placed in header and footer of document.
193+
*/
194+
public cacheHeaderFooterShapes: boolean;
195+
186196
/**
187197
* Gets or sets the PDF standards compliance level for output documents.
188198
*/

src/model/saveOptionsData.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,6 @@ export abstract class SaveOptionsData implements ModelInterface {
7171
baseName: "FileName",
7272
type: "string",
7373
},
74-
{
75-
name: "flatOpcXmlMappingOnly",
76-
baseName: "FlatOpcXmlMappingOnly",
77-
type: "boolean",
78-
},
7974
{
8075
name: "imlRenderingMode",
8176
baseName: "ImlRenderingMode",
@@ -156,12 +151,6 @@ export abstract class SaveOptionsData implements ModelInterface {
156151
*/
157152
public fileName: string;
158153

159-
/**
160-
* Gets or sets value determining which document formats are allowed to be mapped by Aspose.Words.Markup.StructuredDocumentTag.XmlMapping.
161-
* By default only Aspose.Words.LoadFormat.FlatOpc document format is allowed to be mapped.
162-
*/
163-
public flatOpcXmlMappingOnly: boolean;
164-
165154
/**
166155
* Gets or sets the value determining how ink (InkML) objects are rendered.
167156
*/

0 commit comments

Comments
 (0)