Public/Deploying/Deploy-EdenServiceSubscriptions.ps1

function Deploy-EdenServiceSubscriptions {
    <#
        .SYNOPSIS
        Deploying subscriptions.

        .DESCRIPTION
        Deploying subscriptions. by calling the local './Eden/Deploying/Deploy-ServiceSubscriptions.ps1' script.
    #>

    [CmdletBinding()]
    param(
        # The name of the local or global settins file to pass to the Eden script.
        [Alias("sn")]
        [String] $SettingsName,
        # The additional arguments to pass to the Eden script.
        [Alias("aa")]
        [HashTable] $AdditionalArguments
    )

    Invoke-EdenCommandStandardFlow `
        -LocalCommandPath "Deploying/Deploy-ServiceSubscriptions" `
        -SettingsName $SettingsName `
        -CommandGroup "Deploying" `
        -Message "Deploying subscriptions." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-dps `
    -Value Deploy-EdenServiceSubscriptions `
    -Force