Skip to content

Commit b06d3af

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 3704d2f + 179c31b commit b06d3af

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
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": "22.11.0",
3+
"version": "22.12.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.10";
134+
requestOptions.headers["x-aspose-client-version"] = "22.12";
135135

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

src/model/csvDataLoadOptions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export const importsMapCsvDataLoadOptions = {
3333

3434
/**
3535
* Represents options for parsing CSV data.
36+
* To learn more, visit the LINQ Reporting Engine documentation article.
3637
*/
3738
export class CsvDataLoadOptions implements ModelInterface {
3839
/**

src/model/pdfSaveOptionsData.ts

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
5050
*/
5151
public static attributeTypeMap: Array<AttributeInfo> = [
5252
{
53-
name: "cacheHeaderFooterShapes",
54-
baseName: "CacheHeaderFooterShapes",
53+
name: "cacheBackgroundGraphics",
54+
baseName: "CacheBackgroundGraphics",
5555
type: "boolean",
5656
},
5757
{
@@ -84,6 +84,11 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
8484
baseName: "DownsampleOptions",
8585
type: "DownsampleOptionsData",
8686
},
87+
{
88+
name: "embedAttachments",
89+
baseName: "EmbedAttachments",
90+
type: "boolean",
91+
},
8792
{
8893
name: "embedFullFonts",
8994
baseName: "EmbedFullFonts",
@@ -189,9 +194,9 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
189194
}
190195

191196
/**
192-
* Gets or sets a value indicating whether or not to cache shapes placed in header and footer of document.
197+
* Gets or sets a value determining whether or not to cache graphics placed in document's background.
193198
*/
194-
public cacheHeaderFooterShapes: boolean;
199+
public cacheBackgroundGraphics: boolean;
195200

196201
/**
197202
* Gets or sets the PDF standards compliance level for output documents.
@@ -226,6 +231,11 @@ export class PdfSaveOptionsData extends FixedPageSaveOptionsData {
226231
*/
227232
public downsampleOptions: DownsampleOptionsData;
228233

234+
/**
235+
* Gets or sets a value determining whether or not to embed attachments to the PDF document.
236+
*/
237+
public embedAttachments: boolean;
238+
229239
/**
230240
* Gets or sets a value indicating whether fonts are embedded into the resulting PDF documents.
231241
*/

src/model/xmlDataLoadOptions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export const importsMapXmlDataLoadOptions = {
3333

3434
/**
3535
* Represents options for XML data loading.
36+
* To learn more, visit the LINQ Reporting Engine documentation article.
3637
*/
3738
export class XmlDataLoadOptions implements ModelInterface {
3839
/**

0 commit comments

Comments
 (0)