aspose_cells_cloud 22.1 → 22.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -9
- data/lib/aspose_cells_cloud/api/cells_api.rb +12 -12
- data/lib/aspose_cells_cloud/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92b8874e2b654f73bc8f49b0b869f6471184cbda7ad3e55de8411f66ac8df9ba
|
4
|
+
data.tar.gz: c4183274376adfabdd663e8b37598a348b40df6caca3ec76f8e5a6ea8f0b9093
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 424a40b71a70e9cfcafbbe37f28a291c63bad9e03509ca16b70021e4ed855d7e05df27b78289be3ba3960887745cc71e068eb52828050fec37d36a73edeca107
|
7
|
+
data.tar.gz: 07f43440db381800d75b3b484ac561764a628424b0b301c9960ec323fc715d1583801422ac869366af43f4e5fa333110d67c17e633007789f8226705387001a8
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
   [](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE)    [](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) 
|
2
2
|
|
3
3
|
|
4
4
|
# Ruby SDK for Spreadsheet Processing in the Cloud
|
@@ -21,15 +21,14 @@ Ruby Cloud SDK wraps Aspose.Cells REST API so you could seamlessly integrate Mic
|
|
21
21
|
- Convert worksheets to PDF, XPS & SVG formats.
|
22
22
|
- [Convert Excel files to popular formats](https://docs.aspose.cloud/cells/convert-excel-workbook-to-different-file-formats/).
|
23
23
|
|
24
|
-
## Feature & Enhancements in Version 22.1
|
25
24
|
|
26
|
-
|
27
|
-
|
28
|
-
-
|
29
|
-
-
|
30
|
-
-
|
31
|
-
-
|
32
|
-
|
25
|
+
## Feature & Enhancements in Version 22.2
|
26
|
+
|
27
|
+
- Update return value for the DeleteUnprotectWorksheet API on Aspose.Cells Cloud.
|
28
|
+
- Update return value for the PutProtectWorksheet API on Aspose.Cells Cloud.
|
29
|
+
- Update return value for the PostSetCellHtmlString API on Aspose.Cells Cloud.
|
30
|
+
- Update return value for the PostUpdateWorksheetProperty API on Aspose.Cells Cloud.
|
31
|
+
|
33
32
|
|
34
33
|
|
35
34
|
## Read & Write Spreadsheet Formats
|
@@ -10654,7 +10654,7 @@ module AsposeCellsCloud
|
|
10654
10654
|
# @param [Hash] opts the optional parameters
|
10655
10655
|
# @option opts [String] :folder The workbook folder.
|
10656
10656
|
# @option opts [String] :storage_name storage name.
|
10657
|
-
# @return [
|
10657
|
+
# @return [CellsCloudResponse]
|
10658
10658
|
def cells_post_set_cell_html_string(name, sheet_name, cell_name, html_string, opts = {})
|
10659
10659
|
data, _status_code, _headers = cells_post_set_cell_html_string_with_http_info(name, sheet_name, cell_name, html_string, opts)
|
10660
10660
|
return data
|
@@ -10669,7 +10669,7 @@ module AsposeCellsCloud
|
|
10669
10669
|
# @param [Hash] opts the optional parameters
|
10670
10670
|
# @option opts [String] :folder The workbook folder.
|
10671
10671
|
# @option opts [String] :storage_name storage name.
|
10672
|
-
# @return [Array<(
|
10672
|
+
# @return [Array<(CellsCloudResponse, Fixnum, Hash)>] CellsCloudResponse data, response status code and response headers
|
10673
10673
|
def cells_post_set_cell_html_string_with_http_info(name, sheet_name, cell_name, html_string, opts = {})
|
10674
10674
|
if @api_client.config.debugging
|
10675
10675
|
@api_client.config.logger.debug "Calling API: CellsApi.cells_post_set_cell_html_string ..."
|
@@ -10719,7 +10719,7 @@ module AsposeCellsCloud
|
|
10719
10719
|
:form_params => form_params,
|
10720
10720
|
:body => post_body,
|
10721
10721
|
:auth_names => auth_names,
|
10722
|
-
:return_type => '
|
10722
|
+
:return_type => 'CellsCloudResponse')
|
10723
10723
|
if @api_client.config.debugging
|
10724
10724
|
@api_client.config.logger.debug "API called: CellsApi#cells_post_set_cell_html_string\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
10725
10725
|
end
|
@@ -17037,7 +17037,7 @@ module AsposeCellsCloud
|
|
17037
17037
|
# @option opts [ProtectSheetParameter] :protect_parameter with protection settings. Only password is used here.
|
17038
17038
|
# @option opts [String] :folder Document folder.
|
17039
17039
|
# @option opts [String] :storage_name storage name.
|
17040
|
-
# @return [
|
17040
|
+
# @return [CellsCloudResponse]
|
17041
17041
|
def cells_worksheets_delete_unprotect_worksheet(name, sheet_name, opts = {})
|
17042
17042
|
data, _status_code, _headers = cells_worksheets_delete_unprotect_worksheet_with_http_info(name, sheet_name, opts)
|
17043
17043
|
return data
|
@@ -17051,7 +17051,7 @@ module AsposeCellsCloud
|
|
17051
17051
|
# @option opts [ProtectSheetParameter] :protect_parameter with protection settings. Only password is used here.
|
17052
17052
|
# @option opts [String] :folder Document folder.
|
17053
17053
|
# @option opts [String] :storage_name storage name.
|
17054
|
-
# @return [Array<(
|
17054
|
+
# @return [Array<(CellsCloudResponse, Fixnum, Hash)>] CellsCloudResponse data, response status code and response headers
|
17055
17055
|
def cells_worksheets_delete_unprotect_worksheet_with_http_info(name, sheet_name, opts = {})
|
17056
17056
|
if @api_client.config.debugging
|
17057
17057
|
@api_client.config.logger.debug "Calling API: CellsApi.cells_worksheets_delete_unprotect_worksheet ..."
|
@@ -17093,7 +17093,7 @@ module AsposeCellsCloud
|
|
17093
17093
|
:form_params => form_params,
|
17094
17094
|
:body => post_body,
|
17095
17095
|
:auth_names => auth_names,
|
17096
|
-
:return_type => '
|
17096
|
+
:return_type => 'CellsCloudResponse')
|
17097
17097
|
if @api_client.config.debugging
|
17098
17098
|
@api_client.config.logger.debug "API called: CellsApi#cells_worksheets_delete_unprotect_worksheet\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
17099
17099
|
end
|
@@ -18762,7 +18762,7 @@ module AsposeCellsCloud
|
|
18762
18762
|
# @option opts [Worksheet] :sheet
|
18763
18763
|
# @option opts [String] :folder
|
18764
18764
|
# @option opts [String] :storage_name storage name.
|
18765
|
-
# @return [
|
18765
|
+
# @return [CellsCloudResponse]
|
18766
18766
|
def cells_worksheets_post_update_worksheet_property(name, sheet_name, opts = {})
|
18767
18767
|
data, _status_code, _headers = cells_worksheets_post_update_worksheet_property_with_http_info(name, sheet_name, opts)
|
18768
18768
|
return data
|
@@ -18776,7 +18776,7 @@ module AsposeCellsCloud
|
|
18776
18776
|
# @option opts [Worksheet] :sheet
|
18777
18777
|
# @option opts [String] :folder
|
18778
18778
|
# @option opts [String] :storage_name storage name.
|
18779
|
-
# @return [Array<(
|
18779
|
+
# @return [Array<(CellsCloudResponse, Fixnum, Hash)>] CellsCloudResponse data, response status code and response headers
|
18780
18780
|
def cells_worksheets_post_update_worksheet_property_with_http_info(name, sheet_name, opts = {})
|
18781
18781
|
if @api_client.config.debugging
|
18782
18782
|
@api_client.config.logger.debug "Calling API: CellsApi.cells_worksheets_post_update_worksheet_property ..."
|
@@ -18818,7 +18818,7 @@ module AsposeCellsCloud
|
|
18818
18818
|
:form_params => form_params,
|
18819
18819
|
:body => post_body,
|
18820
18820
|
:auth_names => auth_names,
|
18821
|
-
:return_type => '
|
18821
|
+
:return_type => 'CellsCloudResponse')
|
18822
18822
|
if @api_client.config.debugging
|
18823
18823
|
@api_client.config.logger.debug "API called: CellsApi#cells_worksheets_post_update_worksheet_property\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
18824
18824
|
end
|
@@ -19374,7 +19374,7 @@ module AsposeCellsCloud
|
|
19374
19374
|
# @option opts [ProtectSheetParameter] :protect_parameter with protection settings.
|
19375
19375
|
# @option opts [String] :folder Document folder.
|
19376
19376
|
# @option opts [String] :storage_name storage name.
|
19377
|
-
# @return [
|
19377
|
+
# @return [CellsCloudResponse]
|
19378
19378
|
def cells_worksheets_put_protect_worksheet(name, sheet_name, opts = {})
|
19379
19379
|
data, _status_code, _headers = cells_worksheets_put_protect_worksheet_with_http_info(name, sheet_name, opts)
|
19380
19380
|
return data
|
@@ -19388,7 +19388,7 @@ module AsposeCellsCloud
|
|
19388
19388
|
# @option opts [ProtectSheetParameter] :protect_parameter with protection settings.
|
19389
19389
|
# @option opts [String] :folder Document folder.
|
19390
19390
|
# @option opts [String] :storage_name storage name.
|
19391
|
-
# @return [Array<(
|
19391
|
+
# @return [Array<(CellsCloudResponse, Fixnum, Hash)>] CellsCloudResponse data, response status code and response headers
|
19392
19392
|
def cells_worksheets_put_protect_worksheet_with_http_info(name, sheet_name, opts = {})
|
19393
19393
|
if @api_client.config.debugging
|
19394
19394
|
@api_client.config.logger.debug "Calling API: CellsApi.cells_worksheets_put_protect_worksheet ..."
|
@@ -19430,7 +19430,7 @@ module AsposeCellsCloud
|
|
19430
19430
|
:form_params => form_params,
|
19431
19431
|
:body => post_body,
|
19432
19432
|
:auth_names => auth_names,
|
19433
|
-
:return_type => '
|
19433
|
+
:return_type => 'CellsCloudResponse')
|
19434
19434
|
if @api_client.config.debugging
|
19435
19435
|
@api_client.config.logger.debug "API called: CellsApi#cells_worksheets_put_protect_worksheet\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
19436
19436
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aspose_cells_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '22.
|
4
|
+
version: '22.2'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aspose Cells Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|