InTUI.psd1
|
@{ RootModule = 'InTUI.psm1' ModuleVersion = '1.0.2' GUID = 'bec8fb22-9b4e-4ae9-900c-6d7aac7ec498' Author = 'jorgeasaurus' CompanyName = 'Unknown' Copyright = '(c) jorgeasaurus. All rights reserved.' Description = 'Intune TUI - A terminal UI for Microsoft Intune management via Graph API' PowerShellVersion = '7.2' RequiredModules = @( 'Microsoft.Graph.Authentication' ) FunctionsToExport = @( 'Start-InTUI', 'Connect-InTUI', 'Export-InTUIData' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @('intui') PrivateData = @{ PSData = @{ Tags = @('Intune', 'Graph', 'TUI', 'Terminal', 'ANSI', 'Microsoft', 'Endpoint', 'Management') LicenseUri = 'https://github.com/jorgeasaurus/InTUI/blob/main/LICENSE' ProjectUri = 'https://github.com/jorgeasaurus/InTUI' ReleaseNotes = @' 1.0.2 - Added delegated Entra ID PIM role activation and deactivation from Security. - Refreshed Graph sessions after PIM activation and added a current Graph scopes view. - Improved Intune authorization warnings and documented delegated-user requirements. - Removed unused Bookmarks, Command Palette, and Script Recording surfaces. - Added regression coverage for PIM flows, dashboard warnings, and TUI rendering stability. '@ } } } |