GraphShell.psd1

@{
    RootModule        = 'GraphShell.psm1'
    ModuleVersion      = '0.1.1'
    GUID               = '963bcd95-8cc5-46bb-9740-9c38f26588c3'
    Author             = 'Josimar Honorato'
    CompanyName        = 'GraphShell'
    Copyright          = '(c) GraphShell. All rights reserved.'
    Description        = 'Explore and map Microsoft Graph PowerShell cmdlets, REST endpoints, permissions, modules and API metadata directly from PowerShell. GraphShell does not replace the Microsoft Graph PowerShell SDK and does not call the Microsoft Graph API or your tenant; it explains and relates the Graph surface using the same catalog that powers the GraphShell Explorer web app (https://explorer.graphshell.cloud/).'
    PowerShellVersion  = '5.1'
    CompatiblePSEditions = @('Desktop', 'Core')
    FunctionsToExport  = @('Get-GraphMapping', 'Get-GraphDetail')
    CmdletsToExport    = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData        = @{
        PSData = @{
            Tags         = @('MicrosoftGraph', 'Graph', 'PowerShell', 'EntraID', 'Identity', 'IAM', 'Microsoft365', 'Azure')
            ProjectUri   = 'https://github.com/josimarh/GraphShell-Explorer'
            LicenseUri   = 'https://github.com/josimarh/GraphShell-Explorer/blob/main/LICENSE'
            ReleaseNotes = 'v0.1.1: improves multi-concept query ranking so direct relationships such as group membership outrank unrelated compound-word matches. Includes Get-GraphMapping and Get-GraphDetail, backed by the shared GraphShell catalog.'
        }
    }
}