chore: anvil.it.com → inouter.com
Some checks failed
TypeScript CI / build (push) Has been cancelled

This commit is contained in:
2026-03-27 16:16:38 +00:00
parent 0062dc1f4c
commit 90d2f96ae9

View File

@@ -218,7 +218,7 @@ async function callNamecheapApi(
return { error: 'Namecheap API 키가 설정되지 않았습니다.' };
}
const apiKey = env.NAMECHEAP_API_KEY_INTERNAL;
const apiUrl = env.NAMECHEAP_API_URL || 'https://namecheap-api.anvil.it.com';
const apiUrl = env.NAMECHEAP_API_URL || 'https://namecheap.api.inouter.com';
// 도메인 권한 체크 (쓰기 작업만)
// 읽기 작업(get_domain_info, get_nameservers)은 누구나 조회 가능
@@ -903,7 +903,7 @@ export async function executeSuggestDomains(args: { keywords: string }, env?: En
const namecheapApiKey = env.NAMECHEAP_API_KEY;
try {
const namecheapApiUrl = env.NAMECHEAP_API_URL || 'https://namecheap-api.anvil.it.com';
const namecheapApiUrl = env.NAMECHEAP_API_URL || 'https://namecheap.api.inouter.com';
const TARGET_COUNT = 10;
const MAX_RETRIES = 3;