MicrosoftPlaces.psd1

@{
    # Package identifier
    GUID = '400aeb5b-6061-4d9b-b871-8874c2a1a639'
    
    # Script module or binary module file associated with this manifest.
    RootModule = './MicrosoftPlaces.psm1'

    # Version number of this module.
    ModuleVersion = '0.5.1'

    # Mark as prerelease
    PrivateData = @{
        PSData = @{
            Prerelease = 'alpha'
        }
    }

    # Author of this module
    Author = 'Microsoft Corporation'

    # Company or vendor of this module
    CompanyName = 'Microsoft Corporation'

    # Copyright statement for this module
    Copyright = 'Microsoft Corporation. All rights reserved.'

    # Description of the functionality provided by this module
    Description = 'Microsoft Places cmdlets module for PowerShell 7+.'

    # 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 =  @()

    # 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 = @(
        # General
        'Connect-MicrosoftPlaces',
        'Disconnect-MicrosoftPlaces',

        # DSR
        'Get-PlacesDSRExport',
        'New-PlacesDSRExport',

        # Directory
        'Get-Place',
        'Find-Places',
        'Delete-Place',
        'Create-Place',
        'Update-Place',

        # Analytics
        'Push-Dataset',
        'Push-PlacesAnalyticsData'
    )
}