ODSPTroubleshooters.psd1

@{
    # Module identity
    ModuleVersion     = '1.0.0'
    GUID              = '72f18a28-3bca-4ac9-9c1e-1f143c6e46be'
    RootModule        = 'ODSPTroubleshooters.psm1'

    # Authorship
    Author            = 'Roan Saturnino Marques'
    CompanyName       = ''
    Copyright         = ''
    Description       = 'Utilities for troubleshooting OneDrive for Business and SharePoint Online.'
    PowerShellVersion = '5.1'

    # Exports — only the public function is surfaced to callers
    FunctionsToExport = @('New-LeanODBLogFile', 'Split-File')
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()

    # PSGallery metadata
    PrivateData = @{
        PSData = @{
            Tags         = @('OneDrive', 'SharePoint', 'ODSP', 'SPO', 'Diagnostics', 'Logs', 'Support')
            ProjectUri   = 'https://github.com/your-org/odsp-troubleshooters'
            LicenseUri   = 'https://github.com/your-org/odsp-troubleshooters/blob/main/LICENSE'
            ReleaseNotes = 'Initial release. Includes introduced New-LeanODBLogFile that enables creating a lean log OneDrive log file filtering the data for one day only, without losing the environment data the log collects. Also brings Split-File that can break in chunks any file, like it is automatically for to the parsed log file.'
        }
    }
}