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

    # Supported PSEditions
    CompatiblePSEditions = 'Core'

    # Mark as prerelease
    PrivateData = @{
        PSData = @{
            Prerelease = 'alpha'
            ReleaseNotes = @"
 
            ## 0.42.0
            * [Directory] Support for individual desks.
 
            ## 0.41.0
            * [Maps] Better error handling and reliability improvements for maps cmdlets.
 
            ## 0.40.0
            * Add support for WorkplaceWifiNetworkSSIDList setting in Get-PlacesSettings and Set-PlacesSettings
            * Add support for pipe operations for New-Place, Get-PlaceV3, Set-PlaceV3, Remove-Place
                         
            ## 0.39.0
            * Address the conflict with ExchangeOnline module.
 
            ## 0.38.0
            * Fix in Set-Placev3 to allow ParentId property to be cleared when parameter is null
             
            ## 0.37.0
            * Added supported PSEditions and Minimum version of the PowerShell engine
             
            ## 0.36.0
            * New-Place: Block attempts to create a room or workspace using New-Place
            * Set-Placev3: Improved error messages to be more specific to the issue
            * [Maps] Remove-map cmdlet
            * Get-PlacesSetting: GetSettings output remove descriptor field
 
            ## 0.35.0
            * Initialize-Places: Added new bootstrap scenarios for Room with multiple Roomlists and Building label
            * New-Place: Allow setting SortOrder on a floor when setting up via New-Place
            * Remove-Place: Update to use -Identity as the parameter name rather than -Id
            * Deprecate the PostOfficeBox parameter on buildings
            * Deprecate the ParentType parameter, so that only ParentId parameter is required
 
            ## 0.34.0
            * Fix Import-MapCorrelations cmdlet to ingore manifest.json in imdf.zip file
            * Fix a null reference error and malformed output path prompt in Import-MapCorrelations cmdlet
             
            ## 0.33.0
            * Add support for SpaceAnalyticsBuildingsList setting in Get-PlacesSettings and Set-PlacesSettings
 
            ## 0.32.0
            * Update Get-PlaceV3 & Set-PlaceV3 to support Identity format as Name_GUID for v3 entities
 
            ## 0.31.0
            * Add support for EnablePlacesMobileApp setting in Get-PlacesSettings and Set-PlacesSettings
            * Add support for EnablePlacesWebApp setting in Get-PlacesSettings and Set-PlacesSettings
            * Update Initialize-Places to improve parameters for input file and output folder
 
            ## 0.30.0
            * Add support for EnableBuildings setting in Get-PlacesSettings and Set-PlacesSettings
            * Add support for PlacesFinderEnabled setting in Get-PlacesSettings and Set-PlacesSettings
 
            ## 0.29.0
            * Update Set-PlacesSettings to be able to set Entitlement setting
 
            ## 0.28.0
            * Update presentation object to be backward compatible with EXO presentation object
            * Introduce fix at Get-Placev3 retrieving certain places by Identity
            * Update Initialize-Places to include bootstrapping functionality & Script generation
 
            ## 0.27.0
            * Support non-interactive login in Connect-MicrosoftPlaces via the Credential parameter
 
            ## 0.26.0
            * Fix Set-PlaceV3 cmdlet to allow clearing non-empty properties
 
            ## 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.
            * Token auto refresh
             
            ## 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+.'

    # Minimum version of the PowerShell engine required by this module
    PowerShellVersion = '7.4'

    # 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',
        'Remove-Map'
    )
}