MspGraphKit.psd1

@{
    RootModule        = 'MspGraphKit.psm1'
    ModuleVersion     = '0.1.0'
    GUID              = 'e3a8f5d2-9b41-4c7e-8f60-1a2b3c4d5e6f'
    Author            = 'Dana Kim'
    Copyright         = '(c) Dana Kim. MIT License.'
    Description       = 'Multi-tenant Microsoft Graph plumbing for MSPs: validated tenant fleet config, certificate app-only connection management, fault-isolated per-tenant sweeps with throttling retry, and HTML report rendering.'
    PowerShellVersion = '7.0'
    RequiredModules   = @('Microsoft.Graph.Authentication')
    FunctionsToExport = @(
        'Get-MgkTenantConfig'
        'Test-MgkTenantConnection'
        'Invoke-MgkTenantSweep'
        'New-MgkHtmlReport'
    )
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @('MSP', 'Graph', 'MicrosoftGraph', 'M365', 'MultiTenant', 'Automation')
            LicenseUri   = 'https://opensource.org/licenses/MIT'
            ProjectUri   = 'https://github.com/danakim1004au-prog/mspgraphkit'
            ReleaseNotes = 'Initial release: Get-MgkTenantConfig, Test-MgkTenantConnection, Invoke-MgkTenantSweep, New-MgkHtmlReport.'
        }
    }
}