Skip to content

Commit 1fcb0f4

Browse files
committed
Updated to v18.10
1 parent 68ce5ba commit 1fcb0f4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+4562
-873
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "asposepdfcloud",
3-
"version": "18.9.1",
3+
"version": "18.10.0",
44
"description": "Aspose.PDF Cloud SDK",
55
"homepage": "https://products.aspose.cloud/pdf/cloud",
66
"author": {

src/api/api.ts

Lines changed: 2442 additions & 858 deletions
Large diffs are not rendered by default.

src/configuration.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,4 @@ export class Configuration {
6868
public getApiBaseUrl(): string {
6969
return this.baseUrl;
7070
}
71-
72-
/**
73-
* OAuth2.0 Access Token
74-
*/
75-
//public accessToken: string;
76-
77-
/**
78-
* OAuth2.0 Refresh Token
79-
*/
80-
//public refreshToken: string;
8171
}

src/models/captionPosition.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/**
2+
*
3+
* Copyright (c) 2018 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
22+
export enum CaptionPosition {
23+
Inline = 'Inline',
24+
Top = 'Top',
25+
}

src/models/circleAnnotation.ts

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/**
2+
*
3+
* Copyright (c) 2018 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
22+
import { Color } from "./color";
23+
import { CommonFigureAnnotation } from "./commonFigureAnnotation";
24+
25+
/**
26+
* Provides CircleAnnotation.
27+
*/
28+
export class CircleAnnotation extends CommonFigureAnnotation {
29+
/**
30+
* Color of the annotation.
31+
*/
32+
'color': Color;
33+
34+
static discriminator = undefined;
35+
36+
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
37+
{
38+
"name": "color",
39+
"baseName": "Color",
40+
"type": "Color"
41+
} ];
42+
43+
static getAttributeTypeMap() {
44+
return super.getAttributeTypeMap().concat(CircleAnnotation.attributeTypeMap);
45+
}
46+
}
47+
48+
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/**
2+
*
3+
* Copyright (c) 2018 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
22+
import { CircleAnnotation } from "./circleAnnotation";
23+
import { AsposeResponse } from "./asposeResponse";
24+
25+
export class CircleAnnotationResponse extends AsposeResponse {
26+
'annotation': CircleAnnotation;
27+
28+
static discriminator = undefined;
29+
30+
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
31+
{
32+
"name": "annotation",
33+
"baseName": "Annotation",
34+
"type": "CircleAnnotation"
35+
} ];
36+
37+
static getAttributeTypeMap() {
38+
return super.getAttributeTypeMap().concat(CircleAnnotationResponse.attributeTypeMap);
39+
}
40+
}
41+
42+

src/models/circleAnnotations.ts

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/**
2+
*
3+
* Copyright (c) 2018 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
22+
import { CircleAnnotation } from "./circleAnnotation";
23+
import { LinkElement } from "./linkElement";
24+
25+
/**
26+
* List of annotations.
27+
*/
28+
export class CircleAnnotations extends LinkElement {
29+
'list': Array<CircleAnnotation>;
30+
31+
static discriminator = undefined;
32+
33+
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
34+
{
35+
"name": "list",
36+
"baseName": "List",
37+
"type": "Array<CircleAnnotation>"
38+
} ];
39+
40+
static getAttributeTypeMap() {
41+
return super.getAttributeTypeMap().concat(CircleAnnotations.attributeTypeMap);
42+
}
43+
}
44+
45+
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/**
2+
*
3+
* Copyright (c) 2018 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
22+
import { CircleAnnotations } from "./circleAnnotations";
23+
import { AsposeResponse } from "./asposeResponse";
24+
25+
export class CircleAnnotationsResponse extends AsposeResponse {
26+
'annotations': CircleAnnotations;
27+
28+
static discriminator = undefined;
29+
30+
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
31+
{
32+
"name": "annotations",
33+
"baseName": "Annotations",
34+
"type": "CircleAnnotations"
35+
} ];
36+
37+
static getAttributeTypeMap() {
38+
return super.getAttributeTypeMap().concat(CircleAnnotationsResponse.attributeTypeMap);
39+
}
40+
}
41+
42+

src/models/commonFigureAnnotation.ts

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
/**
2+
*
3+
* Copyright (c) 2018 Aspose.PDF Cloud
4+
* Permission is hereby granted, free of charge, to any person obtaining a copy
5+
* of this software and associated documentation files (the "Software"), to deal
6+
* in the Software without restriction, including without limitation the rights
7+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
* copies of the Software, and to permit persons to whom the Software is
9+
* furnished to do so, subject to the following conditions:
10+
* The above copyright notice and this permission notice shall be included in all
11+
* copies or substantial portions of the Software.
12+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
17+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
18+
* SOFTWARE.
19+
*
20+
*/
21+
22+
import { RectanglePdf } from "./rectanglePdf";
23+
import { Color } from "./color";
24+
import { MarkupAnnotation } from "./markupAnnotation";
25+
26+
/**
27+
* Provides CommonFigureAnnotation.
28+
*/
29+
export class CommonFigureAnnotation extends MarkupAnnotation {
30+
/**
31+
* Get the annotation InteriorColor.
32+
*/
33+
'interiorColor': Color;
34+
/**
35+
* Get or set the annotation Rectangle of frame.
36+
*/
37+
'frame': RectanglePdf;
38+
39+
static discriminator = undefined;
40+
41+
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
42+
{
43+
"name": "interiorColor",
44+
"baseName": "InteriorColor",
45+
"type": "Color"
46+
},
47+
{
48+
"name": "frame",
49+
"baseName": "Frame",
50+
"type": "RectanglePdf"
51+
} ];
52+
53+
static getAttributeTypeMap() {
54+
return super.getAttributeTypeMap().concat(CommonFigureAnnotation.attributeTypeMap);
55+
}
56+
}
57+
58+

0 commit comments

Comments
 (0)