Skip to content

Commit ad0a6d3

Browse files
committed
Release Aspose.Cells Cloud SDK 21.11
1 parent 02bd58a commit ad0a6d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/api.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8452,7 +8452,7 @@ export class CellsApi {
84528452
* Get page count for workbook.
84538453
* @param requestObj contains request parameters
84548454
*/
8455-
public async cellsWorkbookGetPageCount(requestObj: model.CellsWorkbook_GetPageCountRequest): Promise<{response: http.ClientResponse, body: model.any}> {
8455+
public async cellsWorkbookGetPageCount(requestObj: model.CellsWorkbook_GetPageCountRequest): Promise<{response: http.ClientResponse, body: Buffer}> {
84568456
if (requestObj === null || requestObj === undefined) {
84578457
throw new Error('Required parameter "requestObj" was null or undefined when calling cellsWorkbookGetPageCount.');
84588458
}
@@ -8476,7 +8476,7 @@ export class CellsApi {
84768476
};
84778477

84788478
const response = await invokeApiMethod(requestOptions, this.configuration);
8479-
const result = ObjectSerializer.deserialize(response.body, "any");
8479+
const result = ObjectSerializer.deserialize(response.body, "Buffer");
84808480
return Promise.resolve({body: result, response});
84818481
}
84828482

@@ -9968,7 +9968,7 @@ export class CellsApi {
99689968
* Get page count for worksheet.
99699969
* @param requestObj contains request parameters
99709970
*/
9971-
public async cellsWorksheetsGetPageCount(requestObj: model.CellsWorksheets_GetPageCountRequest): Promise<{response: http.ClientResponse, body: model.any}> {
9971+
public async cellsWorksheetsGetPageCount(requestObj: model.CellsWorksheets_GetPageCountRequest): Promise<{response: http.ClientResponse, body: Buffer}> {
99729972
if (requestObj === null || requestObj === undefined) {
99739973
throw new Error('Required parameter "requestObj" was null or undefined when calling cellsWorksheetsGetPageCount.');
99749974
}
@@ -9998,7 +9998,7 @@ export class CellsApi {
99989998
};
99999999

1000010000
const response = await invokeApiMethod(requestOptions, this.configuration);
10001-
const result = ObjectSerializer.deserialize(response.body, "any");
10001+
const result = ObjectSerializer.deserialize(response.body, "Buffer");
1000210002
return Promise.resolve({body: result, response});
1000310003
}
1000410004

0 commit comments

Comments
 (0)