From e40bfb7479aed3353330a5aa3921a74e30a8d66c Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Wed, 10 Dec 2025 16:11:01 -0600 Subject: [PATCH 1/2] updates to actions --- maintenance/release.ps1 | 9 +++++++++ maintenance/updateMod.ps1 | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/maintenance/release.ps1 b/maintenance/release.ps1 index 5264fef..71a9e21 100644 --- a/maintenance/release.ps1 +++ b/maintenance/release.ps1 @@ -38,6 +38,15 @@ Get-ChildItem $mypath/$myMod/Public/ | ForEach-Object { } } +Get-ChildItem $mypath/$myMod/Private/ | ForEach-Object { + Get-ChildItem $_ | ForEach-Object { + if (!(Test-Path -Path "$mypath/docs/function-documentation/private/" -PathType Container)) { + New-Item -Path "$mypath/docs/function-documentation/private/" -ItemType Directory -Force + } + Move-Item -Path "$mypath/docs/function-documentation/$($_.BaseName).md" -Destination "$mypath/docs/function-documentation/private/" -Force + } +} + $manifest = Import-PowerShellDataFile "$mypath/$myMod/$myMod.psd1" [version]$version = $Manifest.ModuleVersion switch ($Args[0]) { diff --git a/maintenance/updateMod.ps1 b/maintenance/updateMod.ps1 index 5264fef..71a9e21 100644 --- a/maintenance/updateMod.ps1 +++ b/maintenance/updateMod.ps1 @@ -38,6 +38,15 @@ Get-ChildItem $mypath/$myMod/Public/ | ForEach-Object { } } +Get-ChildItem $mypath/$myMod/Private/ | ForEach-Object { + Get-ChildItem $_ | ForEach-Object { + if (!(Test-Path -Path "$mypath/docs/function-documentation/private/" -PathType Container)) { + New-Item -Path "$mypath/docs/function-documentation/private/" -ItemType Directory -Force + } + Move-Item -Path "$mypath/docs/function-documentation/$($_.BaseName).md" -Destination "$mypath/docs/function-documentation/private/" -Force + } +} + $manifest = Import-PowerShellDataFile "$mypath/$myMod/$myMod.psd1" [version]$version = $Manifest.ModuleVersion switch ($Args[0]) { From 56a71908eb5ea87ef0c5ad0f94b2e6adbe8fed1b Mon Sep 17 00:00:00 2001 From: bepsoccer <26012546+bepsoccer@users.noreply.github.com> Date: Wed, 10 Dec 2025 22:12:11 +0000 Subject: [PATCH 2/2] Bumping release to 0.10.3 --- .../{ => private}/ConvertFrom-PropertylessJson.md | 0 docs/function-documentation/{ => private}/Get-AddressCheck.md | 0 .../{ => private}/Get-HumanReadableSchedule.md | 0 .../{ => private}/Invoke-VerkadaCommandCall.md | 0 .../{ => private}/Invoke-VerkadaCommandInit.md | 0 .../{ => private}/Invoke-VerkadaFormCall.md | 0 .../{ => private}/Invoke-VerkadaGraphqlCall.md | 0 .../{ => private}/Invoke-VerkadaRestMethod.md | 0 docs/function-documentation/{ => private}/Merge-Objects.md | 0 docs/function-documentation/{ => private}/New-WebSession.md | 0 verkadaModule/verkadaModule.psd1 | 2 +- 11 files changed, 1 insertion(+), 1 deletion(-) rename docs/function-documentation/{ => private}/ConvertFrom-PropertylessJson.md (100%) rename docs/function-documentation/{ => private}/Get-AddressCheck.md (100%) rename docs/function-documentation/{ => private}/Get-HumanReadableSchedule.md (100%) rename docs/function-documentation/{ => private}/Invoke-VerkadaCommandCall.md (100%) rename docs/function-documentation/{ => private}/Invoke-VerkadaCommandInit.md (100%) rename docs/function-documentation/{ => private}/Invoke-VerkadaFormCall.md (100%) rename docs/function-documentation/{ => private}/Invoke-VerkadaGraphqlCall.md (100%) rename docs/function-documentation/{ => private}/Invoke-VerkadaRestMethod.md (100%) rename docs/function-documentation/{ => private}/Merge-Objects.md (100%) rename docs/function-documentation/{ => private}/New-WebSession.md (100%) diff --git a/docs/function-documentation/ConvertFrom-PropertylessJson.md b/docs/function-documentation/private/ConvertFrom-PropertylessJson.md similarity index 100% rename from docs/function-documentation/ConvertFrom-PropertylessJson.md rename to docs/function-documentation/private/ConvertFrom-PropertylessJson.md diff --git a/docs/function-documentation/Get-AddressCheck.md b/docs/function-documentation/private/Get-AddressCheck.md similarity index 100% rename from docs/function-documentation/Get-AddressCheck.md rename to docs/function-documentation/private/Get-AddressCheck.md diff --git a/docs/function-documentation/Get-HumanReadableSchedule.md b/docs/function-documentation/private/Get-HumanReadableSchedule.md similarity index 100% rename from docs/function-documentation/Get-HumanReadableSchedule.md rename to docs/function-documentation/private/Get-HumanReadableSchedule.md diff --git a/docs/function-documentation/Invoke-VerkadaCommandCall.md b/docs/function-documentation/private/Invoke-VerkadaCommandCall.md similarity index 100% rename from docs/function-documentation/Invoke-VerkadaCommandCall.md rename to docs/function-documentation/private/Invoke-VerkadaCommandCall.md diff --git a/docs/function-documentation/Invoke-VerkadaCommandInit.md b/docs/function-documentation/private/Invoke-VerkadaCommandInit.md similarity index 100% rename from docs/function-documentation/Invoke-VerkadaCommandInit.md rename to docs/function-documentation/private/Invoke-VerkadaCommandInit.md diff --git a/docs/function-documentation/Invoke-VerkadaFormCall.md b/docs/function-documentation/private/Invoke-VerkadaFormCall.md similarity index 100% rename from docs/function-documentation/Invoke-VerkadaFormCall.md rename to docs/function-documentation/private/Invoke-VerkadaFormCall.md diff --git a/docs/function-documentation/Invoke-VerkadaGraphqlCall.md b/docs/function-documentation/private/Invoke-VerkadaGraphqlCall.md similarity index 100% rename from docs/function-documentation/Invoke-VerkadaGraphqlCall.md rename to docs/function-documentation/private/Invoke-VerkadaGraphqlCall.md diff --git a/docs/function-documentation/Invoke-VerkadaRestMethod.md b/docs/function-documentation/private/Invoke-VerkadaRestMethod.md similarity index 100% rename from docs/function-documentation/Invoke-VerkadaRestMethod.md rename to docs/function-documentation/private/Invoke-VerkadaRestMethod.md diff --git a/docs/function-documentation/Merge-Objects.md b/docs/function-documentation/private/Merge-Objects.md similarity index 100% rename from docs/function-documentation/Merge-Objects.md rename to docs/function-documentation/private/Merge-Objects.md diff --git a/docs/function-documentation/New-WebSession.md b/docs/function-documentation/private/New-WebSession.md similarity index 100% rename from docs/function-documentation/New-WebSession.md rename to docs/function-documentation/private/New-WebSession.md diff --git a/verkadaModule/verkadaModule.psd1 b/verkadaModule/verkadaModule.psd1 index 8919f4f..c8a812c 100644 --- a/verkadaModule/verkadaModule.psd1 +++ b/verkadaModule/verkadaModule.psd1 @@ -12,7 +12,7 @@ RootModule = 'verkadaModule.psm1' # Version number of this module. -ModuleVersion = '0.10.2' +ModuleVersion = '0.10.3' # Supported PSEditions CompatiblePSEditions = 'Desktop', 'Core'