Skip to content

Commit 74cc037

Browse files
committed
20220222 update: update few apis return value.
1 parent bf4aa5a commit 74cc037

File tree

3 files changed

+21
-22
lines changed

3 files changed

+21
-22
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Gem](https://img.shields.io/gem/v/aspose_cells_cloud) ![Gem](https://img.shields.io/gem/dt/aspose_cells_cloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-ruby)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-ruby/22.1)
1+
![](https://img.shields.io/badge/REST%20API-v3.0-lightgrey) ![Gem](https://img.shields.io/gem/v/aspose_cells_cloud) ![Gem](https://img.shields.io/gem/dt/aspose_cells_cloud) [![GitHub license](https://img.shields.io/github/license/aspose-cells-cloud/aspose-cells-cloud-ruby)](https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby/blob/master/LICENSE) ![GitHub commits since latest release (by date)](https://img.shields.io/github/commits-since/aspose-cells-cloud/aspose-cells-cloud-ruby/22.2)
22

33

44
# 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
2121
- Convert worksheets to PDF, XPS & SVG formats.
2222
- [Convert Excel files to popular formats](https://docs.aspose.cloud/cells/convert-excel-workbook-to-different-file-formats/).
2323

24-
## Feature & Enhancements in Version 22.1
2524

26-
- SaveAs API add the parameter of target storage name.
27-
- Workbok merged API add the parameter of merged file storage name.
28-
- Workbok split API add the parameter of target storage name
29-
- Workbok smart marker API add the parameter of output storage name.
30-
- Batch convert API add the parameters of intput and output storage name.
31-
- Remove AutoshapesController from Aspose.Cells Cloud.
32-
- Rename LiteCellsApi to LightCellsApi.
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+
3332

3433

3534
## Read & Write Spreadsheet Formats

lib/aspose_cells_cloud/api/cells_api.rb

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10654,7 +10654,7 @@ def cells_post_row_style_with_http_info(name, sheet_name, row_index, opts = {})
1065410654
# @param [Hash] opts the optional parameters
1065510655
# @option opts [String] :folder The workbook folder.
1065610656
# @option opts [String] :storage_name storage name.
10657-
# @return [CellResponse]
10657+
# @return [CellsCloudResponse]
1065810658
def cells_post_set_cell_html_string(name, sheet_name, cell_name, html_string, opts = {})
1065910659
data, _status_code, _headers = cells_post_set_cell_html_string_with_http_info(name, sheet_name, cell_name, html_string, opts)
1066010660
return data
@@ -10669,7 +10669,7 @@ def cells_post_set_cell_html_string(name, sheet_name, cell_name, html_string, op
1066910669
# @param [Hash] opts the optional parameters
1067010670
# @option opts [String] :folder The workbook folder.
1067110671
# @option opts [String] :storage_name storage name.
10672-
# @return [Array<(CellResponse, Fixnum, Hash)>] CellResponse data, response status code and response headers
10672+
# @return [Array<(CellsCloudResponse, Fixnum, Hash)>] CellsCloudResponse data, response status code and response headers
1067310673
def cells_post_set_cell_html_string_with_http_info(name, sheet_name, cell_name, html_string, opts = {})
1067410674
if @api_client.config.debugging
1067510675
@api_client.config.logger.debug "Calling API: CellsApi.cells_post_set_cell_html_string ..."
@@ -10719,7 +10719,7 @@ def cells_post_set_cell_html_string_with_http_info(name, sheet_name, cell_name,
1071910719
:form_params => form_params,
1072010720
:body => post_body,
1072110721
:auth_names => auth_names,
10722-
:return_type => 'CellResponse')
10722+
:return_type => 'CellsCloudResponse')
1072310723
if @api_client.config.debugging
1072410724
@api_client.config.logger.debug "API called: CellsApi#cells_post_set_cell_html_string\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1072510725
end
@@ -17037,7 +17037,7 @@ def cells_worksheet_validations_put_worksheet_validation_with_http_info(name, sh
1703717037
# @option opts [ProtectSheetParameter] :protect_parameter with protection settings. Only password is used here.
1703817038
# @option opts [String] :folder Document folder.
1703917039
# @option opts [String] :storage_name storage name.
17040-
# @return [WorksheetResponse]
17040+
# @return [CellsCloudResponse]
1704117041
def cells_worksheets_delete_unprotect_worksheet(name, sheet_name, opts = {})
1704217042
data, _status_code, _headers = cells_worksheets_delete_unprotect_worksheet_with_http_info(name, sheet_name, opts)
1704317043
return data
@@ -17051,7 +17051,7 @@ def cells_worksheets_delete_unprotect_worksheet(name, sheet_name, opts = {})
1705117051
# @option opts [ProtectSheetParameter] :protect_parameter with protection settings. Only password is used here.
1705217052
# @option opts [String] :folder Document folder.
1705317053
# @option opts [String] :storage_name storage name.
17054-
# @return [Array<(WorksheetResponse, Fixnum, Hash)>] WorksheetResponse data, response status code and response headers
17054+
# @return [Array<(CellsCloudResponse, Fixnum, Hash)>] CellsCloudResponse data, response status code and response headers
1705517055
def cells_worksheets_delete_unprotect_worksheet_with_http_info(name, sheet_name, opts = {})
1705617056
if @api_client.config.debugging
1705717057
@api_client.config.logger.debug "Calling API: CellsApi.cells_worksheets_delete_unprotect_worksheet ..."
@@ -17093,7 +17093,7 @@ def cells_worksheets_delete_unprotect_worksheet_with_http_info(name, sheet_name,
1709317093
:form_params => form_params,
1709417094
:body => post_body,
1709517095
:auth_names => auth_names,
17096-
:return_type => 'WorksheetResponse')
17096+
:return_type => 'CellsCloudResponse')
1709717097
if @api_client.config.debugging
1709817098
@api_client.config.logger.debug "API called: CellsApi#cells_worksheets_delete_unprotect_worksheet\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1709917099
end
@@ -18762,7 +18762,7 @@ def cells_worksheets_post_rename_worksheet_with_http_info(name, sheet_name, newn
1876218762
# @option opts [Worksheet] :sheet
1876318763
# @option opts [String] :folder
1876418764
# @option opts [String] :storage_name storage name.
18765-
# @return [WorksheetResponse]
18765+
# @return [CellsCloudResponse]
1876618766
def cells_worksheets_post_update_worksheet_property(name, sheet_name, opts = {})
1876718767
data, _status_code, _headers = cells_worksheets_post_update_worksheet_property_with_http_info(name, sheet_name, opts)
1876818768
return data
@@ -18776,7 +18776,7 @@ def cells_worksheets_post_update_worksheet_property(name, sheet_name, opts = {})
1877618776
# @option opts [Worksheet] :sheet
1877718777
# @option opts [String] :folder
1877818778
# @option opts [String] :storage_name storage name.
18779-
# @return [Array<(WorksheetResponse, Fixnum, Hash)>] WorksheetResponse data, response status code and response headers
18779+
# @return [Array<(CellsCloudResponse, Fixnum, Hash)>] CellsCloudResponse data, response status code and response headers
1878018780
def cells_worksheets_post_update_worksheet_property_with_http_info(name, sheet_name, opts = {})
1878118781
if @api_client.config.debugging
1878218782
@api_client.config.logger.debug "Calling API: CellsApi.cells_worksheets_post_update_worksheet_property ..."
@@ -18818,7 +18818,7 @@ def cells_worksheets_post_update_worksheet_property_with_http_info(name, sheet_n
1881818818
:form_params => form_params,
1881918819
:body => post_body,
1882018820
:auth_names => auth_names,
18821-
:return_type => 'WorksheetResponse')
18821+
:return_type => 'CellsCloudResponse')
1882218822
if @api_client.config.debugging
1882318823
@api_client.config.logger.debug "API called: CellsApi#cells_worksheets_post_update_worksheet_property\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1882418824
end
@@ -19374,7 +19374,7 @@ def cells_worksheets_put_change_visibility_worksheet_with_http_info(name, sheet_
1937419374
# @option opts [ProtectSheetParameter] :protect_parameter with protection settings.
1937519375
# @option opts [String] :folder Document folder.
1937619376
# @option opts [String] :storage_name storage name.
19377-
# @return [WorksheetResponse]
19377+
# @return [CellsCloudResponse]
1937819378
def cells_worksheets_put_protect_worksheet(name, sheet_name, opts = {})
1937919379
data, _status_code, _headers = cells_worksheets_put_protect_worksheet_with_http_info(name, sheet_name, opts)
1938019380
return data
@@ -19388,7 +19388,7 @@ def cells_worksheets_put_protect_worksheet(name, sheet_name, opts = {})
1938819388
# @option opts [ProtectSheetParameter] :protect_parameter with protection settings.
1938919389
# @option opts [String] :folder Document folder.
1939019390
# @option opts [String] :storage_name storage name.
19391-
# @return [Array<(WorksheetResponse, Fixnum, Hash)>] WorksheetResponse data, response status code and response headers
19391+
# @return [Array<(CellsCloudResponse, Fixnum, Hash)>] CellsCloudResponse data, response status code and response headers
1939219392
def cells_worksheets_put_protect_worksheet_with_http_info(name, sheet_name, opts = {})
1939319393
if @api_client.config.debugging
1939419394
@api_client.config.logger.debug "Calling API: CellsApi.cells_worksheets_put_protect_worksheet ..."
@@ -19430,7 +19430,7 @@ def cells_worksheets_put_protect_worksheet_with_http_info(name, sheet_name, opts
1943019430
:form_params => form_params,
1943119431
:body => post_body,
1943219432
:auth_names => auth_names,
19433-
:return_type => 'WorksheetResponse')
19433+
:return_type => 'CellsCloudResponse')
1943419434
if @api_client.config.debugging
1943519435
@api_client.config.logger.debug "API called: CellsApi#cells_worksheets_put_protect_worksheet\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1943619436
end

lib/aspose_cells_cloud/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
=end
2222

2323
module AsposeCellsCloud
24-
VERSION = "22.1"
24+
VERSION = "22.2"
2525
end

0 commit comments

Comments
 (0)