Skip to content

Commit 4ea9ac7

Browse files
[TASKSCLOUD-643] - Deployed new 22.7 version.
1 parent 3e47682 commit 4ea9ac7

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
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.10.0",
3+
"version": "22.7.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.10");
109+
sa.set("x-aspose-client-version", "22.7");
110110

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

src/model/model.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -995,6 +995,11 @@ export class ExtendedAttributeDefinition {
995995
baseName: "calculationType",
996996
type: "CalculationType",
997997
},
998+
{
999+
name: "summaryRowsCalculationType",
1000+
baseName: "summaryRowsCalculationType",
1001+
type: "SummaryRowsCalculationType",
1002+
},
9981003
{
9991004
name: "formula",
10001005
baseName: "formula",
@@ -1113,6 +1118,11 @@ export class ExtendedAttributeDefinition {
11131118
*/
11141119
public calculationType: CalculationType;
11151120

1121+
/**
1122+
* Gets or sets the type of calculation of the custom attribute's value for summary rows.
1123+
*/
1124+
public summaryRowsCalculationType: SummaryRowsCalculationType;
1125+
11161126
/**
11171127
* The formula that Microsoft Project uses to populate a custom task field.
11181128
*/
@@ -2592,6 +2602,11 @@ export class Resource {
25922602
* Attribute type map
25932603
*/
25942604
public static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
2605+
{
2606+
name: "isRoot",
2607+
baseName: "isRoot",
2608+
type: "boolean",
2609+
},
25952610
{
25962611
name: "name",
25972612
baseName: "name",
@@ -2980,6 +2995,11 @@ export class Resource {
29802995
return Resource.attributeTypeMap;
29812996
}
29822997

2998+
/**
2999+
* Gets the flag indicating whether resource is a root resource. Root resource is a special resource which is intended to support internals of MS Project's formats and is not intended to be used directly from the user's code.
3000+
*/
3001+
public isRoot: boolean;
3002+
29833003
/**
29843004
* The name of a resource.
29853005
*/
@@ -4222,6 +4242,14 @@ export class StorageFile {
42224242
}
42234243
}
42244244

4245+
/**
4246+
* Specifies the type of a calculation of the custom attribute's value for summary rows.
4247+
*/
4248+
export enum SummaryRowsCalculationType {
4249+
None = 'None' as any,
4250+
Rollup = 'Rollup' as any,
4251+
UseFormula = 'UseFormula' as any,
4252+
}
42254253
/**
42264254
* Represents project task.
42274255
*/
@@ -7899,6 +7927,7 @@ const enumsMap = {
78997927
"ReportType": ReportType,
79007928
"ResourceType": ResourceType,
79017929
"RollupType": RollupType,
7930+
"SummaryRowsCalculationType": SummaryRowsCalculationType,
79027931
"TaskLinkType": TaskLinkType,
79037932
"TaskType": TaskType,
79047933
"TimeUnitType": TimeUnitType,

0 commit comments

Comments
 (0)