Yelp.psd1

@{
    ModuleVersion = '0.0.4'

    PrivateData = @{
        PSData = @{
            LicenseUri = 'https://github.com/chris-peterson/pwsh-yelp/blob/main/LICENSE'
            ProjectUri = 'https://github.com/chris-peterson/pwsh-yelp'
            ReleaseNotes = 'basic search and lookup functionality'
        }
    }

    GUID = 'b4d6d494-95b9-434e-8255-a428e077c9fb'

    Author = 'Chris Peterson'
    CompanyName = 'Chris Peterson'
    Copyright = '(c) 2023'

    Description = 'Interact with Yelp via PowerShell'
    PowerShellVersion = '7.1'

    ScriptsToProcess = @()
    TypesToProcess = @('Types.ps1xml')
    FormatsToProcess = @('Formats.ps1xml')

    NestedModules = @(
        'Business.psm1',
        'Config.psm1'
        'Utilities.psm1'
    )
    FunctionsToExport = @(
        # Business
        'Search-YelpBusiness'
        'Get-YelpBusiness'
        'Get-YelpBusinessHours'

        # Configuration
        'Get-YelpLocation'
        'Set-YelpLocation'

        # Utilities
        'Invoke-YelpApi'
        'New-YelpObject'
        'Get-FilteredYelpObject'
        'Get-TimeSpanPretty'
    )
    AliasesToExport = @(
    )
}