Skip to content

Commit

Permalink
Updated sources
Browse files Browse the repository at this point in the history
  • Loading branch information
product-team committed Dec 21, 2023
1 parent 709681b commit 0fefb20
Show file tree
Hide file tree
Showing 4 changed files with 97 additions and 98 deletions.
19 changes: 9 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "groupdocs-conversion-cloud",
"version": "23.10.0",
"version": "23.12.0",
"description": "GroupDocs.Conversion Cloud SDK for Node.js",
"homepage": "https://products.groupdocs.cloud/conversion",
"author": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"build:package": "npm pack"
},
"dependencies": {
"axios": "1.3.0",
"axios": "1.6.2",
"form-data": "*",
"jsonwebtoken": "9.0.1",
"qs": "6.11.2"
Expand Down
170 changes: 85 additions & 85 deletions src/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1367,90 +1367,6 @@ export class CadLoadOptions extends LoadOptions {
}
}

/**
* Csv document load options
*/
// tslint:disable: completed-docs
export class CsvLoadOptions extends LoadOptions {

/**
* Attribute type map
*/
public static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
name: "separator",
baseName: "separator",
type: "string",
},
{
name: "isMultiEncoded",
baseName: "isMultiEncoded",
type: "boolean",
},
{
name: "hasFormula",
baseName: "hasFormula",
type: "boolean",
},
{
name: "convertNumericData",
baseName: "convertNumericData",
type: "boolean",
},
{
name: "convertDateTimeData",
baseName: "convertDateTimeData",
type: "boolean",
},
{
name: "encoding",
baseName: "encoding",
type: "string",
} ];

/**
* Returns attribute type map
*/
public static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(CsvLoadOptions.attributeTypeMap);
}

/**
* Delimiter of a Csv file
*/
public separator: string;

/**
* True means the file contains several encodings
*/
public isMultiEncoded: boolean;

/**
* Indicates whether text is formula if it starts with \"=\"
*/
public hasFormula: boolean;

/**
* Indicates whether the string in the file is converted to numeric. Default is True
*/
public convertNumericData: boolean;

/**
* Indicates whether the string in the file is converted to date. Default is True
*/
public convertDateTimeData: boolean;

/**
* File encoding
*/
public encoding: string;

public constructor(init?: Partial<CsvLoadOptions>) {
super(init);
Object.assign(this, init);
}
}

/**
* Diagram document load options
*/
Expand Down Expand Up @@ -3303,6 +3219,90 @@ export class BmpLoadOptions extends ImageLoadOptions {
}
}

/**
* Csv document load options
*/
// tslint:disable: completed-docs
export class CsvLoadOptions extends SpreadsheetLoadOptions {

/**
* Attribute type map
*/
public static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
name: "separator",
baseName: "separator",
type: "string",
},
{
name: "isMultiEncoded",
baseName: "isMultiEncoded",
type: "boolean",
},
{
name: "hasFormula",
baseName: "hasFormula",
type: "boolean",
},
{
name: "convertNumericData",
baseName: "convertNumericData",
type: "boolean",
},
{
name: "convertDateTimeData",
baseName: "convertDateTimeData",
type: "boolean",
},
{
name: "encoding",
baseName: "encoding",
type: "string",
} ];

/**
* Returns attribute type map
*/
public static getAttributeTypeMap() {
return super.getAttributeTypeMap().concat(CsvLoadOptions.attributeTypeMap);
}

/**
* Delimiter of a Csv file
*/
public separator: string;

/**
* True means the file contains several encodings
*/
public isMultiEncoded: boolean;

/**
* Indicates whether text is formula if it starts with \"=\"
*/
public hasFormula: boolean;

/**
* Indicates whether the string in the file is converted to numeric. Default is True
*/
public convertNumericData: boolean;

/**
* Indicates whether the string in the file is converted to date. Default is True
*/
public convertDateTimeData: boolean;

/**
* File encoding
*/
public encoding: string;

public constructor(init?: Partial<CsvLoadOptions>) {
super(init);
Object.assign(this, init);
}
}

/**
* Dcm convert options
*/
Expand Down Expand Up @@ -6755,7 +6755,6 @@ const typeMap = {
SupportedFormat,
WatermarkOptions,
CadLoadOptions,
CsvLoadOptions,
DiagramLoadOptions,
EBookConvertOptions,
EmailLoadOptions,
Expand All @@ -6780,6 +6779,7 @@ const typeMap = {
XmlLoadOptions,
BmpConvertOptions,
BmpLoadOptions,
CsvLoadOptions,
DcmConvertOptions,
DcmLoadOptions,
DgnLoadOptions,
Expand Down
2 changes: 1 addition & 1 deletion src/package_version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Package version
*/
export const PackageVersion: string = "23.10.0";
export const PackageVersion: string = "23.12.0";

0 comments on commit 0fefb20

Please sign in to comment.