InvokeZEP.psd1

@{
    RootModule = 'InvokeZEP.psm1'
    ModuleVersion = '0.1.0'
    GUID = '4abf4e3d-44de-4e0a-b4da-6e4a9f8f33c6'
    Author = 'Klaus Kupferschmid'
    CompanyName = 'tempero.it GmbH & hhpberlin GmbH'
    Copyright = '(c) Klaus Kupferschmid. All rights reserved.'
    Description = 'PowerShell module for reading ZEP offers and offer items via REST API.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @(
        'Get-ZEPConfiguration',
        'Set-ZEPConfiguration',
        'Invoke-ZEPRest',
        'Get-ZEPOffer',
        'Get-ZEPOffers',
        'Get-ZEPOfferItems',
        'Test-ZEPOffersCacheNeedsRefresh'
    )
    CmdletsToExport = @()
    VariablesToExport = '*'
    AliasesToExport = @()
    PrivateData = @{
        PSData = @{
            Tags = @('ZEP', 'REST', 'Automation', 'PowerShell')
            LicenseUri = 'https://github.com/Kupferschmid/PowerShell-Modules/blob/main/LICENSE'
            ProjectUri = 'https://github.com/Kupferschmid/PowerShell-Modules'
            ReleaseNotes = 'Initial version with authentication, REST client, offer caching and offer-item access.'
        }
    }
}