Skip to content

Commit b84589b

Browse files
Merge pull request #12 from kaferi/master
Add Storage methods
2 parents 6d501c8 + dda5afc commit b84589b

File tree

229 files changed

+2241
-547
lines changed

Some content is hidden

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

229 files changed

+2241
-547
lines changed

README.md

Lines changed: 96 additions & 79 deletions
Large diffs are not rendered by default.

docs/Annotation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ Provides annotation.
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8+
**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
89
**contents** | **string** | Get the annotation content. | [optional]
910
**modified** | **string** | The date and time when the annotation was last modified. | [optional]
1011
**id** | **string** | Gets ID of the annotation. | [optional]
1112
**flags** | [**Array<AnnotationFlags>**](AnnotationFlags.md) | Gets Flags of the annotation. | [optional]
1213
**name** | **string** | Gets Name of the annotation. | [optional]
13-
**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation. |
14+
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation. |
1415
**pageIndex** | **number** | Gets PageIndex of the annotation. | [optional]
1516
**zIndex** | **number** | Gets ZIndex of the annotation. | [optional]
1617
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation. | [optional]

docs/AnnotationInfo.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ Provides annotation.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**annotationType** | [**AnnotationType**](AnnotationType.md) | Gets annotation type. |
9+
**color** | [**Color**](Color.md) | Color of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
910
**contents** | **string** | Get the annotation content.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1011
**modified** | **string** | The date and time when the annotation was last modified.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1112
**id** | **string** | Gets ID of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1213
**flags** | [**Array&lt;AnnotationFlags&gt;**](AnnotationFlags.md) | Gets Flags of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1314
**name** | **string** | Gets Name of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
14-
**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation.<br />*Inherited from [Annotation](Annotation.md)* |
15+
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation.<br />*Inherited from [Annotation](Annotation.md)* |
1516
**pageIndex** | **number** | Gets PageIndex of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1617
**zIndex** | **number** | Gets ZIndex of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1718
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]

docs/AnnotationsInfo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# AnnotationsInfo
2-
List of annotations.
2+
Object representing a list of annotation info objects.
33

44
*Inherited from [LinkElement](LinkElement.md)*
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**list** | [**Array&lt;AnnotationInfo&gt;**](AnnotationInfo.md) | | [optional]
8+
**list** | [**Array&lt;AnnotationInfo&gt;**](AnnotationInfo.md) | List of annotation info objects. | [optional]
99
**links** | [**Array&lt;Link&gt;**](Link.md) | Link to the document.<br />*Inherited from [LinkElement](LinkElement.md)* | [optional]
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/annotationsInfo.ts)

docs/AnnotationsInfoResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# AnnotationsInfoResponse
2-
2+
Represents multiple annotations info reponse
33

44
*Inherited from [AsposeResponse](AsposeResponse.md)*
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**annotations** | [**AnnotationsInfo**](AnnotationsInfo.md) | | [optional]
8+
**annotations** | [**AnnotationsInfo**](AnnotationsInfo.md) | Annotations info | [optional]
99
**code** | **number** | Response status code.<br />*Inherited from [AsposeResponse](AsposeResponse.md)* |
1010
**status** | **string** | Response status.<br />*Inherited from [AsposeResponse](AsposeResponse.md)* | [optional]
1111

docs/AttachmentResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# AttachmentResponse
2-
2+
Represents response containing single attachment info
33

44
*Inherited from [AsposeResponse](AsposeResponse.md)*
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**attachment** | [**Attachment**](Attachment.md) | | [optional]
8+
**attachment** | [**Attachment**](Attachment.md) | Attachment object | [optional]
99
**code** | **number** | Response status code.<br />*Inherited from [AsposeResponse](AsposeResponse.md)* |
1010
**status** | **string** | Response status.<br />*Inherited from [AsposeResponse](AsposeResponse.md)* | [optional]
1111

docs/Attachments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Attachments
2-
List of attachment.
2+
Represents list of attachment.
33

