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.26.0'

    # Mark as prerelease
    PrivateData = @{
        PSData = @{
            Prerelease = 'alpha'
            ReleaseNotes = @"
             
            ## 0.25.0
            * Expose HasWifi feature for V3 places
            * Remove QueryBing functionality due to CELA blocker
            * Previously, specifying a List property (such as ResourceLinks) would cause those values to be appended to the existing List. This behavior has been corrected, now the provided List will replace the existing list.
             
            ## 0.24.0
            Bug fixes and improvements
            * Fixed a null reference error
 
            ## 0.23.0
             
            Bug fixes and improvements
            * Added a readme with cmdlets examples
"@

        }
    }

    # 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-PlaceV3',
        'Find-Places',
        'Remove-Place',
        'New-Place',
        'Set-PlaceV3',
        'Initialize-Places',

        # Analytics
        'Push-Dataset',
        'Push-PlacesAnalyticsData',
        'Get-Dataset',
        'Get-DatasetStatus',

        # PlacesDevices
        'New-PlaceDevice',
        'Remove-PlaceDevice',
        'Set-PlaceDevice',
        'Get-PlaceDevice',

        # PlacesSettings
        'Get-PlacesSettings',
        'Set-PlacesSettings',

        # Places Maps
        'New-Map',
        'Import-MapCorrelations'
    )
}