Skip to content
Open
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
501e1cd
Initial plan
Copilot Jul 27, 2025
627f731
Create WorkforceManagementApi and interface with model issues to resolve
Copilot Jul 27, 2025
c65085e
Add essential workforce management models to project
Copilot Jul 27, 2025
f488b65
Changes before error encountered
Copilot Jul 27, 2025
124382f
Significant progress on WorkforceManagementApi dependencies - reduced…
Copilot Jul 27, 2025
9f153c0
🎉 SUCCESS: WorkforceManagementApi now builds successfully! Resolved a…
Copilot Jul 27, 2025
1aa0968
Fix WorkforceManagementApi code review issues: URL escaping, expand p…
Copilot Jul 28, 2025
66bcc38
Address code review feedback: remove Any() call, add newlines, fix Ge…
Copilot Jul 28, 2025
49bd2f0
Address review feedback: remove manual exception throwing, fix null c…
Copilot Jul 28, 2025
5cb01bb
Continue WFM API migration: Add GetWorkPlansAsync, CreateWorkPlanAsyn…
Copilot Jul 28, 2025
65363ab
Clean involved models for WorkforceManagementApi - remove complex SDK…
Copilot Jul 28, 2025
a89a6bc
Address code review feedback: rename expand parameters to expands and…
Copilot Jul 28, 2025
0d13aa7
Implement 71 additional WorkforceManagementApi methods - now 90/245 m…
Copilot Jul 29, 2025
238993a
Implement 39 additional methods reaching 52.7% coverage (129/245 meth…
Copilot Jul 29, 2025
599e7d8
Major WorkforceManagementApi expansion - added 64 new methods for 78.…
Copilot Jul 29, 2025
8ace08a
🎉 COMPLETE! Full WorkforceManagementApi migration - 100% coverage (24…
Copilot Jul 29, 2025
e03986e
Fix model cleaning and API return types for WorkforceManagementApi co…
Copilot Jul 30, 2025
de502b0
Temporary fix: simplified models to object types to resolve build issues
Copilot Jul 30, 2025
c860b22
Fix model cleaning: restore concrete types instead of object, extract…
Copilot Jul 30, 2025
3f445a1
Fix model cleaning issues: add newline to ActivityCode.Category.cs an…
Copilot Jul 30, 2025
deac552
Clean ExpandableWebDeployment model: extract enum and change List to …
Copilot Aug 6, 2025
3584356
Fix WorkforceManagementApi code style compliance - HttpClient pattern…
Copilot Aug 20, 2025
b551fc0
Apply code style compliance fixes: seal class, use IEnumerable instea…
Copilot Aug 20, 2025
d8b51fb
Remove extra whitespace: eliminate 68 consecutive blank lines from Wo…
Copilot Aug 20, 2025
1f97ab8
Fix model property types: change List to IEnumerable and correct enum…
Copilot Aug 20, 2025
ad6d7d0
Complete model cleaning: extract CreateAdminTimeOffRequest.Status enu…
Copilot Aug 21, 2025
1674c14
Merge branch 'main' into copilot/fix-113
JackTelford Aug 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4,654 changes: 4,654 additions & 0 deletions src/PureCloud.Client/Apis/WorkforceManagementApi.cs

Large diffs are not rendered by default.

2,267 changes: 2,267 additions & 0 deletions src/PureCloud.Client/Contracts/IWorkforceManagementApi.cs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,11 @@ public static IServiceCollection AddPureCloudApis(this IServiceCollection servic

services.TryAddScoped<IWebChatApi, WebChatApi>();

services.TryAddScoped<IWebMessagingApi, WebMessagingApi>();

services.TryAddScoped<IWidgetsApi, WidgetsApi>();
services.TryAddScoped<IWebMessagingApi, WebMessagingApi>();

services.TryAddScoped<IWidgetsApi, WidgetsApi>();

services.TryAddScoped<IWorkforceManagementApi, WorkforceManagementApi>();

return services;
}
Expand Down
71 changes: 71 additions & 0 deletions src/PureCloud.Client/Models/ActivityCode.Category.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
using System.Runtime.Serialization;

namespace PureCloud.Client.Models;

/// <summary>
/// The activity code's category.
/// </summary>
public enum ActivityCodeCategory
{
/// <summary>
/// Your SDK version is out of date and an unknown enum value was encountered.
/// Please upgrade the SDK using the command "Upgrade-Package PureCloudApiSdk"
/// in the Package Manager Console
/// </summary>
[EnumMember(Value = "OUTDATED_SDK_VERSION")]
OutdatedSdkVersion,

/// <summary>
/// Enum Onqueuework for "OnQueueWork"
/// </summary>
[EnumMember(Value = "OnQueueWork")]
Onqueuework,

/// <summary>
/// Enum Break for "Break"
/// </summary>
[EnumMember(Value = "Break")]
Break,

/// <summary>
/// Enum Meal for "Meal"
/// </summary>
[EnumMember(Value = "Meal")]
Meal,

/// <summary>
/// Enum Meeting for "Meeting"
/// </summary>
[EnumMember(Value = "Meeting")]
Meeting,

/// <summary>
/// Enum Offqueuework for "OffQueueWork"
/// </summary>
[EnumMember(Value = "OffQueueWork")]
Offqueuework,

/// <summary>
/// Enum Timeoff for "TimeOff"
/// </summary>
[EnumMember(Value = "TimeOff")]
Timeoff,

/// <summary>
/// Enum Training for "Training"
/// </summary>
[EnumMember(Value = "Training")]
Training,

/// <summary>
/// Enum Unavailable for "Unavailable"
/// </summary>
[EnumMember(Value = "Unavailable")]
Unavailable,

/// <summary>
/// Enum Unscheduled for "Unscheduled"
/// </summary>
[EnumMember(Value = "Unscheduled")]
Unscheduled
}
Loading
Loading