Skip to content

Commit bf9cd45

Browse files
[TASKSCLOUD-645] - Deployed new 22.7 version.
1 parent 92a209a commit bf9cd45

7 files changed

+53
-1
lines changed

api/models/configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func NewConfiguration(configFilePath string) (pConfig *Configuration, err error)
9191
cfg := Configuration{
9292
BaseUrl: "https://api.aspose.cloud",
9393
DebugMode: false,
94-
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "21.10"},
94+
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "22.7"},
9595
}
9696
err = json.Unmarshal(data, &cfg)
9797

api/models/extended_attribute_definition.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ type ExtendedAttributeDefinition struct {
5959
RollupType *RollupType `json:"rollupType"`
6060
// Determines whether rollups are calculated for a task and group summary rows.
6161
CalculationType *CalculationType `json:"calculationType"`
62+
// Gets or sets the type of calculation of the custom attribute's value for summary rows.
63+
SummaryRowsCalculationType *SummaryRowsCalculationType `json:"summaryRowsCalculationType"`
6264
// The formula that Microsoft Project uses to populate a custom task field.
6365
Formula string `json:"formula,omitempty"`
6466
// Determines whether only values in the list are allowed in a file.

api/models/resource.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ import (
3333

3434
// Represents a project resource.
3535
type Resource struct {
36+
// 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.
37+
IsRoot bool `json:"isRoot"`
3638
// The name of a resource.
3739
Name string `json:"name,omitempty"`
3840
// The unique identifier of a resource.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* --------------------------------------------------------------------------------
3+
* <copyright company="Aspose" file="summary_rows_calculation_type.go">
4+
* Copyright (c) 2021 Aspose.Tasks Cloud
5+
* </copyright>
6+
* <summary>
7+
* Permission is hereby granted, free of charge, to any person obtaining a copy
8+
* of this software and associated documentation files (the "Software"), to deal
9+
* in the Software without restriction, including without limitation the rights
10+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
* copies of the Software, and to permit persons to whom the Software is
12+
* furnished to do so, subject to the following conditions:
13+
*
14+
* The above copyright notice and this permission notice shall be included in all
15+
* copies or substantial portions of the Software.
16+
*
17+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
* SOFTWARE.
24+
* </summary>
25+
* --------------------------------------------------------------------------------
26+
*/
27+
28+
package models
29+
// SummaryRowsCalculationType : Specifies the type of a calculation of the custom attribute's value for summary rows.
30+
type SummaryRowsCalculationType string
31+
32+
// List of SummaryRowsCalculationType
33+
const (
34+
NONE_SummaryRowsCalculationType SummaryRowsCalculationType = "None"
35+
ROLLUP_SummaryRowsCalculationType SummaryRowsCalculationType = "Rollup"
36+
USE_FORMULA_SummaryRowsCalculationType SummaryRowsCalculationType = "UseFormula"
37+
)

docs/ExtendedAttributeDefinition.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Name | Type | Description | Notes
1818
**PhoneticsAlias** | **string** | The phonetic pronunciation of the alias of a custom field. | [optional] [default to null]
1919
**RollupType** | [***RollupType**](RollupType.md) | The way rollups are calculated. | [default to null]
2020
**CalculationType** | [***CalculationType**](CalculationType.md) | Determines whether rollups are calculated for a task and group summary rows. | [default to null]
21+
**SummaryRowsCalculationType** | [***SummaryRowsCalculationType**](SummaryRowsCalculationType.md) | Gets or sets the type of calculation of the custom attribute&#39;s value for summary rows. | [default to null]
2122
**Formula** | **string** | The formula that Microsoft Project uses to populate a custom task field. | [optional] [default to null]
2223
**RestrictValues** | **bool** | Determines whether only values in the list are allowed in a file. | [default to null]
2324
**ValuelistSortOrder** | **int32** | The way value lists are sorted. Values are: 0&#x3D;Descending, 1&#x3D;Ascending. | [default to null]

docs/Resource.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6+
**IsRoot** | **bool** | 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&#39;s formats and is not intended to be used directly from the user&#39;s code. | [default to null]
67
**Name** | **string** | The name of a resource. | [optional] [default to null]
78
**Uid** | **int32** | The unique identifier of a resource. | [default to null]
89
**Id** | **int32** | The position identifier of a resource within the list of resources. | [default to null]

docs/SummaryRowsCalculationType.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# SummaryRowsCalculationType
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
7+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
8+
9+

0 commit comments

Comments
 (0)