Skip to content

Commit a3f59af

Browse files
committedAug 22, 2021
[TASKSCLOUD-581] - Deployed new 21.8 version.
1 parent 469f926 commit a3f59af

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed
 

‎api/models/configuration.go

+1-1
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.2"},
94+
DefaultHeader: map[string]string{"x-aspose-client": "go sdk", "x-aspose-client-version": "21.8"},
9595
}
9696
err = json.Unmarshal(data, &cfg)
9797

‎api/models/task.go

+2
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ type Task struct {
114114
// The amount of a free slack.
115115
FreeSlack int32 `json:"freeSlack"`
116116
Guid string `json:"guid,omitempty"`
117+
// Indicates whether the task has an resource assigned which has more work on assigned tasks than can be completed within normal working capacity.
118+
HasOverallocatedResource bool `json:"hasOverallocatedResource"`
117119
// Determines whether the GANTT bar of a task is hidden when displayed in Microsoft Project.
118120
HideBar bool `json:"hideBar"`
119121
// Determines whether a task ignores the resource calendar.

‎api/tasks_api.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -3147,7 +3147,7 @@ TasksApiService Imports project from Project Online and saves it to specified fi
31473147
* @param "Format" (optional.String) - Format of the resulting file.
31483148
* @param "Folder" (optional.String) - The document folder.
31493149
* @param "Storage" (optional.String) - The document storage.
3150-
* @param "XProjectOnlineToken" (optional.String) - Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
3150+
* @param "XProjectOnlineToken" (optional.String) - Authorization token (SPOIDCRL) for SharePoint's PWA (Project Web Access). For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
31513151
* @param "XSharepointPassword" (optional.String) - The password for the SharePoint site.
31523152
31533153
@return models.AsposeResponse
@@ -4158,7 +4158,7 @@ TasksApiService Creates new project in Project Server\\Project Online instance.
41584158
* @param "SaveOptions" (optional.Interface of ProjectServerSaveOptionsDto) - Dispensable save options for Project Server\\Project Online.
41594159
* @param "Folder" (optional.String) - The document folder.
41604160
* @param "Storage" (optional.String) - The document storage.
4161-
* @param "XProjectOnlineToken" (optional.String) - Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
4161+
* @param "XProjectOnlineToken" (optional.String) - Authorization token (SPOIDCRL) for SharePoint's PWA (Project Web Access). For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
41624162
* @param "XSharepointPassword" (optional.String) - The password for the SharePoint site.
41634163
41644164
@return models.AsposeResponse
@@ -4258,7 +4258,7 @@ TasksApiService Gets the list of published projects in the current Project Onlin
42584258
* @param *requests.GetProjectListOpts - Request parameters:
42594259
* @param "SiteUrl" (string) - The URL of PWA (Project Web Access) API of Project Online.
42604260
* @param "UserName" (optional.String) - The user name for the sharepoint site.
4261-
* @param "XProjectOnlineToken" (optional.String) - Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
4261+
* @param "XProjectOnlineToken" (optional.String) - Authorization token (SPOIDCRL) for SharePoint's PWA (Project Web Access). For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
42624262
* @param "XSharepointPassword" (optional.String) - The password for the SharePoint site.
42634263
42644264
@return models.ProjectListResponse
@@ -4346,7 +4346,7 @@ TasksApiService Updates existing project in Project Server\\Project Online insta
43464346
* @param "SaveOptions" (optional.Interface of ProjectServerSaveOptionsDto) - Dispensable save options for Project Server\\Project Online.
43474347
* @param "Folder" (optional.String) - The document folder.
43484348
* @param "Storage" (optional.String) - The document storage.
4349-
* @param "XProjectOnlineToken" (optional.String) - Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
4349+
* @param "XProjectOnlineToken" (optional.String) - Authorization token (SPOIDCRL) for SharePoint's PWA (Project Web Access). For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly
43504350
* @param "XSharepointPassword" (optional.String) - The password for the SharePoint site.
43514351
43524352
@return models.AsposeResponse

‎docs/Task.md

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Name | Type | Description | Notes
4444
**FixedCostAccrual** | [***CostAccrualType**](CostAccrualType.md) | Determines how the fixed cost is accrued against a task. | [default to null]
4545
**FreeSlack** | **int32** | The amount of a free slack. | [default to null]
4646
**Guid** | **string** | | [optional] [default to null]
47+
**HasOverallocatedResource** | **bool** | Indicates whether the task has an resource assigned which has more work on assigned tasks than can be completed within normal working capacity. | [default to null]
4748
**HideBar** | **bool** | Determines whether the GANTT bar of a task is hidden when displayed in Microsoft Project. | [default to null]
4849
**IgnoreResourceCalendar** | **bool** | Determines whether a task ignores the resource calendar. | [default to null]
4950
**LateFinish** | [**time.Time**](time.Time.md) | The late finish date of a task. | [default to null]

‎docs/TasksApi.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1338,7 +1338,7 @@ Name | Type | Description | Notes
13381338
**format** | **optional.String**| Format of the resulting file. |
13391339
**folder** | **optional.String**| The document folder. |
13401340
**storage** | **optional.String**| The document storage. |
1341-
**xProjectOnlineToken** | **optional.String**| Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly |
1341+
**xProjectOnlineToken** | **optional.String**| Authorization token (SPOIDCRL) for SharePoint's PWA (Project Web Access). For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly |
13421342
**xSharepointPassword** | **optional.String**| The password for the SharePoint site. |
13431343

13441344
### Return type
@@ -1739,7 +1739,7 @@ Name | Type | Description | Notes
17391739
**saveOptions** | [**optional.Interface of ProjectServerSaveOptionsDto**](ProjectServerSaveOptionsDto.md)| Dispensable save options for Project Server\\Project Online. |
17401740
**folder** | **optional.String**| The document folder. |
17411741
**storage** | **optional.String**| The document storage. |
1742-
**xProjectOnlineToken** | **optional.String**| Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly |
1742+
**xProjectOnlineToken** | **optional.String**| Authorization token (SPOIDCRL) for SharePoint's PWA (Project Web Access). For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly |
17431743
**xSharepointPassword** | **optional.String**| The password for the SharePoint site. |
17441744

17451745
### Return type
@@ -1771,7 +1771,7 @@ Name | Type | Description | Notes
17711771
------------- | ------------- | ------------- | -------------
17721772

17731773
**userName** | **optional.String**| The user name for the sharepoint site. |
1774-
**xProjectOnlineToken** | **optional.String**| Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly |
1774+
**xProjectOnlineToken** | **optional.String**| Authorization token (SPOIDCRL) for SharePoint's PWA (Project Web Access). For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly |
17751775
**xSharepointPassword** | **optional.String**| The password for the SharePoint site. |
17761776

17771777
### Return type
@@ -1808,7 +1808,7 @@ Name | Type | Description | Notes
18081808
**saveOptions** | [**optional.Interface of ProjectServerSaveOptionsDto**](ProjectServerSaveOptionsDto.md)| Dispensable save options for Project Server\\Project Online. |
18091809
**folder** | **optional.String**| The document folder. |
18101810
**storage** | **optional.String**| The document storage. |
1811-
**xProjectOnlineToken** | **optional.String**| Authorization token for the SharePoint. For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly |
1811+
**xProjectOnlineToken** | **optional.String**| Authorization token (SPOIDCRL) for SharePoint's PWA (Project Web Access). For example, in c# it can be retrieved using SharePointOnlineCredentials class from Microsoft.SharePoint.Client.Runtime assembly |
18121812
**xSharepointPassword** | **optional.String**| The password for the SharePoint site. |
18131813

18141814
### Return type

0 commit comments

Comments
 (0)