Skip to content

Commit cf1d86e

Browse files
Merge remote-tracking branch 'origin/master' into release
2 parents 6c8dd43 + 095b5dc commit cf1d86e

File tree

811 files changed

+110392
-18
lines changed

Some content is hidden

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

811 files changed

+110392
-18
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ Feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/w
1616
- Add & remove watermarks and protection.
1717
- Read & write access to Document Object Model.
1818

19+
## Enhancements in Version 23.3
20+
21+
- Fix compatibility between CreateDocument API and Dropbox storage.
22+
- Fix compatibility for property PageCount for FixedPageSaveOptionsData.
23+
24+
1925
## Enhancements in Version 23.2
2026

2127
- Added operations to manipulate with Structure Document Tags (SDT) in documents.

dev/api/api_client.go

Lines changed: 1 addition & 1 deletion
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 v23.2
67+
// APIClient manages communication with the Aspose.Words for Cloud API Reference API v23.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

Lines changed: 1 addition & 1 deletion
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": "23.2"},
102+
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "23.3"},
103103
}
104104
err = json.Unmarshal(data, &cfg)
105105

dev/api/models/get_range_text_online_request.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ import (
4040
type GetRangeTextOnlineRequest struct {
4141
// The document.
4242
Document io.ReadCloser
43-
// The range start identifier.
43+
// The range start identifier. Identifier examples: id0.0.0, page0.
4444
RangeStartIdentifier *string
4545
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
46-
key: "rangeEndIdentifier" value: (*string) The range end identifier.
46+
key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4747
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
4848
key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
4949
key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */

dev/api/models/get_range_text_request.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ import (
4040
type GetRangeTextRequest struct {
4141
// The filename of the input document.
4242
Name *string
43-
// The range start identifier.
43+
// The range start identifier. Identifier examples: id0.0.0, page0.
4444
RangeStartIdentifier *string
4545
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
46-
key: "rangeEndIdentifier" value: (*string) The range end identifier.
46+
key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4747
key: "folder" value: (*string) Original document folder.
4848
key: "storage" value: (*string) Original document storage.
4949
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.

dev/api/models/remove_range_online_request.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ import (
4141
type RemoveRangeOnlineRequest struct {
4242
// The document.
4343
Document io.ReadCloser
44-
// The range start identifier.
44+
// The range start identifier. Identifier examples: id0.0.0, page0.
4545
RangeStartIdentifier *string
4646
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
47-
key: "rangeEndIdentifier" value: (*string) The range end identifier.
47+
key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4848
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
4949
key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
5050
key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.

dev/api/models/remove_range_request.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ import (
4040
type RemoveRangeRequest struct {
4141
// The filename of the input document.
4242
Name *string
43-
// The range start identifier.
43+
// The range start identifier. Identifier examples: id0.0.0, page0.
4444
RangeStartIdentifier *string
4545
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
46-
key: "rangeEndIdentifier" value: (*string) The range end identifier.
46+
key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4747
key: "folder" value: (*string) Original document folder.
4848
key: "storage" value: (*string) Original document storage.
4949
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.

dev/api/models/replace_with_text_online_request.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ import (
4141
type ReplaceWithTextOnlineRequest struct {
4242
// The document.
4343
Document io.ReadCloser
44-
// The range start identifier.
44+
// The range start identifier. Identifier examples: id0.0.0, page0.
4545
RangeStartIdentifier *string
4646
// Model with text for replacement.
4747
RangeText IReplaceRange
4848
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
49-
key: "rangeEndIdentifier" value: (*string) The range end identifier.
49+
key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
5050
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
5151
key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
5252
key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.

dev/api/models/replace_with_text_request.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ import (
4040
type ReplaceWithTextRequest struct {
4141
// The filename of the input document.
4242
Name *string
43-
// The range start identifier.
43+
// The range start identifier. Identifier examples: id0.0.0, page0.
4444
RangeStartIdentifier *string
4545
// Model with text for replacement.
4646
RangeText IReplaceRange
4747
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
48-
key: "rangeEndIdentifier" value: (*string) The range end identifier.
48+
key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
4949
key: "folder" value: (*string) Original document folder.
5050
key: "storage" value: (*string) Original document storage.
5151
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.

dev/api/models/save_as_range_online_request.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ import (
4141
type SaveAsRangeOnlineRequest struct {
4242
// The document.
4343
Document io.ReadCloser
44-
// The range start identifier.
44+
// The range start identifier. Identifier examples: id0.0.0, page0.
4545
RangeStartIdentifier *string
4646
// Parameters of a new document.
4747
DocumentParameters IRangeDocument
4848
/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
49-
key: "rangeEndIdentifier" value: (*string) The range end identifier.
49+
key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
5050
key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
5151
key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
5252
key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */

0 commit comments

Comments
 (0)