-
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.
# Patch notes for 115.0.4328 These patch notes summarize the changes from version 114.0.4169. Changes to data models: * NotificationDto: Added new field `id` * NotificationDto: Removed field `notificationId` * NotificationDto: Removed field `businessId` * NotificationDto: Removed field `userId` * ResourcesCreateDto: Added new field `projectIds` * RiskExportSettingsDto: Added new field `timeZoneOffset` * RiskExportSettingsDto: Added new field `dueDateFilter` * RiskExportSettingsDto: Added new field `priorityFilter` * RiskExportSettingsDto: Added new field `progressFilter` * RiskExportSettingsDto: Added new field `assignees` * RiskExportSettingsDto: Added new field `tags` * TaskDto: Added new field `theme`
- Loading branch information
Showing
12 changed files
with
229 additions
and
30 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
File renamed without changes.
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 114.0.4169 | ||
* @version 115.0.4328 | ||
* @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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/*** | ||
* ProjectManager API for C# | ||
* | ||
* (c) 2023-2024 ProjectManager.com, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author ProjectManager.com <[email protected]> | ||
* @copyright 2023-2024 ProjectManager.com, Inc. | ||
* @link https://github.com/projectmgr/projectmanager-sdk-csharp | ||
*/ | ||
|
||
|
||
|
||
#pragma warning disable CS8618 | ||
|
||
using System; | ||
|
||
namespace ProjectManager.SDK.Models | ||
{ | ||
|
||
/// <summary> | ||
/// Due Date Filter Settings | ||
/// </summary> | ||
public class ExportDueDateFilterDto : ApiModel | ||
{ | ||
|
||
/// <summary> | ||
/// Include items without a due date | ||
/// </summary> | ||
public bool? IncludeNoDueDate { get; set; } | ||
|
||
/// <summary> | ||
/// Include items with a due date in the past | ||
/// </summary> | ||
public bool? IncludeOverdue { get; set; } | ||
|
||
/// <summary> | ||
/// Include items with a due date of today | ||
/// </summary> | ||
public bool? IncludeToday { get; set; } | ||
|
||
/// <summary> | ||
/// Include items due within the current week | ||
/// </summary> | ||
public bool? IncludeThisWeek { get; set; } | ||
|
||
/// <summary> | ||
/// Include items due within the next week | ||
/// </summary> | ||
public bool? IncludeNextWeek { get; set; } | ||
|
||
/// <summary> | ||
/// Include items due later | ||
/// </summary> | ||
public bool? IncludeLater { get; set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/*** | ||
* ProjectManager API for C# | ||
* | ||
* (c) 2023-2024 ProjectManager.com, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author ProjectManager.com <[email protected]> | ||
* @copyright 2023-2024 ProjectManager.com, Inc. | ||
* @link https://github.com/projectmgr/projectmanager-sdk-csharp | ||
*/ | ||
|
||
|
||
|
||
#pragma warning disable CS8618 | ||
|
||
using System; | ||
|
||
namespace ProjectManager.SDK.Models | ||
{ | ||
|
||
/// <summary> | ||
/// Priority filter settings | ||
/// </summary> | ||
public class ExportPriorityFilterDto : ApiModel | ||
{ | ||
|
||
/// <summary> | ||
/// Include items with no priority | ||
/// </summary> | ||
public bool? IsNone { get; set; } | ||
|
||
/// <summary> | ||
/// Include items with very low priority | ||
/// </summary> | ||
public bool? IsVeryLow { get; set; } | ||
|
||
/// <summary> | ||
/// Include items with low priority | ||
/// </summary> | ||
public bool? IsLow { get; set; } | ||
|
||
/// <summary> | ||
/// Include items with medium priority | ||
/// </summary> | ||
public bool? IsMedium { get; set; } | ||
|
||
/// <summary> | ||
/// Include items with high priority | ||
/// </summary> | ||
public bool? IsHigh { get; set; } | ||
|
||
/// <summary> | ||
/// Include items with very high priority | ||
/// </summary> | ||
public bool? IsVeryHigh { get; set; } | ||
|
||
/// <summary> | ||
/// Include items with critical priority | ||
/// </summary> | ||
public bool? IsCritical { get; set; } | ||
} | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/*** | ||
* ProjectManager API for C# | ||
* | ||
* (c) 2023-2024 ProjectManager.com, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author ProjectManager.com <[email protected]> | ||
* @copyright 2023-2024 ProjectManager.com, Inc. | ||
* @link https://github.com/projectmgr/projectmanager-sdk-csharp | ||
*/ | ||
|
||
|
||
|
||
#pragma warning disable CS8618 | ||
|
||
using System; | ||
|
||
namespace ProjectManager.SDK.Models | ||
{ | ||
|
||
/// <summary> | ||
/// Risk Progress Filter Settings | ||
/// </summary> | ||
public class RiskExportProgressFilterDto : ApiModel | ||
{ | ||
|
||
/// <summary> | ||
/// Include risks that are open | ||
/// </summary> | ||
public bool? IsOpen { get; set; } | ||
|
||
/// <summary> | ||
/// Include risks that are closed | ||
/// </summary> | ||
public bool? IsClosed { get; set; } | ||
} | ||
} |
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
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 114.0.4169 | ||
* @version 115.0.4328 | ||
* @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 = "114.0.4169"; | ||
public const string SdkVersion = "115.0.4328"; | ||
|
||
private readonly string _apiUrl; | ||
private readonly HttpClient _client; | ||
|