PSAircall.psd1
@{ # If authoring a script module, the RootModule is the name of your .psm1 file RootModule = 'PSAircall.psm1' Author = 'Romain Tiennot <romain.tiennot@manomano.com>' CompanyName = 'Colibri SAS' ModuleVersion = '0.0.2' # Use the New-Guid command to generate a GUID, and copy/paste into the next line GUID = '20b07880-294b-407c-bff1-bca0d9f76d65' Copyright = 'Copyright (c) Colibri SAS / Manomano 2021' Description = 'Powershell module for manage Aircall' # Minimum PowerShell version supported by this module (optional, recommended) PowerShellVersion = '5.1' # Which PowerShell Editions does this module work with? (Core, Desktop) CompatiblePSEditions = @('Core','Desktop') # Which PowerShell functions are exported from your module? (eg. Get-CoolObject) FunctionsToExport = @('Clear-AircallSession','Invoke-AircallMethod','Save-AircallSession','Get-AircallNumber','Test-AircallSession','Get-AircallTeam','New-AircallTeam','Remove-AircallTeam','Get-AircallUser','New-AircallUser','Remove-AircallUser') # Which PowerShell aliases are exported from your module? (eg. gco) AliasesToExport = @('') # Which PowerShell variables are exported from your module? (eg. Fruits, Vegetables) VariablesToExport = @('') # PowerShell Gallery: Define your module's metadata PrivateData = @{ PSData = @{ # What keywords represent your PowerShell module? (eg. cloud, tools, framework, vendor) Tags = @('aircall', 'api', 'core') # What software license is your code being released under? (see https://opensource.org/licenses) LicenseUri = 'https://github.com/ManoManoTech/PSAircall/blob/master/LICENSE' # What is the URL to your project's website? ProjectUri = 'https://github.com/ManoManoTech/PSAircall' # What is the URI to a custom icon file for your project? (optional) IconUri = '' # What new features, bug fixes, or deprecated features, are part of this release? ReleaseNotes = @' '@ } } # If your module supports updateable help, what is the URI to the help archive? (optional) # HelpInfoURI = '' } |