-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These patch notes summarize the changes from version 117.0.4438. Added 5 new APIs: * ProjectVersion.RetrieveProjectVersions (GET /api/data/projects/{projectId}/versions) * ProjectVersion.DownloadMSProjectXml (GET /api/data/projects/{projectChangeId}/version/download) * ProjectVersion.RestoreProjectVersion (POST /api/data/projects/{projectId}/version/{version}/restore) * ProjectVersion.CopyProjectVersion (POST /api/data/projects/{projectId}/version/{version}/copy) * Risk.CreateRiskExport (POST /api/data/projects/{projectId}/risks/export) Renamed 1 old APIs: * Renamed 'TaskMetadata.GetTasksByProjectIDAndForeignKeyID' to 'TaskMetadata.TaskMetadataSearch' Changes to data models: * ResourceDto: Added new field `initials` * ResourceDto: Added new field `avatarUrl` * TaskDto: Added new field `isLocked` * TaskDto: Added new field `isMilestone` Co-authored-by: tspence <[email protected]>
- Loading branch information
1 parent
1ccf8c9
commit e25af45
Showing
5 changed files
with
14,097 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
* @author ProjectManager.com <[email protected]> | ||
* | ||
* @copyright 2023-2024 ProjectManager.com, Inc. | ||
* @version 119.0.4625 | ||
* @version 120.0.4689 | ||
* @link https://github.com/projectmgr/projectmanager-sdk-csharp | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
* @author ProjectManager.com <[email protected]> | ||
* | ||
* @copyright 2023-2024 ProjectManager.com, Inc. | ||
* @version 119.0.4625 | ||
* @version 120.0.4689 | ||
* @link https://github.com/projectmgr/projectmanager-sdk-csharp | ||
*/ | ||
|
||
|
@@ -39,7 +39,7 @@ public class ProjectManagerClient : IProjectManagerClient | |
/// <summary> | ||
/// The version of the SDK | ||
/// </summary> | ||
public const string SdkVersion = "119.0.4625"; | ||
public const string SdkVersion = "120.0.4689"; | ||
|
||
private readonly string _apiUrl; | ||
private readonly HttpClient _client; | ||
|
Oops, something went wrong.