Skip to content

Commit b9c4184

Browse files
committed
Update to v20.6
1 parent 02b5da3 commit b9c4184

25 files changed

+89
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Aspose.PDF Cloud
22
- API version: 3.0
3-
- Package version: 20.5.0
3+
- Package version: 20.6.0
44

55
[Aspose.PDF Cloud](https://products.aspose.cloud/pdf) is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of PDF documents in the cloud.
66

@@ -483,6 +483,7 @@ Class | Method | HTTP request | Description
483483
- [ObjectExist](docs/ObjectExist.md)
484484
- [OptimizeOptions](docs/OptimizeOptions.md)
485485
- [Option](docs/Option.md)
486+
- [OutputFormat](docs/OutputFormat.md)
486487
- [PageLayout](docs/PageLayout.md)
487488
- [PageMode](docs/PageMode.md)
488489
- [PageWordCount](docs/PageWordCount.md)

api_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ func (c *APIClient) prepareRequest (
175175

176176
// set custom header
177177
headerParams["x-aspose-client"] = "go sdk"
178-
headerParams["x-aspose-client-version"] = "20.5.0"
178+
headerParams["x-aspose-client-version"] = "20.6.0"
179179

180180
// Detect postBody type and post.
181181
if postBody != nil {

check_box_field.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ type CheckBoxField struct {
2626
Links []Link `json:"Links,omitempty"`
2727
// Field name.
2828
PartialName string `json:"PartialName,omitempty"`
29+
// Full Field name.
30+
FullName string `json:"FullName,omitempty"`
2931
// Field rectangle.
3032
Rect *Rectangle `json:"Rect,omitempty"`
3133
// Field value.

choice_field.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ type ChoiceField struct {
2626
Links []Link `json:"Links,omitempty"`
2727
// Field name.
2828
PartialName string `json:"PartialName,omitempty"`
29+
// Full Field name.
30+
FullName string `json:"FullName,omitempty"`
2931
// Field rectangle.
3032
Rect *Rectangle `json:"Rect,omitempty"`
3133
// Field value.

combo_box_field.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ type ComboBoxField struct {
2626
Links []Link `json:"Links,omitempty"`
2727
// Field name.
2828
PartialName string `json:"PartialName,omitempty"`
29+
// Full Field name.
30+
FullName string `json:"FullName,omitempty"`
2931
// Field rectangle.
3032
Rect *Rectangle `json:"Rect,omitempty"`
3133
// Field value.

convert_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,11 +575,12 @@ func TestPutPdfInStorageToHtml(t *testing.T) {
575575
t.Error(err)
576576
}
577577

578-
resFileName := "result.zip";
578+
resFileName := "result.html";
579579
outPath := GetBaseTest().remoteFolder + "/" + resFileName;
580580

581581
args := map[string]interface{} {
582582
"folder": GetBaseTest().remoteFolder,
583+
"outputFormat": fmt.Sprintf("%v", OutputFormatFolder),
583584
}
584585

585586
response, httpResponse, err := GetBaseTest().PdfAPI.PutPdfInStorageToHtml(name, outPath, args)

docs/CheckBoxField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**Links** | [**[]Link**](Link.md) | Link to the document. | [optional] [default to null]
88
**PartialName** | **string** | Field name. | [optional] [default to null]
9+
**FullName** | **string** | Full Field name. | [optional] [default to null]
910
**Rect** | [***Rectangle**](Rectangle.md) | Field rectangle. | [optional] [default to null]
1011
**Value** | **string** | Field value. | [optional] [default to null]
1112
**PageIndex** | **int32** | Page index. | [default to null]

docs/ChoiceField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**Links** | [**[]Link**](Link.md) | Link to the document. | [optional] [default to null]
88
**PartialName** | **string** | Field name. | [optional] [default to null]
9+
**FullName** | **string** | Full Field name. | [optional] [default to null]
910
**Rect** | [***Rectangle**](Rectangle.md) | Field rectangle. | [optional] [default to null]
1011
**Value** | **string** | Field value. | [optional] [default to null]
1112
**PageIndex** | **int32** | Page index. | [default to null]

docs/ComboBoxField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**Links** | [**[]Link**](Link.md) | Link to the document. | [optional] [default to null]
88
**PartialName** | **string** | Field name. | [optional] [default to null]
9+
**FullName** | **string** | Full Field name. | [optional] [default to null]
910
**Rect** | [***Rectangle**](Rectangle.md) | Field rectangle. | [optional] [default to null]
1011
**Value** | **string** | Field value. | [optional] [default to null]
1112
**PageIndex** | **int32** | Page index. | [default to null]

docs/FormField.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**Links** | [**[]Link**](Link.md) | Link to the document. | [optional] [default to null]
88
**PartialName** | **string** | Field name. | [optional] [default to null]
9+
**FullName** | **string** | Full Field name. | [optional] [default to null]
910
**Rect** | [***Rectangle**](Rectangle.md) | Field rectangle. | [optional] [default to null]
1011
**Value** | **string** | Field value. | [optional] [default to null]
1112
**PageIndex** | **int32** | Page index. | [default to null]

0 commit comments

Comments
 (0)