From 8b7815fff4e63626926d81733a20544fa9e4aef1 Mon Sep 17 00:00:00 2001 From: caballeto Date: Thu, 11 Jun 2026 16:59:31 +0200 Subject: [PATCH] test: exercise apiKeys.get in the SDK parity harness The apiKeys.get method shipped in #36 but the parity harness runner (test/run-sdk.mjs) had no dispatch case for it, so the monorepo harness-completeness check flagged sdk-js as not covering api-keys.get. Wire the op through to client.apiKeys.get. Co-authored-by: Cursor --- test/run-sdk.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/run-sdk.mjs b/test/run-sdk.mjs index 4435630..16a46d8 100644 --- a/test/run-sdk.mjs +++ b/test/run-sdk.mjs @@ -106,6 +106,7 @@ async function run() { // ── API Keys ── case 'api-keys.list': return client.apiKeys.list() + case 'api-keys.get': return client.apiKeys.get(rest[0]) case 'api-keys.create': return client.apiKeys.create(JSON.parse(rest[0])) case 'api-keys.revoke': return void await client.apiKeys.revoke(rest[0]) case 'api-keys.delete': return void await client.apiKeys.delete(rest[0])