Skip to content

Commit c55734f

Browse files
SDK regenerated by CI server [ci skip]
1 parent affaf89 commit c55734f

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

AsposeWordsCloud.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'AsposeWordsCloud'
3-
s.version = '22.4'
3+
s.version = '22.6'
44
s.summary = 'Aspose Words for Cloud.'
55
s.homepage = 'https://github.com/aspose-words-cloud/aspose-words-cloud-swift.git'
66
s.license = { :type => 'MIT', :file => 'LICENSE' }

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ This repository contains Aspose.Words Cloud SDK for Swift source code. This SDK
1818
- Added 'DeleteBookmark' and 'DeleteBookmarkOnline' API methods for delete bookmarks by name from the document.
1919
- Added 'DeleteBookmarks' and 'DeleteBookmarksOnline' API methods for delete all bookmarks from the document.
2020
- Added 'InsertBookmark' and 'InsertBookmarkOnline' API methods for create new bookmarks in the document.
21+
- Support all save formats for 'CreateDocument' operation.
2122

2223

2324
## Enhancements in Version 22.5
@@ -216,7 +217,7 @@ Add link to this repository as dependency to your Package.swift:
216217

217218
dependencies: [
218219
// Dependencies declare other packages that this package depends on.
219-
.package(url: "https://github.com/aspose-words-cloud/aspose-words-cloud-swift", from: "22.4"),
220+
.package(url: "https://github.com/aspose-words-cloud/aspose-words-cloud-swift", from: "22.6"),
220221
],
221222
targets: [
222223
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
@@ -234,7 +235,7 @@ targets: [
234235
Add link to git repository as dependency to your Podfile:
235236

236237
```ruby
237-
pod 'AsposeWordsCloud', :git => 'https://github.com/aspose-words-cloud/aspose-words-cloud-swift.git', :tag => '22.4'
238+
pod 'AsposeWordsCloud', :git => 'https://github.com/aspose-words-cloud/aspose-words-cloud-swift.git', :tag => '22.6'
238239
```
239240

240241
## Getting Started

Sources/AsposeWordsCloud/Api/Configuration.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,6 @@ public class Configuration : Codable {
188188

189189
// Returns SDK version for using in statistics headers
190190
public func getSdkVersion() -> String {
191-
return "22.4";
191+
return "22.6";
192192
}
193193
}

Sources/AsposeWordsCloud/Api/WordsAPI.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ public class WordsAPI : Encryptor {
10571057
}
10581058

10591059
// Async representation of createDocument method
1060-
// Supported extensions: ".doc", ".docx", ".docm", ".dot", ".dotm", ".dotx", ".flatopc", ".fopc", ".flatopc_macro", ".fopc_macro", ".flatopc_template", ".fopc_template", ".flatopc_template_macro", ".fopc_template_macro", ".wordml", ".wml", ".rtf".
1060+
// Supported all save format extensions.
10611061
public func createDocument(request : CreateDocumentRequest, callback : @escaping (_ response : DocumentResponse?, _ error : Error?) -> ()) {
10621062
do {
10631063
if (self.apiInvoker == nil) {
@@ -1091,7 +1091,7 @@ public class WordsAPI : Encryptor {
10911091
}
10921092

10931093
// Sync representation of createDocument method
1094-
// Supported extensions: ".doc", ".docx", ".docm", ".dot", ".dotm", ".dotx", ".flatopc", ".fopc", ".flatopc_macro", ".fopc_macro", ".flatopc_template", ".fopc_template", ".flatopc_template_macro", ".fopc_template_macro", ".wordml", ".wml", ".rtf".
1094+
// Supported all save format extensions.
10951095
public func createDocument(request : CreateDocumentRequest) throws -> DocumentResponse {
10961096
let semaphore = DispatchSemaphore(value: 0);
10971097
var responseObject : DocumentResponse? = nil;

0 commit comments

Comments
 (0)