Private/Generate-iPilotModuleManifest.ps1

<#
$manifest = @{
    Path = "$($env:USERPROFILE)\Repos\ipilot-powershell\iPilot\iPilot.psd1"
    RootModule = 'iPilot.psm1'
    Author = 'Joel Clark'
    FunctionsToExport = 'New-iPilotTeamsUserAssignment',
        'New-iPilotTeamsBatchUserAssignment',
        'Get-iPilotNumber',
        'Get-iPilotTeamsUser',
        'Get-iPilotTeamsDomain',
        'Get-iPilotNumber',
        'Initialize-iPilotSession',
        'Set-iPilotTeamsUser',
        'Remove-iPilotTeamsUserAssignment',
        'Invoke-iPilotUserSync',
        'Clear-SkypeAttributes',
        'New-iPilotDepartment',
        'Get-iPilotDepartment',
        'Set-iPilotDepartmentAssignment',
        'Remove-iPilotDepartment',
        'Remove-iPilotDepartmentAssignment',
        'Get-iPilotCarrier',
        'Get-iPilotAutomationJobLogs'
    GUID = 'a50e54bc-75bd-43b2-a8f7-a4e4ba80bdd7'
    CompanyName = 'NuWave Communications, Inc.'
    Copyright = '(c) 2023 NuWave Communications, Inc. All rights reserved.'
    Description = 'PowerShell functions to interact with iPilot API'
    PowerShellVersion = '5.1'
    ProjectUri = 'https://github.com/NuWave-Communications/ipilot-powershell'
    Tags = "iPilot", "NuWave", "API", "Teams"
    ModuleVersion = [version]"1.0.11"
}
New-ModuleManifest @manifest
#>