Skip to content

Commit

Permalink
# Patch notes for 120.0.4689 (#46)
Browse files Browse the repository at this point in the history
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
github-actions[bot] and tspence authored Oct 20, 2024
1 parent 1ccf8c9 commit e25af45
Show file tree
Hide file tree
Showing 5 changed files with 14,097 additions and 5 deletions.
6 changes: 4 additions & 2 deletions ProjectManagerClient.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>ProjectManager.SDK</id>
<version>119.0.4625</version>
<version>120.0.4689</version>
<title>ProjectManager.SDK</title>
<authors>ProjectManager.com</authors>
<owners>ProjectManager.com, Inc.</owners>
Expand All @@ -14,7 +14,7 @@
<readme>docs/README.md</readme>
<summary>ProjectManager API for DotNet</summary>
<releaseNotes>
# Patch notes for 119.0.4625
# Patch notes for 120.0.4689

These patch notes summarize the changes from version 117.0.4438.

Expand All @@ -29,6 +29,8 @@
* 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`

Expand Down
2 changes: 1 addition & 1 deletion src/IProjectManagerClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/

Expand Down
10 changes: 10 additions & 0 deletions src/Models/ResourceDto.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ public class ResourceDto : ApiModel
/// </summary>
public Guid? Id { get; set; }

/// <summary>
/// The resource initials.
/// </summary>
public string Initials { get; set; }

/// <summary>
/// The first name of the person Resource.
///
Expand Down Expand Up @@ -161,5 +166,10 @@ public class ResourceDto : ApiModel
/// Read only Hex code of the ColorName
/// </summary>
public string Color { get; set; }

/// <summary>
/// The resources avatar url, if any.
/// </summary>
public string AvatarUrl { get; set; }
}
}
4 changes: 2 additions & 2 deletions src/ProjectManagerClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/

Expand Down Expand Up @@ -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;
Expand Down
Loading

0 comments on commit e25af45

Please sign in to comment.