44
*Inherited from [LinkElement](LinkElement.md)*
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**list** | [**Array&lt;LinkElement&gt;**](LinkElement.md) | | [optional]
8+
**list** | [**Array&lt;LinkElement&gt;**](LinkElement.md) | List of annotations. | [optional]
99
**links** | [**Array&lt;Link&gt;**](Link.md) | Link to the document.<br />*Inherited from [LinkElement](LinkElement.md)* | [optional]
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[View Source]](../src/models/attachments.ts)

docs/AttachmentsResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# AttachmentsResponse
2-
2+
Represents response containing multiple attachments info
33

44
*Inherited from [AsposeResponse](AsposeResponse.md)*
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**attachments** | [**Attachments**](Attachments.md) | | [optional]
8+
**attachments** | [**Attachments**](Attachments.md) | Attachments object | [optional]
99
**code** | **number** | Response status code.<br />*Inherited from [AsposeResponse](AsposeResponse.md)* |
1010
**status** | **string** | Response status.<br />*Inherited from [AsposeResponse](AsposeResponse.md)* | [optional]
1111

docs/CaretAnnotation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ Provides CaretAnnotation.
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**color** | [**Color**](Color.md) | Color of the annotation. | [optional]
9-
**frame** | [**RectanglePdf**](RectanglePdf.md) | Gets or sets caret rectangle. | [optional]
8+
**frame** | [**Rectangle**](Rectangle.md) | Gets or sets caret rectangle. | [optional]
109
**symbol** | [**CaretSymbol**](CaretSymbol.md) | Gets or sets symbol associated with caret. | [optional]
1110
**creationDate** | **string** | The date and time when the annotation was created.<br />*Inherited from [MarkupAnnotation](MarkupAnnotation.md)* | [optional]
1211
**subject** | **string** | Get the annotation subject.<br />*Inherited from [MarkupAnnotation](MarkupAnnotation.md)* | [optional]
1312
**title** | **string** | Get the annotation title.<br />*Inherited from [MarkupAnnotation](MarkupAnnotation.md)* | [optional]
1413
**richText** | **string** | Get the annotation RichText.<br />*Inherited from [MarkupAnnotation](MarkupAnnotation.md)* | [optional]
14+
**color** | [**Color**](Color.md) | Color of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1515
**contents** | **string** | Get the annotation content.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1616
**modified** | **string** | The date and time when the annotation was last modified.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1717
**id** | **string** | Gets ID of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1818
**flags** | [**Array&lt;AnnotationFlags&gt;**](AnnotationFlags.md) | Gets Flags of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
1919
**name** | **string** | Gets Name of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
20-
**rect** | [**RectanglePdf**](RectanglePdf.md) | Gets Rect of the annotation.<br />*Inherited from [Annotation](Annotation.md)* |
20+
**rect** | [**Rectangle**](Rectangle.md) | Gets Rect of the annotation.<br />*Inherited from [Annotation](Annotation.md)* |
2121
**pageIndex** | **number** | Gets PageIndex of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
2222
**zIndex** | **number** | Gets ZIndex of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]
2323
**horizontalAlignment** | [**HorizontalAlignment**](HorizontalAlignment.md) | Gets HorizontalAlignment of the annotation.<br />*Inherited from [Annotation](Annotation.md)* | [optional]

docs/CaretAnnotationResponse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# CaretAnnotationResponse
2-
2+
Represents response containing single caret annotation object
33

44
*Inherited from [AsposeResponse](AsposeResponse.md)*
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**annotation** | [**CaretAnnotation**](CaretAnnotation.md) | | [optional]
8+
**annotation** | [**CaretAnnotation**](CaretAnnotation.md) | Caret annotation object | [optional]
99
**code** | **number** | Response status code.<br />*Inherited from [AsposeResponse](AsposeResponse.md)* |
1010
**status** | **string** | Response status.<br />*Inherited from [AsposeResponse](AsposeResponse.md)* | [optional]
1111

0 commit comments

Comments
 (0)