Skip to content

Commit 18d2ec2

Browse files
[TASKSCLOUD-609] - Deployed new 21.10 version.
1 parent 691d770 commit 18d2ec2

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@asposecloud/aspose-tasks-cloud",
3-
"version": "21.8.0",
3+
"version": "21.10.0",
44
"description": "Aspose.Tasks Cloud SDK for Node.js",
55
"homepage": "https://products.aspose.cloud/tasks",
66
"readmeFilename": "README.md",

src/internal/requestHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ async function invokeApiMethodInternal(requestOptions: request.Options, confgura
106106
//headers
107107
sa.set("User-Agent", "tasks nodejs sdk");
108108
sa.set("x-aspose-client", "nodejs sdk");
109-
sa.set("x-aspose-client-version", "21.8");
109+
sa.set("x-aspose-client-version", "21.10");
110110

111111
if (!requestOptions.headers) {
112112
requestOptions.headers = {};

src/model/model.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -841,6 +841,11 @@ export class ExtendedAttribute {
841841
name: "textValue",
842842
baseName: "textValue",
843843
type: "string",
844+
},
845+
{
846+
name: "isErrorValue",
847+
baseName: "isErrorValue",
848+
type: "boolean",
844849
} ];
845850

846851
/**
@@ -895,6 +900,11 @@ export class ExtendedAttribute {
895900
*/
896901
public textValue: string;
897902

903+
/**
904+
* Gets whether calculation of extended attribute's value resulted in an error.
905+
*/
906+
public isErrorValue: boolean;
907+
898908
public constructor(init?: Partial<ExtendedAttribute>) {
899909

900910
Object.assign(this, init);

0 commit comments

Comments
 (0)