Skip to content

Commit f2fd32a

Browse files
committed
Update Aspose.Cells Cloud SDK 19.10
1 parent 2600d88 commit f2fd32a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ export class CellsApi {
4747
* @param baseUrl Base api Url.
4848
* @param debugMode A value indicating whether debug mode. In debug mode all requests and responses are logged to console.
4949
*/
50-
constructor(appSID: string, appKey: string, baseUrl?: string, debugMode?: boolean) {
51-
this.configuration = new Configuration(appSID, appKey, baseUrl, debugMode);
50+
constructor(appSID: string, appKey: string, apiVersion?: string, baseUrl?: string, debugMode?: boolean) {
51+
this.configuration = new Configuration(appSID, appKey,apiVersion, baseUrl, debugMode);
5252
}
5353

5454
/**

src/internal/requestHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async function invokeApiMethodInternal(requestOptions: request.Options, confgura
8989
// requestOptions.rejectUnauthorized=false;
9090

9191
requestOptions.headers["x-aspose-client"] = "nodejs sdk";
92-
requestOptions.headers["x-aspose-client-version"] = "19.9.0";
92+
requestOptions.headers["x-aspose-client-version"] = "19.10.0";
9393

9494
const auth = confguration.authentication;
9595
if (!notApplyAuthToRequest) {

0 commit comments

Comments
 (0)