PSAPify.psd1
@{ ModuleToProcess = 'PSAPify.psm1' # <-- changed ModuleVersion = '1.0.2' GUID = '1c566866-8626-4cdc-ba7a-0f09b527f66a' Author = 'HarrisonA' Description = 'PSAPify is a PowerShell module for interacting with the Apify platform and integrating with n8n workflows. It provides functions to run Apify actors, retrieve their results, and export data to n8n via webhooks.' # Only these two functions will be exported: FunctionsToExport = @('Export-toN8NWorkflow','Invoke-Apify') # You can explicitly declare none of the cmdlets if you have any: CmdletsToExport = @() PrivateData = @{ PSData = @{ Tags = @('PowerShell','Module') ProjectUri = 'https://github.com/SharkByte561/PSApify' } } } |