From 9b9f330671a3d8d1d5eb32692442937650032ffc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 21:29:12 +0000 Subject: [PATCH 1/2] Initial plan From 3c7dd74173d0b35855c78bb6683340e4faa3d8f4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 21:30:53 +0000 Subject: [PATCH 2/2] Fix plan-export.md example to use correct New-IdlePlan syntax Co-authored-by: blindzero <13959569+blindzero@users.noreply.github.com> --- docs/use/plan-export.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/use/plan-export.md b/docs/use/plan-export.md index ad7c9449..dfc0ea10 100644 --- a/docs/use/plan-export.md +++ b/docs/use/plan-export.md @@ -45,7 +45,8 @@ For the exact format and normative rules, see: ```powershell # Example only. Adjust parameters to your environment. -$plan = New-IdlePlan -WorkflowPath './workflows/joiner.json' -IdentityId 'jdoe' +$request = New-IdleLifecycleRequest -LifecycleEvent 'Joiner' -IdentityKeys @{ EmployeeId = 'jdoe' } +$plan = New-IdlePlan -WorkflowPath './workflows/joiner.psd1' -Request $request Export-IdlePlan -Plan $plan -Path './artifacts/joiner.plan.json' ```