{"version":3,"sources":["../../git/config.ts"],"sourcesContent":["/**\n * Configuration constants for Morph Git SDK\n */\n\n/** Default proxy URL for Morph git operations */\nexport const DEFAULT_PROXY_URL = 'https://repos.morphllm.com';\n\n/**\n * Validate API key format\n */\nexport function validateApiKey(apiKey: string): void {\n  if (!apiKey) {\n    throw new Error('API key is required');\n  }\n  \n  if (!apiKey.startsWith('sk-') && !apiKey.startsWith('morph-')) {\n    throw new Error('Invalid API key format. Expected: sk-... or morph-...');\n  }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKO,IAAM,oBAAoB;AAK1B,SAAS,eAAe,QAAsB;AACnD,MAAI,CAAC,QAAQ;AACX,UAAM,IAAI,MAAM,qBAAqB;AAAA,EACvC;AAEA,MAAI,CAAC,OAAO,WAAW,KAAK,KAAK,CAAC,OAAO,WAAW,QAAQ,GAAG;AAC7D,UAAM,IAAI,MAAM,uDAAuD;AAAA,EACzE;AACF;","names":[]}