SDK catalog / GHL
GHL
alpha 0.1.0-alpha.1
Published release candidate for @wf/ghl@0.1.0-alpha.1. Follow the registry guide and review compatibility before installing.
Join the alpha Sign in with Google, then add your name. We review alpha access requests.
import { createGhlClient } from '@wf/ghl';
const client=createGhlClient(process.argv[2] || './ghl.yaml', {resolveCredential:async()=>process.env.GHL_ACCESS_TOKEN ?? null});
try { console.log(await client.catalog(process.argv[3] || 'your-location-id')); } finally { await client.close(); }