Skip to content

Commit 1ab6591

Browse files
committedMar 2, 2022
SDK regenerated by CI server [ci skip]
1 parent 076666a commit 1ab6591

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed
 

‎README.md

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ Feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/w
1919
## Enhancements in Version 22.3
2020

2121
- Online methods returns the dictionary of files with included original filename as key instead of single file content in responses.
22+
- Parameters contained sensitive data should be passed in encrypted form. Names of the parameters have 'encrypted' prefix.
23+
- Added Encrypt method to encrypt data on the API public key. Use it to prepare values for parameters required encrypted data.
24+
- GetPublicKey method is not billable.
2225

2326

2427
## Enhancements in Version 22.2

‎dev/api/api_client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ var (
6464
xmlCheck = regexp.MustCompile("(?i:[application|text]/xml)")
6565
)
6666

67-
// APIClient manages communication with the Aspose.Words for Cloud API Reference API v22.2
67+
// APIClient manages communication with the Aspose.Words for Cloud API Reference API v22.3
6868
// In most cases there should be only one, shared, APIClient.
6969
type APIClient struct {
7070
cfg *models.Configuration

‎dev/api/models/configuration.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ func NewConfiguration(configFilePath string) (pConfig *Configuration, err error)
9999
cfg := Configuration{
100100
BaseUrl: "https://api.aspose.cloud",
101101
DebugMode: false,
102-
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "22.2"},
102+
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "22.3"},
103103
}
104104
err = json.Unmarshal(data, &cfg)
105105

‎dev/api/models/pdf_encryption_details_data.go

-6
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ package models
2929

3030
// Container class for details of encryption.
3131
type PdfEncryptionDetailsDataResult struct {
32-
// Container class for details of encryption.
33-
EncryptionAlgorithm string `json:"EncryptionAlgorithm,omitempty"`
34-
3532
// Container class for details of encryption.
3633
OwnerPassword string `json:"OwnerPassword,omitempty"`
3734

@@ -43,9 +40,6 @@ type PdfEncryptionDetailsDataResult struct {
4340
}
4441

4542
type PdfEncryptionDetailsData struct {
46-
// Container class for details of encryption.
47-
EncryptionAlgorithm *string `json:"EncryptionAlgorithm,omitempty"`
48-
4943
// Container class for details of encryption.
5044
OwnerPassword *string `json:"OwnerPassword,omitempty"`
5145

0 commit comments

Comments
 (0)