M365PlannerPro.psd1
|
@{ # Script module or binary module file associated with this manifest. RootModule = 'M365PlannerPro.psm1' # Version number of this module. ModuleVersion = '1.1.0' # Supported PSEditions CompatiblePSEditions = @('Desktop', 'Core') # ID used to uniquely identify this module GUID = 'a8f3d2e1-4b5c-6d7e-8f9a-0b1c2d3e4f5a' # Author of this module Author = 'Sergio Cánovas Cardona' # Company or vendor of this module CompanyName = 'dForts' # Copyright statement for this module Copyright = '(c) 2026 Sergio Cánovas Cardona. Licensed under MIT License.' # Description of the functionality provided by this module Description = 'Advanced PowerShell module for Microsoft 365 Planner management with ETag-based concurrency control, bulk operations, and reporting capabilities.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '7.0' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @( @{ ModuleName = 'Microsoft.Graph.Planner' ModuleVersion = '2.0.0' }, @{ ModuleName = 'Microsoft.Graph.Groups' ModuleVersion = '2.0.0' }, @{ ModuleName = 'Microsoft.Graph.Users' ModuleVersion = '2.0.0' } ) # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @( 'Copy-M365PPlan', 'Export-M365PPlan', 'Import-M365PPlan', 'Import-M365PTasksFromCsv', 'Get-M365PUserWorkload', 'Update-M365PTaskSmart' ) # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @() # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('Microsoft365', 'Planner', 'Graph', 'Tasks', 'ProjectManagement', 'Automation') # A URL to the license for this module. LicenseUri = 'https://github.com/sergio-canovas/M365PlannerPro/blob/main/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/sergio-canovas/M365PlannerPro' # A URL to an icon representing this module. IconUri = '' # ReleaseNotes of this module ReleaseNotes = @' # M365PlannerPro 1.1.0 ## New Features - Export-M365PPlan: Export plans to JSON or XML format - Import-M365PPlan: Import plans from JSON or XML files - Complete backup and restore capabilities - Cross-tenant migration support ## Existing Features - Copy-M365PPlan: Clone complete plans with buckets and tasks - Import-M365PTasksFromCsv: Bulk task import from CSV files - Get-M365PUserWorkload: User workload reporting across plans - Update-M365PTaskSmart: Safe update with automatic ETag handling ## Technical Highlights - Automatic ETag concurrency control for all updates - Retry logic for 412 Precondition Failed errors - Verbose logging for API call traceability - Pipeline support for efficient operations - JSON and XML serialization support '@ # Prerelease string of this module # Prerelease = '' # Flag to indicate whether the module requires explicit user acceptance for install/update/save # RequireLicenseAcceptance = $false # External dependent modules of this module # ExternalModuleDependencies = @() } # End of PSData hashtable } # End of PrivateData hashtable # HelpInfo URI of this module # HelpInfoURI = '' # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. # DefaultCommandPrefix = '' } |