PSFloRecruit.psd1
|
@{ RootModule = 'PSFloRecruit.psm1' ModuleVersion = '0.1.2' GUID = '2b7f535c-8edc-4d01-a0b6-3bea5fe33adb' Author = 'Joe Manna' CompanyName = 'Unknown' Copyright = '(c) 2026. All rights reserved.' Description = 'PowerShell module for the FloRecruit HRIS API' # Cross-platform compatibility CompatiblePSEditions = @('Desktop', 'Core') PowerShellVersion = '5.1' # Explicitly export functions (no wildcards) FunctionsToExport = @( # Authentication 'Connect-FloRecruit', 'Disconnect-FloRecruit', 'Get-FloRecruitSession', # Job Applications 'Get-FloRecruitJobApplication' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() # Help system HelpInfoURI = 'https://github.com/yourusername/psflorecruit/help' # PSGallery metadata PrivateData = @{ PSData = @{ Tags = @('FloRecruit', 'HRIS', 'HR', 'API', 'REST', 'Recruiting', 'ATS') LicenseUri = 'https://github.com/yourusername/psflorecruit/blob/main/LICENSE' ProjectUri = 'https://github.com/yourusername/psflorecruit' ReleaseNotes = 'v0.1.2 - CI/CD fix: Combined release and publish workflows for automatic publishing to PowerShell Gallery' } } } |