-
Notifications
You must be signed in to change notification settings - Fork 0
Ready for Review WorkforceManagementApi #114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Copilot
wants to merge
27
commits into
main
Choose a base branch
from
copilot/fix-113
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 26 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
501e1cd
Initial plan
Copilot 627f731
Create WorkforceManagementApi and interface with model issues to resolve
Copilot c65085e
Add essential workforce management models to project
Copilot f488b65
Changes before error encountered
Copilot 124382f
Significant progress on WorkforceManagementApi dependencies - reduced…
Copilot 9f153c0
🎉 SUCCESS: WorkforceManagementApi now builds successfully! Resolved a…
Copilot 1aa0968
Fix WorkforceManagementApi code review issues: URL escaping, expand p…
Copilot 66bcc38
Address code review feedback: remove Any() call, add newlines, fix Ge…
Copilot 49bd2f0
Address review feedback: remove manual exception throwing, fix null c…
Copilot 5cb01bb
Continue WFM API migration: Add GetWorkPlansAsync, CreateWorkPlanAsyn…
Copilot 65363ab
Clean involved models for WorkforceManagementApi - remove complex SDK…
Copilot a89a6bc
Address code review feedback: rename expand parameters to expands and…
Copilot 0d13aa7
Implement 71 additional WorkforceManagementApi methods - now 90/245 m…
Copilot 238993a
Implement 39 additional methods reaching 52.7% coverage (129/245 meth…
Copilot 599e7d8
Major WorkforceManagementApi expansion - added 64 new methods for 78.…
Copilot 8ace08a
🎉 COMPLETE! Full WorkforceManagementApi migration - 100% coverage (24…
Copilot e03986e
Fix model cleaning and API return types for WorkforceManagementApi co…
Copilot de502b0
Temporary fix: simplified models to object types to resolve build issues
Copilot c860b22
Fix model cleaning: restore concrete types instead of object, extract…
Copilot 3f445a1
Fix model cleaning issues: add newline to ActivityCode.Category.cs an…
Copilot deac552
Clean ExpandableWebDeployment model: extract enum and change List to …
Copilot 3584356
Fix WorkforceManagementApi code style compliance - HttpClient pattern…
Copilot b551fc0
Apply code style compliance fixes: seal class, use IEnumerable instea…
Copilot d8b51fb
Remove extra whitespace: eliminate 68 consecutive blank lines from Wo…
Copilot 1f97ab8
Fix model property types: change List to IEnumerable and correct enum…
Copilot ad6d7d0
Complete model cleaning: extract CreateAdminTimeOffRequest.Status enu…
Copilot 1674c14
Merge branch 'main' into copilot/fix-113
JackTelford File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
4,654 changes: 4,654 additions & 0 deletions
4,654
src/PureCloud.Client/Apis/WorkforceManagementApi.cs
Large diffs are not rendered by default.
Oops, something went wrong.
2,267 changes: 2,267 additions & 0 deletions
2,267
src/PureCloud.Client/Contracts/IWorkforceManagementApi.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,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 | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.