API Keys
const created = await client.apiKeys.create(projectId, { name: "Prod key" });
// created.key is shown once
const keys = await client.apiKeys.list(projectId);
await client.apiKeys.delete(projectId, created.id);const created = await client.apiKeys.create(projectId, { name: "Prod key" });
// created.key is shown once
const keys = await client.apiKeys.list(projectId);
await client.apiKeys.delete(projectId, created.id);