import Runloop from '@runloop/api-client';
const client = new Runloop({
bearerToken: process.env['RUNLOOP_API_KEY'], // This is the default and can be omitted
});
const scorer = await client.scenarios.scorers.update('id', { bash_script: 'bash_script', type: 'type' });
console.log(scorer.id);