Private/Get-PolymarketSeries.ps1
|
function Get-PolymarketSeries { [CmdletBinding()] param ( [Parameter()] [ValidateSet('table', 'json')] [string]$Output = 'table' ) process { $client = [GammaClient]::new() $result = $client.GetSeries() [PolymarketOutput]::Format($result, $Output) } } |