Skip to content

Commit a2c63fa

Browse files
update to 23.9.0
1 parent 760cb96 commit a2c63fa

File tree

4 files changed

+30
-9
lines changed

4 files changed

+30
-9
lines changed

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,13 @@ These SDKs are now fully supported. If you have any questions, see any bugs or h
99

1010
Extract Text & Images of a PDF document online https://products.aspose.app/pdf/parser.
1111

12-
## Enhancements in Version 23.8
13-
- Support to split password protected PDF documents.
14-
- Support to convert password Protected PDF to Xlsx.
15-
- Support to convert password Protected PDF to Excel.
16-
- Replace a single image using multiple Image Ids.
12+
## Enhancements in Version 23.9
13+
- Support to convert password protected PDF documents to PDFA.
1714
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
1815

19-
## Bugs fixed in Version 23.8
20-
- The putMergeDocuments API method in Node.js Throws Gateway Error.
21-
- Text Replacement Changes the Background.
16+
## Bugs fixed in Version 23.9
17+
- Rotate Property not working with FreeTextAnnotation.
18+
- PutAnnotationsFlatten not working correctly when passing multiple annotation types.
2219

2320
## Installation
2421
```

api_client.go

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

177177
// set custom header
178178
headerParams["x-aspose-client"] = "go sdk"
179-
headerParams["x-aspose-client-version"] = "23.8.0"
179+
headerParams["x-aspose-client-version"] = "23.9.0"
180180

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

docs/PdfApi.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5125,6 +5125,7 @@ Name | Type | Description | Notes
51255125
**type_** | **string**| Type of PdfA format. |
51265126
**folder** | **string**| The document folder. |
51275127
**storage** | **string**| The document storage. |
5128+
**password** | **string**| The password (Base64). |
51285129

51295130
### Return type
51305131

@@ -10547,6 +10548,7 @@ Name | Type | Description | Notes
1054710548
**outPath** | **string**| Full resulting filename (ex. /folder1/folder2/result.pdf) |
1054810549
**type_** | **string**| Type of PdfA format. |
1054910550
**storage** | **string**| The document storage. |
10551+
**password** | **string**| The password (Base64). |
1055010552
**file** | ***os.File**| A file to be converted. |
1055110553

1055210554
### Return type
@@ -11031,6 +11033,7 @@ Name | Type | Description | Notes
1103111033
**type_** | **string**| Type of PdfA format. |
1103211034
**folder** | **string**| The document folder. |
1103311035
**storage** | **string**| The document storage. |
11036+
**password** | **string**| The password (Base64). |
1103411037

1103511038
### Return type
1103611039

pdf_api.go

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11834,6 +11834,7 @@ func (a *PdfApiService) GetPdfInStorageToMobiXml(name string, localVarOptionals
1183411834
@param optional (nil or map[string]interface{}) with one or more of:
1183511835
@param "folder" (string) The document folder.
1183611836
@param "storage" (string) The document storage.
11837+
@param "password" (string) The password (Base64).
1183711838
@return []byte*/
1183811839
func (a *PdfApiService) GetPdfInStorageToPdfA(name string, type_ string, localVarOptionals map[string]interface{}) ([]byte, *http.Response, error) {
1183911840
var (
@@ -11858,6 +11859,9 @@ func (a *PdfApiService) GetPdfInStorageToPdfA(name string, type_ string, localVa
1185811859
if err := typeCheckParameter(localVarOptionals["storage"], "string", "storage"); err != nil {
1185911860
return successPayload, nil, err
1186011861
}
11862+
if err := typeCheckParameter(localVarOptionals["password"], "string", "password"); err != nil {
11863+
return successPayload, nil, err
11864+
}
1186111865

1186211866
localVarQueryParams.Add("type", parameterToString(type_, ""))
1186311867
if localVarTempParam, localVarOk := localVarOptionals["folder"].(string); localVarOk {
@@ -11866,6 +11870,9 @@ func (a *PdfApiService) GetPdfInStorageToPdfA(name string, type_ string, localVa
1186611870
if localVarTempParam, localVarOk := localVarOptionals["storage"].(string); localVarOk {
1186711871
localVarQueryParams.Add("storage", parameterToString(localVarTempParam, ""))
1186811872
}
11873+
if localVarTempParam, localVarOk := localVarOptionals["password"].(string); localVarOk {
11874+
localVarQueryParams.Add("password", parameterToString(localVarTempParam, ""))
11875+
}
1186911876
// to determine the Content-Type header
1187011877
localVarHttpContentTypes := []string{ "application/json", }
1187111878

@@ -25567,6 +25574,7 @@ func (a *PdfApiService) PutPdfInRequestToMobiXml(outPath string, localVarOptiona
2556725574
@param type_ Type of PdfA format.
2556825575
@param optional (nil or map[string]interface{}) with one or more of:
2556925576
@param "storage" (string) The document storage.
25577+
@param "password" (string) The password (Base64).
2557025578
@param "file" (*os.File) A file to be converted.
2557125579
@return AsposeResponse*/
2557225580
func (a *PdfApiService) PutPdfInRequestToPdfA(outPath string, type_ string, localVarOptionals map[string]interface{}) (AsposeResponse, *http.Response, error) {
@@ -25588,12 +25596,18 @@ func (a *PdfApiService) PutPdfInRequestToPdfA(outPath string, type_ string, loca
2558825596
if err := typeCheckParameter(localVarOptionals["storage"], "string", "storage"); err != nil {
2558925597
return successPayload, nil, err
2559025598
}
25599+
if err := typeCheckParameter(localVarOptionals["password"], "string", "password"); err != nil {
25600+
return successPayload, nil, err
25601+
}
2559125602

2559225603
localVarQueryParams.Add("outPath", parameterToString(outPath, ""))
2559325604
localVarQueryParams.Add("type", parameterToString(type_, ""))
2559425605
if localVarTempParam, localVarOk := localVarOptionals["storage"].(string); localVarOk {
2559525606
localVarQueryParams.Add("storage", parameterToString(localVarTempParam, ""))
2559625607
}
25608+
if localVarTempParam, localVarOk := localVarOptionals["password"].(string); localVarOk {
25609+
localVarQueryParams.Add("password", parameterToString(localVarTempParam, ""))
25610+
}
2559725611
// to determine the Content-Type header
2559825612
localVarHttpContentTypes := []string{ "multipart/form-data", }
2559925613

@@ -27089,6 +27103,7 @@ func (a *PdfApiService) PutPdfInStorageToMobiXml(name string, outPath string, lo
2708927103
@param optional (nil or map[string]interface{}) with one or more of:
2709027104
@param "folder" (string) The document folder.
2709127105
@param "storage" (string) The document storage.
27106+
@param "password" (string) The password (Base64).
2709227107
@return AsposeResponse*/
2709327108
func (a *PdfApiService) PutPdfInStorageToPdfA(name string, outPath string, type_ string, localVarOptionals map[string]interface{}) (AsposeResponse, *http.Response, error) {
2709427109
var (
@@ -27113,6 +27128,9 @@ func (a *PdfApiService) PutPdfInStorageToPdfA(name string, outPath string, type_
2711327128
if err := typeCheckParameter(localVarOptionals["storage"], "string", "storage"); err != nil {
2711427129
return successPayload, nil, err
2711527130
}
27131+
if err := typeCheckParameter(localVarOptionals["password"], "string", "password"); err != nil {
27132+
return successPayload, nil, err
27133+
}
2711627134

2711727135
localVarQueryParams.Add("outPath", parameterToString(outPath, ""))
2711827136
localVarQueryParams.Add("type", parameterToString(type_, ""))
@@ -27122,6 +27140,9 @@ func (a *PdfApiService) PutPdfInStorageToPdfA(name string, outPath string, type_
2712227140
if localVarTempParam, localVarOk := localVarOptionals["storage"].(string); localVarOk {
2712327141
localVarQueryParams.Add("storage", parameterToString(localVarTempParam, ""))
2712427142
}
27143+
if localVarTempParam, localVarOk := localVarOptionals["password"].(string); localVarOk {
27144+
localVarQueryParams.Add("password", parameterToString(localVarTempParam, ""))
27145+
}
2712527146
// to determine the Content-Type header
2712627147
localVarHttpContentTypes := []string{ "application/json", }
2712727148

0 commit comments

Comments
 (0)