Skip to content

Commit 03966c5

Browse files
committed
Updated sources
1 parent 811a2e9 commit 03966c5

4 files changed

Lines changed: 44 additions & 4 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "groupdocs-conversion-cloud",
3-
"version": "24.8.0",
3+
"version": "24.11.0",
44
"description": "GroupDocs.Conversion Cloud SDK for Node.js",
55
"homepage": "https://products.groupdocs.cloud/conversion",
66
"author": {

src/model.ts

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3012,6 +3012,21 @@ export class WebLoadOptions extends LoadOptions {
30123012
name: "pageNumbering",
30133013
baseName: "pageNumbering",
30143014
type: "boolean",
3015+
},
3016+
{
3017+
name: "encoding",
3018+
baseName: "encoding",
3019+
type: "string",
3020+
},
3021+
{
3022+
name: "usePdf",
3023+
baseName: "usePdf",
3024+
type: "boolean",
3025+
},
3026+
{
3027+
name: "renderingMode",
3028+
baseName: "renderingMode",
3029+
type: "WebLoadOptions.RenderingModeEnum",
30153030
} ];
30163031

30173032
/**
@@ -3026,12 +3041,36 @@ export class WebLoadOptions extends LoadOptions {
30263041
*/
30273042
public pageNumbering: boolean;
30283043

3044+
/**
3045+
* Get or sets the encoding to be used when loading the web document. If the property is null the encoding will be determined from document character set attribute
3046+
*/
3047+
public encoding: string;
3048+
3049+
/**
3050+
* Use pdf for the conversion. Default: false
3051+
*/
3052+
public usePdf: boolean;
3053+
3054+
/**
3055+
* Controls how HTML content is rendered. Default: AbsolutePositioning
3056+
*/
3057+
public renderingMode: WebLoadOptions.RenderingModeEnum;
3058+
30293059
public constructor(init?: Partial<WebLoadOptions>) {
30303060
super(init);
30313061
Object.assign(this, init);
30323062
}
30333063
}
30343064

3065+
// tslint:disable:quotemark
3066+
// tslint:disable-next-line:no-namespace
3067+
export namespace WebLoadOptions {
3068+
export enum RenderingModeEnum {
3069+
Flow = 'Flow' as any,
3070+
AbsolutePositioning = 'AbsolutePositioning' as any,
3071+
}
3072+
}
3073+
// tslint:enable:quotemark
30353074
/**
30363075
* Options for to word processing conversion
30373076
*/
@@ -7013,6 +7052,7 @@ const enumsMap = {
70137052
"PdfConvertOptions.PageOrientationEnum": PdfConvertOptions.PageOrientationEnum,
70147053
"TxtLoadOptions.TrailingSpacesOptionsEnum": TxtLoadOptions.TrailingSpacesOptionsEnum,
70157054
"TxtLoadOptions.LeadingSpacesOptionsEnum": TxtLoadOptions.LeadingSpacesOptionsEnum,
7055+
"WebLoadOptions.RenderingModeEnum": WebLoadOptions.RenderingModeEnum,
70167056
"WordProcessingConvertOptions.PdfRecognitionModeEnum": WordProcessingConvertOptions.PdfRecognitionModeEnum,
70177057
"WordProcessingConvertOptions.PageSizeEnum": WordProcessingConvertOptions.PageSizeEnum,
70187058
"WordProcessingConvertOptions.PageOrientationEnum": WordProcessingConvertOptions.PageOrientationEnum,

src/package_version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
/**
2626
* Package version
2727
*/
28-
export const PackageVersion: string = "24.8.0";
28+
export const PackageVersion: string = "24.11.0";

0 commit comments

Comments
 (0)