Skip to content

Commit 55b50bb

Browse files
committed
Updated sources
1 parent 171eeba commit 55b50bb

4 files changed

Lines changed: 55 additions & 10 deletions

File tree

package-lock.json

Lines changed: 8 additions & 8 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": "22.3.0",
3+
"version": "22.10.0",
44
"description": "GroupDocs.Conversion Cloud SDK for Node.js",
55
"homepage": "https://products.groupdocs.cloud/conversion",
66
"author": {

src/model.ts

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2325,6 +2325,50 @@ export class PdfLoadOptions extends LoadOptions {
23252325
}
23262326
}
23272327

2328+
/**
2329+
* Options for loading personal storage documents.
2330+
*/
2331+
// tslint:disable: completed-docs
2332+
export class PersonalStorageLoadOptions extends LoadOptions {
2333+
2334+
/**
2335+
* Attribute type map
2336+
*/
2337+
public static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
2338+
{
2339+
name: "folder",
2340+
baseName: "folder",
2341+
type: "string",
2342+
},
2343+
{
2344+
name: "depth",
2345+
baseName: "depth",
2346+
type: "number",
2347+
} ];
2348+
2349+
/**
2350+
* Returns attribute type map
2351+
*/
2352+
public static getAttributeTypeMap() {
2353+
return super.getAttributeTypeMap().concat(PersonalStorageLoadOptions.attributeTypeMap);
2354+
}
2355+
2356+
/**
2357+
* Folder which to be processed Default is Inbox
2358+
*/
2359+
public folder: string;
2360+
2361+
/**
2362+
* Controls how many levels in depth to perform conversion
2363+
*/
2364+
public depth: number;
2365+
2366+
public constructor(init?: Partial<PersonalStorageLoadOptions>) {
2367+
super(init);
2368+
Object.assign(this, init);
2369+
}
2370+
}
2371+
23282372
/**
23292373
* Options for to presentation conversion
23302374
*/
@@ -6759,6 +6803,7 @@ const typeMap = {
67596803
OneLoadOptions,
67606804
PdfConvertOptions,
67616805
PdfLoadOptions,
6806+
PersonalStorageLoadOptions,
67626807
PresentationConvertOptions,
67636808
PresentationLoadOptions,
67646809
SpreadsheetConvertOptions,

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 = "22.3.0";
28+
export const PackageVersion: string = "22.10.0";

0 commit comments

Comments
 (0)